diff --git a/etc/scripts/synclic.py b/etc/scripts/synclic.py index 8fb6b09c595..e690754cd86 100644 --- a/etc/scripts/synclic.py +++ b/etc/scripts/synclic.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2017 nexB Inc. and others. All rights reserved. +# Copyright (c) 2019 nexB Inc. and others. All rights reserved. # http://nexb.com and https://github.com/nexB/scancode-toolkit/ # The ScanCode software is licensed under the Apache License version 2.0. # Data generated with ScanCode require an acknowledgment. @@ -56,9 +56,9 @@ - the DejaCode licenses Run python synclic.py -h for help. - """ + TRACE = True TRACE_ADD = True TRACE_FETCH = True @@ -434,10 +434,6 @@ def build_license(self, mapping, scancode_licenses): other_urls = list(other_urls) -# notes = mapping.get('licenseComments') -# if notes and notes.strip(): -# notes = 'Per SPDX.org, ' + ' '.join(notes.split()) - standard_notice = mapping.get('standardLicenseHeader') or '' if standard_notice: standard_notice = clean_text(standard_notice) @@ -545,11 +541,7 @@ def build_license(self, mapping, scancode_licenses): # these licenses are combos of many others and are ignored: we detect # instead each part of the combo dejacode_special_composites = set([ - 'lzma-sdk-2006', - 'intel-bsd-special', - 'openssh', - 'aes-128-3.0', - 'stlport-2000', + 'intel-bsd-special', ]) is_combo = key in dejacode_special_composites if is_combo: @@ -772,27 +764,35 @@ def license_to_dict(lico): Return an OrderedDict of license data with texts for API calls. Fields with empty values are not included. """ - return dict( + licm = dict( is_active=False, reviewed=False, license_status='NotReviewed', is_component_license=False, - key=lico.key, short_name=lico.short_name, name=lico.name, category=lico.category, owner=lico.owner, - homepage_url=lico.homepage_url, - reference_notes=lico.notes, - full_text=lico.text, - is_exception=lico.is_exception, - spdx_license_key=lico.spdx_license_key, - text_urls='\n'.join(lico.text_urls), - osi_url=lico.osi_url, - faq_url=lico.faq_url, - other_urls='\n'.join(lico.other_urls), + is_exception=lico.is_exception ) + if lico.text: + licm.update(full_text=lico.text) + if lico.homepage_url: + licm.update(homepage_url=lico.homepage_url) + if lico.spdx_license_key: + licm.update(spdx_license_key=lico.spdx_license_key) + if lico.notes: + licm.update(reference_notes=lico.notes) + if lico.text_urls: + licm.update(text_urls='\n'.join(lico.text_urls)) + if lico.osi_url: + licm.update(osi_url=lico.osi_url) + if lico.faq_url: + licm.update(faq_url=lico.faq_url) + if lico.other_urls: + licm.update(other_urls='\n'.join(lico.other_urls)) + return licm EXTERNAL_LICENSE_SYNCHRONIZATION_SOURCES = { @@ -863,12 +863,15 @@ def update_external(_attrib, _sc_val, _ext_val): # special case for URL lists, we consider all URL fields to # update if attrib.endswith('_urls',): - all_sc_urls = set(list(normalized_scancode_value) - +scancode_license.text_urls - +scancode_license.other_urls - +[scancode_license.homepage_url, - scancode_license.osi_url, - scancode_license.faq_url]) + all_sc_urls = set( + list(normalized_scancode_value) + + scancode_license.text_urls + + scancode_license.other_urls + + [scancode_license.homepage_url, + scancode_license.osi_url, + scancode_license.faq_url + ] + ) all_sc_urls = set(u for u in all_sc_urls if u) new_other_urls = normalize_external_value.difference(all_sc_urls) # add other urls to ScanCode diff --git a/src/licensedcode/data/licenses/aes-128-3.0.LICENSE b/src/licensedcode/data/licenses/aes-128-3.0.LICENSE new file mode 100644 index 00000000000..a555023dfe2 --- /dev/null +++ b/src/licensedcode/data/licenses/aes-128-3.0.LICENSE @@ -0,0 +1,15 @@ +All code contained in this distributed is placed in the public domain. +============================================================= +Disclaimer: +THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''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 AUTHORS 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/src/licensedcode/data/licenses/aes-128-3.0.yml b/src/licensedcode/data/licenses/aes-128-3.0.yml new file mode 100644 index 00000000000..8275d48db2a --- /dev/null +++ b/src/licensedcode/data/licenses/aes-128-3.0.yml @@ -0,0 +1,6 @@ +key: aes-128-3.0 +short_name: AES-128 3.0 License +name: AES-128 v3.0 License +category: Public Domain +owner: Unspecified +minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/alfresco-exception-0.5.yml b/src/licensedcode/data/licenses/alfresco-exception-0.5.yml index 152ef64c6a4..08f0c4dc64e 100644 --- a/src/licensedcode/data/licenses/alfresco-exception-0.5.yml +++ b/src/licensedcode/data/licenses/alfresco-exception-0.5.yml @@ -1,6 +1,6 @@ key: alfresco-exception-0.5 -name: Alfresco FLOSS Exception v0.5 short_name: Alfresco FLOSS Exception v0.5 +name: Alfresco FLOSS Exception v0.5 category: Copyleft owner: Alfresco homepage_url: https://web.archive.org/web/20070306001556/http://www.alfresco.com/legal/licensing/floss_exception/ diff --git a/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.yml b/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.yml index 77bb28fe8bf..edcdbaf0e93 100644 --- a/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.yml +++ b/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.yml @@ -4,6 +4,5 @@ name: Autoconf simple exception to GPL-2.0 category: Copyleft Limited owner: Free Software Foundation (FSF) homepage_url: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD -notes: |- - this is a simpler version of the Autonconf exception to the GPL +notes: this is a simpler version of the Autonconf exception to the GPL is_exception: yes diff --git a/src/licensedcode/data/licenses/blitz-artistic.yml b/src/licensedcode/data/licenses/blitz-artistic.yml index 893bd740305..6d73c44a3c0 100644 --- a/src/licensedcode/data/licenses/blitz-artistic.yml +++ b/src/licensedcode/data/licenses/blitz-artistic.yml @@ -4,6 +4,6 @@ name: Blitz++ Artistic License category: Copyleft Limited owner: Blitz++ homepage_url: https://github.com/blitzpp/blitz -notes: This is a modified artistic license, no longer in use. +notes: This is a modified artistic license, no longer in use. text_urls: - https://raw.githubusercontent.com/blitzpp/blitz/e3c973d68e5ee17aec779bf9711b38fd4afc355f/LICENSE diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-change.yml b/src/licensedcode/data/licenses/bsd-3-clause-no-change.yml index 0ba371ea556..2398913ccf8 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-change.yml +++ b/src/licensedcode/data/licenses/bsd-3-clause-no-change.yml @@ -1,9 +1,9 @@ key: bsd-3-clause-no-change -short_name: BSD 3-Clause No Change -name: BSD 3-Clause No Change +short_name: BSD 3-Clause No Change +name: BSD 3-Clause No Change category: Permissive -owner: David Corcoran +owner: David Corcoran homepage_url: https://pcsclite.apdu.fr/ +notes: there is an extra clause about changes which has some ambiguities other_urls: - https://salsa.debian.org/rousseau/PCSC/blob/master/COPYING -notes: there is an extra clause about changes which has some ambiguities \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-original-muscle.yml b/src/licensedcode/data/licenses/bsd-original-muscle.yml index 0f371b0acde..27a2c36e85a 100644 --- a/src/licensedcode/data/licenses/bsd-original-muscle.yml +++ b/src/licensedcode/data/licenses/bsd-original-muscle.yml @@ -4,4 +4,5 @@ name: BSD-Original MUSCLE category: Permissive owner: David Corcoran homepage_url: https://web.archive.org/web/20060318003856/http://linuxnet.com/ -notes: This license has some extra terms beyond the advertizing clause not found in the bsd-originl +notes: This license has some extra terms beyond the advertizing clause not found in the bsd-original + diff --git a/src/licensedcode/data/licenses/cvwl.yml b/src/licensedcode/data/licenses/cvwl.yml index 2f7df7b958b..b0aa482c284 100644 --- a/src/licensedcode/data/licenses/cvwl.yml +++ b/src/licensedcode/data/licenses/cvwl.yml @@ -1,7 +1,7 @@ key: cvwl short_name: Collaborative Virtual Workspace License name: Collaborative Virtual Workspace License -category: Proprietary +category: Proprietary Free owner: Mitre homepage_url: https://opensource.org/licenses/mitrepl minimum_coverage: 30 diff --git a/src/licensedcode/data/licenses/dwtfnmfpl-3.0.yml b/src/licensedcode/data/licenses/dwtfnmfpl-3.0.yml index 0a916ff27b4..45abde074a2 100644 --- a/src/licensedcode/data/licenses/dwtfnmfpl-3.0.yml +++ b/src/licensedcode/data/licenses/dwtfnmfpl-3.0.yml @@ -4,5 +4,4 @@ name: DWTFNMFPL-3.0 category: Permissive owner: dittodhole homepage_url: https://github.com/dittodhole/WTFNMFPLv3 -notes: A variation Do What The Fuck You Want - Public License (WTFPL) by Sam Hocevar. \ No newline at end of file +notes: A variant on the Do What The Fuck You Want Public License (WTFPL) by Sam Hocevar. diff --git a/src/licensedcode/data/licenses/ecma-documentation.yml b/src/licensedcode/data/licenses/ecma-documentation.yml index cd1bdc66ec7..d1fad23dcc5 100644 --- a/src/licensedcode/data/licenses/ecma-documentation.yml +++ b/src/licensedcode/data/licenses/ecma-documentation.yml @@ -1,6 +1,6 @@ key: ecma-documentation short_name: ECMA Documentation License name: ECMA Documentation License -category: Free restricted +category: Free Restricted owner: Ecma International homepage_url: http://www.ecma-international.org/publications/DISCLAIMER.pdf diff --git a/src/licensedcode/data/licenses/ecma-no-patent.yml b/src/licensedcode/data/licenses/ecma-no-patent.yml index 4a145e11dc0..b3eef53c95c 100644 --- a/src/licensedcode/data/licenses/ecma-no-patent.yml +++ b/src/licensedcode/data/licenses/ecma-no-patent.yml @@ -4,4 +4,4 @@ name: ECMA no patent notice category: Proprietary Free owner: Ecma International homepage_url: http://www.ecma-international.org/memento/codeofconduct.htm -is_exception: yes \ No newline at end of file +is_exception: yes diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-0.yml b/src/licensedcode/data/licenses/ecma-patent-coc-0.yml index 647f53bf4ba..bc07fc9288b 100644 --- a/src/licensedcode/data/licenses/ecma-patent-coc-0.yml +++ b/src/licensedcode/data/licenses/ecma-patent-coc-0.yml @@ -1,7 +1,7 @@ key: ecma-patent-coc-0 -short_name: ECMA Historical Code of Conduct in Patent Matters +short_name: ECMA Historical Code of Conduct in Patent Matters name: ECMA Historical Code of Conduct in Patent Matters category: Proprietary Free owner: Ecma International homepage_url: http://www.ecma-international.org/memento/historical%20codeofconduct.htm -notes: valid until December 3, 2009 \ No newline at end of file +notes: valid until December 3, 2009 diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-2.yml b/src/licensedcode/data/licenses/ecma-patent-coc-2.yml index 1ce44570386..3d81bb6be2b 100644 --- a/src/licensedcode/data/licenses/ecma-patent-coc-2.yml +++ b/src/licensedcode/data/licenses/ecma-patent-coc-2.yml @@ -1,5 +1,5 @@ key: ecma-patent-coc-2 -short_name: ECMA Code of Conduct in Patent Matters v2 +short_name: ECMA Code of Conduct in Patent Matters v2 name: ECMA Code of Conduct in Patent Matters v2 category: Proprietary Free owner: Ecma International diff --git a/src/licensedcode/data/licenses/flora-1.1.yml b/src/licensedcode/data/licenses/flora-1.1.yml index b180b8a4c7d..de65e10a797 100644 --- a/src/licensedcode/data/licenses/flora-1.1.yml +++ b/src/licensedcode/data/licenses/flora-1.1.yml @@ -1,14 +1,11 @@ key: flora-1.1 short_name: Flora License v1.1 name: Flora License v1.1 -category: Proprietary +category: Proprietary Free owner: Tizen Association - +notes: there was a version 1.0 before https://web.archive.org/web/20130224120957/http://floralicense.org:80/license/ other_urls: - https://github.com/lirriel/first1/blob/123928934e4231c75d63d1a222b2dfedca7308cc/AlarmUI/NOTICE - https://github.com/search?q=%22Flora+License+%22&type=Code - http://floralicense.org/ - https://review.tizen.org/git/?p=apps/home/taskmanager.git;a=blob_plain;f=LICENSE;hb=HEAD - -notes: there was a version 1.0 before - https://web.archive.org/web/20130224120957/http://floralicense.org:80/license/ diff --git a/src/licensedcode/data/licenses/freetype-patent.yml b/src/licensedcode/data/licenses/freetype-patent.yml index 336d9ccc1f8..13575b9f5d5 100644 --- a/src/licensedcode/data/licenses/freetype-patent.yml +++ b/src/licensedcode/data/licenses/freetype-patent.yml @@ -4,6 +4,6 @@ name: freetype patent grant category: Permissive owner: freetype homepage_url: https://www.freetype.org/ -notes: This patemt grant clause is similat to Apache-2.0 section 3 and is - sometimes seen used alone with the freetype license. +notes: This patent grant clause is similat to Apache-2.0 section 3 and is sometimes seen used + alone with the freetype license. minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/jpnic-idnkit.yml b/src/licensedcode/data/licenses/jpnic-idnkit.yml index 190b5933def..9f5f0476fa5 100644 --- a/src/licensedcode/data/licenses/jpnic-idnkit.yml +++ b/src/licensedcode/data/licenses/jpnic-idnkit.yml @@ -7,4 +7,4 @@ homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ text_urls: - https://dev.w3.org/libwww/modules/idn/LICENSE.txt other_urls: - - https://jprs.co.jp/idn/ \ No newline at end of file + - https://jprs.co.jp/idn/ diff --git a/src/licensedcode/data/licenses/jpnic-mdnkit.yml b/src/licensedcode/data/licenses/jpnic-mdnkit.yml index 66dd5fa433b..949f1a98863 100644 --- a/src/licensedcode/data/licenses/jpnic-mdnkit.yml +++ b/src/licensedcode/data/licenses/jpnic-mdnkit.yml @@ -4,7 +4,7 @@ name: JPNIC mdnkit license category: Proprietary Free owner: JPNIC homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ +notes: this is essentially the same license as the jpnic-idnkit license with extra terms making + it proprietary text_urls: - https://www.nic.ad.jp/ja/idn/mdnkit/download/documents/idnkit-1.0pr1-doc/LICENSE.txt -notes: this is essentially the same license as the jpnic-idnkit license with - extra terms making it proprietary \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jython.yml b/src/licensedcode/data/licenses/jython.yml index 22bd5be5dc6..d6af1ad9915 100644 --- a/src/licensedcode/data/licenses/jython.yml +++ b/src/licensedcode/data/licenses/jython.yml @@ -6,3 +6,4 @@ owner: Python Software Foundation (PSF) homepage_url: http://www.jython.org/license.txt text_urls: - http://www.jython.org/license.txt +notes: this is a complex composite of multiple licenses \ No newline at end of file diff --git a/src/licensedcode/data/licenses/libmng-2007.LICENSE b/src/licensedcode/data/licenses/libmng-2007.LICENSE new file mode 100644 index 00000000000..53a31e14922 --- /dev/null +++ b/src/licensedcode/data/licenses/libmng-2007.LICENSE @@ -0,0 +1,25 @@ +The MNG Library is supplied "AS IS". The Contributing Authors +disclaim all warranties, expressed or implied, including, without +limitation, the warranties of merchantability and of fitness for any +purpose. The Contributing Authors assume no liability for direct, +indirect, incidental, special, exemplary, or consequential damages, +which may result from the use of the MNG Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented; + you must not claim that you wrote the original software. + +2. Altered versions must be plainly marked as such and must not be + misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any source + or altered source distribution. + +The Contributing Authors specifically permit, without fee, and +encourage the use of this source code as a component to supporting +the MNG and JNG file format in commercial products. If you use this +source code in a product, acknowledgment would be highly appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/libmng-2007.yml b/src/licensedcode/data/licenses/libmng-2007.yml new file mode 100644 index 00000000000..982b9dfa135 --- /dev/null +++ b/src/licensedcode/data/licenses/libmng-2007.yml @@ -0,0 +1,47 @@ +key: libmng-2007 +short_name: libmng License 2007 +name: libmng License 2007 +category: Permissive +owner: libmng Project +other_urls: + - http://www.linuxfromscratch.org/blfs/view/cvs/general/libmng.html +standard_notice: | + Copyright (c) 2000-2007 Gerard Juyn (gerard@libmng.com) + [You may insert additional notices after this sentence if you modify + this source] + For the purposes of this copyright and license, "Contributing Authors" + is defined as the following set of individuals: + Gerard Juyn + Glenn Randers-Pehrson + The MNG Library is supplied "AS IS". The Contributing Authors + disclaim all warranties, expressed or implied, including, without + limitation, the warranties of merchantability and of fitness for any + purpose. The Contributing Authors assume no liability for direct, + indirect, incidental, special, exemplary, or consequential damages, + which may result from the use of the MNG Library, even if advised of + the possibility of such damage. + Permission is hereby granted to use, copy, modify, and distribute this + source code, or portions hereof, for any purpose, without fee, subject + to the following restrictions: + 1. The origin of this source code must not be misrepresented; + you must not claim that you wrote the original software. + 2. Altered versions must be plainly marked as such and must not be + misrepresented as being the original source. + 3. This Copyright notice may not be removed or altered from any source + or altered source distribution. + The Contributing Authors specifically permit, without fee, and + encourage the use of this source code as a component to supporting + the MNG and JNG file format in commercial products. If you use this + source code in a product, acknowledgment would be highly appreciated. + Parts of this software have been adapted from the libpng package. + Although this library supports all features from the PNG specification + (as MNG descends from it) it does not require the libpng package. + It does require the zlib library and optionally the IJG jpeg library, + and/or the "little-cms" library by Marti Maria (depending on the + inclusion of support for JNG and Full-Color-Management respectively. + This library's function is primarily to read and display MNG + animations. It is not meant as a full-featured image-editing + component! It does however offer creation and editing functionality + at the chunk level. + (future modifications may include some more support for creation + and or editing) diff --git a/src/licensedcode/data/licenses/maxmind-odl.yml b/src/licensedcode/data/licenses/maxmind-odl.yml index 918bca24fe5..b0b29cdefd9 100644 --- a/src/licensedcode/data/licenses/maxmind-odl.yml +++ b/src/licensedcode/data/licenses/maxmind-odl.yml @@ -4,6 +4,5 @@ name: Maxmind Open Data License category: Free Restricted owner: Maxmind homepage_url: https://geolite.maxmind.com/download/geoip/database/LICENSE.txt - -notes: This license is mostly the same as a bsd-original (or rather a - bsd-simplified with and advertizing clause) +notes: This license is mostly the same as a bsd-original (or rather a bsd-simplified with and + advertizing clause) diff --git a/src/licensedcode/data/licenses/mit-old-style-no-advert.yml b/src/licensedcode/data/licenses/mit-old-style-no-advert.yml index b8fdea4c646..114710078c4 100644 --- a/src/licensedcode/data/licenses/mit-old-style-no-advert.yml +++ b/src/licensedcode/data/licenses/mit-old-style-no-advert.yml @@ -4,4 +4,8 @@ name: MIT Old Style no advertising category: Permissive owner: MIT homepage_url: http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29 -notes: this is rather similar to the NTP license \ No newline at end of file +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NTP +osi_url: https://opensource.org/licenses/NTP +other_urls: + - http://www.opensource.org/licenses/NTP diff --git a/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.yml b/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.yml index e31d3b8a138..e7f4a77a081 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.yml +++ b/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.yml @@ -6,4 +6,4 @@ owner: Microsoft homepage_url: http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm other_urls: - http://go.microsoft.com/fwlink/?LinkId=210218 - - https://www.microsoft.com/web/webpi/eula/ASPNET-Web-Pages-Template-License.rtf \ No newline at end of file + - https://www.microsoft.com/web/webpi/eula/ASPNET-Web-Pages-Template-License.rtf diff --git a/src/licensedcode/data/licenses/ms-visual-2015-sdk.yml b/src/licensedcode/data/licenses/ms-visual-2015-sdk.yml index 01bfc78612e..76c8f1f601f 100644 --- a/src/licensedcode/data/licenses/ms-visual-2015-sdk.yml +++ b/src/licensedcode/data/licenses/ms-visual-2015-sdk.yml @@ -6,4 +6,3 @@ owner: Microsoft homepage_url: https://visualstudio.microsoft.com/license-terms/mt171586/ other_urls: - http://go.microsoft.com/fwlink/?LinkID=614949 - diff --git a/src/licensedcode/data/licenses/ms-visual-studio-2017.LICENSE b/src/licensedcode/data/licenses/ms-visual-studio-2017.LICENSE new file mode 100644 index 00000000000..5d72ac2a191 --- /dev/null +++ b/src/licensedcode/data/licenses/ms-visual-studio-2017.LICENSE @@ -0,0 +1,201 @@ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT VISUAL STUDIO ENTERPRISE 2017, VISUAL STUDIO PROFESSIONAL 2017, VISUAL STUDIO TEST PROFESSIONAL 2017 AND TRIAL EDITION + +These license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services and updates for the software, except to the extent those have different terms. + +BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. INSTEAD, RETURN IT TO THE RETAILER FOR A REFUND OR CREDIT. If you cannot obtain a refund there, contact Microsoft about Microsoft’s refund policies. See www.microsoft.com/worldwide. In the United States and Canada, call (800) MICROSOFT or see www.microsoft.com/info/nareturns.htm. + +________________________________________________________________________________________ + +TRIAL EDITION USE RIGHTS. If the software is a trial edition, this Section applies to your use of the trial edition. + +A. GENERAL. You may use any number of copies of the trial edition on your devices. You may only use the trial edition for internal evaluation purposes, and only during the trial period. You may not distribute or deploy any applications you make with the trial edition to a production environment. You may run load tests of up to 250 virtual users during the trial period. + +B. TRIAL PERIOD AND CONVERSION. The trial period lasts for 30 days after you install the trial edition, plus any permitted extension period. After the expiration of the trial period, the trial edition will stop running. You may extend the trial period an additional 90 days if you sign in to the software. You may not be able to access data used with the trial edition when it stops running. You may convert your trial rights at any time to the full-use rights described below by acquiring a valid full-use license. + +C. DISCLAIMER OF WARRANTY. THE TRIAL EDITION IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + +FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + +D. SUPPORT. Because the trial edition is “as is,” we may not provide support services for it. + +E. LIMITATIONS ON DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + +This limitation applies to (a) anything related to the trial version, services, content (including code) on third party Internet sites, or third party programs; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + +FULL-USE LICENSE TERMS FOR THE SOFTWARE: When you acquire a valid license and either enter a product key or sign in to the software, the terms below apply. You may not share your product key or access credentials. + +1. OVERVIEW. + +a. Software. The software includes development tools, applications and documentation. + +b. License Model. The software is licensed on a per user basis. + +2. USE RIGHTS. + +a. General. One user may use copies of the software on your devices to develop and test applications. This includes using copies of the software on your own internal servers that remain fully dedicated to your own use. You may not, however, separate the components of the software and run those in a production environment, + +or on third party devices (except as otherwise stated in this agreement), or for any purpose other than developing and testing your applications. Running the software on Microsoft Azure requires a separate license. + +b. Workloads. These license terms apply to your use of the Workloads made available to you within the software, except to the extent a Workload or a Workload component comes with different terms. + +c. Demo Use. The use permitted above includes use of the software in demonstrating your applications. + +d. Backup copy. You may make one backup copy of the software, for reinstalling the software. + +3. TERMS FOR SPECIFIC COMPONENTS. a. Utilities. The software contains items on the Utilities List at https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install those items, if included with the software, onto your devices to debug and deploy your applications and databases you developed with the software. Please note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update Utilities separately from the rest of the software, and that some Utilities by their nature may make it possible for others to access the devices on which they are installed. As a result, you should delete all Utilities you have installed after you finish debugging or deploying your applications and databases. Microsoft is not responsible for any third party use or access of Utilities you install on any device. + +b. Build Tools. You may copy and install files from the software onto your build devices, including physical devices and virtual machines or containers on those machines, whether on-premises or remote machines that are owned by you, hosted on Azure for you, or dedicated solely to your use (collectively, “Build Devices”). You and others in your organization may use these files on your Build Devices solely to compile, build, and verify applications or run quality or performance tests of those applications as part of the build process. For clarity, “applications” means applications developed by you and others in your organization who are each licensed to use the software. + +c. Font Components. While the software is running, you may use its fonts to display and print content. You may only: (i) embed fonts in content as permitted by the embedding restrictions in the fonts; and (ii) temporarily download them to a printer or other output device to help print content. + +d. Licenses for Other Components. + +· Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft “Licenses” folder accompanying the software, except that, if separate license terms for those components are included in the associated installation directly, those license terms control. + +· Developer resources. The software includes compilers, languages, runtimes, environments, and other resources. These components may be governed by separate agreements and have their own product support policies. A list of these other components is located at https://support.microsoft.com. + +Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. + +e. PACKAGE MANAGERS. The software includes package managers, like NuGet, that give you the option to download other Microsoft and third party software packages to use with your application. Those packages are under their own licenses, and not this agreement. Microsoft does not distribute, license or provide any warranties for any of the third party packages. + +4. DISTRIBUTABLE CODE. The software contains code that you are permitted to distribute in applications you develop as described in this Section. (For this Section the term “distribution” also means deployment of your applications for third parties to access over the Internet.) + +a. Right to Use and Distribute. The code and text files listed below are “Distributable Code.” + +* REDIST.TXT Files. You may copy and distribute the object code form of code listed on the REDIST list located at https://go.microsoft.com/fwlink/?linkid=823097. + +* Sample Code, Templates and Styles. You may copy, modify and distribute the source and object code form of code marked as “sample”, “template”, “simple styles” and “sketch styles”. + +* Image Library. You may copy and distribute images, graphics and animations in the Image Library as described in the software documentation. + +* Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. + +b. Distribution Requirements. For any Distributable Code you distribute, you must: + +* add significant primary functionality to it in your applications; + +* require distributors and external end users to agree to terms that protect the Distributable Code at least as much as this agreement; and + +* indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the Distributable Code. + +c. Distribution Restrictions. You may not: + +* use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or + +* modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. + +5. DATA. + +a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. + +b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at http://go.microsoft.com/?linkid=9840733. + +6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + +* work around any technical limitations in the software; + +* reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; + +* remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + +* use the software in any way that is against the law; + +* share, publish, rent or lease the software, or provide the software as a stand-alone offering for others to use. + +7. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + +8. NOT FOR RESALE SOFTWARE. You may not sell software marked as “NFR” or “Not for Resale.” + +9. RIGHTS TO USE OTHER VERSIONS AND LOWER EDITIONS. You may use the software and any prior version on any device. You may create, store, install, run, or access in place of the version licensed, a copy or + +instance of a prior version, different permitted language version, or lower edition. + +10. PROOF OF LICENSE. If you acquired the software on a disc or other media, your proof of license is the Microsoft certificate of authenticity label, the accompanying product key, and your receipt. If you purchased an online copy of the software, your proof of license is the Microsoft product key you received with your purchase and your receipt and/or being able to access the software service through your Microsoft account. To identify genuine Microsoft software, see www.howtotell.com. + +11. TRANSFER TO A THIRD PARTY. If you are a valid licensee of the software, you may transfer it and this agreement directly to another party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The transfer must include the software, genuine Microsoft product key, and (if applicable) the Proof of License label. The transferor must uninstall all copies of the software after transferring it from the device. The transferor may not retain any copies of the genuine Microsoft product key to be transferred, and may only retain copies of the software if otherwise licensed to do so. If you have acquired a non-perpetual license to use the software or if the software is marked Not for Resale you may not transfer the software or the software license agreement to another party. + +12. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. 13. SUPPORT. Microsoft provides support for the software as described at https://support.microsoft.com. + +14. ENTIRE AGREEMENT. This agreement (including the warranty below), and the terms for supplements, updates, Internet-based services and support services, are the entire agreement for the software and support services. + +15. APPLICABLE LAW. If you acquired the software in the United States, Washington State law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquire the software in any other country, its laws apply. + +16. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or if mandatory country law applies, then the following provisions apply to you: + +a) Australia. References to “Limited Warranty” mean the express warranty provided by Microsoft or the manufacturer or installer. This warranty is in addition to other rights and remedies you may have under law, including your rights and remedies under the statutory guarantees in the Australian Consumer Law. + +In this section, “goods” refers to the software for which Microsoft or the manufacturer or installer provides the express warranty. Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure. + +b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + +c) Germany and Austria. + +(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. + +(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, and death or personal or physical injury, Microsoft is liable according to the statutory law. + +Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. + +17. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO THE AMOUNT YOU PAID FOR THE SOFTWARE. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + +This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. + +************************************************************************* + +LIMITED WARRANTY + +A. LIMITED WARRANTY. If you follow the instructions, the software will perform substantially as described in the Microsoft materials that you receive in or with the software. + +References to “limited warranty” are references to the express warranty provided by Microsoft. This warranty is given in addition to other rights and remedies you may have under law, including your rights and remedies in accordance with the statutory guarantees under local Consumer Law. + +B. TERM OF WARRANTY; WARRANTY RECIPIENT; LENGTH OF ANY IMPLIED WARRANTIES. THE LIMITED WARRANTY COVERS THE SOFTWARE FOR ONE YEAR AFTER ACQUIRED BY THE FIRST USER. IF YOU RECEIVE SUPPLEMENTS, UPDATES, OR REPLACEMENT SOFTWARE DURING THAT YEAR, THEY WILL BE COVERED FOR THE REMAINDER OF THE WARRANTY OR 30 DAYS, WHICHEVER IS LONGER. If the first user transfers the software, the remainder of the warranty will apply to the recipient. + +TO THE EXTENT PERMITTED BY LAW, ANY IMPLIED WARRANTIES, GUARANTEES OR CONDITIONS LAST ONLY DURING THE TERM OF THE LIMITED WARRANTY. Some states do not allow limitations on how long an implied warranty lasts, so these limitations may not apply to you. They also might not apply to you because some countries may not allow limitations on how long an implied warranty, guarantee or condition lasts. + +C. EXCLUSIONS FROM WARRANTY. This warranty does not cover problems caused by your acts (or failures to act), the acts of others, or events beyond Microsoft’s reasonable control. + +D. REMEDY FOR BREACH OF WARRANTY. MICROSOFT WILL REPAIR OR REPLACE THE SOFTWARE AT NO CHARGE. IF MICROSOFT CANNOT REPAIR OR REPLACE IT, MICROSOFT WILL REFUND THE AMOUNT SHOWN ON YOUR RECEIPT FOR THE SOFTWARE. IT WILL ALSO REPAIR OR REPLACE SUPPLEMENTS, UPDATES AND REPLACEMENT SOFTWARE AT NO CHARGE. IF MICROSOFT CANNOT REPAIR OR REPLACE THEM, IT WILL REFUND THE AMOUNT YOU PAID FOR THEM, IF ANY. YOU MUST UNINSTALL THE SOFTWARE AND RETURN ANY MEDIA AND OTHER ASSOCIATED MATERIALS TO MICROSOFT WITH PROOF OF PURCHASE TO OBTAIN A REFUND. THESE ARE YOUR ONLY REMEDIES FOR BREACH OF THE LIMITED WARRANTY. + +E. CONSUMER RIGHTS NOT AFFECTED. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS, WHICH THIS AGREEMENT CANNOT CHANGE. + +F. WARRANTY PROCEDURES. You need proof of purchase for warranty service. + +1. United States and Canada. For warranty service or information about how to obtain a refund for software acquired in the United States and Canada, contact Microsoft at: + +* (800) MICROSOFT; + +* Microsoft Customer Service and Support, One Microsoft Way, Redmond, WA 98052-6399; or + +* visit (aka.ms/nareturns). + +2. Europe, Middle East, and Africa. If you acquired the software in Europe, the Middle East, or Africa, Microsoft Ireland Operations Limited makes this limited warranty. To make a claim under this warranty, you should contact either: + +* Microsoft Ireland Operations Limited, Customer Care Centre, Atrium Building Block B, Carmanhall Road, Sandyford Industrial Estate, Dublin 18, Ireland; or + +* the Microsoft affiliate serving your country (see aka.ms/msoffices). + +3. Australia. For Warranty Services and to claim expenses in relation to the warranty (if applicable) for software acquired in Australia, contact Microsoft at: + +* 13 20 58; or + +* Microsoft Pty Ltd, 1 Epping Road, North Ryde NSW 2113, Australia. + +4. Outside the United States, Canada, Europe, Middle East, Africa, and Australia. If you acquired the software outside the United States, Canada, Europe, the Middle East, Africa, and Australia, contact the Microsoft affiliate serving your country (see aka.ms/msoffices). + +G. NO OTHER WARRANTIES. THE LIMITED WARRANTY IS THE ONLY DIRECT WARRANTY FROM + +MICROSOFT. MICROSOFT GIVES NO OTHER EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. WHERE ALLOWED BY YOUR LOCAL LAWS, MICROSOFT EXCLUDES IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. If your local laws give you any implied warranties, guarantees or conditions, despite this exclusion, your remedies are described in the Remedy for Breach of Warranty clause above, to the extent permitted by your local laws. + +FOR AUSTRALIA ONLY. References to “Limited Warranty” are references to the warranty provided by Microsoft. This warranty is given in addition to other rights and remedies you may have under law, including your rights and remedies in accordance with the statutory guarantees under the Australian Consumer Law. Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure. Goods presented for repair may be replaced by refurbished goods of the same type rather than being replaced. Refurbished parts may be used to repair the goods. + +H. LIMITATION ON AND EXCLUSION OF DAMAGES FOR BREACH OF WARRANTY. THE LIMITATION ON AND EXCLUSION OF DAMAGES CLAUSE ABOVE APPLIES TO BREACHES OF THIS LIMITED WARRANTY. + +THIS WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM STATE TO STATE. YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM COUNTRY TO COUNTRY. + +EULA ID: VS2017_ENT_PRO_TRIAL_RTW.2_ENU \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-visual-studio-2017.yml b/src/licensedcode/data/licenses/ms-visual-studio-2017.yml new file mode 100644 index 00000000000..c8dc763b1f8 --- /dev/null +++ b/src/licensedcode/data/licenses/ms-visual-studio-2017.yml @@ -0,0 +1,9 @@ +key: ms-visual-studio-2017 +short_name: MS Visual Studio 2017 +name: Microsoft Visual Studio 2017 +category: Commercial +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/mlt687465/ +text_urls: + - See https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx +faq_url: https://visualstudio.microsoft.com/wp-content/uploads/2017/11/Visual-Studio-2018-Licensing-Whitepaper-November-2017.pdf diff --git a/src/licensedcode/data/licenses/ntpl.yml b/src/licensedcode/data/licenses/ntpl.yml index 6e05fdc739f..2703622f0e4 100644 --- a/src/licensedcode/data/licenses/ntpl.yml +++ b/src/licensedcode/data/licenses/ntpl.yml @@ -1,11 +1,10 @@ key: ntpl +is_deprecated: yes short_name: NTP License name: Network Time Protocol License category: Permissive owner: University of Delaware homepage_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: NTP text_urls: - http://www.opensource.org/licenses/ntp-license.php osi_url: http://www.opensource.org/licenses/ntp-license.php @@ -13,3 +12,4 @@ faq_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html other_urls: - http://www.opensource.org/licenses/NTP - http://www.pgpool.net/mediawiki/index.php/pgpool-II_License +notes: replaced by mit-old-style-no-advert \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openmap.yml b/src/licensedcode/data/licenses/openmap.yml index b73320b36a5..56381b05109 100644 --- a/src/licensedcode/data/licenses/openmap.yml +++ b/src/licensedcode/data/licenses/openmap.yml @@ -4,5 +4,5 @@ name: OpenMap Software License Agreement category: Commercial owner: BBN homepage_url: http://openmap-java.org/License.html +notes: this is highly similar to an artistic license minimum_coverage: 60 -notes: this highly similar to an artistic license \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openssh.LICENSE b/src/licensedcode/data/licenses/openssh.LICENSE new file mode 100644 index 00000000000..ca264777073 --- /dev/null +++ b/src/licensedcode/data/licenses/openssh.LICENSE @@ -0,0 +1,340 @@ +This file is part of the OpenSSH software. + +The licences which components of this software fall under are as +follows. First, we will summarize and say that all components +are under a BSD licence, or a licence more free than that. + +OpenSSH contains no GPL code. + +1) + * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland + * All rights reserved + * + * As far as I am concerned, the code I have written for this software + * can be used freely for any purpose. Any derived versions of this + * software must be clearly marked as such, and if the derived work is + * incompatible with the protocol description in the RFC file, it must be + * called by a name other than "ssh" or "Secure Shell". + + [Tatu continues] + * However, I am not implying to give any licenses to any patents or + * copyrights held by third parties, and the software includes parts that + * are not under my direct control. As far as I know, all included + * source code is used in accordance with the relevant license agreements + * and can be used freely for any purpose (the GNU license being the most + * restrictive); see below for details. + + [However, none of that term is relevant at this point in time. All of + these restrictively licenced software components which he talks about + have been removed from OpenSSH, i.e., + + - RSA is no longer included, found in the OpenSSL library + - IDEA is no longer included, its use is deprecated + - DES is now external, in the OpenSSL library + - GMP is no longer used, and instead we call BN code from OpenSSL + - Zlib is now external, in a library + - The make-ssh-known-hosts script is no longer included + - TSS has been removed + - MD5 is now external, in the OpenSSL library + - RC4 support has been replaced with ARC4 support from OpenSSL + - Blowfish is now external, in the OpenSSL library + + [The licence continues] + + Note that any information and cryptographic algorithms used in this + software are publicly available on the Internet and at any major + bookstore, scientific library, and patent office worldwide. More + information can be found e.g. at "http://www.cs.hut.fi/crypto". + + The legal status of this program is some combination of all these + permissions and restrictions. Use only at your own responsibility. + You will be responsible for any legal consequences yourself; I am not + making any claims whether possessing or using this is legal or not in + your country, and I am not taking any responsibility on your behalf. + + + NO WARRANTY + + BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY + FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN + OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES + PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED + OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS + TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE + PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, + REPAIR OR CORRECTION. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR + REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, + INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING + OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED + TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY + YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER + PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. + +2) + The 32-bit CRC compensation attack detector in deattack.c was + contributed by CORE SDI S.A. under a BSD-style license. + + * Cryptographic attack detector for ssh - source code + * + * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina. + * + * All rights reserved. Redistribution and use in source and binary + * forms, with or without modification, are permitted provided that + * this copyright notice is retained. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR + * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS + * SOFTWARE. + * + * Ariel Futoransky + * + +3) + ssh-keyscan was contributed by David Mazieres under a BSD-style + license. + + * Copyright 1995, 1996 by David Mazieres . + * + * Modification and redistribution in source and binary forms is + * permitted provided that due credit is given to the author and the + * OpenBSD project by leaving this copyright notice intact. + +4) + The Rijndael implementation by Vincent Rijmen, Antoon Bosselaers + and Paulo Barreto is in the public domain and distributed + with the following license: + + * @version 3.0 (December 2000) + * + * Optimised ANSI C code for the Rijndael cipher (now AES) + * + * @author Vincent Rijmen + * @author Antoon Bosselaers + * @author Paulo Barreto + * + * This code is hereby placed in the public domain. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''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 AUTHORS 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. + +5) + One component of the ssh source code is under a 3-clause BSD license, + held by the University of California, since we pulled these parts from + original Berkeley code. + + * Copyright (c) 1983, 1990, 1992, 1993, 1995 + * The Regents of the University of California. 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 University 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 REGENTS 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 REGENTS 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. + +6) + Remaining components of the software are provided under a standard + 2-term BSD licence with the following names as copyright holders: + + Markus Friedl + Theo de Raadt + Niels Provos + Dug Song + Aaron Campbell + Damien Miller + Kevin Steves + Daniel Kouril + Wesley Griffin + Per Allansson + Nils Nordman + Simon Wilkinson + + Portable OpenSSH additionally includes code from the following copyright + holders, also under the 2-term BSD license: + + Ben Lindstrom + Tim Rice + Andre Lucas + Chris Adams + Corinna Vinschen + Cray Inc. + Denis Parker + Gert Doering + Jakob Schlyter + Jason Downs + Juha Yrjˆl‰ + Michael Stone + Networks Associates Technology, Inc. + Solar Designer + Todd C. Miller + Wayne Schroeder + William Jones + Darren Tucker + Sun Microsystems + The SCO Group + Daniel Walsh + Red Hat, Inc + Simon Vallet / Genoscope + + * 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. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + +8) Portable OpenSSH contains the following additional licenses: + + a) md5crypt.c, md5crypt.h + + * "THE BEER-WARE LICENSE" (Revision 42): + * wrote this file. As long as you retain this + * notice you can do whatever you want with this stuff. If we meet + * some day, and you think this stuff is worth it, you can buy me a + * beer in return. Poul-Henning Kamp + + b) snprintf replacement + + * Copyright Patrick Powell 1995 + * This code is based on code written by Patrick Powell + * (papowell@astart.com) It may be used for any purpose as long as this + * notice remains intact on all source code distributions + + c) Compatibility code (openbsd-compat) + + Apart from the previously mentioned licenses, various pieces of code + in the openbsd-compat/ subdirectory are licensed as follows: + + Some code is licensed under a 3-term BSD license, to the following + copyright holders: + + Todd C. Miller + Theo de Raadt + Damien Miller + Eric P. Allman + The Regents of the University of California + Constantin S. Svintsoff + + * 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 University 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 REGENTS 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 REGENTS 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. + + Some code is licensed under an ISC-style license, to the following + copyright holders: + + Internet Software Consortium. + Todd C. Miller + Reyk Floeter + Chad Mynhier + + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL + * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE + * FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Some code is licensed under a MIT-style license to the following + copyright holders: + + Free Software Foundation, Inc. + + * Permission is hereby granted, free of charge, to any person obtaining a * + * copy of this software and associated documentation files (the * + * "Software"), to deal in the Software without restriction, including * + * without limitation the rights to use, copy, modify, merge, publish, * + * distribute, distribute with modifications, sublicense, and/or sell * + * copies of the Software, and to permit persons to whom the Software is * + * furnished to do so, subject to the following conditions: * + * * + * The above copyright notice and this permission notice shall be included * + * in all copies or substantial portions of the Software. * + * * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * + * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * + * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * + * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * + * * + * Except as contained in this notice, the name(s) of the above copyright * + * holders shall not be used in advertising or otherwise to promote the * + * sale, use or other dealings in this Software without prior written * + * authorization. * + ****************************************************************************/ + + +------ +$OpenBSD: LICENCE,v 1.19 2004/08/30 09:18:08 markus Exp $ \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openssh.yml b/src/licensedcode/data/licenses/openssh.yml new file mode 100644 index 00000000000..900cc08b44e --- /dev/null +++ b/src/licensedcode/data/licenses/openssh.yml @@ -0,0 +1,9 @@ +key: openssh +short_name: OpenSSH License +name: OpenSSH License +category: Permissive +owner: OpenBSD Project +homepage_url: https://github.com/openssh/openssh-portable/blob/V_7_3_P1/LICENCE +other_urls: + - http://www.openssh.org/ +minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/redis-sala-proprietary-1.0.yml b/src/licensedcode/data/licenses/redis-sala-proprietary-1.0.yml deleted file mode 100644 index 083e2cf4681..00000000000 --- a/src/licensedcode/data/licenses/redis-sala-proprietary-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -key: redis-sala-proprietary-1.0 -short_name: Redis Source Available License Agreement 1.0 -name: Redis Source Available License Agreement 1.0 -category: Proprietary -owner: Redis Labs Ltd. diff --git a/src/licensedcode/data/licenses/redis-sala-proprietary-1.0.LICENSE b/src/licensedcode/data/licenses/redis-source-available-1.0.LICENSE similarity index 100% rename from src/licensedcode/data/licenses/redis-sala-proprietary-1.0.LICENSE rename to src/licensedcode/data/licenses/redis-source-available-1.0.LICENSE diff --git a/src/licensedcode/data/licenses/redis-source-available-1.0.yml b/src/licensedcode/data/licenses/redis-source-available-1.0.yml new file mode 100644 index 00000000000..b458d8afb6d --- /dev/null +++ b/src/licensedcode/data/licenses/redis-source-available-1.0.yml @@ -0,0 +1,9 @@ +key: redis-source-available-1.0 +short_name: Redis Source Available License 1.0 +name: Redis Source Available License Agreement 1.0 +category: Proprietary Free +owner: Redis Labs +homepage_url: https://github.com/RedisLabsModules/RedisGraph/blob/v1.0.14/LICENSE +other_urls: + - https://techcrunch.com/2019/02/21/redis-labs-changes-its-open-source-license-again/ + - https://www.zdnet.com/article/redis-labs-drops-commons-clause-for-a-new-license/ diff --git a/src/licensedcode/data/licenses/softfloat-2.0.yml b/src/licensedcode/data/licenses/softfloat-2.0.yml index 6d63e7b9579..caeb17a305a 100644 --- a/src/licensedcode/data/licenses/softfloat-2.0.yml +++ b/src/licensedcode/data/licenses/softfloat-2.0.yml @@ -4,6 +4,6 @@ name: SoftFloat Legal Notice with Prominent Notice category: Permissive owner: John R. Hauser homepage_url: http://www.jhauser.us/arithmetic/SoftFloat.html +notes: this license with extra requirements was used for Softfloat v2 and in the linux kernel. + The newest v3 uses a plain bsd-new license minimum_coverage: 90 -notes: this license with extra requirements - was used for Softfloat v2 and in the linux kernel. The newest v3 uses a plain bsd-new license \ No newline at end of file diff --git a/src/licensedcode/data/licenses/splunk-3pp-eula.LICENSE b/src/licensedcode/data/licenses/splunk-3pp-eula.LICENSE new file mode 100644 index 00000000000..edf3c0d9816 --- /dev/null +++ b/src/licensedcode/data/licenses/splunk-3pp-eula.LICENSE @@ -0,0 +1,16 @@ +End User License Agreement for Third-Party Content +READ CAREFULLY: LICENSOR LICENSES THIS PROGRAM, TOOL, PLUG-IN, ADD-ON, APPLICATION, LIBRARY, CONTENT, DATA, SOLUTION, SERVICE OR OTHER ITEM OR MATERIAL (THE "CONTENT") TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS END USER LICENSE AGREEMENT ("AGREEMENT"). + +Splunk Apps hosts certain content created and published by individuals and entities other than Splunk Inc. or its affiliates ("Splunk"). Such third-party content made available through Splunk Apps are licensed, not sold, to you. Your license to each content that you obtain through Splunk Apps is subject to your prior acceptance of this End User License Agreement, and you agree that the terms of this Agreement will apply to each Content that you license through Splunk Apps. + +Responsibility. If you are downloading, accessing or using the Content provided or authored by a third-party developer or provider, this Agreement is solely between the developer or provider of the Content ("Licensor") and you, and not with Splunk. Licensor, and not Splunk, is solely responsible for the Content, including, without limitation, for any warranties, maintenance and support, notices and consents to be given to Users. You agree to foregoing even if the Content has been examined against best practices for Splunk development, deemed cloud compatible or otherwise vetted by Splunk. Notwithstanding the above, you acknowledge that Splunk is a third-party beneficiary of this Agreement and that upon your acceptance of the terms of this Agreement, Splunk will have the right to enforce the Agreement against you as a third-party beneficiary thereof. Questions, complaints or claims with respect to the Content should be directed solely to the Licensor, whose contact information can be found on the Content Download Page from which the Content is downloaded. + +Qualified User. The Content is to be used only in conjunction with the specific Splunk software product or service identified in materials distributed with the Content, with which such Content was designed to operate ("Splunk Software"). Therefore, you may use the Content only if you are an authorized user of the Splunk Software. This Agreement does not modify or alter the terms of the software license agreement delivered with the Splunk Software. + +License. Subject to the terms and conditions of this Agreement, Licensor grants to you a license to download and use the Content in connection with the Splunk Software. + +Warranty. THE CONTENT IS FURNISHED ON AN "AS IS" BASIS, AND LICENSOR DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, WARRANTIES OF NON-INFRINGEMENT OF THIRD-PARTY RIGHTS, OR OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND ANY WARRANTIES ARISING BY STATUTE OR OTHERWISE IN LAW, OR FROM A COURSE OF DEALING OR USAGE OF TRADE. LICENSOR SPECIFICALLY DOES NOT WARRANT THAT THE CONTENT WILL MEET YOUR REQUIREMENTS; WILL OPERATE IN ALL THE COMBINATIONS WHICH MAY BE SELECTED FOR USE BY YOU; THAT THE OPERATION OF THE CONTENT WILL BE ERROR-FREE OR UNINTERRUPTED, ACCURATE, USEFUL, RELIABLE, OR COMPLETE; OR THAT ALL ERRORS OR DEFECTS IN THE CONTENT WILL BE CORRECTED. NEITHER SPLUNK NOR LICENSOR SHALL BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING FROM OR RELATING TO YOUR USE OR INABILITY TO USE THE CONTENT. YOU USE THE CONTENT AT YOUR OWN RISK. + +Limitation of Liability. UNDER NO CIRCUMSTANCES WILL SPLUNK OR LICENSOR BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR EXEMPLARY DAMAGES, FOR LOSS OF PROFITS, USE, REVENUE, OR DATA OR FOR BUSINESS INTERRUPTION (REGARDLESS OF THE LEGAL THEORY FOR SEEKING SUCH DAMAGES OR OTHER LIABILITY) ARISING OUT OF OR IN CONNECTION WITH USE OF THE CONTENT, WHETHER OR NOT SPLUNK OR LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ADDITION, THE LIABILITY OF SPLUNK OR LICENSOR ARISING OUT OF OR RELATING TO THE CONTENT WILL NOT EXCEED THE AMOUNT PAID OR PAYABLE BY YOU (IF ANY) FOR SUCH CONTENT. + +General. This Agreement will be governed by and construed in accordance with the laws of the State of California (and, to the extent controlling, the federal laws of the United States, without reference to the conflicts-of-laws rules thereof). The UN Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transaction Act shall not apply to this Agreement. This Agreement constitutes the entire agreement between Licensor and you with respect to the Content and may not be modified except by a written instrument executed by you and an authorized representative of Licensor. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/splunk-3pp-eula.yml b/src/licensedcode/data/licenses/splunk-3pp-eula.yml new file mode 100644 index 00000000000..9420354f401 --- /dev/null +++ b/src/licensedcode/data/licenses/splunk-3pp-eula.yml @@ -0,0 +1,8 @@ +key: splunk-3pp-eula +short_name: Splunk EULA for Third-Party Content +name: Splunk EULA for Third-Party Content +category: Proprietary Free +owner: Splunk +homepage_url: https://d38o4gzaohghws.cloudfront.net/static/misc/eula.html +other_urls: + - https://splunkbase.splunk.com/app/3173/ diff --git a/src/licensedcode/data/licenses/stlport-2000.LICENSE b/src/licensedcode/data/licenses/stlport-2000.LICENSE new file mode 100644 index 00000000000..e7953113c3f --- /dev/null +++ b/src/licensedcode/data/licenses/stlport-2000.LICENSE @@ -0,0 +1,26 @@ +STLport License Agreement + +Boris Fomitchev grants Licensee a non-exclusive, non-transferable, royalty- free license to use STLport and its documentation without fee. + +By downloading, using, or copying STLport or any portion thereof, Licensee agrees to abide by the intellectual property laws and all other applicable laws of the United States of America, and to all of the terms and conditions of this Agreement. + +Licensee shall maintain the following copyright and permission notices on STLport sources and its documentation unchanged : + +Copyright 1999,2000 Boris Fomitchev + +This material is provided "as is", with absolutely no warranty expressed or implied. Any use is at your own risk. Permission to use or copy this software for any purpose is hereby granted without fee, provided the above notices are retained on all copies. Permission to modify the code and to distribute modified code is granted, provided the above notices are retained, and a notice that the code was modified is included with the above copyright notice. + +The Licensee may distribute binaries compiled with STLport (whether original or modified) without any royalties or restrictions. + +The Licensee may distribute original or modified STLport sources, provided that: +• The conditions indicated in the above permission notice are met; +• The following copyright notices are retained when present, and conditions provided in accompanying permission notices are met : +Copyright 1994 Hewlett-Packard Company +Copyright 1996,97 Silicon Graphics Computer Systems, Inc. +Copyright 1997 Moscow Center for SPARC Technology. + +Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Hewlett-Packard Company makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. + +Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Silicon Graphics makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. + +Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Moscow Center for SPARC Technology makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/stlport-2000.yml b/src/licensedcode/data/licenses/stlport-2000.yml new file mode 100644 index 00000000000..92dc615671b --- /dev/null +++ b/src/licensedcode/data/licenses/stlport-2000.yml @@ -0,0 +1,6 @@ +key: stlport-2000 +short_name: STLport License 2000 +name: STLport License 2000 +category: Permissive +owner: STLport Consulting +minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/unicode-icu-58.LICENSE b/src/licensedcode/data/licenses/unicode-icu-58.LICENSE new file mode 100644 index 00000000000..248b447d45f --- /dev/null +++ b/src/licensedcode/data/licenses/unicode-icu-58.LICENSE @@ -0,0 +1,414 @@ +COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) + +Copyright © 1991-2016 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +--------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +1. ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # 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. + # Neither the name of Google Inc. 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 OWNER 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. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyrighy (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . 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. + # * . Neither the name of the TaBE Project 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 + # * REGENTS 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. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . 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. + # * . Neither the name of the Computer Systems and Communication Lab + # * 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 + # * REGENTS 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. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + +3. Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (c) 2013 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: http://code.google.com/p/lao-dictionary/ + # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary, with slight + # modifications. + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, + # are permitted provided that the following conditions are met: + # + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. 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. + # + # + # 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. + # -------------------------------------------------------------------------- + +4. Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. 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. + # + # Neither the name Myanmar Karen Word Lists, 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. + # -------------------------------------------------------------------------- + +5. Time Zone Database + + ICU uses the public domain data and code derived from Time Zone +Database for its time zone support. The ownership of the TZ database +is explained in BCP 175: Procedure for Maintaining the Time Zone +Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + +6. Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Google Inc. 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 +OWNER 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. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/unicode-icu-58.yml b/src/licensedcode/data/licenses/unicode-icu-58.yml new file mode 100644 index 00000000000..ee68b3c97d7 --- /dev/null +++ b/src/licensedcode/data/licenses/unicode-icu-58.yml @@ -0,0 +1,7 @@ +key: unicode-icu-58 +short_name: ICU License 58 and later +name: ICU License 58 and later +category: Permissive +owner: Unicode Consortium +homepage_url: https://www.open-xchange.com/fileadmin/user_upload/images/portfolio/license/ICU_License.pdf +minimum_coverage: 80 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.yml b/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.yml index 282fcded5b5..10c8e5a74c9 100644 --- a/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.yml +++ b/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.yml @@ -3,5 +3,5 @@ short_name: Unlimited linking exception to GPL name: Unlimited linking exception to GPL category: Copyleft Limited owner: Free Software Foundation (FSF) +notes: this is a rare variant of an LGPL exception foudn in glibc is_exception: yes -notes: this is a rare variant of an LGPL exception foudn in glibc \ No newline at end of file diff --git a/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE b/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE index 83c559a670e..0b98c0a2645 100644 --- a/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE +++ b/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE @@ -1,20 +1,20 @@ --- Grant of Unlimited Rights --- --- Under contracts , the U.S. Government obtained --- unlimited rights in the software and documentation contained herein. --- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making --- this public release, the Government intends to confer upon all --- recipients unlimited rights equal to those held by the Government. --- These rights include rights to use, duplicate, release or disclose the --- released technical data and computer software in whole or in part, in --- any manner and for any purpose whatsoever, and to have or permit others --- to do so. --- --- DISCLAIMER --- --- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR --- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED --- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE --- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE --- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A --- PARTICULAR PURPOSE OF SAID MATERIAL. \ No newline at end of file + Grant of Unlimited Rights + +Under contracts , the U.S. Government obtained +unlimited rights in the software and documentation contained herein. +Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making +this public release, the Government intends to confer upon all +recipients unlimited rights equal to those held by the Government. +These rights include rights to use, duplicate, release or disclose the +released technical data and computer software in whole or in part, in +any manner and for any purpose whatsoever, and to have or permit others +to do so. + + DISCLAIMER + +ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR +DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED +WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE +SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE +OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A +PARTICULAR PURPOSE OF SAID MATERIAL. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/us-govt-unlimited-rights.yml b/src/licensedcode/data/licenses/us-govt-unlimited-rights.yml index 2158a4d0bbf..4667e74e92e 100644 --- a/src/licensedcode/data/licenses/us-govt-unlimited-rights.yml +++ b/src/licensedcode/data/licenses/us-govt-unlimited-rights.yml @@ -1,7 +1,7 @@ key: us-govt-unlimited-rights short_name: US govt. Unlimited Rights name: US govt. Unlimited Rights -category: Unspecified +category: Permissive owner: US Government text_urls: - https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt diff --git a/src/licensedcode/data/licenses/verbatim-manual.yml b/src/licensedcode/data/licenses/verbatim-manual.yml index 61cbcec72c6..330a4ff8951 100644 --- a/src/licensedcode/data/licenses/verbatim-manual.yml +++ b/src/licensedcode/data/licenses/verbatim-manual.yml @@ -3,4 +3,4 @@ short_name: verbatim-manual name: Verbatim manual category: Copyleft owner: BPF Authors -notes: See https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/bpf_helpers_doc.py?h=v5.0-rc4#n202 \ No newline at end of file +notes: See https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/bpf_helpers_doc.py?h=v5.0-rc4#n202 diff --git a/src/licensedcode/data/licenses/wordnet.yml b/src/licensedcode/data/licenses/wordnet.yml index a60af63b829..a13edd5f2d5 100644 --- a/src/licensedcode/data/licenses/wordnet.yml +++ b/src/licensedcode/data/licenses/wordnet.yml @@ -5,4 +5,4 @@ category: Permissive owner: Princeton University homepage_url: http://wordnetcode.princeton.edu text_urls: - - http://wordnetcode.princeton.edu/3.0/LICENSE \ No newline at end of file + - http://wordnetcode.princeton.edu/3.0/LICENSE diff --git a/src/licensedcode/data/licenses/zpl-1.0.LICENSE b/src/licensedcode/data/licenses/zpl-1.0.LICENSE index 8b5781c9215..61fc28e43a2 100644 --- a/src/licensedcode/data/licenses/zpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/zpl-1.0.LICENSE @@ -1,84 +1,82 @@ -############################################################################## -# -# Zope Public License (ZPL) Version 1.0 -# ------------------------------------- -# -# Copyright (c) Digital Creations. All rights reserved. -# -# This license has been certified as Open Source(tm). -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# 1. Redistributions in 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. Digital Creations requests that attribution be given to Zope -# in any manner possible. Zope includes a "Powered by Zope" -# button that is installed by default. While it is not a license -# violation to remove this button, it is requested that the -# attribution remain. A significant investment has been put -# into Zope, and this effort will continue if the Zope community -# continues to grow. This is one way to assure that growth. -# -# 4. All advertising materials and documentation mentioning -# features derived from or use of this software must display -# the following acknowledgement: -# -# "This product includes software developed by Digital Creations -# for use in the Z Object Publishing Environment -# (http://www.zope.org/)." -# -# In the event that the product being advertised includes an -# intact Zope distribution (with copyright and license included) -# then this clause is waived. -# -# 5. Names associated with Zope or Digital Creations must not be used to -# endorse or promote products derived from this software without -# prior written permission from Digital Creations. -# -# 6. Modified redistributions of any form whatsoever must retain -# the following acknowledgment: -# -# "This product includes software developed by Digital Creations -# for use in the Z Object Publishing Environment -# (http://www.zope.org/)." -# -# Intact (re-)distributions of any official Zope release do not -# require an external acknowledgement. -# -# 7. Modifications are encouraged but must be packaged separately as -# patches to official Zope releases. Distributions that do not -# clearly separate the patches from the original work must be clearly -# labeled as unofficial distributions. Modifications which do not -# carry the name Zope may be packaged in any form, as long as they -# conform to all of the clauses above. -# -# -# Disclaimer -# -# THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY -# EXPRESSED 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 DIGITAL CREATIONS OR ITS -# 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. -# -# -# This software consists of contributions made by Digital Creations and -# many individuals on behalf of Digital Creations. Specific -# attributions are listed in the accompanying credits file. -# -############################################################################## +Zope Public License (ZPL) Version 1.0 +------------------------------------- + +Copyright (c) Digital Creations. All rights reserved. + +This license has been certified as Open Source(tm). + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions in 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. Digital Creations requests that attribution be given to Zope + in any manner possible. Zope includes a "Powered by Zope" + button that is installed by default. While it is not a license + violation to remove this button, it is requested that the + attribution remain. A significant investment has been put + into Zope, and this effort will continue if the Zope community + continues to grow. This is one way to assure that growth. + +4. All advertising materials and documentation mentioning + features derived from or use of this software must display + the following acknowledgement: + + "This product includes software developed by Digital Creations + for use in the Z Object Publishing Environment + (http://www.zope.org/)." + + In the event that the product being advertised includes an + intact Zope distribution (with copyright and license included) + then this clause is waived. + +5. Names associated with Zope or Digital Creations must not be used to + endorse or promote products derived from this software without + prior written permission from Digital Creations. + +6. Modified redistributions of any form whatsoever must retain + the following acknowledgment: + + "This product includes software developed by Digital Creations + for use in the Z Object Publishing Environment + (http://www.zope.org/)." + + Intact (re-)distributions of any official Zope release do not + require an external acknowledgement. + +7. Modifications are encouraged but must be packaged separately as + patches to official Zope releases. Distributions that do not + clearly separate the patches from the original work must be clearly + labeled as unofficial distributions. Modifications which do not + carry the name Zope may be packaged in any form, as long as they + conform to all of the clauses above. + + +Disclaimer + + THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY + EXPRESSED 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 DIGITAL CREATIONS OR ITS + 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. + + +This software consists of contributions made by Digital Creations and +many individuals on behalf of Digital Creations. Specific +attributions are listed in the accompanying credits file. + + diff --git a/src/licensedcode/data/rules/apache-2.0_162.RULE b/src/licensedcode/data/rules/apache-2.0_162.RULE new file mode 100644 index 00000000000..e938307fe26 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_162.RULE @@ -0,0 +1,2 @@ +The command line interpreter is covered by the Apache Software +License. See the org/apache/LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_162.yml b/src/licensedcode/data/rules/apache-2.0_162.yml new file mode 100644 index 00000000000..6eeb5ee7f0c --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_162.yml @@ -0,0 +1,4 @@ +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - org/apache/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_30.yml b/src/licensedcode/data/rules/apache-2.0_30.yml index cac18df0d87..c87eaf2b337 100644 --- a/src/licensedcode/data/rules/apache-2.0_30.yml +++ b/src/licensedcode/data/rules/apache-2.0_30.yml @@ -1,3 +1,4 @@ license_expression: apache-2.0 is_license_notice: yes notes: Apache license variant +minimum_coverage: 20 diff --git a/src/licensedcode/data/rules/bsd-1-clause3.RULE b/src/licensedcode/data/rules/bsd-1-clause3.RULE new file mode 100644 index 00000000000..e58de3826bd --- /dev/null +++ b/src/licensedcode/data/rules/bsd-1-clause3.RULE @@ -0,0 +1,17 @@ +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. + +THIS SOFTWARE IS PROVIDED BY ``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 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/src/licensedcode/data/rules/bsd-1-clause3.yml b/src/licensedcode/data/rules/bsd-1-clause3.yml new file mode 100644 index 00000000000..ddf6b5b24a0 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-1-clause3.yml @@ -0,0 +1,2 @@ +license_expression: bsd-1-clause +is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_312.RULE b/src/licensedcode/data/rules/bsd-new_312.RULE new file mode 100644 index 00000000000..34f831770e4 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_312.RULE @@ -0,0 +1,26 @@ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- 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. + +- Neither the name of the Developers 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 REGENTS 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_312.yml b/src/licensedcode/data/rules/bsd-new_312.yml new file mode 100644 index 00000000000..1940635e96d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_312.yml @@ -0,0 +1,2 @@ +license_expression: bsd-new +is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_jython_1.RULE b/src/licensedcode/data/rules/bsd-new_jython_1.RULE new file mode 100644 index 00000000000..1c70de16cc3 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_jython_1.RULE @@ -0,0 +1,30 @@ +Jython 2.0, 2.1 License +-------------------------------------------- + + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - 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. + + - Neither the name of the Developers 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 REGENTS 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_jython_1.yml b/src/licensedcode/data/rules/bsd-new_jython_1.yml new file mode 100644 index 00000000000..1940635e96d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_jython_1.yml @@ -0,0 +1,2 @@ +license_expression: bsd-new +is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_jython_2.RULE b/src/licensedcode/data/rules/bsd-new_jython_2.RULE new file mode 100644 index 00000000000..ae3893de96e --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_jython_2.RULE @@ -0,0 +1 @@ +Jython 2.0, 2.1 License diff --git a/src/licensedcode/data/rules/bsd-new_jython_2.yml b/src/licensedcode/data/rules/bsd-new_jython_2.yml new file mode 100644 index 00000000000..db87ab708c9 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_jython_2.yml @@ -0,0 +1,3 @@ +license_expression: bsd-new +is_license_reference: yes +relevance: 90 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_68.RULE b/src/licensedcode/data/rules/bsd-simplified_68.RULE new file mode 100644 index 00000000000..a0054cf9953 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_68.RULE @@ -0,0 +1,22 @@ +is licensed under the BSD 2-clause license: + +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. + +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 HOLDERS 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_68.yml b/src/licensedcode/data/rules/bsd-simplified_68.yml new file mode 100644 index 00000000000..83b73859177 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_68.yml @@ -0,0 +1,2 @@ +license_expression: bsd-simplified +is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_69.RULE b/src/licensedcode/data/rules/bsd-simplified_69.RULE new file mode 100644 index 00000000000..c46c4faab8b --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_69.RULE @@ -0,0 +1,22 @@ +the BSD 2-clause license: + +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. + +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 HOLDERS 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_69.yml b/src/licensedcode/data/rules/bsd-simplified_69.yml new file mode 100644 index 00000000000..83b73859177 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_69.yml @@ -0,0 +1,2 @@ +license_expression: bsd-simplified +is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-pd_7.RULE b/src/licensedcode/data/rules/cc-pd_7.RULE new file mode 100644 index 00000000000..8e4a7f5522d --- /dev/null +++ b/src/licensedcode/data/rules/cc-pd_7.RULE @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_7.yml b/src/licensedcode/data/rules/cc-pd_7.yml new file mode 100644 index 00000000000..fef87b23031 --- /dev/null +++ b/src/licensedcode/data/rules/cc-pd_7.yml @@ -0,0 +1,3 @@ +license_expression: cc-pd +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_8.RULE b/src/licensedcode/data/rules/cc-pd_8.RULE new file mode 100644 index 00000000000..1d0624848bb --- /dev/null +++ b/src/licensedcode/data/rules/cc-pd_8.RULE @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_8.yml b/src/licensedcode/data/rules/cc-pd_8.yml new file mode 100644 index 00000000000..fef87b23031 --- /dev/null +++ b/src/licensedcode/data/rules/cc-pd_8.yml @@ -0,0 +1,3 @@ +license_expression: cc-pd +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_9.RULE b/src/licensedcode/data/rules/cc-pd_9.RULE new file mode 100644 index 00000000000..8961a79a90f --- /dev/null +++ b/src/licensedcode/data/rules/cc-pd_9.RULE @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_9.yml b/src/licensedcode/data/rules/cc-pd_9.yml new file mode 100644 index 00000000000..fef87b23031 --- /dev/null +++ b/src/licensedcode/data/rules/cc-pd_9.yml @@ -0,0 +1,3 @@ +license_expression: cc-pd +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1.yml b/src/licensedcode/data/rules/dco-1.1.yml deleted file mode 100644 index 44379edf9fe..00000000000 --- a/src/licensedcode/data/rules/dco-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: dco-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/dco-1.1.RULE b/src/licensedcode/data/rules/dco-1.1_3.RULE similarity index 100% rename from src/licensedcode/data/rules/dco-1.1.RULE rename to src/licensedcode/data/rules/dco-1.1_3.RULE diff --git a/src/licensedcode/data/rules/dco-1.1_3.yml b/src/licensedcode/data/rules/dco-1.1_3.yml new file mode 100644 index 00000000000..6aa5650ebec --- /dev/null +++ b/src/licensedcode/data/rules/dco-1.1_3.yml @@ -0,0 +1,2 @@ +license_expression: dco-1.1 +is_license_text: yes diff --git a/src/licensedcode/data/rules/dco-1.1_4.RULE b/src/licensedcode/data/rules/dco-1.1_4.RULE new file mode 100644 index 00000000000..78056f33cbd --- /dev/null +++ b/src/licensedcode/data/rules/dco-1.1_4.RULE @@ -0,0 +1,48 @@ +Developer Certificate of Origin: +-------------------------------- + +To improve tracking of contributions to this project we will use a +process modeled on the modified DCO 1.1 and use a "sign-off" procedure +on patches that are being emailed around or contributed in any other +way. + +The sign-off is a simple line at the end of the explanation for the +patch, which certifies that you wrote it or otherwise have the right +to pass it on as an open-source patch. The rules are pretty simple: +if you can certify the below: + +By making a contribution to this project, I certify that: + +(a) The contribution was created in whole or in part by me and I have + the right to submit it under the open source license indicated in + the file; or + +(b) The contribution is based upon previous work that, to the best of + my knowledge, is covered under an appropriate open source License + and I have the right under that license to submit that work with + modifications, whether created in whole or in part by me, under + the same open source license (unless I am permitted to submit + under a different license), as indicated in the file; or + +(c) The contribution was provided directly to me by some other person + who certified (a), (b) or (c) and I have not modified it. + +(d) The contribution is made free of any other party's intellectual + property claims or rights. + +(e) I understand and agree that this project and the contribution are + public and that a record of the contribution (including all + personal information I submit with it, including my sign-off) is + maintained indefinitely and may be redistributed consistent with + this project or the open source license(s) involved. + + +then you just add a line saying + + Signed-off-by: Random J Developer + +You can do it by using option -s or --signoff when you commit + + git commit --signoff ... + +using your real name (sorry, no pseudonyms or anonymous contributions.) diff --git a/src/licensedcode/data/rules/dco-1.1_4.yml b/src/licensedcode/data/rules/dco-1.1_4.yml new file mode 100644 index 00000000000..6aa5650ebec --- /dev/null +++ b/src/licensedcode/data/rules/dco-1.1_4.yml @@ -0,0 +1,2 @@ +license_expression: dco-1.1 +is_license_text: yes diff --git a/src/licensedcode/data/rules/free-unknown_5.yml b/src/licensedcode/data/rules/free-unknown_5.yml index 0549809b697..cb64284d68a 100644 --- a/src/licensedcode/data/rules/free-unknown_5.yml +++ b/src/licensedcode/data/rules/free-unknown_5.yml @@ -1,3 +1,4 @@ license_expression: free-unknown is_license_reference: yes notes: typically for GPL but this can vary and be various versions +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_79.yml b/src/licensedcode/data/rules/free-unknown_79.yml index dd900dd1372..a80784c8746 100644 --- a/src/licensedcode/data/rules/free-unknown_79.yml +++ b/src/licensedcode/data/rules/free-unknown_79.yml @@ -1,3 +1,4 @@ license_expression: free-unknown is_license_notice: yes notes: Seen in gettext +relevance: 90 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_80.yml b/src/licensedcode/data/rules/free-unknown_80.yml index dd900dd1372..a80784c8746 100644 --- a/src/licensedcode/data/rules/free-unknown_80.yml +++ b/src/licensedcode/data/rules/free-unknown_80.yml @@ -1,3 +1,4 @@ license_expression: free-unknown is_license_notice: yes notes: Seen in gettext +relevance: 90 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_17.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_17.RULE new file mode 100644 index 00000000000..51d96857177 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_17.RULE @@ -0,0 +1 @@ +http://www.gnu.org/licenses/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_17.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_17.yml new file mode 100644 index 00000000000..f3eb3947b39 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_17.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.1-plus +is_license_reference: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_18.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_18.RULE new file mode 100644 index 00000000000..cf5a95b4024 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_18.RULE @@ -0,0 +1 @@ +https://www.gnu.org/licenses/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_18.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_18.yml new file mode 100644 index 00000000000..f3eb3947b39 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_18.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.1-plus +is_license_reference: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_14.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_14.RULE new file mode 100644 index 00000000000..d08be220b69 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_14.RULE @@ -0,0 +1,12 @@ + + +Permission is granted to copy, distribute and/or modify + this document under the terms of the GNU Free Documentation + License, Version 1.2 or any later version published by the + Free Software Foundation; with no Invariant Sections, with no + Front-Cover Texts, and with no Back-Cover Texts. A copy of + the license is included in the section entitled +license.gfdl + + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_14.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_14.yml new file mode 100644 index 00000000000..76fdf24e251 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_14.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.2-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_15.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_15.RULE new file mode 100644 index 00000000000..27a89f7cfd2 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_15.RULE @@ -0,0 +1,11 @@ + + +Permission is granted to copy, distribute and/or modify + this document under the terms of the GNU Free Documentation + License, Version 1.2 or any later version published by the + Free Software Foundation; with no Invariant Sections, with no + Front-Cover Texts, and with no Back-Cover Texts. A copy of + the license is included in the section entitled +license.gfdl + + diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_15.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_15.yml new file mode 100644 index 00000000000..76fdf24e251 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_15.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.2-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_5.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_5.RULE new file mode 100644 index 00000000000..e1e6a6e16ff --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_5.RULE @@ -0,0 +1,9 @@ +Permission is granted to copy, distribute and/or modify this document +under the terms of the GNU Free Documentation License, Version 1.2 +or any later version published by the Free Software Foundation; +with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts + +The GNU Free Documentation License is available from +\url{http://www.gnu.org/licenses/fdl.html} or by writing to +the Free Software Foundation, Inc., 51 Franklin Street, +Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_5.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_5.yml new file mode 100644 index 00000000000..76fdf24e251 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_5.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.2-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_6.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_6.RULE new file mode 100644 index 00000000000..c9d1b20d1e4 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_6.RULE @@ -0,0 +1,3 @@ + +This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at url="http://www.gnu.org/licenses/fdl.txt">http://www.gnu.org/licenses/fdl.txt). + diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_6.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_6.yml new file mode 100644 index 00000000000..76fdf24e251 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_6.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.2-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_7.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_7.RULE new file mode 100644 index 00000000000..97053f6c332 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_7.RULE @@ -0,0 +1,4 @@ +This material may only be distributed subject to the terms and conditions set +forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest + version is presently available at url="http://www.gnu.org/licenses/fdl.txt"> + http://www.gnu.org/licenses/fdl.txt). diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_7.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_7.yml new file mode 100644 index 00000000000..76fdf24e251 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_7.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.2-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_8.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_8.RULE new file mode 100644 index 00000000000..010a815311c --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_8.RULE @@ -0,0 +1,7 @@ + + This material may only be distributed subject to the terms and conditions set + forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest +version is presently available at url="http://www.gnu.org/licenses/fdl.txt">http://www.gnu.org/licenses/fdl.txt). + diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_8.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_8.yml new file mode 100644 index 00000000000..76fdf24e251 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_8.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.2-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.RULE new file mode 100644 index 00000000000..3a76cc23723 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.RULE @@ -0,0 +1,16 @@ +This manual is free documentation. It is dually licensed under the +GNU FDL and the GNU GPL. This means that you can redistribute this +manual under either of these two licenses, at your choice. + +This manual is covered by the GNU FDL. Permission is granted to copy, +distribute and/or modify this document under the terms of the GNU Free +Documentation License (FDL), either version 1.2 of the License, or (at +your option) any later version published by the Free Software Foundation +(FSF); with no Invariant Sections, with no Front-Cover Text, and with no +Back-Cover Texts. A copy of the license is included in *note GNU FDL::. + +This manual is covered by the GNU GPL. You can redistribute it and/or +modify it under the terms of the GNU General Public License (GPL), +either version 2 of the License, or (at your option) any later version +published by the Free Software Foundation (FSF). A copy of the license +is included in *note GNU GPL::. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.yml new file mode 100644 index 00000000000..fad12fd50b2 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.yml @@ -0,0 +1,2 @@ +license_expression: gfdl-1.2-plus OR gpl-2.0-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_335.yml b/src/licensedcode/data/rules/gpl-1.0-plus_335.yml index f26518d6a07..fcc7b8a0595 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_335.yml +++ b/src/licensedcode/data/rules/gpl-1.0-plus_335.yml @@ -1,4 +1,5 @@ license_expression: gpl-1.0-plus -is_license_notice: yes +is_license_notice: yes referenced_filenames: - COPYING +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE new file mode 100644 index 00000000000..ce1cf31064a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE @@ -0,0 +1,4 @@ + This file is part of , and is free software. You can + redistribute it and/or modify it under the terms of the GNU General + Public License (GPL); either version 2, or (at your option) any + later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_378.yml b/src/licensedcode/data/rules/gpl-2.0-plus_378.yml new file mode 100644 index 00000000000..4dd63d8726f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_378.yml @@ -0,0 +1,2 @@ +license_expression: gpl-2.0-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE new file mode 100644 index 00000000000..c70ad6ec3ed --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE @@ -0,0 +1,4 @@ +You can + redistribute it and/or modify it under the terms of the GNU General + Public License (GPL); either version 2, or (at your option) any + later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_379.yml b/src/licensedcode/data/rules/gpl-2.0-plus_379.yml new file mode 100644 index 00000000000..4dd63d8726f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_379.yml @@ -0,0 +1,2 @@ +license_expression: gpl-2.0-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_380.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_380.RULE new file mode 100644 index 00000000000..6e4f4c777cc --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_380.RULE @@ -0,0 +1,3 @@ +The + copyright holder is assumed to agree with the general licensing + terms (GPLv2+). diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_380.yml b/src/licensedcode/data/rules/gpl-2.0-plus_380.yml new file mode 100644 index 00000000000..13adc2eaf9b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_380.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE new file mode 100644 index 00000000000..239a9d81b7b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE @@ -0,0 +1,12 @@ +This file is part of , and is free software. You can +redistribute it and/or modify it under the terms of the GNU General Public +License as published by the Free Software Foundation; either version 2 of the +License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_381.yml b/src/licensedcode/data/rules/gpl-2.0-plus_381.yml new file mode 100644 index 00000000000..4dd63d8726f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_381.yml @@ -0,0 +1,2 @@ +license_expression: gpl-2.0-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE new file mode 100644 index 00000000000..5c9c1eddcb4 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE @@ -0,0 +1,2 @@ +This is free software,GNU General Public License (GPL); +either version 2, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_382.yml b/src/licensedcode/data/rules/gpl-2.0-plus_382.yml new file mode 100644 index 00000000000..13f8b1812a2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_382.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE new file mode 100644 index 00000000000..ea18de62ac8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE @@ -0,0 +1,3 @@ +This file is free software and is distributed under the terms of the GNU +General Public License (GPL); either version 2, or (at your option) any +later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_383.yml b/src/licensedcode/data/rules/gpl-2.0-plus_383.yml new file mode 100644 index 00000000000..13f8b1812a2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_383.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain.yml deleted file mode 100644 index e953736bfd9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus AND public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.RULE similarity index 100% rename from src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain.RULE rename to src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.RULE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.yml new file mode 100644 index 00000000000..a3e27982a71 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.yml @@ -0,0 +1,4 @@ +license_expression: gpl-2.0-plus AND public-domain +is_license_notice: yes +minimum_coverage: 95 +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.RULE new file mode 100644 index 00000000000..47145b4f471 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.RULE @@ -0,0 +1 @@ +License: GPLv2+ and Public Domain diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.yml new file mode 100644 index 00000000000..24749682d72 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0-plus AND public-domain +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_36.yml b/src/licensedcode/data/rules/gpl-2.0_36.yml index a01d13cd289..cb670604827 100644 --- a/src/licensedcode/data/rules/gpl-2.0_36.yml +++ b/src/licensedcode/data/rules/gpl-2.0_36.yml @@ -1,2 +1,3 @@ license_expression: gpl-2.0 is_license_reference: yes +relevance: 95 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_624.RULE b/src/licensedcode/data/rules/gpl-2.0_624.RULE new file mode 100644 index 00000000000..d68b622da2d --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_624.RULE @@ -0,0 +1,12 @@ +This library is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License version 2, as +published by the Free Software Foundation. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_624.yml b/src/licensedcode/data/rules/gpl-2.0_624.yml new file mode 100644 index 00000000000..00dd80a3671 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_624.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_625.RULE b/src/licensedcode/data/rules/gpl-2.0_625.RULE new file mode 100644 index 00000000000..2c1a53f8d77 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_625.RULE @@ -0,0 +1,18 @@ + + This documentation is free software; you can redistribute + it and/or modify it under the terms of the GNU General Public + License version 2 as published by the Free Software Foundation. + + This program is distributed in the hope that it will be + useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program; if not, write to the Free + Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301 USA. + + For more details see the file COPYING in the source + distribution of Linux. + diff --git a/src/licensedcode/data/rules/gpl-2.0_625.yml b/src/licensedcode/data/rules/gpl-2.0_625.yml new file mode 100644 index 00000000000..e443c71f823 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_625.yml @@ -0,0 +1,4 @@ +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_626.RULE b/src/licensedcode/data/rules/gpl-2.0_626.RULE new file mode 100644 index 00000000000..a1c546392e2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_626.RULE @@ -0,0 +1,16 @@ + This documentation is free software; you can redistribute + it and/or modify it under the terms of the GNU General Public + License version 2 as published by the Free Software Foundation. + + This program is distributed in the hope that it will be + useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program; if not, write to the Free + Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301 USA. + + For more details see the file COPYING in the source + distribution of Linux. diff --git a/src/licensedcode/data/rules/gpl-2.0_626.yml b/src/licensedcode/data/rules/gpl-2.0_626.yml new file mode 100644 index 00000000000..e443c71f823 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_626.yml @@ -0,0 +1,4 @@ +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_627.RULE b/src/licensedcode/data/rules/gpl-2.0_627.RULE new file mode 100644 index 00000000000..09463fd6989 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_627.RULE @@ -0,0 +1,2 @@ +cc:license + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" / diff --git a/src/licensedcode/data/rules/gpl-2.0_627.yml b/src/licensedcode/data/rules/gpl-2.0_627.yml new file mode 100644 index 00000000000..9418fb59077 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_627.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_628.RULE b/src/licensedcode/data/rules/gpl-2.0_628.RULE new file mode 100644 index 00000000000..022911c18aa --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_628.RULE @@ -0,0 +1,2 @@ + . diff --git a/src/licensedcode/data/rules/gpl-2.0_633.yml b/src/licensedcode/data/rules/gpl-2.0_633.yml new file mode 100644 index 00000000000..40bcbb97725 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_633.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.RULE new file mode 100644 index 00000000000..6b53ce0d16a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.RULE @@ -0,0 +1,3 @@ + + diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.yml new file mode 100644 index 00000000000..449b13eed9d --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0 AND epl-1.0 +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.RULE new file mode 100644 index 00000000000..2faebdbb2ad --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.RULE @@ -0,0 +1 @@ +http://creativecommons.org/licenses/GPL/2.0/ and http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.yml new file mode 100644 index 00000000000..075abb08fa4 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.yml @@ -0,0 +1,3 @@ +license_expression: gpl-2.0 AND epl-1.0 +is_license_reference: yes +relevance: 90 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.yml index 67dfcd0d121..8f5521af903 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.yml +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.yml @@ -1,4 +1,6 @@ license_expression: gpl-2.0 is_license_reference: yes minimum_coverage: 100 -notes: this is a symbol export from the Linux kernel +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +relevance: 60 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.yml index 31b69770119..7557cef78b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.yml +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.yml @@ -1,4 +1,5 @@ license_expression: gpl-2.0 is_license_reference: yes minimum_coverage: 100 -notes: this is a symbol export from the Linux kernel hence v2 of the GPL +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +relevance: 60 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.yml index a01d13cd289..7557cef78b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.yml +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.yml @@ -1,2 +1,5 @@ license_expression: gpl-2.0 is_license_reference: yes +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +relevance: 60 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.yml index 4a9aee85689..7557cef78b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.yml +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.yml @@ -1,3 +1,5 @@ license_expression: gpl-2.0 is_license_reference: yes -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 \ No newline at end of file +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +relevance: 60 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.RULE new file mode 100644 index 00000000000..23f056293ae --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.RULE @@ -0,0 +1 @@ +EXPORT_SYMBOL_GPL_FUTURE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.yml new file mode 100644 index 00000000000..7557cef78b6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.yml @@ -0,0 +1,5 @@ +license_expression: gpl-2.0 +is_license_reference: yes +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +relevance: 60 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.yml index 67dfcd0d121..7557cef78b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.yml +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.yml @@ -1,4 +1,5 @@ license_expression: gpl-2.0 is_license_reference: yes minimum_coverage: 100 -notes: this is a symbol export from the Linux kernel +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +relevance: 60 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE new file mode 100644 index 00000000000..e8f64978410 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE @@ -0,0 +1,12 @@ + GCC is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + + GCC is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_97.yml b/src/licensedcode/data/rules/gpl-3.0-plus_97.yml new file mode 100644 index 00000000000..013ccfaa4d1 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_97.yml @@ -0,0 +1,2 @@ +license_expression: gpl-3.0-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE new file mode 100644 index 00000000000..f49df38c6e7 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE @@ -0,0 +1,12 @@ + + is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +any later version. + is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. +You should have received a copy of the GNU General Public License +along with . If not, see https://www.gnu.org/licenses/. + diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_99.yml b/src/licensedcode/data/rules/gpl-3.0-plus_99.yml new file mode 100644 index 00000000000..013ccfaa4d1 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_99.yml @@ -0,0 +1,2 @@ +license_expression: gpl-3.0-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_125.yml b/src/licensedcode/data/rules/gpl_125.yml index 5c8568e5f3f..6272d523b60 100644 --- a/src/licensedcode/data/rules/gpl_125.yml +++ b/src/licensedcode/data/rules/gpl_125.yml @@ -1,2 +1,3 @@ license_expression: gpl-1.0-plus is_license_reference: yes +relevance: 80 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_226.RULE b/src/licensedcode/data/rules/gpl_226.RULE new file mode 100644 index 00000000000..ae6cb3c5e4a --- /dev/null +++ b/src/licensedcode/data/rules/gpl_226.RULE @@ -0,0 +1,2 @@ +is free software you can redistribute it and or modify it under the terms of +the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_226.yml b/src/licensedcode/data/rules/gpl_226.yml new file mode 100644 index 00000000000..116c9848025 --- /dev/null +++ b/src/licensedcode/data/rules/gpl_226.yml @@ -0,0 +1,3 @@ +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_227.RULE b/src/licensedcode/data/rules/gpl_227.RULE new file mode 100644 index 00000000000..f40f185d438 --- /dev/null +++ b/src/licensedcode/data/rules/gpl_227.RULE @@ -0,0 +1 @@ +free software (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_227.yml b/src/licensedcode/data/rules/gpl_227.yml new file mode 100644 index 00000000000..66111a906a2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl_227.yml @@ -0,0 +1,3 @@ +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpython-1.1_1.RULE b/src/licensedcode/data/rules/jpython-1.1_1.RULE new file mode 100644 index 00000000000..d5b13a6547e --- /dev/null +++ b/src/licensedcode/data/rules/jpython-1.1_1.RULE @@ -0,0 +1,85 @@ + +JPython 1.1.x Software License. +========================= + +______________________________________________________________________ + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON THE "ACCEPT" BUTTON WHERE INDICATED, OR BY INSTALLING, +COPYING OR OTHERWISE USING THE SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO +THE TERMS AND CONDITIONS OF THIS AGREEMENT. + +______________________________________________________________________ + +JPython version 1.1.x + +1. This LICENSE AGREEMENT is between the Corporation for National Research +Initiatives, having an office at 1895 Preston White Drive, Reston, VA +20191 ("CNRI"), and the Individual or Organization ("Licensee") +accessing and using JPython version 1.1.x in source or binary form and +its associated documentation as provided herein ("Software"). + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a non-exclusive, non-transferable, royalty-free, +world-wide license to reproduce, analyze, test, perform and/or display +publicly, prepare derivative works, distribute, and otherwise use the +Software alone or in any derivative version, provided, however, that +CNRI's License Agreement and CNRI's notice of copyright, i.e., +"Copyright ©1996-1999 Corporation for National Research Initiatives; +All Rights Reserved" are both retained in the Software, alone or in any +derivative version prepared by Licensee. + +Alternatively, in lieu of CNRI's License Agreement, Licensee may +substitute the following text (omitting the quotes), provided, however, +that such text is displayed prominently in the Software alone or in any +derivative version prepared by Licensee: "JPython (Version 1.1.x) is +made available subject to the terms and conditions in CNRI's License +Agreement. This Agreement may be located on the Internet using the +following unique, persistent identifier (known as a handle): +1895.22/1006. The License may also be obtained from a proxy server on +the Web using the following URL: http://hdl.handle.net/1895.22/1006." + +3. In the event Licensee prepares a derivative work that is based on or +incorporates the Software or any part thereof, and wants to make the +derivative work available to the public as provided herein, then +Licensee hereby agrees to indicate in any such work, in a prominently +visible way, the nature of the modifications made to CNRI's Software. + +4. Licensee may not use CNRI trademarks or trade name, including JPython +or CNRI, in a trademark sense to endorse or promote products or +services of Licensee, or any third party. Licensee may use the mark +JPython in connection with Licensee's derivative versions that are +based on or incorporate the Software, but only in the form +"JPython-based ___________________," or equivalent. + +5. CNRI is making the Software available to Licensee on an "AS IS" basis. +CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY +OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY +REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY +PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE +ANY THIRD PARTY RIGHTS. + +6. CNRI SHALL NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR +ANY INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF +USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE +THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME STATES DO NOT +ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER +MAY NOT APPLY TO LICENSEE. + +7. This License Agreement may be terminated by CNRI (i) immediately upon +written notice from CNRI of any material breach by the Licensee, if the +nature of the breach is such that it cannot be promptly remedied; or +(ii) sixty (60) days following notice from CNRI to Licensee of a +material remediable breach, if Licensee has not remedied such breach +within that sixty-day period. + +8. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of Virginia, excluding conflict of law +provisions. Nothing in this Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between CNRI and +Licensee. + +9. By clicking on the "ACCEPT" button where indicated, or by installing, +copying or otherwise using the Software, Licensee agrees to be bound by +the terms and conditions of this License Agreement. diff --git a/src/licensedcode/data/rules/jpython-1.1_1.yml b/src/licensedcode/data/rules/jpython-1.1_1.yml new file mode 100644 index 00000000000..ada6433188d --- /dev/null +++ b/src/licensedcode/data/rules/jpython-1.1_1.yml @@ -0,0 +1,2 @@ +license_expression: jpython-1.1 +is_license_text: yes diff --git a/src/licensedcode/data/rules/jython_2.RULE b/src/licensedcode/data/rules/jpython-1.1_2.RULE similarity index 100% rename from src/licensedcode/data/rules/jython_2.RULE rename to src/licensedcode/data/rules/jpython-1.1_2.RULE diff --git a/src/licensedcode/data/rules/jpython-1.1_2.yml b/src/licensedcode/data/rules/jpython-1.1_2.yml new file mode 100644 index 00000000000..ada6433188d --- /dev/null +++ b/src/licensedcode/data/rules/jpython-1.1_2.yml @@ -0,0 +1,2 @@ +license_expression: jpython-1.1 +is_license_text: yes diff --git a/src/licensedcode/data/rules/jython2.RULE b/src/licensedcode/data/rules/jython2.RULE new file mode 100644 index 00000000000..2466c5dd13a --- /dev/null +++ b/src/licensedcode/data/rules/jython2.RULE @@ -0,0 +1,3 @@ +originally licensed +under the GNU Public License. The package is now covered by the Jython +Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jython_1.yml b/src/licensedcode/data/rules/jython2.yml similarity index 100% rename from src/licensedcode/data/rules/jython_1.yml rename to src/licensedcode/data/rules/jython2.yml diff --git a/src/licensedcode/data/rules/jython3.RULE b/src/licensedcode/data/rules/jython3.RULE new file mode 100644 index 00000000000..cc5c79752eb --- /dev/null +++ b/src/licensedcode/data/rules/jython3.RULE @@ -0,0 +1,198 @@ +A. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING JYTHON +======================================================= + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Jython") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Jython alone +or in any derivative version, provided, however, that PSF's License +Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2007 +Python Software Foundation; All Rights Reserved" are retained in +Jython alone or in any derivative version prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Jython or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Jython. + +4. PSF is making Jython available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF JYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF JYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING JYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Jython, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + +Jython 2.0, 2.1 License +================================ + +Copyright (c) 2000-2009 Jython Developers. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- 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. + +- Neither the name of the Jython Developers 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 REGENTS 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. + + + + +JPython 1.1.x Software License. +========================= + +______________________________________________________________________ + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON THE "ACCEPT" BUTTON WHERE INDICATED, OR BY INSTALLING, +COPYING OR OTHERWISE USING THE SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO +THE TERMS AND CONDITIONS OF THIS AGREEMENT. + +______________________________________________________________________ + +JPython version 1.1.x + +1. This LICENSE AGREEMENT is between the Corporation for National Research +Initiatives, having an office at 1895 Preston White Drive, Reston, VA +20191 ("CNRI"), and the Individual or Organization ("Licensee") +accessing and using JPython version 1.1.x in source or binary form and +its associated documentation as provided herein ("Software"). + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a non-exclusive, non-transferable, royalty-free, +world-wide license to reproduce, analyze, test, perform and/or display +publicly, prepare derivative works, distribute, and otherwise use the +Software alone or in any derivative version, provided, however, that +CNRI's License Agreement and CNRI's notice of copyright, i.e., +"Copyright ©1996-1999 Corporation for National Research Initiatives; +All Rights Reserved" are both retained in the Software, alone or in any +derivative version prepared by Licensee. + +Alternatively, in lieu of CNRI's License Agreement, Licensee may +substitute the following text (omitting the quotes), provided, however, +that such text is displayed prominently in the Software alone or in any +derivative version prepared by Licensee: "JPython (Version 1.1.x) is +made available subject to the terms and conditions in CNRI's License +Agreement. This Agreement may be located on the Internet using the +following unique, persistent identifier (known as a handle): +1895.22/1006. The License may also be obtained from a proxy server on +the Web using the following URL: http://hdl.handle.net/1895.22/1006." + +3. In the event Licensee prepares a derivative work that is based on or +incorporates the Software or any part thereof, and wants to make the +derivative work available to the public as provided herein, then +Licensee hereby agrees to indicate in any such work, in a prominently +visible way, the nature of the modifications made to CNRI's Software. + +4. Licensee may not use CNRI trademarks or trade name, including JPython +or CNRI, in a trademark sense to endorse or promote products or +services of Licensee, or any third party. Licensee may use the mark +JPython in connection with Licensee's derivative versions that are +based on or incorporate the Software, but only in the form +"JPython-based ___________________," or equivalent. + +5. CNRI is making the Software available to Licensee on an "AS IS" basis. +CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY +OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY +REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY +PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE +ANY THIRD PARTY RIGHTS. + +6. CNRI SHALL NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR +ANY INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF +USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE +THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME STATES DO NOT +ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER +MAY NOT APPLY TO LICENSEE. + +7. This License Agreement may be terminated by CNRI (i) immediately upon +written notice from CNRI of any material breach by the Licensee, if the +nature of the breach is such that it cannot be promptly remedied; or +(ii) sixty (60) days following notice from CNRI to Licensee of a +material remediable breach, if Licensee has not remedied such breach +within that sixty-day period. + +8. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of Virginia, excluding conflict of law +provisions. Nothing in this Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between CNRI and +Licensee. + +9. By clicking on the "ACCEPT" button where indicated, or by installing, +copying or otherwise using the Software, Licensee agrees to be bound by +the terms and conditions of this License Agreement. + +[ACCEPT BUTTON] + +B. HISTORY OF THE SOFTWARE +======================================================= + +JPython was created in late 1997 by Jim Hugunin. Jim was also the +primary developer while he was at CNRI. In February 1999 Barry Warsaw +took over as primary developer and released JPython version 1.1. + +In October 2000 Barry helped move the software to SourceForge +where it was renamed to Jython. Jython 2.0 and 2.1 were developed +under the Jython specific license below. + +From the 2.2 release on, Jython contributors have signed +Python Software Foundation contributor agreements and releases are +covered under the Python Software Foundation license version 2. + +The standard library is covered by the Python Software Foundation +license as well. See the Lib/LICENSE file for details. + +The zxJDBC package was written by Brian Zimmer and originally licensed +under the GNU Public License. The package is now covered by the Jython +Software License. + +The command line interpreter is covered by the Apache Software +License. See the org/apache/LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jython3.yml b/src/licensedcode/data/rules/jython3.yml new file mode 100644 index 00000000000..fcbcbdf0270 --- /dev/null +++ b/src/licensedcode/data/rules/jython3.yml @@ -0,0 +1,3 @@ +license_expression: jython +is_license_text: yes +minimum_coverage: 80 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jython_1.RULE b/src/licensedcode/data/rules/jython_1.RULE deleted file mode 100644 index 9c8cc3f495d..00000000000 --- a/src/licensedcode/data/rules/jython_1.RULE +++ /dev/null @@ -1,32 +0,0 @@ -Jython 2.0, 2.1 License --------------------------------------------- - -Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - - 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. - - - Neither the name of the Jython Developers 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 REGENTS 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jython_2.yml b/src/licensedcode/data/rules/jython_2.yml deleted file mode 100644 index 8aff54152f6..00000000000 --- a/src/licensedcode/data/rules/jython_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: jython -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.yml index 571f854f961..5d7080fa9eb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.yml +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.yml @@ -1,3 +1,3 @@ license_expression: lgpl-2.0-plus is_license_tag: yes -relevance: 90 \ No newline at end of file +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE new file mode 100644 index 00000000000..94c88672777 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE @@ -0,0 +1,13 @@ +The GNU C Library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +The GNU C Library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_91.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_91.yml new file mode 100644 index 00000000000..18bddb7795a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_91.yml @@ -0,0 +1,2 @@ +license_expression: lgpl-2.1-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE new file mode 100644 index 00000000000..98ffea68d77 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE @@ -0,0 +1,13 @@ +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_92.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_92.yml new file mode 100644 index 00000000000..18bddb7795a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_92.yml @@ -0,0 +1,2 @@ +license_expression: lgpl-2.1-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE new file mode 100644 index 00000000000..2899db16cb4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE @@ -0,0 +1,14 @@ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_93.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_93.yml new file mode 100644 index 00000000000..18bddb7795a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_93.yml @@ -0,0 +1,2 @@ +license_expression: lgpl-2.1-plus +is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_100.RULE b/src/licensedcode/data/rules/lgpl-2.1_100.RULE new file mode 100644 index 00000000000..459df23d2e1 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_100.RULE @@ -0,0 +1,13 @@ +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; only +version 2.1 of the License. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1_100.yml b/src/licensedcode/data/rules/lgpl-2.1_100.yml new file mode 100644 index 00000000000..2f63b78d973 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_100.yml @@ -0,0 +1,2 @@ +license_expression: lgpl-2.1 +is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_81.yml b/src/licensedcode/data/rules/lgpl-2.1_81.yml index 2f63b78d973..0b81936c893 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_81.yml +++ b/src/licensedcode/data/rules/lgpl-2.1_81.yml @@ -1,2 +1,3 @@ license_expression: lgpl-2.1 is_license_notice: yes +relevance: 99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_100.yml b/src/licensedcode/data/rules/mit_100.yml index 6bf2c076268..d559bfacefe 100644 --- a/src/licensedcode/data/rules/mit_100.yml +++ b/src/licensedcode/data/rules/mit_100.yml @@ -1,2 +1,3 @@ license_expression: mit -is_license_reference: yes +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_172.yml b/src/licensedcode/data/rules/mit_172.yml index 6bf2c076268..1f28cca9222 100644 --- a/src/licensedcode/data/rules/mit_172.yml +++ b/src/licensedcode/data/rules/mit_172.yml @@ -1,2 +1,3 @@ license_expression: mit -is_license_reference: yes +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_228.RULE b/src/licensedcode/data/rules/mit_228.RULE new file mode 100644 index 00000000000..5d9e4b3c681 --- /dev/null +++ b/src/licensedcode/data/rules/mit_228.RULE @@ -0,0 +1 @@ +Licensed under MIT license diff --git a/src/licensedcode/data/rules/mit_228.yml b/src/licensedcode/data/rules/mit_228.yml new file mode 100644 index 00000000000..1f28cca9222 --- /dev/null +++ b/src/licensedcode/data/rules/mit_228.yml @@ -0,0 +1,3 @@ +license_expression: mit +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_229.RULE b/src/licensedcode/data/rules/mit_229.RULE new file mode 100644 index 00000000000..4d6af77e8aa --- /dev/null +++ b/src/licensedcode/data/rules/mit_229.RULE @@ -0,0 +1 @@ +Liscese is MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_229.yml b/src/licensedcode/data/rules/mit_229.yml new file mode 100644 index 00000000000..d559bfacefe --- /dev/null +++ b/src/licensedcode/data/rules/mit_229.yml @@ -0,0 +1,3 @@ +license_expression: mit +is_license_tag: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/network-time-protocol.yml b/src/licensedcode/data/rules/network-time-protocol.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/network-time-protocol.yml +++ b/src/licensedcode/data/rules/network-time-protocol.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/network-time-protocol2.yml b/src/licensedcode/data/rules/network-time-protocol2.yml index f57ba76b5b3..7f28db53b7a 100644 --- a/src/licensedcode/data/rules/network-time-protocol2.yml +++ b/src/licensedcode/data/rules/network-time-protocol2.yml @@ -1,3 +1,3 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/network-time-protocol3.yml b/src/licensedcode/data/rules/network-time-protocol3.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/network-time-protocol3.yml +++ b/src/licensedcode/data/rules/network-time-protocol3.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/network-time-protocol5.yml b/src/licensedcode/data/rules/network-time-protocol5.yml index d7b013894ac..9a8d1b84afe 100644 --- a/src/licensedcode/data/rules/network-time-protocol5.yml +++ b/src/licensedcode/data/rules/network-time-protocol5.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_text: yes diff --git a/src/licensedcode/data/rules/network-time-protocol_and_bsd-simplified_ntp.yml b/src/licensedcode/data/rules/network-time-protocol_and_bsd-simplified_ntp.yml index 475547d0ee8..bdb1f0e7274 100644 --- a/src/licensedcode/data/rules/network-time-protocol_and_bsd-simplified_ntp.yml +++ b/src/licensedcode/data/rules/network-time-protocol_and_bsd-simplified_ntp.yml @@ -1,2 +1,2 @@ -license_expression: ntpl AND bsd-simplified +license_expression: mit-old-style-no-advert AND bsd-simplified is_license_notice: yes diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_1.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_1.RULE new file mode 100644 index 00000000000..15cf5b3a94a --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_1.RULE @@ -0,0 +1,3 @@ +free software}{Software licensed under terms such as the +GNU GPL, which aims to enforce certain specified user freedoms such +as study, modification, and sharing.} diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_1.yml b/src/licensedcode/data/rules/not-a-license_systemtap_1.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_1.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_10.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_10.RULE new file mode 100644 index 00000000000..762607578f4 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_10.RULE @@ -0,0 +1 @@ +select="artheader/legalnotice"/> diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_10.yml b/src/licensedcode/data/rules/not-a-license_systemtap_10.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_10.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_11.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_11.RULE new file mode 100644 index 00000000000..4f7fc2c7482 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_11.RULE @@ -0,0 +1 @@ +test="$generate.legalnotice \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_11.yml b/src/licensedcode/data/rules/not-a-license_systemtap_11.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_11.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_2.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_2.RULE new file mode 100644 index 00000000000..693840cd9b2 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_2.RULE @@ -0,0 +1 @@ +offsets["mpl1 diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_2.yml b/src/licensedcode/data/rules/not-a-license_systemtap_2.yml new file mode 100644 index 00000000000..a0a6800df13 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_2.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap symbols \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_3.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_3.RULE new file mode 100644 index 00000000000..a88d48c3927 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_3.RULE @@ -0,0 +1 @@ +offsets["mpl2 diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_3.yml b/src/licensedcode/data/rules/not-a-license_systemtap_3.yml new file mode 100644 index 00000000000..a0a6800df13 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_3.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap symbols \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_4.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_4.RULE new file mode 100644 index 00000000000..a162ce7df8d --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_4.RULE @@ -0,0 +1 @@ +select="prefaceinfo/legalnotice"/> diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_4.yml b/src/licensedcode/data/rules/not-a-license_systemtap_4.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_4.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_5.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_5.RULE new file mode 100644 index 00000000000..5e440dfcf94 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_5.RULE @@ -0,0 +1 @@ +select="docinfo/legalnotice"/> diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_5.yml b/src/licensedcode/data/rules/not-a-license_systemtap_5.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_5.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_6.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_6.RULE new file mode 100644 index 00000000000..1ae35f09ccb --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_6.RULE @@ -0,0 +1 @@ +select="info/legalnotice"/> diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_6.yml b/src/licensedcode/data/rules/not-a-license_systemtap_6.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_6.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_7.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_7.RULE new file mode 100644 index 00000000000..b97fdc44fe1 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_7.RULE @@ -0,0 +1 @@ +select="bookinfo/legalnotice"/> diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_7.yml b/src/licensedcode/data/rules/not-a-license_systemtap_7.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_7.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_8.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_8.RULE new file mode 100644 index 00000000000..4fe52e6102b --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_8.RULE @@ -0,0 +1 @@ +template match="legalnotice \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_8.yml b/src/licensedcode/data/rules/not-a-license_systemtap_8.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_8.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_9.RULE b/src/licensedcode/data/rules/not-a-license_systemtap_9.RULE new file mode 100644 index 00000000000..774d7bdc8bc --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_9.RULE @@ -0,0 +1 @@ +select="articleinfo/legalnotice"/> diff --git a/src/licensedcode/data/rules/not-a-license_systemtap_9.yml b/src/licensedcode/data/rules/not-a-license_systemtap_9.yml new file mode 100644 index 00000000000..c1a0eaa9386 --- /dev/null +++ b/src/licensedcode/data/rules/not-a-license_systemtap_9.yml @@ -0,0 +1,2 @@ +is_negative: yes +notes: systemtap doc on licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntpl.yml b/src/licensedcode/data/rules/ntpl.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl.yml +++ b/src/licensedcode/data/rules/ntpl.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_1.yml b/src/licensedcode/data/rules/ntpl_1.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_1.yml +++ b/src/licensedcode/data/rules/ntpl_1.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_10.yml b/src/licensedcode/data/rules/ntpl_10.yml index d7b013894ac..9a8d1b84afe 100644 --- a/src/licensedcode/data/rules/ntpl_10.yml +++ b/src/licensedcode/data/rules/ntpl_10.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_text: yes diff --git a/src/licensedcode/data/rules/ntpl_11.yml b/src/licensedcode/data/rules/ntpl_11.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_11.yml +++ b/src/licensedcode/data/rules/ntpl_11.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_12.yml b/src/licensedcode/data/rules/ntpl_12.yml index 6e5adeb4461..20052ab238d 100644 --- a/src/licensedcode/data/rules/ntpl_12.yml +++ b/src/licensedcode/data/rules/ntpl_12.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes diff --git a/src/licensedcode/data/rules/ntpl_13.yml b/src/licensedcode/data/rules/ntpl_13.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_13.yml +++ b/src/licensedcode/data/rules/ntpl_13.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_14.yml b/src/licensedcode/data/rules/ntpl_14.yml index d7b013894ac..9a8d1b84afe 100644 --- a/src/licensedcode/data/rules/ntpl_14.yml +++ b/src/licensedcode/data/rules/ntpl_14.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_text: yes diff --git a/src/licensedcode/data/rules/ntpl_15.yml b/src/licensedcode/data/rules/ntpl_15.yml index 6e5adeb4461..20052ab238d 100644 --- a/src/licensedcode/data/rules/ntpl_15.yml +++ b/src/licensedcode/data/rules/ntpl_15.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes diff --git a/src/licensedcode/data/rules/ntpl_16.yml b/src/licensedcode/data/rules/ntpl_16.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_16.yml +++ b/src/licensedcode/data/rules/ntpl_16.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_17.yml b/src/licensedcode/data/rules/ntpl_17.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_17.yml +++ b/src/licensedcode/data/rules/ntpl_17.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_18.yml b/src/licensedcode/data/rules/ntpl_18.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_18.yml +++ b/src/licensedcode/data/rules/ntpl_18.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_19.yml b/src/licensedcode/data/rules/ntpl_19.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_19.yml +++ b/src/licensedcode/data/rules/ntpl_19.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_2.yml b/src/licensedcode/data/rules/ntpl_2.yml index 3cf6769a78e..00732385a8f 100644 --- a/src/licensedcode/data/rules/ntpl_2.yml +++ b/src/licensedcode/data/rules/ntpl_2.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_reference: yes diff --git a/src/licensedcode/data/rules/ntpl_3.yml b/src/licensedcode/data/rules/ntpl_3.yml index d7b013894ac..9a8d1b84afe 100644 --- a/src/licensedcode/data/rules/ntpl_3.yml +++ b/src/licensedcode/data/rules/ntpl_3.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_text: yes diff --git a/src/licensedcode/data/rules/ntpl_4.yml b/src/licensedcode/data/rules/ntpl_4.yml index d7b013894ac..9a8d1b84afe 100644 --- a/src/licensedcode/data/rules/ntpl_4.yml +++ b/src/licensedcode/data/rules/ntpl_4.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_text: yes diff --git a/src/licensedcode/data/rules/ntpl_5.yml b/src/licensedcode/data/rules/ntpl_5.yml index 6e5adeb4461..20052ab238d 100644 --- a/src/licensedcode/data/rules/ntpl_5.yml +++ b/src/licensedcode/data/rules/ntpl_5.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes diff --git a/src/licensedcode/data/rules/ntpl_6.yml b/src/licensedcode/data/rules/ntpl_6.yml index 6e5adeb4461..20052ab238d 100644 --- a/src/licensedcode/data/rules/ntpl_6.yml +++ b/src/licensedcode/data/rules/ntpl_6.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes diff --git a/src/licensedcode/data/rules/ntpl_7.yml b/src/licensedcode/data/rules/ntpl_7.yml index 6e5adeb4461..20052ab238d 100644 --- a/src/licensedcode/data/rules/ntpl_7.yml +++ b/src/licensedcode/data/rules/ntpl_7.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes diff --git a/src/licensedcode/data/rules/ntpl_8.yml b/src/licensedcode/data/rules/ntpl_8.yml index 6e5adeb4461..20052ab238d 100644 --- a/src/licensedcode/data/rules/ntpl_8.yml +++ b/src/licensedcode/data/rules/ntpl_8.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes diff --git a/src/licensedcode/data/rules/ntpl_9.yml b/src/licensedcode/data/rules/ntpl_9.yml index 6e5adeb4461..20052ab238d 100644 --- a/src/licensedcode/data/rules/ntpl_9.yml +++ b/src/licensedcode/data/rules/ntpl_9.yml @@ -1,2 +1,2 @@ -license_expression: ntpl +license_expression: mit-old-style-no-advert is_license_notice: yes diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.RULE new file mode 100644 index 00000000000..14d01685847 --- /dev/null +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.RULE @@ -0,0 +1,19 @@ + + The contents of this file are subject to the Open + Software License version 1.1 that can be found at + url="http://fedoraproject.org/wiki/Licensing:OSL1.1">http://fedoraproject.org/wiki/Licensing:OSL1.1 + and is included herein by reference. + + Alternatively, the contents of this file may be used under the terms + of the GNU General Public License version 2 (the "GPL") as distributed + in the kernel source COPYING file, in which case the provisions of + the GPL are applicable instead of the above. If you wish to allow + the use of your version of this file only under the terms of the + GPL and not to allow others to use your version of this file under + the OSL, indicate your decision by deleting the provisions above and + replace them with the notice and other provisions required by the GPL. + If you do not delete the provisions above, a recipient may use your + version of this file under either the OSL or the GPL. + + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.yml new file mode 100644 index 00000000000..81ee58717cd --- /dev/null +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.yml @@ -0,0 +1,4 @@ +license_expression: osl-1.1 OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING diff --git a/src/licensedcode/data/rules/other-permissive_57.RULE b/src/licensedcode/data/rules/other-permissive_57.RULE new file mode 100644 index 00000000000..69aaddf6e6c --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_57.RULE @@ -0,0 +1 @@ +This file, can be copied and used freely without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_57.yml b/src/licensedcode/data/rules/other-permissive_57.yml new file mode 100644 index 00000000000..4cb162f01c7 --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_57.yml @@ -0,0 +1,4 @@ +license_expression: other-permissive +is_license_notice: yes +notes: Seen in gettext +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_58.RULE b/src/licensedcode/data/rules/other-permissive_58.RULE new file mode 100644 index 00000000000..60d5368533e --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_58.RULE @@ -0,0 +1 @@ +can be copied and used freely without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_58.yml b/src/licensedcode/data/rules/other-permissive_58.yml new file mode 100644 index 00000000000..4cb162f01c7 --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_58.yml @@ -0,0 +1,4 @@ +license_expression: other-permissive +is_license_notice: yes +notes: Seen in gettext +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer.RULE b/src/licensedcode/data/rules/public-domain-disclaimer.RULE deleted file mode 100644 index bfb76ea16fa..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer.RULE +++ /dev/null @@ -1,13 +0,0 @@ -All code contained in this distributed is placed in the public domain. -============================================================= -Disclaimer: - -THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''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 AUTHORS 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/src/licensedcode/data/rules/public-domain-disclaimer.yml b/src/licensedcode/data/rules/public-domain-disclaimer.yml deleted file mode 100644 index ed6c21b9a87..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -notes: Variant found in AES-128 v3.0 License diff --git a/src/licensedcode/data/rules/public-domain_145.RULE b/src/licensedcode/data/rules/public-domain_145.RULE new file mode 100644 index 00000000000..1f8ec6c6737 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_145.RULE @@ -0,0 +1 @@ +This file is part of , and is free software in the public domain. diff --git a/src/licensedcode/data/rules/public-domain_145.yml b/src/licensedcode/data/rules/public-domain_145.yml new file mode 100644 index 00000000000..95831078f5e --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_145.yml @@ -0,0 +1,3 @@ +license_expression: public-domain +is_license_text: yes +relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_146.RULE b/src/licensedcode/data/rules/public-domain_146.RULE new file mode 100644 index 00000000000..05f4b1eb6aa --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_146.RULE @@ -0,0 +1 @@ +This file is free software in the public domain. diff --git a/src/licensedcode/data/rules/public-domain_146.yml b/src/licensedcode/data/rules/public-domain_146.yml new file mode 100644 index 00000000000..95831078f5e --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_146.yml @@ -0,0 +1,3 @@ +license_expression: public-domain +is_license_text: yes +relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_147.RULE b/src/licensedcode/data/rules/public-domain_147.RULE new file mode 100644 index 00000000000..ad9c9ec1d77 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_147.RULE @@ -0,0 +1 @@ +is free software in the public domain. diff --git a/src/licensedcode/data/rules/public-domain_147.yml b/src/licensedcode/data/rules/public-domain_147.yml new file mode 100644 index 00000000000..95831078f5e --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_147.yml @@ -0,0 +1,3 @@ +license_expression: public-domain +is_license_text: yes +relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_148.RULE b/src/licensedcode/data/rules/public-domain_148.RULE new file mode 100644 index 00000000000..f131c9dcb38 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_148.RULE @@ -0,0 +1,2 @@ + project, whose public domain code this + functionality has been based on \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_148.yml b/src/licensedcode/data/rules/public-domain_148.yml new file mode 100644 index 00000000000..d6a9ca47fdc --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_148.yml @@ -0,0 +1,3 @@ +license_expression: public-domain +is_license_reference: yes +relevance: 100 diff --git a/src/licensedcode/data/rules/python_22.RULE b/src/licensedcode/data/rules/python_22.RULE new file mode 100644 index 00000000000..5e7d4d6798d --- /dev/null +++ b/src/licensedcode/data/rules/python_22.RULE @@ -0,0 +1,50 @@ +A. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING JYTHON +======================================================= + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Jython") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Jython alone +or in any derivative version, provided, however, that PSF's License +Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2007 +Python Software Foundation; All Rights Reserved" are retained in +Jython alone or in any derivative version prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Jython or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Jython. + +4. PSF is making Jython available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF JYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF JYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING JYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Jython, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. diff --git a/src/licensedcode/data/rules/python_22.yml b/src/licensedcode/data/rules/python_22.yml new file mode 100644 index 00000000000..1be4f6ac9c2 --- /dev/null +++ b/src/licensedcode/data/rules/python_22.yml @@ -0,0 +1,2 @@ +license_expression: python +is_license_text: yes diff --git a/src/licensedcode/data/rules/python_23.RULE b/src/licensedcode/data/rules/python_23.RULE new file mode 100644 index 00000000000..e0cca95fcdb --- /dev/null +++ b/src/licensedcode/data/rules/python_23.RULE @@ -0,0 +1,3 @@ +contributors have signed +Python Software Foundation contributor agreements and releases are +covered under the Python Software Foundation license version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_23.yml b/src/licensedcode/data/rules/python_23.yml new file mode 100644 index 00000000000..839a1d2854a --- /dev/null +++ b/src/licensedcode/data/rules/python_23.yml @@ -0,0 +1,2 @@ +license_expression: python +is_license_notice: yes diff --git a/src/licensedcode/data/rules/python_24.RULE b/src/licensedcode/data/rules/python_24.RULE new file mode 100644 index 00000000000..69dda02c474 --- /dev/null +++ b/src/licensedcode/data/rules/python_24.RULE @@ -0,0 +1,2 @@ +The standard library is covered by the Python Software Foundation +license as well. See the Lib/LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_24.yml b/src/licensedcode/data/rules/python_24.yml new file mode 100644 index 00000000000..5e3fb8a722b --- /dev/null +++ b/src/licensedcode/data/rules/python_24.yml @@ -0,0 +1,4 @@ +license_expression: python +is_license_notice: yes +referenced_filenames: + - Lib/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_1.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_1.yml deleted file mode 100644 index 4f95a5462d4..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_2.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_2.yml deleted file mode 100644 index 089f9f91a09..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_3.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_3.yml deleted file mode 100644 index 4f95a5462d4..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_4.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_4.yml deleted file mode 100644 index 089f9f91a09..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_5.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_5.yml deleted file mode 100644 index 089f9f91a09..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_6.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_6.yml deleted file mode 100644 index 089f9f91a09..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_7.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_7.yml deleted file mode 100644 index 089f9f91a09..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_8.yml b/src/licensedcode/data/rules/redis-sala-proprietary-1.0_8.yml deleted file mode 100644 index 089f9f91a09..00000000000 --- a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-sala-proprietary-1.0 -is_license_notice: yes -relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_1.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_1.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_1.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_1.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_1.yml b/src/licensedcode/data/rules/redis-source-available-1.0_1.yml new file mode 100644 index 00000000000..a5be5a3643c --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_1.yml @@ -0,0 +1,5 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_2.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_2.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_2.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_2.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_2.yml b/src/licensedcode/data/rules/redis-source-available-1.0_2.yml new file mode 100644 index 00000000000..609cef1a801 --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_2.yml @@ -0,0 +1,3 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_3.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_3.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_3.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_3.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_3.yml b/src/licensedcode/data/rules/redis-source-available-1.0_3.yml new file mode 100644 index 00000000000..a5be5a3643c --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_3.yml @@ -0,0 +1,5 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_4.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_4.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_4.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_4.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_4.yml b/src/licensedcode/data/rules/redis-source-available-1.0_4.yml new file mode 100644 index 00000000000..609cef1a801 --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_4.yml @@ -0,0 +1,3 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_5.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_5.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_5.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_5.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_5.yml b/src/licensedcode/data/rules/redis-source-available-1.0_5.yml new file mode 100644 index 00000000000..609cef1a801 --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_5.yml @@ -0,0 +1,3 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_6.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_6.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_6.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_6.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_6.yml b/src/licensedcode/data/rules/redis-source-available-1.0_6.yml new file mode 100644 index 00000000000..609cef1a801 --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_6.yml @@ -0,0 +1,3 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_7.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_7.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_7.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_7.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_7.yml b/src/licensedcode/data/rules/redis-source-available-1.0_7.yml new file mode 100644 index 00000000000..609cef1a801 --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_7.yml @@ -0,0 +1,3 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-sala-proprietary-1.0_8.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_8.RULE similarity index 100% rename from src/licensedcode/data/rules/redis-sala-proprietary-1.0_8.RULE rename to src/licensedcode/data/rules/redis-source-available-1.0_8.RULE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_8.yml b/src/licensedcode/data/rules/redis-source-available-1.0_8.yml new file mode 100644 index 00000000000..609cef1a801 --- /dev/null +++ b/src/licensedcode/data/rules/redis-source-available-1.0_8.yml @@ -0,0 +1,3 @@ +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_10.RULE b/src/licensedcode/data/rules/sleepycat_10.RULE new file mode 100644 index 00000000000..dce3545e310 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_10.RULE @@ -0,0 +1 @@ +http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html diff --git a/src/licensedcode/data/rules/sleepycat_10.yml b/src/licensedcode/data/rules/sleepycat_10.yml new file mode 100644 index 00000000000..5a2210e4906 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_10.yml @@ -0,0 +1,4 @@ +license_expression: sleepycat +is_license_reference: yes +minimum_coverage: 80 +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_11.RULE b/src/licensedcode/data/rules/sleepycat_11.RULE new file mode 100644 index 00000000000..c255c865759 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_11.RULE @@ -0,0 +1 @@ +https://docs.oracle.com/cd/E17076_02/html/license/license_db.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_11.yml b/src/licensedcode/data/rules/sleepycat_11.yml new file mode 100644 index 00000000000..5a2210e4906 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_11.yml @@ -0,0 +1,4 @@ +license_expression: sleepycat +is_license_reference: yes +minimum_coverage: 80 +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_12.RULE b/src/licensedcode/data/rules/sleepycat_12.RULE new file mode 100644 index 00000000000..63d79114616 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_12.RULE @@ -0,0 +1,4 @@ +Berkeley DB Product License + +The license that applies to this copy of the Berkeley DB software may be found +in the "LICENSE" file included in each Berkeley DB distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_12.yml b/src/licensedcode/data/rules/sleepycat_12.yml new file mode 100644 index 00000000000..4e85996ce12 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_12.yml @@ -0,0 +1,5 @@ +license_expression: sleepycat +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_13.RULE b/src/licensedcode/data/rules/sleepycat_13.RULE new file mode 100644 index 00000000000..d1f891cf5c6 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_13.RULE @@ -0,0 +1 @@ +Berkeley DB Product License diff --git a/src/licensedcode/data/rules/sleepycat_13.yml b/src/licensedcode/data/rules/sleepycat_13.yml new file mode 100644 index 00000000000..94cadcb9a2c --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_13.yml @@ -0,0 +1,3 @@ +license_expression: sleepycat +is_license_reference: yes +relevance: 100 diff --git a/src/licensedcode/data/rules/sleepycat_14.RULE b/src/licensedcode/data/rules/sleepycat_14.RULE new file mode 100644 index 00000000000..d1cdad8433a --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_14.RULE @@ -0,0 +1,7 @@ +Berkeley DB Product License +The license that applies to this copy of the Berkeley DB software may be found +in the "LICENSE" file included in each Berkeley DB distribution. +For a license to use the Berkeley DB software under conditions other than +those described in the "LICENSE" file, or to purchase support for this +software, please send email to +berkeleydb-info_us@oracle.com berkeleydb-info_us@oracle.com< \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_14.yml b/src/licensedcode/data/rules/sleepycat_14.yml new file mode 100644 index 00000000000..4e85996ce12 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_14.yml @@ -0,0 +1,5 @@ +license_expression: sleepycat +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_15.RULE b/src/licensedcode/data/rules/sleepycat_15.RULE new file mode 100644 index 00000000000..34c469e3b49 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_15.RULE @@ -0,0 +1,30 @@ + * 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. Redistributions in any form must be accompanied by information on + * how to obtain complete source code for the DB software and any + * accompanying software that uses the DB software. The source code + * must either be included in the distribution or be available for no + * more than the cost of distribution plus a nominal fee, and must be + * freely redistributable under reasonable conditions. For an + * executable file, complete source code means the source code for all + * modules it contains. It does not include source code for modules or + * files that typically accompany the major components of the operating + * system on which the executable file runs. + * + * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR + * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE 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/src/licensedcode/data/rules/sleepycat_15.yml b/src/licensedcode/data/rules/sleepycat_15.yml new file mode 100644 index 00000000000..503702b282e --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_15.yml @@ -0,0 +1,2 @@ +license_expression: sleepycat +is_license_text: yes diff --git a/src/licensedcode/data/rules/sleepycat_16.RULE b/src/licensedcode/data/rules/sleepycat_16.RULE new file mode 100644 index 00000000000..1687ceb946f --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_16.RULE @@ -0,0 +1,3 @@ + Legal Notice + +This documentation is distributed under an open source license. You may review the terms of this license at: http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_16.yml b/src/licensedcode/data/rules/sleepycat_16.yml new file mode 100644 index 00000000000..5a2210e4906 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_16.yml @@ -0,0 +1,4 @@ +license_expression: sleepycat +is_license_reference: yes +minimum_coverage: 80 +relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_9.RULE b/src/licensedcode/data/rules/sleepycat_9.RULE new file mode 100644 index 00000000000..78c8fcb60c7 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_9.RULE @@ -0,0 +1,6 @@ +legalnotice-title +Legal Notice +This documentation is distributed under an open source license. +You may review the terms of this license at: +http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html +http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_9.yml b/src/licensedcode/data/rules/sleepycat_9.yml new file mode 100644 index 00000000000..def91750050 --- /dev/null +++ b/src/licensedcode/data/rules/sleepycat_9.yml @@ -0,0 +1,2 @@ +license_expression: sleepycat +is_license_notice: yes diff --git a/src/licensedcode/data/rules/unknown_42.RULE b/src/licensedcode/data/rules/unknown_42.RULE new file mode 100644 index 00000000000..437a01b10f4 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_42.RULE @@ -0,0 +1 @@ +legalnotice \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_42.yml b/src/licensedcode/data/rules/unknown_42.yml new file mode 100644 index 00000000000..a7c5dd62793 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_42.yml @@ -0,0 +1,4 @@ +license_expression: unknown +is_license_reference: yes +notes: seen in docbook documentations +relevance: 70 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_43.RULE b/src/licensedcode/data/rules/unknown_43.RULE new file mode 100644 index 00000000000..a25828c0920 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_43.RULE @@ -0,0 +1 @@ +cc:license rdf: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_43.yml b/src/licensedcode/data/rules/unknown_43.yml new file mode 100644 index 00000000000..a4b54a09ab0 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_43.yml @@ -0,0 +1,4 @@ +license_expression: unknown +is_license_tag: yes +relevance: 60 +notes: Creative commons tag seen in RDF or XML documents \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_44.RULE b/src/licensedcode/data/rules/unknown_44.RULE new file mode 100644 index 00000000000..5200c42fa88 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_44.RULE @@ -0,0 +1,2 @@ +cc:license +cc:license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_44.yml b/src/licensedcode/data/rules/unknown_44.yml new file mode 100644 index 00000000000..a4b54a09ab0 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_44.yml @@ -0,0 +1,4 @@ +license_expression: unknown +is_license_tag: yes +relevance: 60 +notes: Creative commons tag seen in RDF or XML documents \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_45.RULE b/src/licensedcode/data/rules/unknown_45.RULE new file mode 100644 index 00000000000..169f325316f --- /dev/null +++ b/src/licensedcode/data/rules/unknown_45.RULE @@ -0,0 +1 @@ +DOCTYPE legalnotice \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_45.yml b/src/licensedcode/data/rules/unknown_45.yml new file mode 100644 index 00000000000..a7c5dd62793 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_45.yml @@ -0,0 +1,4 @@ +license_expression: unknown +is_license_reference: yes +notes: seen in docbook documentations +relevance: 70 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_46.RULE b/src/licensedcode/data/rules/unknown_46.RULE new file mode 100644 index 00000000000..5735bb3a206 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_46.RULE @@ -0,0 +1 @@ +legalnotice id="legalnotice"> \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_46.yml b/src/licensedcode/data/rules/unknown_46.yml new file mode 100644 index 00000000000..94314fb7d8b --- /dev/null +++ b/src/licensedcode/data/rules/unknown_46.yml @@ -0,0 +1,3 @@ +license_expression: unknown +is_license_reference: yes +relevance: 70 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_47.RULE b/src/licensedcode/data/rules/unknown_47.RULE new file mode 100644 index 00000000000..0ee07e6a6cf --- /dev/null +++ b/src/licensedcode/data/rules/unknown_47.RULE @@ -0,0 +1 @@ +resource="http://creativecommons.org/ns#Reproduction" /> diff --git a/src/licensedcode/data/rules/unknown_47.yml b/src/licensedcode/data/rules/unknown_47.yml new file mode 100644 index 00000000000..94314fb7d8b --- /dev/null +++ b/src/licensedcode/data/rules/unknown_47.yml @@ -0,0 +1,3 @@ +license_expression: unknown +is_license_reference: yes +relevance: 70 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_48.RULE b/src/licensedcode/data/rules/unknown_48.RULE new file mode 100644 index 00000000000..77c1e33cd31 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_48.RULE @@ -0,0 +1 @@ +resource="http://creativecommons.org/ns#Distribution" /> diff --git a/src/licensedcode/data/rules/unknown_48.yml b/src/licensedcode/data/rules/unknown_48.yml new file mode 100644 index 00000000000..94314fb7d8b --- /dev/null +++ b/src/licensedcode/data/rules/unknown_48.yml @@ -0,0 +1,3 @@ +license_expression: unknown +is_license_reference: yes +relevance: 70 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_49.RULE b/src/licensedcode/data/rules/unknown_49.RULE new file mode 100644 index 00000000000..dfa375d6679 --- /dev/null +++ b/src/licensedcode/data/rules/unknown_49.RULE @@ -0,0 +1 @@ +resource="http://creativecommons.org/ns#DerivativeWorks" /> diff --git a/src/licensedcode/data/rules/unknown_49.yml b/src/licensedcode/data/rules/unknown_49.yml new file mode 100644 index 00000000000..94314fb7d8b --- /dev/null +++ b/src/licensedcode/data/rules/unknown_49.yml @@ -0,0 +1,3 @@ +license_expression: unknown +is_license_reference: yes +relevance: 70 \ No newline at end of file diff --git a/src/licensedcode/models.py b/src/licensedcode/models.py index ed0b0169da6..23f6a556354 100644 --- a/src/licensedcode/models.py +++ b/src/licensedcode/models.py @@ -69,6 +69,26 @@ TRACE_REPR = False +FOSS_CATEGORIES = set([ + 'Copyleft', + 'Copyleft Limited', + 'Patent License', + 'Permissive', + 'Public Domain', +]) + + +OTHER_CATEGORIES = set([ + 'Commercial', + 'Free Restricted', + 'Proprietary Free', + 'Unstated License', +]) + + +CATEGORIES = FOSS_CATEGORIES | OTHER_CATEGORIES + + @attr.s(slots=True) class License(object): """ @@ -83,7 +103,7 @@ class License(object): __attrib = partial(attr.ib, repr=False) # unique key: lower case ASCII characters, digits, underscore and dots. - key = attr.ib(default='', repr=True) + key = attr.ib(default=None, repr=True) src_dir = __attrib(default=licenses_data_dir) @@ -97,29 +117,29 @@ class License(object): language = __attrib(default='en') # commonly used short name, often abbreviated. - short_name = __attrib(default='') + short_name = __attrib(default=None) # full name. - name = __attrib(default='') + name = __attrib(default=None) # Permissive, Copyleft, etc - category = __attrib(default='') + category = __attrib(default=None) - owner = __attrib(default='') - homepage_url = __attrib(default='') - notes = __attrib(default='') + owner = __attrib(default=None) + homepage_url = __attrib(default=None) + notes = __attrib(default=None) # if this is a license exception, the license key this exception applies to is_exception = __attrib(default=False) # SPDX key for SPDX licenses - spdx_license_key = __attrib(default='') + spdx_license_key = __attrib(default=None) # list of other keys, such as deprecated ones other_spdx_license_keys = __attrib(default=attr.Factory(list)) # Various URLs for info text_urls = __attrib(default=attr.Factory(list)) - osi_url = __attrib(default='') - faq_url = __attrib(default='') + osi_url = __attrib(default=None) + faq_url = __attrib(default=None) other_urls = __attrib(default=attr.Factory(list)) # various alternate keys for this license @@ -127,11 +147,11 @@ class License(object): minimum_coverage = __attrib(default=0) relevance = __attrib(default=100) - standard_notice = __attrib(default='') + standard_notice = __attrib(default=None) # data file paths and known extensions - data_file = __attrib(default='') - text_file = __attrib(default='') + data_file = __attrib(default=None) + text_file = __attrib(default=None) def __attrs_post_init__(self, *args, **kwargs): @@ -206,10 +226,10 @@ def dict_fields(attr, value): return False # default to English - if attr.name=='language' and value == 'en': + if attr.name == 'language' and value == 'en': return False - if attr.name=='relevance' and value == 100: + if attr.name == 'relevance' and value == 100: return False return True @@ -287,6 +307,10 @@ def validate(licenses, verbose=False, no_dupe_urls=False): License. Return dictionaries of infos, errors and warnings mapping a license key to validation issue messages. Print messages if verbose is True. + + NOTE: we DO NOT run this validation as part of the loading or + construction of License objects. Instead this is invoked ONLY as part of + the test suite. """ infos = defaultdict(list) warnings = defaultdict(list) @@ -301,25 +325,28 @@ def validate(licenses, verbose=False, no_dupe_urls=False): for key, lic in licenses.items(): warn = warnings[key].append info = infos[key].append + error = errors[key].append by_name[lic.name].append(lic) by_short_name[lic.short_name].append(lic) if not lic.short_name: - warn('No short name') + error('No short name') if not lic.name: - warn('No name') + error('No name') if not lic.category: - warn('No category') + error('No category') + if lic.category and lic.category not in CATEGORIES: + error('Unknown license category: {}'.format(lic.category)) if not lic.owner: - warn('No owner') + error('No owner') # URLS dedupe and consistency if no_dupe_urls: if lic.text_urls and not all(lic.text_urls): - warn('Some empty license text_urls') + warn('Some empty text_urls values') if lic.other_urls and not all(lic.other_urls): - warn('Some empty license other_urls') + warn('Some empty other_urls values') # redundant URLs used multiple times if lic.homepage_url: @@ -338,7 +365,8 @@ def validate(licenses, verbose=False, no_dupe_urls=False): all_licenses = lic.text_urls + lic.other_urls for url in lic.osi_url, lic.faq_url, lic.homepage_url: - if url: all_licenses.append(url) + if url: + all_licenses.append(url) if not len(all_licenses) == len(set(all_licenses)): warn('Some duplicated URLs') @@ -354,16 +382,16 @@ def validate(licenses, verbose=False, no_dupe_urls=False): by_text[license_qtokens].append(key + ': TEXT') # SPDX consistency - # FIXME: add "other spdx keys" if lic.spdx_license_key: by_spdx_key[lic.spdx_license_key].append(key) + for oslk in lic.other_spdx_license_keys: + by_spdx_key[oslk].append(key) # global SPDX consistency - # FIXME: add "other spdx keys" multiple_spdx_keys_used = {k: v for k, v in by_spdx_key.items() if len(v) > 1} if multiple_spdx_keys_used: for k, lkeys in multiple_spdx_keys_used.items(): - infos['GLOBAL'].append('SPDX key: ' + k + ' used in multiple licenses: ' + ', '.join(sorted(lkeys))) + errors['GLOBAL'].append('SPDX key: ' + k + ' used in multiple licenses: ' + ', '.join(sorted(lkeys))) # global text dedupe multiple_texts = {k: v for k, v in by_text.items() if len(v) > 1} @@ -371,12 +399,13 @@ def validate(licenses, verbose=False, no_dupe_urls=False): for k, msgs in multiple_texts.items(): errors['GLOBAL'].append('Duplicate texts in multiple licenses:' + ', '.join(sorted(msgs))) - # global name dedupe + # global short_name dedupe for short_name, licenses in by_short_name.items(): if len(licenses) == 1: continue errors['GLOBAL'].append('Duplicate short name:' + short_name + ' in licenses:' + ', '.join(l.key for l in licenses)) + # global name dedupe for name, licenses in by_name.items(): if len(licenses) == 1: continue @@ -423,7 +452,7 @@ def load_licenses(licenses_data_dir=licenses_data_dir , with_deprecated=False): dangling = all_files.difference(used_files) if dangling: - msg ='Some License data or text files are orphaned in "{}".\n'.format(licenses_data_dir) + msg = 'Some License data or text files are orphaned in "{}".\n'.format(licenses_data_dir) msg += '\n'.join('file://{}'.format(f) for f in sorted(dangling)) raise Exception(msg) return licenses @@ -585,7 +614,7 @@ def load_rules(rules_data_dir=rules_data_dir): unknown_files = seen_files - processed_files if unknown_files or case_problems or model_errors or space_problems: - msg='' + msg = '' if model_errors: errors = '\n'.join(model_errors) @@ -600,7 +629,7 @@ def load_rules(rules_data_dir=rules_data_dir): msg += '\nRule files with non-unique name ignoring casein rule directory: %(rules_data_dir)r\n%(files)s' % locals() if space_problems: - files = '\n'.join(sorted('"file://' + f +'"' for f in space_problems)) + files = '\n'.join(sorted('"file://' + f + '"' for f in space_problems)) msg += '\nRule files name cannot contain spaces: %(rules_data_dir)r\n%(files)s' % locals() raise Exception(msg) @@ -647,7 +676,7 @@ class Rule(object): identifier = attr.ib(default=None) # License expression string - license_expression = attr.ib(default='') + license_expression = attr.ib(default=None) # License expression object, created at build time license_expression_object = attr.ib(default=None, repr=False) @@ -684,7 +713,7 @@ class Rule(object): # Can this rule be matched if there are unknown words in its matched range? # The default is to allow known and unknown words. Unknown words are words # that do not exist in the text of any indexed license or license detection - # rule. + # rule. only_known_words = attr.ib(default=False) # what is the relevance of a match to this rule text? a float between 0 and @@ -706,10 +735,10 @@ class Rule(object): is_license = attr.ib(default=False, repr=False) # path to the YAML data file for this rule - data_file = attr.ib(default='', repr=False) + data_file = attr.ib(default=None, repr=False) # path to the rule text file - text_file = attr.ib(default='', repr=False) + text_file = attr.ib(default=None, repr=False) # text of this rule for special cases where the rule is not backed by a file: # for SPDX license expression dynamic rules or testing @@ -1147,8 +1176,9 @@ def __attrs_post_init__(self, *args, **kwargs): expression = self.licensing.parse(self.license_expression) except: raise Exception( - 'Unable to parse License rule expression: ' - +repr(self.license_expression) + ' for: file://' + self.data_file + + 'Unable to parse License rule expression: ' + + repr(self.license_expression) + ' for: file://' + + (self.data_file or '') + '\n' + traceback.format_exc() ) if expression is None: diff --git a/tests/licensedcode/data/debian/licensecheck/devscripts/comments-detection2.txt b/tests/licensedcode/data/debian/licensecheck/devscripts/comments-detection2.txt deleted file mode 100644 index bdc01552935..00000000000 --- a/tests/licensedcode/data/debian/licensecheck/devscripts/comments-detection2.txt +++ /dev/null @@ -1,6 +0,0 @@ -# kitchen is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. - -.. seealso diff --git a/tests/licensedcode/data/debian/licensecheck/devscripts/comments-detection2.yml b/tests/licensedcode/data/debian/licensecheck/devscripts/comments-detection2.yml deleted file mode 100644 index a93b219f5e7..00000000000 --- a/tests/licensedcode/data/debian/licensecheck/devscripts/comments-detection2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus diff --git a/tests/licensedcode/data/debian/licensecheck/grant/NTP/monlist.yml b/tests/licensedcode/data/debian/licensecheck/grant/NTP/monlist.yml index 8e9ec5f972c..7c82cebed84 100644 --- a/tests/licensedcode/data/debian/licensecheck/grant/NTP/monlist.yml +++ b/tests/licensedcode/data/debian/licensecheck/grant/NTP/monlist.yml @@ -1,2 +1,2 @@ license_expressions: - - ntpl + - mit-old-style-no-advert diff --git a/tests/licensedcode/data/debian/licensecheck/grant/WTFPL/COPYING.WTFPL b/tests/licensedcode/data/debian/licensecheck/grant/WTFPL/COPYING.WTFPL deleted file mode 100644 index c971e27c80e..00000000000 --- a/tests/licensedcode/data/debian/licensecheck/grant/WTFPL/COPYING.WTFPL +++ /dev/null @@ -1,12 +0,0 @@ -do What The Fuck you want to Public License - -Version 1.0, March 2000 -Copyright (C) 2000 Banlu Kemiyatorn (]d). -136 Nives 7 Jangwattana 14 Laksi Bangkok -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -Ok, the purpose of this license is simple -and you just - -DO WHAT THE FUCK YOU WANT TO. diff --git a/tests/licensedcode/data/debian/licensecheck/grant/WTFPL/COPYING.yml b/tests/licensedcode/data/debian/licensecheck/grant/WTFPL/COPYING.yml deleted file mode 100644 index 6f5d845ab79..00000000000 --- a/tests/licensedcode/data/debian/licensecheck/grant/WTFPL/COPYING.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - wtfpl-1.0 diff --git a/tests/licensedcode/data/license_tools/spdx-correct.js/LICENSE.txt b/tests/licensedcode/data/license_tools/spdx-correct.js/LICENSE.txt deleted file mode 100644 index d6456956733..00000000000 --- a/tests/licensedcode/data/license_tools/spdx-correct.js/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/license_tools/spdx-correct.js/LICENSE.yml b/tests/licensedcode/data/license_tools/spdx-correct.js/LICENSE.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/license_tools/spdx-correct.js/LICENSE.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/adobe-acrobat-reader-eula.txt b/tests/licensedcode/data/licenses/adobe-acrobat-reader-eula.txt deleted file mode 100644 index cb4a1b0f637..00000000000 --- a/tests/licensedcode/data/licenses/adobe-acrobat-reader-eula.txt +++ /dev/null @@ -1,76 +0,0 @@ -Adobe Acrobat Reader EULA -ADOBE - -End User License Agreement - -Please return any accompanying registration form to receive registration benefits. - -NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT, INCLUDING, IN PARTICULAR THE LIMITATIONS ON: USE CONTAINED IN SECTION 2; TRANSFERABILITY IN SECTION 4; WARRANTY IN SECTION 6 AND 7; AND LIABILITY IN SECTION 8. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE, DO NOT USE THIS SOFTWARE. IF YOU ACQUIRED THE SOFTWARE ON TANGIBLE MEDIA (e.g. CD) WITHOUT AN OPPORTUNITY TO REVIEW THIS LICENSE AND YOU DO NOT ACCEPT THIS AGREEMENT, YOU MAY OBTAIN A REFUND OF THE AMOUNT YOU ORIGINALLY PAID IF YOU: (A) DO NOT USE THE SOFTWARE AND (B) RETURN IT, WITH PROOF OF PAYMENT, TO THE LOCATION FROM WHICH IT WAS OBTAINED WITHIN THIRTY (30) DAYS OF THE PURCHASE DATE. - - -1. Definitions. "Software" means (a) all of the contents of the files, disk(s), CD-ROM(s) or other media with which this Agreement is provided, including but not limited to (i) Adobe or third party computer information or software; (ii) digital images, stock photographs, clip art, sounds or other artistic works ("Stock Files"); (iii) related explanatory written materials or files ("Documentation"); and (iv) fonts; and (b) upgrades, modified versions, updates, additions, and copies of the Software, if any, licensed to you by Adobe (collectively, "Updates"). "Use" or "Using" means to access, install, download, copy or otherwise benefit from using the functionality of the Software in accordance with the Documentation. "Permitted Number" means one (1) unless otherwise indicated under a valid license (e.g. volume license) granted by Adobe. "Computer" means an electronic device that accepts information in digital or similar form and manipulates it for a specific result based on a sequence of instructions. "Adobe" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if subsection 10(a) of this Agreement applies; otherwise it means Adobe Systems Benelux BV, Europlaza, Hoogoorddreef 54a, 1101 BE Amsterdam ZO, the Netherlands, a company organized under the laws of the Netherlands and an affiliate and licensee of Adobe Systems Incorporated. - - -2. Software License. As long as you comply with the terms of this End User License Agreement (the "Agreement"), Adobe grants to you a non-exclusive license to Use the Software for the purposes described in the Documentation. Some third party materials included in the Software may be subject to other terms and conditions, which are typically found in a "Read Me" file located near such materials. - -2.1. General Use. You may install and Use a copy of the Software on your compatible computer, up to the Permitted Number of computers; or - -2.2. Server Use. You may install one copy of the Software on your computer file server for the purpose of downloading and installing the Software onto other computers within your internal network up to the Permitted Number or you may install one copy of the Software on a computer file server within your internal network for the sole and exclusive purpose of using the Software through commands, data or instructions (e.g. scripts) from an unlimited number of computers on your internal network. No other network use is permitted, including but not limited to, using the Software either directly or through commands, data or instructions from or to a computer not part of your internal network, for internet or web hosting services or by any user not licensed to use this copy of the Software through a valid license from Adobe; and - -2.3. Backup Copy. You may make one backup copy of the Software, provided your backup copy is not installed or used on any computer. You may not transfer the rights to a backup copy unless you transfer all rights in the Software as provided under Section 4. - -2.4. Home Use. You, as the primary user of the computer on which the Software is installed, may also install the Software on one of your home computers. However, the Software may not be used on your home computer at the same time the Software on the primary computer is being used. - -2.5. Stock Files. Unless stated otherwise in the "Read-Me" files associated with the Stock Files, which may include specific rights and restrictions with respect to such materials, you may display, modify, reproduce and distribute any of the Stock Files included with the Software. However, you may not distribute the Stock Files on a stand-alone basis, i.e., in circumstances in which the Stock Files constitute the primary value of the product being distributed. Stock Files may not be used in the production of libelous, defamatory, fraudulent, lewd, obscene or pornographic material or any material that infringes upon any third party intellectual property rights or in any otherwise illegal manner. You may not claim any trademark rights in the Stock Files or derivative works thereof. - -2.6. Font Software. If the Software includes font software - - -2.6.1. You may Use the font software as described above on the Permitted Number of computers and output such font software on any output devices connected to such computers. - -2.6.2. If the Permitted Number of computers is five or fewer, you may download the font software to the memory (hard disk or RAM) of one output device connected to at least one of such computers for the purpose of having such font software remain resident in the output device, and of one additional such output device for every multiple of five represented by the Permitted Number of computers. - -2.6.3. You may take a copy of the font(s) you have used for a particular file to a commercial printer or other service bureau, and such service bureau may Use the font(s) to process your file, provided such service bureau has a valid license to Use that particular font software. - -2.6.4. You may convert and install the font software into another format for use in other environments, subject to the following conditions: A computer on which the converted font software is used or installed shall be considered as one of your Permitted Number of computers. Use of the font software you have converted shall be pursuant to all the terms and conditions of this Agreement. Such converted font software may be used only for your own customary internal business or personal use and may not be distributed or transferred for any purpose, except in accordance with the Transfer section below. - -2.6.5 You may embed the font software, or outlines of the font software, into your electronic documents to the extent that the font vendor copyright owner allows for such embedding. The fonts contained in this package may contain both Adobe and non-Adobe owned fonts. You may fully embed any font owned by Adobe. Refer to the font sample sheet or font information file to determine font ownership. See the Documentation for location and information on how to access these sheets and files. - -2.7 To the extent that the Software includes Adobe Acrobat Reader software, (i) you may customize the installer for such software in accordance with the restrictions found at www.adobe.com (e.g., installation of additional plug-in and help files); however, you may not otherwise alter or modify the installer program or create a new installer for any of such software, (ii) such software is licensed and distributed by Adobe for viewing, distributing and sharing PDF files, and (iii) you are not authorized to use any plug-in or enhancement that permits you to save modifications to a PDF file with such software; however, such use is authorized with Adobe Acrobat, Adobe Acrobat Business Tools, and other current and future Adobe products that feature the creation or manipulation of PDF files. For information on how to distribute Adobe Acrobat( Reader( and Adobe SVG Viewer please refer to the sections entitled "How to Distribute Acrobat Reader" and "How to Distribute SVG Viewer" at www.adobe.com. - - -3. Intellectual Property Rights. The Software and any copies that you are authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the Software are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The Software is protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. You may not copy the Software, except as set forth in Section 2 ("Software License"). Any copies that you are permitted to make pursuant to this Agreement must contain the same copyright and other proprietary notices that appear on or in the Software. Except for font software converted to other formats as permitted in section 2.6.4, you agree not to modify, adapt or translate the Software.You also agree not to reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software except to the extent you may be expressly permitted to decompile under applicable law, it is essential to do so in order to achieve operability of the Software with another software program, and you have first requested Adobe to provide the information necessary to achieve such operability and Adobe has not made such information available. Adobe has the right to impose reasonable conditions and to request a reasonable fee before providing such information. Any information supplied by Adobe or obtained by you, as permitted hereunder, may only be used by you for the purpose described herein and may not be disclosed to any third party or used to create any software which is substantially similar to the expression of the Software. Requests for information should be directed to the Adobe Customer Support Department. Trademarks shall be used in accordance with accepted trademark practice, including identification of trademarks owners' names. Trademarks can only be used to identify printed output produced by the Software and such use of any trademark does not give you any rights of ownership in that trademark. Except as expressly stated above, this Agreement does not grant you any intellectual property rights in the Software. - - -4. Transfer. You may not, rent, lease, sublicense or authorize all or any portion of the Software to be copied onto another users computer except as may be expressly permitted herein. You may, however, transfer all your rights to Use the Software to another person or legal entity provided that: (a) you also transfer each this Agreement, the Software and all other software or hardware bundled or pre-installed with the Software, including all copies, Updates and prior versions, and all copies of font software converted into other formats, to such person or entity; (b) you retain no copies, including backups and copies stored on a computer; and (c) the receiving party accepts the terms and conditions of this Agreement and any other terms and conditions upon which you legally purchased a license to the Software. Notwithstanding the foregoing, you may not transfer education, pre-release, or not for resale copies of the Software. - - -5. Multiple Environment Software / Multiple Language Software / Dual Media Software / Multiple Copies/ Bundles / Updates. If the Software supports multiple platforms or languages, if you receive the Software on multiple media, if you otherwise receive multiple copies of the Software, or if you received the Software bundled with other software, the total number of your computers on which all versions of the Software are installed may not exceed the Permitted Number. You may not, rent, lease, sublicense, lend or transfer any versions or copies of such Software you do not Use. If the Software is an Update to a previous version of the Software, you must possess a valid license to such previous version in order to Use the Update. You may continue to Use the previous version of the Software on your computer after you receive the Update to assist you in the transition to the Update, provided that: the Update and the previous version are installed on the same computer; the previous version or copies thereof are not transferred to another party or computer unless all copies of the Update are also transferred to such party or computer; and you acknowledge that any obligation Adobe may have to support the previous version of the Software may be ended upon availability of the Update. - - -6. NO WARRANTY. The Software is being delivered to you "AS IS" and Adobe makes no warranty as to its use or performance. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE. EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES CONDITIONS, REPRESENTATIONS, OR TERMS (EXPRESS OR IMPLIED WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE) AS TO ANY MATTER INCLUDING WITHOUT LIMITATION NONINFRINGEMENT OF THIRD PARTY RIGHTS, MERCHANTABILITY, INTEGRATION, SATISFACTORY QUALITY, OR FITNESS FOR ANY PARTICULAR PURPOSE. - - -7. Pre-release Product Additional Terms. If the product you have received with this license is pre-commercial release or beta Software ("Pre-release Software"), then the following Section applies. To the extent that any provision in this Section is in conflict with any other term or condition in this Agreement, this Section shall supercede such other term(s) and condition(s) with respect to the Pre-release Software, but only to the extent necessary to resolve the conflict. You acknowledge that the Software is a pre-release version, does not represent final product from Adobe, and may contain bugs, errors and other problems that could cause system or other failures and data loss. Consequently, the Pre-release Software is provided to you "AS-IS", and Adobe disclaims any warranty or liability obligations to you of any kind. WHERE LEGALLY LIABILITY CANNOT BE EXCLUDED FOR PRE-RELEASE SOFTWARE, BUT IT MAY BE LIMITED, ADOBE'S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF FIFTY DOLLARS (U.S. $50) IN TOTAL. You acknowledge that Adobe has not promised or guaranteed to you that Pre-release Software will be announced or made available to anyone in the future, that Adobe has no express or implied obligation to you to announce or introduce the Pre-release Software and that Adobe may not introduce a product similar to or compatible with the Pre-release Software. Accordingly, you acknowledge that any research or development that you perform regarding the Pre-release Software or any product associated with the Pre-release Software is done entirely at your own risk. During the term of this Agreement, if requested by Adobe, you will provide feedback to Adobe regarding testing and use of the Pre-release Software, including error or bug reports. If you have been provided the Pre-release Software pursuant to a separate written agreement, such as the Adobe Systems Incorporated Serial Agreement for Unreleased Products, your use of the Software is also governed by such agreement. You agree that you may not and certify that you will not sublicense, lease, loan, rent, or transfer the Pre-release Software. Upon receipt of a later unreleased version of the Pre-release Software or release by Adobe of a publicly released commercial version of the Software, whether as a stand-alone product or as part of a larger product, you agree to return or destroy all earlier Pre-release Software received from Adobe and to abide by the terms of the End User License Agreement for any such later versions of the Pre-release Software. Notwithstanding anything in this Section to the contrary, if you are located outside the United States of America, you agree that you will return or destroy all unreleased versions of the Pre-release Software within thirty (30) days of the completion of your testing of the Software when such date is earlier than the date for Adobe's first commercial shipment of the publicly released (commercial) Software. - - -8. LIMITATION OF LIABILITY. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability as provided in this Agreement, but in no other respects and for no other purpose. For further information, please see the jurisdiction specific information at the end of this Agreement, if any, or contact Adobe's Customer Support Department. - - -9. Export Rules. You agree that the Software will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations (collectively the "Export Laws"). In addition, if the Software is identified as export controlled items under the Export Laws, you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to Use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement. - - -10. Governing Law. This Agreement will be governed by and construed in accordance with the substantive laws in force: (a) in the State of California, if a license to the Software is purchased when you are in the United States, Canada, or Mexico; or (b) in Japan, if a license to the Software is purchased when you are in Japan, China, Korea, R.O.C, or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., hanzi, kanji, or hanja), and/or other script based upon or similar in structure to an ideographic script, such as hangul or kana; or (c) the Netherlands, if a license to the Software is purchased when you are in any other jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the courts of Amsterdam, the Netherlands, when the law of the Netherlands applies, shall each have non-exclusive jurisdiction over all disputes relating to this Agreement. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. - - -11. General Provisions. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of the Agreement, which shall remain valid and enforceable according to its terms. This Agreement shall not prejudice the statutory rights of any party dealing as a consumer. This Agreement may only be modified by a writing signed by an authorized officer of Adobe. Updates may be licensed to you by Adobe with additional or different terms. This is the entire agreement between Adobe and you relating to the Software and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the Software. - - -12. Notice to U.S. Government End Users. The Software and Documentation are "Commercial Items," as that term is defined at 48 C.F.R. ß2.101, consisting of "Commercial Computer Software" and "Commercial Computer Software Documentation," as such terms are used in 48 C.F.R. ß12.212 or 48 C.F.R. ß227.7202, as applicable. Consistent with 48 C.F.R. ß12.212 or 48 C.F.R. ßß227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA. For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence shall be incorporated by reference in this Agreement. - - -13. Compliance with Licenses. If you are a business or organisation, you agree that upon request from Adobe or Adobe's authorised representative, you will within thirty (30) days fully document and certify that use of any and all Adobe Software at the time of the request is in conformity with your valid licenses from Adobe. - - -If you have any questions regarding this Agreement or if you wish to request any information from Adobe please use the address and contact information included with this product to contact the Adobe office serving your jurisdiction. - -Adobe, Acrobat, Acrobat Reader, and After Effects are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/adobe-acrobat-reader-eula.yml b/tests/licensedcode/data/licenses/adobe-acrobat-reader-eula.yml deleted file mode 100644 index 2985e0671e5..00000000000 --- a/tests/licensedcode/data/licenses/adobe-acrobat-reader-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - adobe-acrobat-reader-eula diff --git a/tests/licensedcode/data/licenses/aes-128-3.0.LICENSE b/tests/licensedcode/data/licenses/aes-128-3.0.LICENSE deleted file mode 100644 index 1da5e54da25..00000000000 --- a/tests/licensedcode/data/licenses/aes-128-3.0.LICENSE +++ /dev/null @@ -1,14 +0,0 @@ - -All code contained in this distributed is placed in the public domain. -============================================================= -Disclaimer: - -THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''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 AUTHORS 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/tests/licensedcode/data/licenses/aes-128-3.0.yml b/tests/licensedcode/data/licenses/aes-128-3.0.yml deleted file mode 100644 index 59e09e89384..00000000000 --- a/tests/licensedcode/data/licenses/aes-128-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - public-domain-disclaimer diff --git a/tests/licensedcode/data/licenses/agg-2.4_1.txt b/tests/licensedcode/data/licenses/agg-2.4_1.txt deleted file mode 100644 index 15276d45ec2..00000000000 --- a/tests/licensedcode/data/licenses/agg-2.4_1.txt +++ /dev/null @@ -1,4 +0,0 @@ -Permission to copy, use, modify, sell and distribute this software -is granted provided this copyright notice appears in all copies. -This software is provided "as is" without express or implied -warranty, and with no claim as to its suitability for any purpose. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/agg-2.4_1.yml b/tests/licensedcode/data/licenses/agg-2.4_1.yml deleted file mode 100644 index 531db5288f5..00000000000 --- a/tests/licensedcode/data/licenses/agg-2.4_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - boost-original diff --git a/tests/licensedcode/data/licenses/agpl-1.0.txt b/tests/licensedcode/data/licenses/agpl-1.0.txt deleted file mode 100644 index 1ba949a2288..00000000000 --- a/tests/licensedcode/data/licenses/agpl-1.0.txt +++ /dev/null @@ -1,304 +0,0 @@ -AFFERO GENERAL PUBLIC LICENSE - -Version 1, March 2002 - -Copyright © 2002 Affero Inc. -510 Third Street - Suite 225, San Francisco, CA 94107, USA - -This license is a modified version of the GNU General Public License -copyright (C) 1989, 1991 Free Software Foundation, Inc. made with -their permission. Section 2(d) has been added to cover use of software -over a computer network. - -Everyone is permitted to copy and distribute verbatim copies of this -license document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom -to share and change it. By contrast, the Affero General Public License -is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -Public License applies to most of Affero's software and to any other -program whose authors commit to using it. (Some other Affero software -is covered by the GNU Library General Public License instead.) You can -apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not -price. This General Public License is designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - -We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - -Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, -we want its recipients to know that what they have is not the -original, so that any problems introduced by others will not reflect -on the original authors' reputations. - -Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at -all. - -The precise terms and conditions for copying, distribution and -modification follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a -notice placed by the copyright holder saying it may be distributed -under the terms of this Affero General Public License. The "Program", -below, refers to any such program or work, and a "work based on the -Program" means either the Program or any derivative work under -copyright law: that is to say, a work containing the Program or a -portion of it, either verbatim or with modifications and/or translated -into another language. (Hereinafter, translation is included without -limitation in the term "modification".) Each licensee is addressed as -"you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the Program -(independent of having been made by running the Program). Whether that -is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source -code as you receive it, in any medium, provided that you conspicuously -and appropriately publish on each copy an appropriate copyright notice -and disclaimer of warranty; keep intact all the notices that refer to -this License and to the absence of any warranty; and give any other -recipients of the Program a copy of this License along with the -Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a -fee. - -2. You may modify your copy or copies of the Program or any portion of -it, thus forming a work based on the Program, and copy and distribute -such modifications or work under the terms of Section 1 above, -provided that you also meet all of these conditions: - -* a) You must cause the modified files to carry prominent notices -stating that you changed the files and the date of any change. - -* b) You must cause any work that you distribute or publish, that in -whole or in part contains or is derived from the Program or any part -thereof, to be licensed as a whole at no charge to all third parties -under the terms of this License. - -* c) If the modified program normally reads commands interactively -when run, you must cause it, when started running for such interactive -use in the most ordinary way, to print or display an announcement -including an appropriate copyright notice and a notice that there is -no warranty (or else, saying that you provide a warranty) and that -users may redistribute the program under these conditions, and telling -the user how to view a copy of this License. (Exception: if the -Program itself is interactive but does not normally print such an -announcement, your work based on the Program is not required to print -an announcement.) - -* d) If the Program as you received it is intended to interact with -users through a computer network and if, in the version you received, -any user interacting with the Program was given the opportunity to -request transmission to that user of the Program's complete source -code, you must not remove that facility from your modified version of -the Program or work based on the Program, and must offer an equivalent -opportunity for all users interacting with your Program through a -computer network to request immediate transmission by HTTP of the -complete source code of your modified version or other derivative -work. - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - -* a) Accompany it with the complete corresponding machine-readable -source code, which must be distributed under the terms of Sections 1 -and 2 above on a medium customarily used for software interchange; or, - -* b) Accompany it with a written offer, valid for at least three -years, to give any third party, for a charge no more than your cost of -physically performing source distribution, a complete machine-readable -copy of the corresponding source code, to be distributed under the -terms of Sections 1 and 2 above on a medium customarily used for -software interchange; or, - -* c) Accompany it with the information you received as to the offer to -distribute corresponding source code. (This alternative is allowed -only for noncommercial distribution and only if you received the -program in object code or executable form with such an offer, in -accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt otherwise -to copy, modify, sublicense or distribute the Program is void, and -will automatically terminate your rights under this License. However, -parties who have received copies, or rights, from you under this -License will not have their licenses terminated so long as such -parties remain in full compliance. - -5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted -herein. You are not responsible for enforcing compliance by third -parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - -9. Affero Inc. may publish revised and/or new versions of the Affero -General Public License from time to time. Such new versions will be -similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -Affero, Inc. If the Program does not specify a version number of this -License, you may choose any version ever published by Affero, Inc. - -You may also choose to redistribute modified versions of this program -under any version of the Free Software Foundation's GNU General Public -License version 3 or higher, so long as that version of the GNU GPL -includes terms and conditions substantially equivalent to those of -this license. - -10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the -author to ask for permission. For software which is copyrighted by -Affero, Inc., write to us; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE -LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS -AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF -ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. diff --git a/tests/licensedcode/data/licenses/agpl-1.0.yml b/tests/licensedcode/data/licenses/agpl-1.0.yml deleted file mode 100644 index 49f6cbdabf0..00000000000 --- a/tests/licensedcode/data/licenses/agpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - agpl-1.0 diff --git a/tests/licensedcode/data/licenses/allegro-4.txt b/tests/licensedcode/data/licenses/allegro-4.txt deleted file mode 100644 index 5547e162bfd..00000000000 --- a/tests/licensedcode/data/licenses/allegro-4.txt +++ /dev/null @@ -1,9 +0,0 @@ -Allegro 4 (the giftware license) - -Allegro is gift-ware. It was created by a number of people working in cooperation, and is given to you freely as a gift. You may use, modify, redistribute, and generally hack it about in any way you like, and you do not have to give us anything in return. - -However, if you like this product you are encouraged to thank us by making a return gift to the Allegro community. This could be by writing an add-on package, providing a useful bug report, making an improvement to the library, or perhaps just releasing the sources of your program so that other people can learn from them. If you redistribute parts of this code or make a game using it, it would be nice if you mentioned Allegro somewhere in the credits, but you are not required to do this. We trust you not to abuse our generosity. - -By Shawn Hargreaves, 18 October 1998. - -DISCLAIMER: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/allegro-4.yml b/tests/licensedcode/data/licenses/allegro-4.yml deleted file mode 100644 index 538dd5b080c..00000000000 --- a/tests/licensedcode/data/licenses/allegro-4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - allegro-4 diff --git a/tests/licensedcode/data/licenses/altera-prop.txt b/tests/licensedcode/data/licenses/altera-prop.txt deleted file mode 100644 index c33d801fdee..00000000000 --- a/tests/licensedcode/data/licenses/altera-prop.txt +++ /dev/null @@ -1,12 +0,0 @@ -# Your use of Altera Corporation's design tools, logic functions -# and other software and tools, and its AMPP partner logic -# functions, and any output files from any of the foregoing -# (including device programming or simulation files), and any -# associated documentation or information are expressly subject -# to the terms and conditions of the Altera Program License -# Subscription Agreement, Altera MegaCore Function License -# Agreement, or other applicable license agreement, including, -# without limitation, that your use is for the sole purpose of -# programming logic devices manufactured by Altera and sold by -# Altera or its authorized distributors. Please refer to the -# applicable agreement for further details. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/altera-prop.yml b/tests/licensedcode/data/licenses/altera-prop.yml deleted file mode 100644 index d3074c5e51a..00000000000 --- a/tests/licensedcode/data/licenses/altera-prop.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - proprietary-license diff --git a/tests/licensedcode/data/licenses/altova-eula.txt b/tests/licensedcode/data/licenses/altova-eula.txt deleted file mode 100644 index 3a060344a1c..00000000000 --- a/tests/licensedcode/data/licenses/altova-eula.txt +++ /dev/null @@ -1,134 +0,0 @@ -THIS IS A LEGAL DOCUMENT -- RETAIN FOR YOUR RECORDS - -ALTOVA® END-USER LICENSE AGREEMENT - -Licensor: - -Altova GmbH -Rudolfsplatz 13a/9 -A-1010 Wien -Austria - -Important - Read Carefully. Notice to User: - -This End User License Agreement (“Agreement”) is a legal document between you and Altova GmbH (“Altova”). It is important that you read this document before using the Altova-provided software (“Software”) and any accompanying documentation, including, without limitation printed materials, ‘online’ files, or electronic documentation (“Documentation”). By clicking the “I accept” and “Next” buttons below, or by installing, or otherwise using the Software, you agree to be bound by the terms of this Agreement as well as the Altova Privacy Policy (“Privacy Policy”) including, without limitation, the warranty disclaimers, limitation of liability, data use and termination provisions below, whether or not you decide to purchase the Software. You agree that this agreement is enforceable like any written agreement negotiated and signed by you. If you do not agree, you are not licensed to use the Software, and you must destroy any downloaded copies of the Software in your possession or control. You may print a copy of this Agreement as part of the installation process at the time of acceptance. Alternatively, a copy of this Agreement may be found at http://www.altova.com/eula and a copy of the Privacy Policy may be found at http://www.altova.com/privacy. - -1. SOFTWARE LICENSE - -(a) License Grant. - -(i) Upon your acceptance of this Agreement Altova grants you a non-exclusive, non-transferable (except as provided below), limited license, without the right to grant sublicenses, to install and use a copy of the Software on one compatible personal computer or workstation up to the Permitted Number of computers. Subject to the limitations set forth in Section 1(c), you may install and use a copy of the Software on more than one of your compatible personal computers or workstations if you have purchased a Named-User license. Subject to the limitations set forth in Sections 1(d) and 1(e), users may use the software concurrently on a network. The Permitted Number of computers and/or users and the type of license, e.g. Installed, Named-Users, and Concurrent-User, shall be determined and specified at such time as you elect to purchase the Software. Installed user licenses are intended to be fixed and not concurrent. In other words, you cannot uninstall the Software on one machine in order to reinstall that license to a different machine and then uninstall and reinstall back to the original machine. Installations should be static. Notwithstanding the foregoing, permanent uninstallations and redeployments are acceptable in limited circumstances such as if an employee leaves the company or the machine is permanently decommissioned. During the evaluation period, hereinafter defined, only a single user may install and use the software on one (1) personal computer or workstation. If you have licensed the Software as part of a suite of Altova software products (collectively, the “Suite”) and have not installed each product individually, then the Agreement governs your use of all of the software included in the Suite. - -(ii) If you have licensed SchemaAgent, then the terms and conditions of this Agreement apply to your use of the SchemaAgent server software (“SchemaAgent Server”) included therein, as applicable, and you are licensed to use SchemaAgent Server solely in connection with your use of Altova Software and solely for the purposes described in the accompanying documentation. - -(iii) If you have licensed Software that enables users to generate source code, your license to install and use a copy of the Software as provided herein permits you to generate source code based on (i) Altova Library modules that are included in the Software (such generated code hereinafter referred to as the “Restricted Source Code”) and (ii) schemas or mappings that you create or provide (such code as may be generated from your schema or mapping source materials hereinafter referred to as the “Unrestricted Source Code”). In addition to the rights granted herein, Altova grants you a non-exclusive, non-transferable, limited license to compile the complete generated code (comprised of the combination of the Restricted Source Code and the Unrestricted Source Code) into executable object code form, and to use, copy, distribute or license that executable. You may not distribute or redistribute, sublicense, sell, or transfer the Restricted Source Code to a third-party in the un-compiled form unless said third-party already has a license to the Restricted Source Code through their separate agreement with Altova. Notwithstanding anything to the contrary herein, you may not distribute, incorporate or combine with other software, or otherwise use the Altova Library modules or Restricted Source Code, or any Altova intellectual property embodied in or associated with the Altova Library modules or Restricted Source Code, in any manner that would subject the Restricted Source Code to the terms of a copyleft, free software or open source license that would require the Restricted Source Code or Altova Library modules source code to be disclosed in source code form. Notwithstanding anything to the contrary herein, you may not use the Software to develop and distribute other software programs that directly compete with any Altova software or service without prior written permission. Altova reserves all other rights in and to the Software. With respect to the feature(s) of UModel that permit reverse-engineering of your own source code or other source code that you have lawfully obtained, such use by you does not constitute a violation of this Agreement. Except as otherwise expressly permitted in Section 1(j) reverse engineering of the Software is strictly prohibited as further detailed therein. - -(iv) In the event Restricted Source Code is incorporated into executable object code form, you will include the following statement in (1) introductory splash screens, or if none, within one or more screens readily accessible by the end-user, and (2) in the electronic and/or hard copy documentation: “Portions of this program were developed using Altova® [name of Altova Software, e.g. MapForce® 2011] and includes libraries owned by Altova GmbH, Copyright © 2007-2011 Altova GmbH (www.altova.com).” - -(b) Server Use for Installation and Use of SchemaAgent. You may install one (1) copy of the Software on a computer file server within your internal network solely for the purpose of downloading and installing the Software onto other computers within your internal network up to the Permitted Number of computers in a commercial environment only. If you have licensed SchemaAgent, then you may install SchemaAgent Server on any server computer or workstation and use it in connection with your Software. No other network use is permitted, including without limitation using the Software either directly or through commands, data or instructions from or to a computer not part of your internal network, for Internet or Web-hosting services or by any user not licensed to use this copy of the Software through a valid license from Altova. - -(c) Named Use. If you have licensed the “Named-User” version of the software, you may install the Software on up to five (5) compatible personal computers or workstations of which you are the primary user thereby allowing you to switch from one computer to the other as necessary provided that only one (1) instance of the Software will be used by you as the Named-User at any given time. If you have purchased multiple Named-User licenses, each individual Named-User will receive a separate license key code. - -(d) Concurrent Use in Same Physical Network or Office Location. If you have licensed a “Concurrent-User” version of the Software, you may install the Software on any compatible computers in a commercial environment only, up to ten (10) times the Permitted Number of users, provided that only the Permitted Number of users actually use the Software at the same time and further provided that the computers on which the Software is installed are on the same physical computer network. The Permitted Number of concurrent users shall be delineated at such time as you elect to purchase the Software licenses. Each separate physical network or office location requires its own set of separate Concurrent User Licenses for those wishing to use the Concurrent User versions of the Software in more than one location or on more than one network, all subject to the above Permitted Number limitations and based on the number of users using the Software. If a computer is not on the same physical network, then a locally installed user license or a license dedicated to concurrent use in a virtual environment is required. Home User restrictions and limitations with respect to the Concurrent User licenses used on home computers are set forth in Section 1(g). - -(e) Concurrent Use in a Virtual Environment. If you have purchased Concurrent-User Licenses, you may install a copy of the Software on a terminal server (Microsoft Terminal Server or Citrix Metaframe), application virtualization server (Microsoft App-V, Citrix XenApp, or VMWare ThinApp) or virtual machine environment within your internal network for the sole and exclusive purpose of permitting individual users within your organization to access and use the Software through a terminal server, application virtualization session, or virtual machine environment from another computer provided that the total number of users that access or use the Software concurrently at any given point in time on such network, virtual machine or terminal server does not exceed the Permitted Number; and provided that the total number of users authorized to use the Software through the terminal server, application virtualization session, or virtual machine environment does not exceed ten (10) times the Permitted Number of users. In a virtual environment, you must deploy a reliable and accurate means of preventing users from exceeding the Permitted Number of concurrent users. Altova makes no warranties or representations about the performance of Altova software in a terminal server, application virtualization session, or virtual machine environment and the foregoing are expressly excluded from the limited warranty in Section 5 hereof. Technical support is not available with respect to issues arising from use in such environments. - -(f) Backup and Archival Copies. You may make one (1) backup and one (1) archival copy of the Software, provided your backup and archival copies are not installed or used on any computer and further provided that all such copies shall bear the original and unmodified copyright, patent and other intellectual property markings that appear on or in the Software. You may not transfer the rights to a backup or archival copy unless you transfer all rights in the Software as provided under Section 3. - -(g) Home Use (Personal and Non-Commercial). In order to further familiarize yourself with the Software and allow you to explore its features and functions, you, as the primary user of the computer on which the Software is installed for commercial purposes, may also install one copy of the Software on only one (1) home personal computer (such as your laptop or desktop) solely for your personal and non-commercial (“HPNC”) use. This HPNC copy may not be used in any commercial or revenue-generating business activities, including without limitation, work-from-home, teleworking, telecommuting, or other work-related use of the Software. The HPNC copy of the Software may not be used at the same time on a home personal computer as the Software is being used on the primary computer. - -(h) Key Codes, Upgrades and Updates. Prior to your purchase and as part of the registration for the thirty (30) day evaluation period, as applicable, you will receive an evaluation key code. You will receive a purchase key code when you elect to purchase the Software from either Altova GmbH or an authorized reseller. The purchase key code will enable you to activate the Software beyond the initial evaluation period. You may not re-license, reproduce or distribute any key code except with the express written permission of Altova. If the Software that you have licensed is an upgrade or an update, then the latest update or upgrade that you download and install replaces all or part of the Software previously licensed. The update or upgrade and the associated license keys does not constitute the granting of a second license to the Software in that you may not use the upgrade or updated copy in addition to the copy of the Software that it is replacing and whose license has terminated. - -(i) Title. Title to the Software is not transferred to you. Ownership of all copies of the Software and of copies made by you is vested in Altova, subject to the rights of use granted to you in this Agreement. As between you and Altova, documents, files, stylesheets, generated program code (including the Unrestricted Source Code) and schemas that are authored or created by you via your utilization of the Software, in accordance with its Documentation and the terms of this Agreement, are your property unless they are created using Evaluation Software, as defined in Section 4 of this Agreement, in which case you have only a limited license to use any output that contains generated program code (including Unrestricted Source Code) such as Java, C++, C#, VB.NET or XSLT and associated project files and build scripts, as well as generated XML, XML Schemas, documentation, UML diagrams, and database structures only for the thirty (30) day evaluation period. - -(j) Reverse Engineering. Except and to the limited extent as may be otherwise specifically provided by applicable law in the European Union, you may not reverse engineer, decompile, disassemble or otherwise attempt to discover the source code, underlying ideas, underlying user interface techniques or algorithms of the Software by any means whatsoever, directly or indirectly, or disclose any of the foregoing, except to the extent you may be expressly permitted to decompile under applicable law in the European Union, if it is essential to do so in order to achieve operability of the Software with another software program, and you have first requested Altova to provide the information necessary to achieve such operability and Altova has not made such information available. Altova has the right to impose reasonable conditions and to request a reasonable fee before providing such information. Any information supplied by Altova or obtained by you, as permitted hereunder, may only be used by you for the purpose described herein and may not be disclosed to any third party or used to create any software which is substantially similar to the expression of the Software. Requests for information from users in the European Union with respect to the above should be directed to the Altova Customer Support Department. - -(k) Other Restrictions.You may not loan, rent, lease, sublicense, distribute or otherwise transfer all or any portion of the Software to third parties except to the limited extent set forth in Section 3 or as otherwise expressly provided. You may not copy the Software except as expressly set forth above, and any copies that you are permitted to make pursuant to this Agreement must contain the same copyright, patent and other intellectual property markings that appear on or in the Software. You may not modify, adapt or translate the Software. You may not, directly or indirectly, encumber or suffer to exist any lien or security interest on the Software; knowingly take any action that would cause the Software to be placed in the public domain; or use the Software in any computer environment not specified in this Agreement. You may not permit any use of or access to the Software by any third party in connection with a commercial service offering, such as for a cloud-based or web-based SaaS offering. - -You will comply with applicable law and Altova’s instructions regarding the use of the Software. You agree to notify your employees and agents who may have access to the Software of the restrictions contained in this Agreement and to ensure their compliance with these restrictions. - -(l) NO GUARANTEE. THE SOFTWARE IS NEITHER GUARANTEED NOR WARRANTED TO BE ERROR-FREE NOR SHALL ANY LIABILITY BE ASSUMED BY ALTOVA IN THIS RESPECT. NOTWITHSTANDING ANY SUPPORT FOR ANY TECHNICAL STANDARD, THE SOFTWARE IS NOT INTENDED FOR USE IN OR IN CONNECTION WITH, WITHOUT LIMITATION, THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION, COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL EQUIPMENT, MEDICAL DEVICES OR LIFE SUPPORT SYSTEMS, MEDICAL OR HEALTH CARE APPLICATIONS, OR OTHER APPLICATIONS WHERE THE FAILURE OF THE SOFTWARE OR ERRORS IN DATA PROCESSING COULD LEAD TO DEATH, PERSONAL INJURY OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE. YOU AGREE THAT YOU ARE SOLELY RESPONSIBLE FOR THE ACCURACY AND ADEQUACY OF THE SOFTWARE AND ANY DATA GENERATED OR PROCESSED BY THE SOFTWARE FOR YOUR INTENDED USE AND YOU WILL DEFEND, INDEMNIFY AND HOLD ALTOVA, ITS OFFICERS AND EMPLOYEES HARMLESS FROM ANY THIRD PARTY CLAIMS, DEMANDS, OR SUITS THAT ARE BASED UPON THE ACCURACY AND ADEQUACY OF THE SOFTWARE IN YOUR USE OR ANY DATA GENERATED BY THE SOFTWARE IN YOUR USE. - -2. INTELLECTUAL PROPERTY RIGHTS - -You acknowledge that the Software and any copies that you are authorized by Altova to make are the intellectual property of and are owned by Altova and its suppliers. The structure, organization and code of the Software are the valuable trade secrets and confidential information of Altova and its suppliers. The Software is protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. You acknowledge that Altova retains the ownership of all patents, copyrights, trade secrets, trademarks and other intellectual property rights pertaining to the Software, and that Altova’s ownership rights extend to any images, photographs, animations, videos, audio, music, text and “applets” incorporated into the Software and all accompanying printed materials. You will take no actions which adversely affect Altova’s intellectual property rights in the Software. Trademarks shall be used in accordance with accepted trademark practice, including identification of trademark owners’ names. Trademarks may only be used to identify printed output produced by the Software, and such use of any trademark does not give you any right of ownership in that trademark. Altova®, XMLSpy®, Authentic®, StyleVision®, MapForce®, UModel®, DatabaseSpy®, DiffDog®, SchemaAgent®, SemanticWorks®, MissionKit®, Markup Your Mind®, Nanonull™, RaptorXML™, RaptorXML Server™, RaptorXML +XBRL Server™, Powered By RaptorXML™, FlowForce Server™, and StyleVision Server™ are trademarks of Altova GmbH (pending or registered in numerous countries). Unicode and the Unicode Logo are trademarks of Unicode, Inc. Windows, Windows XP, Windows Vista, Windows 7, and Windows 8 are trademarks of Microsoft. W3C, CSS, DOM, MathML, RDF, XHTML, XML and XSL are trademarks (registered in numerous countries) of the World Wide Web Consortium (W3C); marks of the W3C are registered and held by its host institutions, MIT, INRIA and Keio. Except as expressly stated above, this Agreement does not grant you any intellectual property rights in the Software. Notifications of claimed copyright infringement should be sent to Altova’s copyright agent as further provided on the Altova Web Site. - -3. LIMITED TRANSFER RIGHTS - -Notwithstanding the foregoing, you may transfer all your rights to use the Software to another person or legal entity provided that: (a) you also transfer this Agreement, the Software and all other software or hardware bundled or pre-installed with the Software, including all copies, updates and prior versions, and all copies of font software converted into other formats, to such person or entity; (b) you retain no copies, including backups and copies stored on a computer; (c) the receiving party secures a personalized key code from Altova; and (d) the receiving party accepts the terms and conditions of this Agreement and any other terms and conditions upon which you legally purchased a license to the Software. Notwithstanding the foregoing, you may not transfer education, pre-release, or not-for-resale copies of the Software. - -4. PRE-RELEASE AND EVALUATION PRODUCT ADDITIONAL TERMS - -If the product you have received with this license is pre-commercial release or beta Software (“Pre-release Software”), then this Section applies. In addition, this section applies to all evaluation and/or demonstration copies of Altova software (“Evaluation Software”) and continues in effect until you purchase a license. To the extent that any provision in this section is in conflict with any other term or condition in this Agreement, this section shall supersede such other term(s) and condition(s) with respect to the Pre-release and/or Evaluation Software, but only to the extent necessary to resolve the conflict. You acknowledge that the Pre-release Software is a pre-release version, does not represent final product from Altova, and may contain bugs, errors and other problems that could cause system or other failures and data loss. CONSEQUENTLY, THE PRE-RELEASE AND/OR EVALUATION SOFTWARE IS PROVIDED TO YOU “AS-IS” WITH NO WARRANTIES FOR USE OR PERFORMANCE, AND ALTOVA DISCLAIMS ANY WARRANTY OR LIABILITY OBLIGATIONS TO YOU OF ANY KIND, WHETHER EXPRESS OR IMPLIED. WHERE LEGALLY LIABILITY CANNOT BE EXCLUDED FOR PRE-RELEASE AND/OR EVALUATION SOFTWARE, BUT IT MAY BE LIMITED, ALTOVA’S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF FIFTY DOLLARS (USD $50) IN TOTAL. If the Evaluation Software has a time-out feature, then the software will cease operation after the conclusion of the designated evaluation period. Upon such expiration date, your license will expire unless otherwise extended. Your license to use any output created with the Evaluation Software that contains generated program code (including Unrestricted Source Code) such as Java, C++, C, VB.NET or XSLT and associated project files and build scripts as well as generated XML, XML Schemas, documentation, UML diagrams, and database structures terminates automatically upon the expiration of the designated evaluation period but the license to use such output is revived upon your purchase of a license for the Software that you evaluated and used to create such output. Access to any files created with the Evaluation Software is entirely at your risk. You acknowledge that Altova has not promised or guaranteed to you that Pre-release Software will be announced or made available to anyone in the future, that Altova has no express or implied obligation to you to announce or introduce the Pre-release Software, and that Altova may not introduce a product similar to or compatible with the Pre-release Software. Accordingly, you acknowledge that any research or development that you perform regarding the Pre-release Software or any product associated with the Pre-release Software is done entirely at your own risk. During the term of this Agreement, if requested by Altova, you will provide feedback to Altova regarding testing and use of the Pre-release Software, including error or bug reports. If you have been provided the Pre-release Software pursuant to a separate written agreement, your use of the Software is governed by such agreement. You may not sublicense, lease, loan, rent, distribute or otherwise transfer the Pre-release Software. Upon receipt of a later unreleased version of the Pre-release Software or release by Altova of a publicly released commercial version of the Software, whether as a stand-alone product or as part of a larger product, you agree to return or destroy all earlier Pre-release Software received from Altova and to abide by the terms of the license agreement for any such later versions of the Pre-release Software. - -5. LIMITED WARRANTY AND LIMITATION OF LIABILITY - -(a) Limited Warranty and Customer Remedies. Altova warrants to the person or entity that first purchases a license for use of the Software pursuant to the terms of this Agreement that (i) the Software will perform substantially in accordance with any accompanying Documentation for a period of ninety (90) days from the date of receipt, and (ii) any support services provided by Altova shall be substantially as described in Section 6 of this agreement. Some states and jurisdictions do not allow limitations on duration of an implied warranty, so the above limitation may not apply to you. To the extent allowed by applicable law, implied warranties on the Software, if any, are limited to ninety (90) days. Altova’s and its suppliers’ entire liability and your exclusive remedy shall be, at Altova’s option, either (i) return of the price paid, if any, or (ii) repair or replacement of the Software that does not meet Altova’s Limited Warranty and which is returned to Altova with a copy of your receipt. This Limited Warranty is void if failure of the Software has resulted from accident, abuse, misapplication, abnormal use, Trojan horse, virus, or any other malicious external code. Any replacement Software will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is longer. This limited warranty does not apply to Evaluation and/or Pre-release Software. - -(b) No Other Warranties and Disclaimer. THE FOREGOING LIMITED WARRANTY AND REMEDIES STATE THE SOLE AND EXCLUSIVE REMEDIES FOR ALTOVA OR ITS SUPPLIER’S BREACH OF WARRANTY. ALTOVA AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE. EXCEPT FOR THE FOREGOING LIMITED WARRANTY, AND FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ALTOVA AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALTOVA AND ITS SUPPLIERS DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, INFORMATIONAL CONTENT OR ACCURACY, QUIET ENJOYMENT, TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS. YOU MAY HAVE OTHERS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. - -(c) Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW EVEN IF A REMEDY FAILS ITS ESSENTIAL PURPOSE, IN NO EVENT SHALL ALTOVA OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, EVEN IF ALTOVA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, ALTOVA’S ENTIRE LIABILITY UNDER ANY PROVISION OF THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE PRODUCT. Because some states and jurisdictions do not allow the exclusion or limitation of liability, the above limitation may not apply to you. In such states and jurisdictions, Altova’s liability shall be limited to the greatest extent permitted by law and the limitations or exclusions of warranties and liability contained herein do not prejudice applicable statutory consumer rights of person acquiring goods otherwise than in the course of business. The disclaimer and limited liability above are fundamental to this Agreement between Altova and you. - -(d) Infringement Claims. Altova will indemnify and hold you harmless and will defend or settle any claim, suit or proceeding brought against you by a third party that is based upon a claim that the content contained in the Software infringes a copyright or violates an intellectual or proprietary right protected by United States or European Union law (“Claim”), but only to the extent the Claim arises directly out of the use of the Software and subject to the limitations set forth in Section 5 of this Agreement except as otherwise expressly provided. You must notify Altova in writing of any Claim within ten (10) business days after you first receive notice of the Claim, and you shall provide to Altova at no cost such assistance and cooperation as Altova may reasonably request from time to time in connection with the defense of the Claim. Altova shall have sole control over any Claim (including, without limitation, the selection of counsel and the right to settle on your behalf on any terms Altova deems desirable in the sole exercise of its discretion). You may, at your sole cost, retain separate counsel and participate in the defense or settlement negotiations. Altova shall pay actual damages, costs, and attorney fees awarded against you (or payable by you pursuant to a settlement agreement) in connection with a Claim to the extent such direct damages and costs are not reimbursed to you by insurance or a third party, to an aggregate maximum equal to the purchase price of the Software. If the Software or its use becomes the subject of a Claim or its use is enjoined, or if in the opinion of Altova’s legal counsel the Software is likely to become the subject of a Claim, Altova shall attempt to resolve the Claim by using commercially reasonable efforts to modify the Software or obtain a license to continue using the Software. If in the opinion of Altova’s legal counsel the Claim, the injunction or potential Claim cannot be resolved through reasonable modification or licensing, Altova, at its own election, may terminate this Agreement without penalty, and will refund to you on a pro rata basis any fees paid in advance by you to Altova. THE FOREGOING CONSTITUTES ALTOVA’S SOLE AND EXCLUSIVE LIABILITY FOR INTELLECTUAL PROPERTY INFRINGEMENT. This indemnity does not apply to situations where the alleged infringement, whether patent or otherwise, is the result of a combination of the Altova software and additional elements supplied by you. - -6. SUPPORT AND MAINTENANCE - -Altova offers multiple optional “Support & Maintenance Package(s)” (“SMP”) for the version of Software product edition that you have licensed, which you may elect to purchase in addition to your Software license. The Support Period, hereinafter defined, covered by such SMP shall be delineated at such time as you elect to purchase a SMP. Your rights with respect to support and maintenance as well as your upgrade eligibility depend on your decision to purchase SMP and the level of SMP that you have purchased: - -(a) If you have not purchased SMP, you will receive the Software AS IS and will not receive any maintenance releases or updates. However, Altova, at its option and in its sole discretion on a case by case basis, may decide to offer maintenance releases to you as a courtesy, but these maintenance releases will not include any new features in excess of the feature set at the time of your purchase of the Software. In addition, Altova will provide free technical support to you for thirty (30) days after the date of your purchase (the “Support Period” for the purposes of this paragraph 6(a), and Altova, in its sole discretion on a case by case basis, may also provide free courtesy technical support during your thirty (30) day evaluation period. Technical support is provided via a Web-based support form only, and there is no guaranteed response time. - -(b) If you have purchased SMP, then solely for the duration of its delineated Support Period, you are eligible to receive the version of the Software edition that you have licensed and all maintenance releases and updates for that edition that are released during your Support Period. For the duration of your SMP’s Support Period, you will also be eligible to receive upgrades to the comparable edition of the next version of the Software that succeeds the Software edition that you have licensed for applicable upgrades released during your Support Period. The specific upgrade edition that you are eligible to receive based on your Support Period is further detailed in the SMP that you have purchased. Software that is introduced as separate product is not included in SMP. Maintenance releases, updates and upgrades may or may not include additional features. In addition, Altova will provide Priority Technical Support to you for the duration of the Support Period. Priority Technical Support is provided via a Web-based support form only and Altova will make commercially reasonable efforts to respond via e-mail to all requests within forty-eight (48) hours during Altova’s business hours (MO-FR, 8am UTC – 10pm UTC, Austrian and US holidays excluded) and to make reasonable efforts to provide work-arounds to errors reported in the Software. - -During the Support Period you may also report any Software problem or error to Altova. If Altova determines that a reported reproducible material error in the Software exists and significantly impairs the usability and utility of the Software, Altova agrees to use reasonable commercial efforts to correct or provide a usable work-around solution in an upcoming maintenance release or update, which is made available at certain times at Altova’s sole discretion. - -If Altova, in its discretion, requests written verification of an error or malfunction discovered by you or requests supporting example files that exhibit the Software problem, you shall promptly provide such verification or files, by email, telecopy, or overnight mail, setting forth in reasonable detail the respects in which the Software fails to perform. You shall use reasonable efforts to cooperate in diagnosis or study of errors. Altova may include error corrections in maintenance releases, updates, or new major releases of the Software. Altova is not obligated to fix errors that are immaterial. Immaterial errors are those that do not significantly impact use of the Software as determined by Altova in its sole discretion. Whether or not you have purchased the Support & Maintenance Package, technical support only covers issues or questions resulting directly out of the operation of the Software and Altova will not provide you with generic consultation, assistance, or advice under any circumstances. - -Updating Software may require the updating of software not covered by this Agreement before installation. Updates of the operating system and application software not specifically covered by this Agreement are your responsibility and will not be provided by Altova under this Agreement. Altova’s obligations under this Section 6 are contingent upon your proper use of the Software and your compliance with the terms and conditions of this Agreement at all times. Altova shall be under no obligation to provide the above technical support if, in Altova’s opinion, the Software has failed due to the following conditions: (i) damage caused by the relocation of the Software to another location or CPU; (ii) alterations, modifications or attempts to change the Software without Altova’s written approval; (iii) causes external to the Software, such as natural disasters, the failure or fluctuation of electrical power, or computer equipment failure; (iv) your failure to maintain the Software at Altova’s specified release level; or (v) use of the Software with other software without Altova’s prior written approval. It will be your sole responsibility to: (i) comply with all Altova-specified operating and troubleshooting procedures and then notify Altova immediately of Software malfunction and provide Altova with complete information thereof; (ii) provide for the security of your confidential information; (iii) establish and maintain backup systems and procedures necessary to reconstruct lost or altered files, data or programs. - -7. SOFTWARE ACTIVATION, UPDATES AND LICENSE METERING - -(a) License Metering. The Software includes a built-in license metering module that is designed to assist you with monitoring license compliance in small local networks. The metering module attempts to communicate with other machines on your local area network. You permit Altova to use your internal network for license monitoring for this purpose. This license metering module may be used to assist with your license compliance but should not be the sole method. Should your firewall settings block said communications, you must deploy an accurate means of monitoring usage by the end user and preventing users from using the Software more than the Permitted Number. - -(b) License Compliance Monitoring. You are required to utilize a process or tool to ensure that the Permitted Number is not exceeded. Without prejudice or waiver of any potential violations of the Agreement, Altova may provide you with additional compliance tools should you be unable to accurately account for license usage within your organization. If provided with such a tool by Altova, you (a) are required to use it in order to comply with the terms of this Agreement and (b) permit Altova to use your internal network for license monitoring and metering and to generate compliance reports that are communicated to Altova from time to time. - -(c) Software Activation. The Software may use your internal network and Internet connection for the purpose of transmitting license-related data at the time of installation, registration, use, or update to an Altova Master License Server and validating the authenticity of the license-related data in order to protect Altova against unlicensed or illegal use of the Software and to improve customer service. Activation is based on the exchange of license related data between your computer and the Altova Master License Server. You agree that Altova may use these measures and you agree to follow any applicable requirements. You further agree that use of license key codes that are not or were not generated by Altova and lawfully obtained from Altova, or an authorized reseller as part of an effort to activate or use the Software violates Altova’s intellectual property rights as well as the terms of this Agreement. You agree that efforts to circumvent or disable Altova’s copyright protection mechanisms, the license management mechanism, or the Altova Master License Server violate Altova’s intellectual property rights as well as the terms of this Agreement. Altova expressly reserves the rights to seek all available legal and equitable remedies to prevent such actions and to recover lost profits, damages and costs. - -(d) LiveUpdate. Altova provides a new LiveUpdate notification service to you, which is free of charge. Altova may use your internal network and Internet connection for the purpose of transmitting license-related data to an Altova-operated LiveUpdate server to validate your license at appropriate intervals and determine if there is any update available for you. - -(e) Use of Data. The terms and conditions of the Privacy Policy are set out in full at http://www.altova.com/privacy and are incorporated by reference into this Agreement. By your acceptance of the terms of this Agreement and/or use of the Software, you authorize the collection, use and disclosure of information collected by Altova for the purposes provided for in this Agreement and/or the Privacy Policy. Altova has the right in its sole discretion to amend this provision of the Agreement and/or Privacy Policy at any time. You are encouraged to review the terms of the Privacy Policy as posted on the Altova Web site from time to time. - -(f) Audit Rights. You agree that Altova may audit your use of the Software for compliance with the terms of this Agreement at any time, upon reasonable notice. In the event that such audit reveals any use of the Software by you other than in full compliance with the terms of this Agreement, you shall reimburse Altova for all reasonable expenses related to such audit in addition to any other liabilities you may incur as a result of such non-compliance. - -(g) Notice to European Users. Please note that the information as described in paragraph 7(d) above may be transferred outside of the European Economic Area, for purposes of processing, analysis, and review, by Altova, Inc., a company located in Beverly, Massachusetts, U.S.A., or its subsidiaries or Altova’s subsidiaries or divisions, or authorized partners, located worldwide. You are advised that the United States uses a sectoral model of privacy protection that relies on a mix of legislation, governmental regulation, and self-regulation. You are further advised that the Council of the European Union has found that this model does not provide "adequate" privacy protections as contemplated by Article 25 of the European Union's Data Directive. (Directive 95/46/EC, 1995 O.J. (L 281) 31). Article 26 of the European Union's Data Directive allows for transfer of personal data from the European Union to a third country if the individual has unambiguously given his consent to the transfer of personal information, regardless of the third country's level of protection. By agreeing to this Agreement, you consent to the transfer of all such information to the United States and the processing of that information as described in this Agreement and the Privacy Policy. - -8. TERM AND TERMINATION - -This Agreement may be terminated (a) by your giving Altova written notice of termination; (b) by Altova, at its option, giving you written notice of termination if you commit a breach of this Agreement and fail to cure such breach within ten (10) days after notice from Altova; or (c) at the request of an authorized Altova reseller in the event that you fail to make your license payment or other monies due and payable. In addition the Agreement governing your use of a previous version of the Software that you have upgraded or updated of the Software is terminated upon your acceptance of the terms and conditions of the Agreement accompanying such upgrade or update. Upon any termination of the Agreement, you must cease all use of the Software that this Agreement governs, destroy all copies then in your possession or control and take such other actions as Altova may reasonably request to ensure that no copies of the Software remain in your possession or control. The terms and conditions set forth in Sections 1(h), 1(i), 1(j), 1(k), 1(l), 2, 5, 7, 9, 10, 11, and 11 survive termination as applicable. - -9. RESTRICTED RIGHTS NOTICE AND EXPORT RESTRICTIONS - -The Software was developed entirely at private expense and is commercial computer software provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S. Government or a U.S. Government contractor or subcontractor is subject to the restrictions set forth in this Agreement and as provided in FAR 12.211 and 12.212 (48 C.F.R. §12.211 and 12.212) or DFARS 227. 7202 (48 C.F.R. §227-7202) as applicable. Consistent with the above as applicable, Commercial Computer Software and Commercial Computer Documentation licensed to U.S. government end users only as commercial items and only with those rights as are granted to all other end users under the terms and conditions set forth in this Agreement. Manufacturer is Altova GmbH, Rudolfsplatz, 13a/9, A-1010 Vienna, Austria/EU. You may not use or otherwise export or re-export the Software or Documentation except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. In particular, but without limitation, the Software or Documentation may not be exported or re-exported (i) into (or to a national or resident of) any U.S. embargoed country or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce's Table of Denial Orders. By using the Software, you represent and warrant that you are not located in, under control of, or a national or resident of any such country or on any such list. - -10. US GOVERNMENT ENTITIES - -Notwithstanding the foregoing, if you are an agency, instrumentality or department of the federal government of the United States, then this Agreement shall be governed in accordance with the laws of the United States of America, and in the absence of applicable federal law, the laws of the Commonwealth of Massachusetts will apply. Further, and notwithstanding anything to the contrary in this Agreement (including but not limited to Section 5 (Indemnification)), all claims, demands, complaints and disputes will be subject to the Contract Disputes Act (41 U.S.C. §§7101 et seq.), the Tucker Act (28 U.S.C. §1346(a) and §1491), or the Federal Tort Claims Act (28 U.S.C. §§1346(b), 2401-2402, 2671-2672, 2674-2680), FAR 1.601(a) and 43.102 (Contract Modifications); FAR 12.302(b), as applicable, or other applicable governing authority. For the avoidance of doubt, if you are an agency, instrumentality, or department of the federal, state or local government of the U.S. or a U.S. public and accredited educational institution, then your indemnification obligations are only applicable to the extent they would not cause you to violate any applicable law (e.g., the Anti-Deficiency Act), and you have any legally required authorization or authorizing statute. - -11. THIRD PARTY SOFTWARE - -The Software may contain third party software which requires notices and/or additional terms and conditions. Such required third party software notices and/or additional terms and conditions are located at our Website at http://www.altova.com/legal_3rdparty.html and are made a part of and incorporated by reference into this Agreement. By accepting this Agreement, you are also accepting the additional terms and conditions, if any, set forth therein. - -12. JURISDICTION, CHOICE OF LAW, AND VENUE - -If you are located in the European Union and are using the Software in the European Union and not in the United States, then this Agreement will be governed by and construed in accordance with the laws of the Republic of Austria (excluding its conflict of laws principles and the U.N. Convention on Contracts for the International Sale of Goods) and you expressly agree that exclusive jurisdiction for any claim or dispute with Altova or relating in any way to your use of the Software resides in the Handelsgericht, Wien (Commercial Court, Vienna) and you further agree and expressly consent to the exercise of personal jurisdiction in the Handelsgericht, Wien (Commercial Court, Vienna) in connection with any such dispute or claim. - -If you are located in the United States or are using the Software in the United States then this Agreement will be governed by and construed in accordance with the laws of the Commonwealth of Massachusetts, USA (excluding its conflict of laws principles and the U.N. Convention on Contracts for the International Sale of Goods) and you expressly agree that exclusive jurisdiction for any claim or dispute with Altova or relating in any way to your use of the Software resides in the federal or state courts of the Commonwealth of Massachusetts and you further agree and expressly consent to the exercise of personal jurisdiction in the federal or state courts of the Commonwealth of Massachusetts in connection with any such dispute or claim. - -If you are located outside of the European Union or the United States and are not using the Software in the United States, then this Agreement will be governed by and construed in accordance with the laws of the Republic of Austria (excluding its conflict of laws principles and the U.N. Convention on Contracts for the International Sale of Goods) and you expressly agree that exclusive jurisdiction for any claim or dispute with Altova or relating in any way to your use of the Software resides in the Handelsgericht, Wien (Commercial Court, Vienna) and you further agree and expressly consent to the exercise of personal jurisdiction in the Handelsgericht Wien (Commercial Court, Vienna) in connection with any such dispute or claim. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. - -13. TRANSLATIONS - -Where Altova has provided you with a foreign translation of the English language version, you agree that the translation is provided for your convenience only and that the English language version will control. If there is any contradiction between the English language version and a translation, then the English language version shall take precedence. - -14. GENERAL PROVISIONS - -This Agreement contains the entire agreement and understanding of the parties with respect to the subject matter hereof, and supersedes all prior written and oral understandings of the parties with respect to the subject matter hereof. Any notice or other communication given under this Agreement shall be in writing and shall have been properly given by either of us to the other if sent by certified or registered mail, return receipt requested, or by overnight courier to the address shown on Altova’s Web site for Altova and the address shown in Altova’s records for you, or such other address as the parties may designate by notice given in the manner set forth above. This Agreement will bind and inure to the benefit of the parties and our respective heirs, personal and legal representatives, affiliates, successors and permitted assigns. The failure of either of us at any time to require performance of any provision hereof shall in no manner affect such party’s right at a later time to enforce the same or any other term of this Agreement. This Agreement may be amended only by a document in writing signed by both of us. In the event of a breach or threatened breach of this Agreement by either party, the other shall have all applicable equitable as well as legal remedies. Each party is duly authorized and empowered to enter into and perform this Agreement. If, for any reason, any provision of this Agreement is held invalid or otherwise unenforceable, such invalidity or unenforceability shall not affect the remainder of this Agreement, and this Agreement shall continue in full force and effect to the fullest extent allowed by law. The parties knowingly and expressly consent to the foregoing terms and conditions. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/altova-eula.yml b/tests/licensedcode/data/licenses/altova-eula.yml deleted file mode 100644 index 69dc76e3a1b..00000000000 --- a/tests/licensedcode/data/licenses/altova-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - altova-eula diff --git a/tests/licensedcode/data/licenses/aml.txt b/tests/licensedcode/data/licenses/aml.txt deleted file mode 100644 index 73e599b9a01..00000000000 --- a/tests/licensedcode/data/licenses/aml.txt +++ /dev/null @@ -1,7 +0,0 @@ -IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software. - -In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated. - -The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. - -IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/aml.yml b/tests/licensedcode/data/licenses/aml.yml deleted file mode 100644 index 3f71427e5ab..00000000000 --- a/tests/licensedcode/data/licenses/aml.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - aml diff --git a/tests/licensedcode/data/licenses/antlr-pd.txt b/tests/licensedcode/data/licenses/antlr-pd.txt deleted file mode 100644 index 2da64b8b315..00000000000 --- a/tests/licensedcode/data/licenses/antlr-pd.txt +++ /dev/null @@ -1,14 +0,0 @@ -ANTLR 2 License - -We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company -may do whatever they wish with source code distributed with ANTLR or the code generated by -ANTLR, including the incorporation of ANTLR, or its output, into commerical software. -We encourage users to develop software with ANTLR. However, we do ask that credit is given to -us for developing ANTLR. By "credit", we mean that if you use ANTLR or incorporate any source -code into one of your programs (commercial product, research project, or otherwise) that you -acknowledge this fact somewhere in the documentation, research report, etc... If you like ANTLR -and have developed a nice tool with the output, please mention that you developed it using -ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these -guidelines are kept, we expect to continue enhancing this system and expect to make other tools -available as they are completed. - diff --git a/tests/licensedcode/data/licenses/antlr-pd.yml b/tests/licensedcode/data/licenses/antlr-pd.yml deleted file mode 100644 index 23ebe67c95f..00000000000 --- a/tests/licensedcode/data/licenses/antlr-pd.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - antlr-pd diff --git a/tests/licensedcode/data/licenses/apache-1.0.txt b/tests/licensedcode/data/licenses/apache-1.0.txt deleted file mode 100644 index 9ebec838ee0..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.0.txt +++ /dev/null @@ -1,55 +0,0 @@ -==================================================================== -Copyright (c) The Apache Group. 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. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the Apache Group - for use in the Apache HTTP server project (http://www.apache.org/)." - - 4. The names "Apache Server" and "Apache Group" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - apache@apache.org. - - 5. Products derived from this software may not be called "Apache" - nor may "Apache" appear in their names without prior written - permission of the Apache Group. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the Apache Group - for use in the Apache HTTP server project (http://www.apache.org/)." - - THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY - EXPRESSED 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 APACHE GROUP OR - ITS 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. -==================================================================== - - This software consists of voluntary contributions made by many - individuals on behalf of the Apache Group and was originally based - on public domain software written at the National Center for - Supercomputing Applications, University of Illinois, Urbana-Champaign. - For more information on the Apache Group and the Apache HTTP server - project, please see . - \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-1.0.yml b/tests/licensedcode/data/licenses/apache-1.0.yml deleted file mode 100644 index 65b4eb5494e..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.0 AND public-domain diff --git a/tests/licensedcode/data/licenses/apache-1.1.txt b/tests/licensedcode/data/licenses/apache-1.1.txt deleted file mode 100644 index 552d9bd2d28..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1.txt +++ /dev/null @@ -1,57 +0,0 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2000 The Apache Software Foundation. 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. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Apache" and "Apache Software Foundation" must - * not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache", - * nor may "Apache" appear in their name, without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR - * ITS 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. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . - * - * Portions of this software are based upon public domain software - * originally written at the National Center for Supercomputing Applications, - * University of Illinois, Urbana-Champaign. - */ diff --git a/tests/licensedcode/data/licenses/apache-1.1.yml b/tests/licensedcode/data/licenses/apache-1.1.yml deleted file mode 100644 index 2ee1410b0ee..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - apache-1.1 AND public-domain - diff --git a/tests/licensedcode/data/licenses/apache-1.1_10.txt b/tests/licensedcode/data/licenses/apache-1.1_10.txt deleted file mode 100644 index 7ad34765946..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_10.txt +++ /dev/null @@ -1,27 +0,0 @@ - * 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. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Apache" and "Apache Software Foundation" must - * not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache", - * nor may "Apache" appear in their name, without prior written - * permission of the Apache Software Foundation. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-1.1_10.yml b/tests/licensedcode/data/licenses/apache-1.1_10.yml deleted file mode 100644 index 8cbffa55cf8..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache-1.1_13.txt b/tests/licensedcode/data/licenses/apache-1.1_13.txt deleted file mode 100644 index d42f02a972d..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_13.txt +++ /dev/null @@ -1,36 +0,0 @@ -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements - and notices. Redistributions must also contain a copy of this - document. - -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. The name "ExoLab" must not be used to endorse or promote products - derived from this Software without prior written permission of - Intalio Inc. For written permission, please contact info@exolab.org. - -4. Products derived from this Software may not be called "Castor" - nor may "Castor" appear in their names without prior written - permission of Intalio Inc. Exolab, Castor and Intalio are - trademarks of Intalio Inc. - -5. Due credit should be given to the ExoLab Project - (http://www.exolab.org/). - -THIS SOFTWARE IS PROVIDED BY INTALIO AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESSED 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 INTALIO OR ITS -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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-1.1_13.yml b/tests/licensedcode/data/licenses/apache-1.1_13.yml deleted file mode 100644 index 8beb6480d68..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - dom4j diff --git a/tests/licensedcode/data/licenses/apache-1.1_2.txt b/tests/licensedcode/data/licenses/apache-1.1_2.txt deleted file mode 100644 index 77ef12594f1..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_2.txt +++ /dev/null @@ -1,53 +0,0 @@ - The Apache Software License, Version 1.1 - - Copyright (c) 2002 The Apache Software Foundation. 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. The end-user documentation included with the redistribution, - if any, must include the following acknowledgment: - "This product includes software developed by the - Apache Software Foundation (http://www.apache.org/)." - Alternately, this acknowledgment may appear in the software itself, - if and wherever such third-party acknowledgments normally appear. - - 4. The names "BSF", "Apache", and "Apache Software Foundation" must - not be used to endorse or promote products derived from this - software without prior written permission. For written - permission, please contact apache@apache.org. - - 5. Products derived from this software may not be called "Apache", - nor may "Apache" appear in their name, without prior written - permission of the Apache Software Foundation. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR - ITS 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. - - This software consists of voluntary contributions made by many individuals - on behalf of the Apache Software Foundation and was originally created by - Sanjiva Weerawarana and others at International Business Machines - Corporation. For more information on the Apache Software Foundation, - please see . - - diff --git a/tests/licensedcode/data/licenses/apache-1.1_2.yml b/tests/licensedcode/data/licenses/apache-1.1_2.yml deleted file mode 100644 index 8cbffa55cf8..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache-1.1_20.txt b/tests/licensedcode/data/licenses/apache-1.1_20.txt deleted file mode 100644 index ba8d4f7abed..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_20.txt +++ /dev/null @@ -1,57 +0,0 @@ -/* - * - * ==================================================================== - * - * The Apache Software License, Version 1.1 - * - * Copyright (c) 1999-2001 The Apache Software Foundation. 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. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. - * - * 4. The names "The Jakarta Project", "Commons", and "Apache Software - * Foundation" must not be used to endorse or promote products derived - * from this software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache" - * nor may "Apache" appear in their names without prior written - * permission of the Apache Group. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR - * ITS 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. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . - * - */ diff --git a/tests/licensedcode/data/licenses/apache-1.1_20.yml b/tests/licensedcode/data/licenses/apache-1.1_20.yml deleted file mode 100644 index 8cbffa55cf8..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache-1.1_23.txt b/tests/licensedcode/data/licenses/apache-1.1_23.txt deleted file mode 100644 index 7bbbf227dbc..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_23.txt +++ /dev/null @@ -1,29 +0,0 @@ -Kannel: License - -The Kannel Software License, Version 1.0 - -Copyright (c) 2001-2009 Kannel Group -Copyright (c) 1998-2001 WapIT Ltd. -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. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: - -"This product includes software developed by the Kannel Group (http://www.kannel.org/)." - -Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. - -4. The names "Kannel" and "Kannel Group" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact org@kannel.org. - -5. Products derived from this software may not be called "Kannel", nor may "Kannel" appear in their name, without prior written permission of the Kannel Group. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 KANNEL GROUP OR ITS 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. - -This software consists of voluntary contributions made by many individuals on behalf of the Kannel Group. For more information on the Kannel Group, please see . - -Portions of this software are based upon software originally written at WapIT Ltd., Helsinki, Finland for the Kannel project. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-1.1_23.yml b/tests/licensedcode/data/licenses/apache-1.1_23.yml deleted file mode 100644 index 8cbffa55cf8..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache-1.1_29.txt b/tests/licensedcode/data/licenses/apache-1.1_29.txt deleted file mode 100644 index e67385dac03..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_29.txt +++ /dev/null @@ -1,49 +0,0 @@ -/* - * ============================================================================ - * The Apache Software License, Version 1.1 - * ============================================================================ - * - * Copyright (C) The Apache Software Foundation. All - * rights reserved. - * - * Redistribution and use in source and binary forms, with or without modifica- - * tion, 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. The end-user documentation included with the redistribution, if any, must - * include the following acknowledgment: "This product includes software - * developed by the Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgment may appear in the software itself, if - * and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Ant" and "Apache Software Foundation" must not be used to - * endorse or promote products derived from this software without prior - * written permission. For written permission, please contact - * apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache", nor may - * "Apache" appear in their name, without prior written permission of the - * Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 - * APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU- - * DING, 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. - * - * This software consists of voluntary contributions made by many individuals - * on behalf of the Apache Software Foundation. For more information on the - * Apache Software Foundation, please see . - * - */ diff --git a/tests/licensedcode/data/licenses/apache-1.1_29.yml b/tests/licensedcode/data/licenses/apache-1.1_29.yml deleted file mode 100644 index 8cbffa55cf8..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache-1.1_4.txt b/tests/licensedcode/data/licenses/apache-1.1_4.txt deleted file mode 100644 index 724079911c8..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_4.txt +++ /dev/null @@ -1,3 +0,0 @@ -Portions of this software are based upon public domain software -originally written at the National Center for Supercomputing -Applications, University of Illinois, Urbana-Champaign. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-1.1_4.yml b/tests/licensedcode/data/licenses/apache-1.1_4.yml deleted file mode 100644 index bdf08a6ce9e..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 AND public-domain diff --git a/tests/licensedcode/data/licenses/apache-1.1_5.txt b/tests/licensedcode/data/licenses/apache-1.1_5.txt deleted file mode 100644 index 4d19a255789..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_5.txt +++ /dev/null @@ -1,42 +0,0 @@ -APACHE 1.1 - - 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 The end-user documentation included with the redistribution, - if any, must include the following acknowledgment: - "This product includes software developed by the - Apache Software Foundation (http://wwwapacheorg/)" - Alternately, this acknowledgment may appear in the software itself, - if and wherever such third-party acknowledgments normally appear - - 4 The names "Axis" and "Apache Software Foundation" must - not be used to endorse or promote products derived from this - software without prior written permission For written - permission, please contact apache@apacheorg - - 5 Products derived from this software may not be called "Apache", - nor may "Apache" appear in their name, without prior written - permission of the Apache Software Foundation - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR - ITS 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/tests/licensedcode/data/licenses/apache-1.1_5.yml b/tests/licensedcode/data/licenses/apache-1.1_5.yml deleted file mode 100644 index 8cbffa55cf8..00000000000 --- a/tests/licensedcode/data/licenses/apache-1.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache-2.0.txt b/tests/licensedcode/data/licenses/apache-2.0.txt deleted file mode 100644 index 261eeb9e9f8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0.txt +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/licenses/apache-2.0.yml b/tests/licensedcode/data/licenses/apache-2.0.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_12.txt b/tests/licensedcode/data/licenses/apache-2.0_12.txt deleted file mode 100644 index d6456956733..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_12.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/licenses/apache-2.0_12.yml b/tests/licensedcode/data/licenses/apache-2.0_12.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_15.txt b/tests/licensedcode/data/licenses/apache-2.0_15.txt deleted file mode 100644 index d6b7856c683..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_15.txt +++ /dev/null @@ -1,219 +0,0 @@ -Some files use code from different Apache projects. -The source code of these files contains the appropriate copyright notices -as described in the Appendix of http://www.apache.org/licenses/LICENSE-2.0 -This is a copy of the text that can be found at that specific URL: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - * You must give any other recipients of the Work or - Derivative Works a copy of this License; and - * You must cause any modified files to carry prominent notices - stating that You changed the files; and - * You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - * If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/licenses/apache-2.0_15.yml b/tests/licensedcode/data/licenses/apache-2.0_15.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_16.txt b/tests/licensedcode/data/licenses/apache-2.0_16.txt deleted file mode 100644 index ed17b1fb7d9..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_16.txt +++ /dev/null @@ -1 +0,0 @@ -This file is released under Apache 2.0 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-2.0_16.yml b/tests/licensedcode/data/licenses/apache-2.0_16.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_17.txt b/tests/licensedcode/data/licenses/apache-2.0_17.txt deleted file mode 100644 index f820d4bd3a6..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_17.txt +++ /dev/null @@ -1,203 +0,0 @@ -/* - * Apache License - * Version 2.0, January 2004 - * http://www.apache.org/licenses/ - * - * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - * - * 1. Definitions. - * - * "License" shall mean the terms and conditions for use, reproduction, - * and distribution as defined by Sections 1 through 9 of this document. - * - * "Licensor" shall mean the copyright owner or entity authorized by - * the copyright owner that is granting the License. - * - * "Legal Entity" shall mean the union of the acting entity and all - * other entities that control, are controlled by, or are under common - * control with that entity. For the purposes of this definition, - * "control" means (i) the power, direct or indirect, to cause the - * direction or management of such entity, whether by contract or - * otherwise, or (ii) ownership of fifty percent (50%) or more of the - * outstanding shares, or (iii) beneficial ownership of such entity. - * - * "You" (or "Your") shall mean an individual or Legal Entity - * exercising permissions granted by this License. - * - * "Source" form shall mean the preferred form for making modifications, - * including but not limited to software source code, documentation - * source, and configuration files. - * - * "Object" form shall mean any form resulting from mechanical - * transformation or translation of a Source form, including but - * not limited to compiled object code, generated documentation, - * and conversions to other media types. - * - * "Work" shall mean the work of authorship, whether in Source or - * Object form, made available under the License, as indicated by a - * copyright notice that is included in or attached to the work - * (an example is provided in the Appendix below). - * - * "Derivative Works" shall mean any work, whether in Source or Object - * form, that is based on (or derived from) the Work and for which the - * editorial revisions, annotations, elaborations, or other modifications - * represent, as a whole, an original work of authorship. For the purposes - * of this License, Derivative Works shall not include works that remain - * separable from, or merely link (or bind by name) to the interfaces of, - * the Work and Derivative Works thereof. - * - * "Contribution" shall mean any work of authorship, including - * the original version of the Work and any modifications or additions - * to that Work or Derivative Works thereof, that is intentionally - * submitted to Licensor for inclusion in the Work by the copyright owner - * or by an individual or Legal Entity authorized to submit on behalf of - * the copyright owner. For the purposes of this definition, "submitted" - * means any form of electronic, verbal, or written communication sent - * to the Licensor or its representatives, including but not limited to - * communication on electronic mailing lists, source code control systems, - * and issue tracking systems that are managed by, or on behalf of, the - * Licensor for the purpose of discussing and improving the Work, but - * excluding communication that is conspicuously marked or otherwise - * designated in writing by the copyright owner as "Not a Contribution." - * - * "Contributor" shall mean Licensor and any individual or Legal Entity - * on behalf of whom a Contribution has been received by Licensor and - * subsequently incorporated within the Work. - * - * 2. Grant of Copyright License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * copyright license to reproduce, prepare Derivative Works of, - * publicly display, publicly perform, sublicense, and distribute the - * Work and such Derivative Works in Source or Object form. - * - * 3. Grant of Patent License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * (except as stated in this section) patent license to make, have made, - * use, offer to sell, sell, import, and otherwise transfer the Work, - * where such license applies only to those patent claims licensable - * by such Contributor that are necessarily infringed by their - * Contribution(s) alone or by combination of their Contribution(s) - * with the Work to which such Contribution(s) was submitted. If You - * institute patent litigation against any entity (including a - * cross-claim or counterclaim in a lawsuit) alleging that the Work - * or a Contribution incorporated within the Work constitutes direct - * or contributory patent infringement, then any patent licenses - * granted to You under this License for that Work shall terminate - * as of the date such litigation is filed. - * - * 4. Redistribution. You may reproduce and distribute copies of the - * Work or Derivative Works thereof in any medium, with or without - * modifications, and in Source or Object form, provided that You - * meet the following conditions: - * - * (a) You must give any other recipients of the Work or - * Derivative Works a copy of this License; and - * - * (b) You must cause any modified files to carry prominent notices - * stating that You changed the files; and - * - * (c) You must retain, in the Source form of any Derivative Works - * that You distribute, all copyright, patent, trademark, and - * attribution notices from the Source form of the Work, - * excluding those notices that do not pertain to any part of - * the Derivative Works; and - * - * (d) If the Work includes a "NOTICE" text file as part of its - * distribution, then any Derivative Works that You distribute must - * include a readable copy of the attribution notices contained - * within such NOTICE file, excluding those notices that do not - * pertain to any part of the Derivative Works, in at least one - * of the following places: within a NOTICE text file distributed - * as part of the Derivative Works; within the Source form or - * documentation, if provided along with the Derivative Works; or, - * within a display generated by the Derivative Works, if and - * wherever such third-party notices normally appear. The contents - * of the NOTICE file are for informational purposes only and - * do not modify the License. You may add Your own attribution - * notices within Derivative Works that You distribute, alongside - * or as an addendum to the NOTICE text from the Work, provided - * that such additional attribution notices cannot be construed - * as modifying the License. - * - * You may add Your own copyright statement to Your modifications and - * may provide additional or different license terms and conditions - * for use, reproduction, or distribution of Your modifications, or - * for any such Derivative Works as a whole, provided Your use, - * reproduction, and distribution of the Work otherwise complies with - * the conditions stated in this License. - * - * 5. Submission of Contributions. Unless You explicitly state otherwise, - * any Contribution intentionally submitted for inclusion in the Work - * by You to the Licensor shall be under the terms and conditions of - * this License, without any additional terms or conditions. - * Notwithstanding the above, nothing herein shall supersede or modify - * the terms of any separate license agreement you may have executed - * with Licensor regarding such Contributions. - * - * 6. Trademarks. This License does not grant permission to use the trade - * names, trademarks, service marks, or product names of the Licensor, - * except as required for reasonable and customary use in describing the - * origin of the Work and reproducing the content of the NOTICE file. - * - * 7. Disclaimer of Warranty. Unless required by applicable law or - * agreed to in writing, Licensor provides the Work (and each - * Contributor provides its Contributions) 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. You are solely responsible for determining the - * appropriateness of using or redistributing the Work and assume any - * risks associated with Your exercise of permissions under this License. - * - * 8. Limitation of Liability. In no event and under no legal theory, - * whether in tort (including negligence), contract, or otherwise, - * unless required by applicable law (such as deliberate and grossly - * negligent acts) or agreed to in writing, shall any Contributor be - * liable to You for damages, including any direct, indirect, special, - * incidental, or consequential damages of any character arising as a - * result of this License or out of the use or inability to use the - * Work (including but not limited to damages for loss of goodwill, - * work stoppage, computer failure or malfunction, or any and all - * other commercial damages or losses), even if such Contributor - * has been advised of the possibility of such damages. - * - * 9. Accepting Warranty or Additional Liability. While redistributing - * the Work or Derivative Works thereof, You may choose to offer, - * and charge a fee for, acceptance of support, warranty, indemnity, - * or other liability obligations and/or rights consistent with this - * License. However, in accepting such obligations, You may act only - * on Your own behalf and on Your sole responsibility, not on behalf - * of any other Contributor, and only if You agree to indemnify, - * defend, and hold each Contributor harmless for any liability - * incurred by, or claims asserted against, such Contributor by reason - * of your accepting any such warranty or additional liability. - * - * END OF TERMS AND CONDITIONS - * - * APPENDIX: How to apply the Apache License to your work. - * - * To apply the Apache License to your work, attach the following - * boilerplate notice, with the fields enclosed by brackets "[]" - * replaced with your own identifying information. (Don't include - * the brackets!) The text should be enclosed in the appropriate - * comment syntax for the file format. We also recommend that a - * file or class name and description of purpose be included on the - * same "printed page" as the copyright notice for easier - * identification within third-party archives. - * - * Copyright [yyyy] [name of copyright owner] - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ diff --git a/tests/licensedcode/data/licenses/apache-2.0_17.yml b/tests/licensedcode/data/licenses/apache-2.0_17.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_2.txt b/tests/licensedcode/data/licenses/apache-2.0_2.txt deleted file mode 100644 index de004ea4f2e..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_2.txt +++ /dev/null @@ -1 +0,0 @@ -The Apache Software License, Version 2.0 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-2.0_2.yml b/tests/licensedcode/data/licenses/apache-2.0_2.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_20.txt b/tests/licensedcode/data/licenses/apache-2.0_20.txt deleted file mode 100644 index 29f81d812f3..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_20.txt +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/licenses/apache-2.0_20.yml b/tests/licensedcode/data/licenses/apache-2.0_20.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_22.txt b/tests/licensedcode/data/licenses/apache-2.0_22.txt deleted file mode 100644 index c2dbdcba90e..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_22.txt +++ /dev/null @@ -1,13 +0,0 @@ -APACHE 2.0 - -Licensed under the Apache License, Version 20 \(the "License"\); -you may not use this file except in compliance with the License -You may obtain a copy of the License at - - http://wwwapacheorg/licenses/LICENSE-20 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied -See the License for the specific language governing permissions and -limitations under the License \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-2.0_22.yml b/tests/licensedcode/data/licenses/apache-2.0_22.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_24.txt b/tests/licensedcode/data/licenses/apache-2.0_24.txt deleted file mode 100644 index 75b52484ea4..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_24.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/licenses/apache-2.0_24.yml b/tests/licensedcode/data/licenses/apache-2.0_24.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_25.txt b/tests/licensedcode/data/licenses/apache-2.0_25.txt deleted file mode 100644 index ade750b16ba..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_25.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS diff --git a/tests/licensedcode/data/licenses/apache-2.0_25.yml b/tests/licensedcode/data/licenses/apache-2.0_25.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_9.txt b/tests/licensedcode/data/licenses/apache-2.0_9.txt deleted file mode 100644 index b5f4dd44502..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_9.txt +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means \(i\) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [REL:yyyy] [REL:name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/licenses/apache-2.0_9.yml b/tests/licensedcode/data/licenses/apache-2.0_9.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-2.0_and_gpl-2.0.txt b/tests/licensedcode/data/licenses/apache-2.0_and_gpl-2.0.txt deleted file mode 100644 index cc7b6a42dd1..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_and_gpl-2.0.txt +++ /dev/null @@ -1,2 +0,0 @@ -Dual-licensed for use under the Apache License Version 2.0 or the General -Public License (GPL) Version 2. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache-2.0_and_gpl-2.0.yml b/tests/licensedcode/data/licenses/apache-2.0_and_gpl-2.0.yml deleted file mode 100644 index 8195fe3850c..00000000000 --- a/tests/licensedcode/data/licenses/apache-2.0_and_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 OR apache-2.0 diff --git a/tests/licensedcode/data/licenses/apache-exception-llvm.txt b/tests/licensedcode/data/licenses/apache-exception-llvm.txt deleted file mode 100644 index c23ab9d7f97..00000000000 --- a/tests/licensedcode/data/licenses/apache-exception-llvm.txt +++ /dev/null @@ -1,13 +0,0 @@ -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into an Object form of such source code, you -may redistribute such embedded portions in such Object form without complying -with the conditions of Sections 4(a), 4(b) and 4(d) of the License. - -In addition, if you combine or link compiled forms of this Software with -software that is licensed under the GPLv2 ("Combined Software") and if a -court of competent jurisdiction determines that the patent provision (Section -3),the indemnity provision (Section 9) or other Section of the License -conflicts with the conditions of the GPLv2, you may retroactively and -prospectively choose to deem waived or otherwise exclude such Section(s) of -the License, but only in their entirety and only with respect to the Combined -Software. diff --git a/tests/licensedcode/data/licenses/apache-exception-llvm.yml b/tests/licensedcode/data/licenses/apache-exception-llvm.yml deleted file mode 100644 index 3301c2bc54b..00000000000 --- a/tests/licensedcode/data/licenses/apache-exception-llvm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - llvm-exception diff --git a/tests/licensedcode/data/licenses/apache_2.txt b/tests/licensedcode/data/licenses/apache_2.txt deleted file mode 100644 index 89f0a96a4a1..00000000000 --- a/tests/licensedcode/data/licenses/apache_2.txt +++ /dev/null @@ -1,3 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). - diff --git a/tests/licensedcode/data/licenses/apache_2.yml b/tests/licensedcode/data/licenses/apache_2.yml deleted file mode 100644 index 0a9d533b88c..00000000000 --- a/tests/licensedcode/data/licenses/apache_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 OR apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache_3.txt b/tests/licensedcode/data/licenses/apache_3.txt deleted file mode 100644 index 439eb83b2f4..00000000000 --- a/tests/licensedcode/data/licenses/apache_3.txt +++ /dev/null @@ -1,3 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). - diff --git a/tests/licensedcode/data/licenses/apache_3.yml b/tests/licensedcode/data/licenses/apache_3.yml deleted file mode 100644 index 0a9d533b88c..00000000000 --- a/tests/licensedcode/data/licenses/apache_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 OR apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache_4.txt b/tests/licensedcode/data/licenses/apache_4.txt deleted file mode 100644 index 3f59805ce43..00000000000 --- a/tests/licensedcode/data/licenses/apache_4.txt +++ /dev/null @@ -1,2 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). diff --git a/tests/licensedcode/data/licenses/apache_4.yml b/tests/licensedcode/data/licenses/apache_4.yml deleted file mode 100644 index 0a9d533b88c..00000000000 --- a/tests/licensedcode/data/licenses/apache_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 OR apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache_7.txt b/tests/licensedcode/data/licenses/apache_7.txt deleted file mode 100644 index 1fb6dde4779..00000000000 --- a/tests/licensedcode/data/licenses/apache_7.txt +++ /dev/null @@ -1,15 +0,0 @@ - ========================================================================= - == NOTICE file corresponding to the section 4 d of == - == the Apache License, Version 2.0, == - == in this case for the Apache Ant distribution. == - ========================================================================= - - This product includes software developed by - The Apache Software Foundation (http://www.apache.org/). - - This product includes also software developed by : - - the W3C consortium (http://www.w3c.org) , - - the SAX project (http://www.saxproject.org) - - Please read the different LICENSE files present in the root directory of - this distribution. diff --git a/tests/licensedcode/data/licenses/apache_7.yml b/tests/licensedcode/data/licenses/apache_7.yml deleted file mode 100644 index 6647832be72..00000000000 --- a/tests/licensedcode/data/licenses/apache_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 AND sax-pd AND w3c diff --git a/tests/licensedcode/data/licenses/apache_8.txt b/tests/licensedcode/data/licenses/apache_8.txt deleted file mode 100644 index 45392059369..00000000000 --- a/tests/licensedcode/data/licenses/apache_8.txt +++ /dev/null @@ -1,2 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). diff --git a/tests/licensedcode/data/licenses/apache_8.yml b/tests/licensedcode/data/licenses/apache_8.yml deleted file mode 100644 index 0a9d533b88c..00000000000 --- a/tests/licensedcode/data/licenses/apache_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 OR apache-1.1 diff --git a/tests/licensedcode/data/licenses/apache_and_ijg_and_proprietary.txt b/tests/licensedcode/data/licenses/apache_and_ijg_and_proprietary.txt deleted file mode 100644 index 24c6e105c6b..00000000000 --- a/tests/licensedcode/data/licenses/apache_and_ijg_and_proprietary.txt +++ /dev/null @@ -1,8 +0,0 @@ -Third-party software, including font technology, is copyrighted and -licensed from Sun suppliers. Portions Copyright Eastman Kodak -Company 1992. This product includes code licensed from RSA Data -Security. This product includes software developed by the Apache -Software Foundation (http://www.apache.org). Portions licensed from -Taligent, Inc. This software is based in part on the work of the -Independent JPEG Group. The Graphics Interchange Format is the -Copyright property of CompuServe Incorporated. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apache_and_ijg_and_proprietary.yml b/tests/licensedcode/data/licenses/apache_and_ijg_and_proprietary.yml deleted file mode 100644 index 4e9a9b813ea..00000000000 --- a/tests/licensedcode/data/licenses/apache_and_ijg_and_proprietary.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - (apache-1.0 OR apache-2.0) AND proprietary-license AND ijg diff --git a/tests/licensedcode/data/licenses/apple-attribution.txt b/tests/licensedcode/data/licenses/apple-attribution.txt deleted file mode 100644 index bb63490ebb8..00000000000 --- a/tests/licensedcode/data/licenses/apple-attribution.txt +++ /dev/null @@ -1,14 +0,0 @@ -/* Copyright (C) 1988-1991 Apple Computer, Inc. - * All Rights Reserved. - * - * Warranty Information - * Even though Apple has reviewed this software, Apple makes no warranty - * or representation, either express or implied, with respect to this - * software, its quality, accuracy, merchantability, or fitness for a - * particular purpose. As a result, this software is provided "as is," - * and you, its user, are assuming the entire risk as to its quality - * and accuracy. - * - * This code may be used and freely distributed as long as it includes - * this copyright notice and the warranty information. - * diff --git a/tests/licensedcode/data/licenses/apple-attribution.yml b/tests/licensedcode/data/licenses/apple-attribution.yml deleted file mode 100644 index 9a36e0254e6..00000000000 --- a/tests/licensedcode/data/licenses/apple-attribution.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apple-attribution diff --git a/tests/licensedcode/data/licenses/apple-attribution_1.txt b/tests/licensedcode/data/licenses/apple-attribution_1.txt deleted file mode 100644 index 0e2dc0d1d7c..00000000000 --- a/tests/licensedcode/data/licenses/apple-attribution_1.txt +++ /dev/null @@ -1,14 +0,0 @@ -/* Copyright (C) 1988-1991 Apple Computer, Inc. -* All Rights Reserved. -* -* Warranty Information -* Even though Apple has reviewed this software, Apple makes no warranty -* or representation, either express or implied, with respect to this -* software, its quality, accuracy, merchantability, or fitness for a -* particular purpose. As a result, this software is provided "as is," -* and you, its user, are assuming the entire risk as to its quality -* and accuracy. -* -* This code may be used and freely distributed as long as it includes -* this copyright notice and the warranty information. -* \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apple-attribution_1.yml b/tests/licensedcode/data/licenses/apple-attribution_1.yml deleted file mode 100644 index 9a36e0254e6..00000000000 --- a/tests/licensedcode/data/licenses/apple-attribution_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apple-attribution diff --git a/tests/licensedcode/data/licenses/apple-mpeg-4.txt b/tests/licensedcode/data/licenses/apple-mpeg-4.txt deleted file mode 100644 index 112b1663bca..00000000000 --- a/tests/licensedcode/data/licenses/apple-mpeg-4.txt +++ /dev/null @@ -1,24 +0,0 @@ -This software module was originally developed by Apple Computer, Inc. -in the course of development of MPEG-4. - -This software module is an implementation of a part of one or -more MPEG-4 tools as specified by MPEG-4. -ISO/IEC gives users of MPEG-4 free license to this -software module or modifications thereof for use in hardware -or software products claiming conformance to MPEG-4. - -Those intending to use this software module in hardware or software -products are advised that its use may infringe existing patents. -The original developer of this software module and his/her company, -the subsequent editors and their companies, and ISO/IEC have no -liability for use of this software module or modifications thereof -in an implementation. - -Copyright is not released for non MPEG-4 conforming -products. Apple Computer, Inc. retains full right to use the code for its own -purpose, assign or donate the code to a third party and to -inhibit third parties from using the code for non -MPEG-4 conforming products. - -This copyright notice must be included in all copies or -derivative works. Copyright (c) 1999. diff --git a/tests/licensedcode/data/licenses/apple-mpeg-4.yml b/tests/licensedcode/data/licenses/apple-mpeg-4.yml deleted file mode 100644 index c9edd643d0b..00000000000 --- a/tests/licensedcode/data/licenses/apple-mpeg-4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apple-mpeg-4 diff --git a/tests/licensedcode/data/licenses/apple-mpeg-4_1.txt b/tests/licensedcode/data/licenses/apple-mpeg-4_1.txt deleted file mode 100644 index 17ca9185fb2..00000000000 --- a/tests/licensedcode/data/licenses/apple-mpeg-4_1.txt +++ /dev/null @@ -1,17 +0,0 @@ -/** - This software module was originally developed by Apple Computer, Inc. in the - course of development of MPEG-4. This software module is an implementation of - a part of one or more MPEG-4 tools as specified by MPEG-4. ISO/IEC gives users - of MPEG-4 free license to this software module or modifications thereof for - use in hardware or software products claiming conformance to MPEG-4. Those - intending to use this software module in hardware or software products are - advised that its use may infringe existing patents. The original developer of - this software module and his/her company, the subsequent editors and their - companies, and ISO/IEC have no liability for use of this software module or - modifications thereof in an implementation. Copyright is not released for non - MPEG-4 conforming products. Apple Computer, Inc. retains full right to use the - code for its own purpose, assign or donate the code to a third party and to - inhibit third parties from using the code for non MPEG-4 conforming products. - This copyright notice must be included in all copies or derivative works. - Copyright (c) 1999. -*/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/apple-mpeg-4_1.yml b/tests/licensedcode/data/licenses/apple-mpeg-4_1.yml deleted file mode 100644 index c9edd643d0b..00000000000 --- a/tests/licensedcode/data/licenses/apple-mpeg-4_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apple-mpeg-4 diff --git a/tests/licensedcode/data/licenses/apsl-2.0.txt b/tests/licensedcode/data/licenses/apsl-2.0.txt deleted file mode 100644 index 3029a426f83..00000000000 --- a/tests/licensedcode/data/licenses/apsl-2.0.txt +++ /dev/null @@ -1,310 +0,0 @@ - -Apple Public Source License -Version 2.0 - August 6, 2003 - -Please read this License carefully before downloading this -software. By downloading or using this software, you are agreeing to -be bound by the terms of this License. If you do not or cannot agree -to the terms of this License, please do not download or use the -software. - -1. General; Definitions. This License applies to any program or other -work which Apple Computer, Inc. ("Apple") makes publicly available and -which contains a notice placed by Apple identifying such program or -work as "Original Code" and stating that it is subject to the terms of -this Apple Public Source License version 2.0 ("License"). As used in -this License: - -1.1 "Applicable Patent Rights" mean: (a) in the case where Apple is -the grantor of rights, (i) claims of patents that are now or hereafter -acquired, owned by or assigned to Apple and (ii) that cover subject -matter contained in the Original Code, but only to the extent -necessary to use, reproduce and/or distribute the Original Code -without infringement; and (b) in the case where You are the grantor of -rights, (i) claims of patents that are now or hereafter acquired, -owned by or assigned to You and (ii) that cover subject matter in Your -Modifications, taken alone or in combination with Original Code. - -1.2 "Contributor" means any person or entity that creates or -contributes to the creation of Modifications. - -1.3 "Covered Code" means the Original Code, Modifications, the -combination of Original Code and any Modifications, and/or any -respective portions thereof. - -1.4 "Externally Deploy" means: (a) to sublicense, distribute or -otherwise make Covered Code available, directly or indirectly, to -anyone other than You; and/or (b) to use Covered Code, alone or as -part of a Larger Work, in any way to provide a service, including but -not limited to delivery of content, through electronic communication -with a client other than You. - -1.5 "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.6 "Modifications" mean any addition to, deletion from, and/or change to, the substance and/or structure of the Original Code, any previous Modifications, the combination of Original Code and any previous Modifications, and/or any respective portions thereof. When code is released as a series of files, a Modification is: (a) any addition to or deletion from the contents of a file containing Covered Code; and/or (b) any new file or other representation of computer program statements that contains any part of Covered Code. - -1.7 "Original Code" means (a) the Source Code of a program or other work as originally made available by Apple under this License, including the Source Code of any updates or upgrades to such programs or works made available by Apple under this License, and that has been expressly identified by Apple as such in the header file(s) of such work; and (b) the object code compiled from such Source Code and originally made available by Apple under this License - -1.8 "Source Code" means the human readable form of a program or other work that is suitable for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an executable (object code). - -1.9 "You" or "Your" means an individual or a legal entity exercising -rights under this License. For legal entities, "You" or "Your" -includes any entity which controls, is controlled by, or is under -common control with, You, where "control" means (a) the power, direct -or indirect, to cause the direction or management of such entity, -whether by contract or otherwise, or (b) ownership of fifty percent -(50%) or more of the outstanding shares or beneficial ownership of -such entity. - -2. Permitted Uses; Conditions & Restrictions. Subject to the terms and conditions of this License, Apple hereby grants You, effective on the date You accept this License and download the Original Code, a world-wide, royalty-free, non-exclusive license, to the extent of Apple's Applicable Patent Rights and copyrights covering the Original Code, to do the following: - -2.1 Unmodified Code. You may use, reproduce, display, perform, -internally distribute within Your organization, and Externally Deploy -verbatim, unmodified copies of the Original Code, for commercial or -non-commercial purposes, provided that in each instance: - - (a) You must retain and reproduce in all copies of Original Code -the copyright and other proprietary notices and disclaimers of Apple -as they appear in the Original Code, and keep intact all notices in -the Original Code that refer to this License; and - - (b) You must include a copy of this License with every copy of -Source Code of Covered Code and documentation You distribute or -Externally Deploy, and You may not offer or impose any terms on such -Source Code that alter or restrict this License or the recipients' -rights hereunder, except as permitted under Section 6. - -2.2 Modified Code. You may modify Covered Code and use, reproduce, -display, perform, internally distribute within Your organization, and -Externally Deploy Your Modifications and Covered Code, for commercial -or non-commercial purposes, provided that in each instance You also -meet all of these conditions: - - (a) You must satisfy all the conditions of Section 2.1 with -respect to the Source Code of the Covered Code; - - (b) You must duplicate, to the extent it does not already exist, -the notice in Exhibit A in each file of the Source Code of all Your -Modifications, and cause the modified files to carry prominent notices -stating that You changed the files and the date of any change; and - - (c) If You Externally Deploy Your Modifications, You must make -Source Code of all Your Externally Deployed Modifications either -available to those to whom You have Externally Deployed Your -Modifications, or publicly available. Source Code of Your Externally -Deployed Modifications must be released under the terms set forth in -this License, including the license grants set forth in Section 3 -below, for as long as you Externally Deploy the Covered Code or twelve -(12) months from the date of initial External Deployment, whichever is -longer. You should preferably distribute the Source Code of Your -Externally Deployed Modifications electronically (e.g. download from a -web site). - -2.3 Distribution of Executable Versions. In addition, if You -Externally Deploy Covered Code (Original Code and/or Modifications) in -object code, executable form only, You must include a prominent -notice, in the code itself as well as in related documentation, -stating that Source Code of the Covered Code is available under the -terms of this License with information on how and where to obtain such -Source Code. - -2.4 Third Party Rights. You expressly acknowledge and agree that although Apple and each Contributor grants the licenses to their respective portions of the Covered Code set forth herein, no assurances are provided by Apple or any Contributor that the Covered Code does not infringe the patent or other intellectual property rights of any other entity. Apple and each Contributor disclaim any liability to You for s required to allow You to distribute the Covered Code, it is Your responsibility to acquire that license before distributing the Covered Code. - -3. Your Grants. In consideration of, and as a condition to, the -licenses granted to You under this License, You hereby grant to any -person or entity receiving or distributing Covered Code under this -License a non-exclusive, royalty-free, perpetual, irrevocable license, -under Your Applicable Patent Rights and other intellectual property -rights (other than patent) owned or controlled by You, to use, -reproduce, display, perform, modify, sublicense, distribute and -Externally Deploy Your Modifications of the same scope and extent as -Apple's licenses under Sections 2.1 and 2.2 above. - -4. Larger Works. You may create a Larger Work by combining Covered -Code with other code not governed by the terms of this License and -distribute the Larger Work as a single product. In each such instance, -You must make sure the requirements of this License are fulfilled for -the Covered Code or any portion thereof. - -5. Limitations on Patent License. Except as expressly stated in -Section 2, no other patent rights, express or implied, are granted by -Apple herein. Modifications and/or Larger Works may require additional -patent licenses from Apple which Apple may grant in its sole -discretion. - -6. Additional Terms. You may choose to offer, and to charge a fee for, -warranty, support, indemnity or liability obligations and/or other -rights consistent with the scope of the license granted herein -("Additional Terms") to one or more recipients of Covered -Code. However, You may do so only on Your own behalf and as Your sole -responsibility, and not on behalf of Apple or any Contributor. You -must obtain the recipient's agreement that any such Additional Terms -are offered by You alone, and You hereby agree to indemnify, defend -and hold Apple and every Contributor harmless for any liability -incurred by or claims asserted against Apple or such Contributor by -reason of any such Additional Terms. - -7. Versions of the License. Apple may publish revised and/or new -versions of this License from time to time. Each version will be given -a distinguishing version number. Once Original Code has been published -under a particular version of this License, You may continue to use it -under the terms of that version. You may also choose to use such -Original Code under the terms of any subsequent version of this -License published by Apple. No one other than Apple has the right to -modify the terms applicable to Covered Code created under this -License. - -8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in -part pre-release, untested, or not fully tested works. The Covered -Code may contain errors that could cause failures or loss of data, and -may be incomplete or contain inaccuracies. You expressly acknowledge -and agree that use of the Covered Code, or any portion thereof, is at -Your sole and entire risk. THE COVERED CODE IS PROVIDED "AS IS" AND -WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND -APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE -PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM -ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF -MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR -PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD -PARTY RIGHTS. APPLE AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST -INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE -FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, -THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR -ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO -ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE, AN APPLE -AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A -WARRANTY. You acknowledge that the Covered Code is not intended for -use in the operation of nuclear facilities, aircraft navigation, -communication systems, or air traffic control machines in which case -the failure of the Covered Code could lead to death, personal injury, -or severe physical or environmental damage. - -9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO -EVENT SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, -SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING -TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR -ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, -TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF -APPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY -REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF -INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY -TO YOU. In no event shall Apple's total liability to You for all -damages (other than as may be required by applicable law) under this -License exceed the amount of fifty dollars ($50.00). - -10. Trademarks. This License does not grant any rights to use the -trademarks or trade names "Apple", "Apple Computer", "Mac", "Mac OS", -"QuickTime", "QuickTime Streaming Server" or any other trademarks, -service marks, logos or trade names belonging to Apple (collectively -"Apple Marks") or to any trademark, service mark, logo or trade name -belonging to any Contributor. You agree not to use any Apple Marks in -or as part of the name of products derived from the Original Code or -to endorse or promote products derived from the Original Code other -than as expressly permitted by and in strict compliance at all times -with Apple's third party trademark usage guidelines which are posted -at http://www.apple.com/legal/guidelinesfor3rdparties.html. - -11. Ownership. Subject to the licenses granted under this License, -each Contributor retains all rights, title and interest in and to any -Modifications made by such Contributor. Apple retains all rights, -title and interest in and to the Original Code and any Modifications -made by or on behalf of Apple ("Apple Modifications"), and such Apple -Modifications will not be automatically subject to this License. Apple -may, at its sole discretion, choose to license such Apple -Modifications under this License, or on different terms from those -contained in this License or may choose not to license them at all. - -12. Termination. - -12.1 Termination. This License and the rights granted hereunder will terminate: - - (a) automatically without notice from Apple if You fail to comply -with any term(s) of this License and fail to cure such breach within -30 days of becoming aware of such breach; - - (b) immediately in the event of the circumstances described in -Section 13.5(b); or - - (c) automatically without notice from Apple if You, at any time -during the term of this License, commence an action for patent -infringement against Apple; provided that Apple did not first commence -an action for patent infringement against You in that instance. - -12.2 Effect of Termination. Upon termination, You agree to immediately -stop any further use, reproduction, modification, sublicensing and -distribution of the Covered Code. All sublicenses to the Covered Code -which have been properly granted prior to termination shall survive -any termination of this License. Provisions which, by their nature, -should remain in effect beyond the termination of this License shall -survive, including but not limited to Sections 3, 5, 8, 9, 10, 11, -12.2 and 13. No party will be liable to any other for compensation, -indemnity or damages of any sort solely as a result of terminating -this License in accordance with its terms, and termination of this -License will be without prejudice to any other right or remedy of any -party. - -13. Miscellaneous. - -13.1 Government End Users. The Covered Code is a "commercial item" as -defined in FAR 2.101. Government software and technical data rights in -the Covered Code include only those rights customarily provided to the -public as defined in this License. This customary commercial license -in technical data and software is provided in accordance with FAR -12.211 (Technical Data) and 12.212 (Computer Software) and, for -Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- -Commercial Items) and 227.7202-3 (Rights in Commercial Computer -Software or Computer Software Documentation). Accordingly, all -U.S. Government End Users acquire Covered Code with only those rights -set forth herein. - -13.2 Relationship of Parties. This License will not be construed as -creating an agency, partnership, joint venture or any other form of -legal association between or among You, Apple or any Contributor, and -You will not represent to the contrary, whether expressly, by -implication, appearance or otherwise. - -13.3 Independent Development. Nothing in this License will impair -Apple's right to acquire, license, develop, have others develop for -it, market and/or distribute technology or products that perform the -same or similar functions as, or otherwise compete with, -Modifications, Larger Works, technology or products that You may -develop, produce, market or distribute. - -13.4 Waiver; Construction. Failure by Apple or any Contributor to -enforce any provision of this License will not be deemed a waiver of -future enforcement of that or any other provision. Any law or -regulation which provides that the language of a contract shall be -construed against the drafter will not apply to this License. - -13.5 Severability. (a) If for any reason a court of competent -jurisdiction finds any provision of this License, or portion thereof, -to be unenforceable, that provision of the License will be enforced to -the maximum extent permissible so as to effect the economic benefits -and intent of the parties, and the remainder of this License will -continue in full force and effect. (b) Notwithstanding the foregoing, -if applicable law prohibits or restricts You from fully and/or -specifically complying with Sections 2 and/or 3 or prevents the -enforceability of either of those Sections, this License will -immediately terminate and You must immediately discontinue any use of -the Covered Code and destroy all copies of it that are in your -possession or control. - -13.6 Dispute Resolution. Any litigation or other dispute resolution -between You and Apple relating to this License shall take place in the -Northern District of California, and You and Apple hereby consent to -the personal jurisdiction of, and venue in, the state and federal -courts within that District with respect to this License. The -application of the United Nations Convention on Contracts for the -International Sale of Goods is expressly excluded. - -13.7 Entire Agreement; Governing Law. This License constitutes the -entire agreement between the parties with respect to the subject -matter hereof. This License shall be governed by the laws of the -United States and the State of California, except that body of -California law concerning conflicts of law. - -Where You are located in the province of Quebec, Canada, the following -clause applies: The parties hereby confirm that they have requested -that this License and all related documents be drafted in English. diff --git a/tests/licensedcode/data/licenses/apsl-2.0.yml b/tests/licensedcode/data/licenses/apsl-2.0.yml deleted file mode 100644 index d302d268f8c..00000000000 --- a/tests/licensedcode/data/licenses/apsl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apsl-2.0 diff --git a/tests/licensedcode/data/licenses/artistic-1.0.txt b/tests/licensedcode/data/licenses/artistic-1.0.txt deleted file mode 100644 index 6659515d2a5..00000000000 --- a/tests/licensedcode/data/licenses/artistic-1.0.txt +++ /dev/null @@ -1,107 +0,0 @@ - - -Preamble - -The intent of this document is to state the conditions under which a -Package may be copied, such that the Copyright Holder maintains some -semblance of artistic control over the development of the package, -while giving the users of the package the right to use and distribute -the Package in a more-or-less customary fashion, plus the right to -make reasonable modifications. - -Definitions: - -"Package" refers to the collection of files distributed by the -Copyright Holder, and derivatives of that collection of files created -through textual modification. -"Standard Version" refers to such a Package if it has not been -modified, or has been modified in accordance with the wishes of the -Copyright Holder. -"Copyright Holder" is whoever is named in the copyright or copyrights -for the package. -"You" is you, if you're thinking about copying or distributing this -Package. -"Reasonable copying fee" is whatever you can justify on the basis of -media cost, duplication charges, time of people involved, and so on. -(You will not be required to justify it to the Copyright Holder, but -only to the computing community at large as a market that must bear -the fee.) -"Freely Available" means that no fee is charged for the item itself, -though there may be fees involved in handling the item. It also means -that recipients of the item may redistribute it under the same -conditions they received it. - -1. You may make and give away verbatim copies of the source form of -the Standard Version of this Package without restriction, provided -that you duplicate all of the original copyright notices and -associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain or from the Copyright Holder. A Package -modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, -provided that you insert a prominent notice in each changed file -stating how and when you changed that file, and provided that you do -at least ONE of the following: - -a) place your modifications in the Public Domain or otherwise make -them Freely Available, such as by posting said modifications to Usenet -or an equivalent medium, or placing the modifications on a major -archive site such as ftp.uu.net, or by allowing the Copyright Holder -to include your modifications in the Standard Version of the Package. - -b) use the modified Package only within your corporation or -organization. - -c) rename any non-standard executables so the names do not conflict -with standard executables, which must also be provided, and provide a -separate manual page for each non-standard executable that clearly -documents how it differs from the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or -executable form, provided that you do at least ONE of the following: - -a) distribute a Standard Version of the executables and library files, -together with instructions (in the manual page or equivalent) on where -to get the Standard Version. - -b) accompany the distribution with the machine-readable source of the -Package with your modifications. - -c) accompany any non-standard executables with their corresponding -Standard Version executables, giving the non-standard executables -non-standard names, and clearly documenting the differences in manual -pages (or equivalent), together with instructions on where to get the -Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of -this Package. You may charge any fee you choose for support of this -Package. You may not charge a fee for this Package itself. However, -you may distribute this Package in aggregate with other (possibly -commercial) programs as part of a larger (possibly commercial) -software distribution provided that you do not advertise this Package -as a product of your own. - -6. The scripts and library files supplied as input to or produced as -output from the programs of this Package do not automatically fall -under the copyright of this Package, but belong to whomever generated -them, and may be sold commercially, and may be aggregated with this -Package. - -7. C or perl subroutines supplied by you and linked into this Package -shall not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or -promote products derived from this software without specific prior -written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End diff --git a/tests/licensedcode/data/licenses/artistic-1.0.yml b/tests/licensedcode/data/licenses/artistic-1.0.yml deleted file mode 100644 index befe587064c..00000000000 --- a/tests/licensedcode/data/licenses/artistic-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-1.0 diff --git a/tests/licensedcode/data/licenses/artistic-1.0_1.txt b/tests/licensedcode/data/licenses/artistic-1.0_1.txt deleted file mode 100644 index d34ff89f3e2..00000000000 --- a/tests/licensedcode/data/licenses/artistic-1.0_1.txt +++ /dev/null @@ -1,50 +0,0 @@ -The Artistic License - -Preamble - -The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. - -Definitions: - - * "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. - * "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. - * "Copyright Holder" is whoever is named in the copyright or copyrights for the package. - * "You" is you, if you're thinking about copying or distributing this Package. - * "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - * "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. - - b) accompany the distribution with the machine-readable source of the Package with your modifications. - - c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/artistic-1.0_1.yml b/tests/licensedcode/data/licenses/artistic-1.0_1.yml deleted file mode 100644 index befe587064c..00000000000 --- a/tests/licensedcode/data/licenses/artistic-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-1.0 diff --git a/tests/licensedcode/data/licenses/artistic-2.0_and_gpl_1.txt b/tests/licensedcode/data/licenses/artistic-2.0_and_gpl_1.txt deleted file mode 100644 index 0813ef5c3b2..00000000000 --- a/tests/licensedcode/data/licenses/artistic-2.0_and_gpl_1.txt +++ /dev/null @@ -1,3 +0,0 @@ -You may distribute this module under the terms - of either the Gnu GPL, or the Artistic License (the same terms - as Perl itself). diff --git a/tests/licensedcode/data/licenses/artistic-2.0_and_gpl_1.yml b/tests/licensedcode/data/licenses/artistic-2.0_and_gpl_1.yml deleted file mode 100644 index 18d1cade02f..00000000000 --- a/tests/licensedcode/data/licenses/artistic-2.0_and_gpl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-2.0 OR gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/artistic-perl-1.0.txt b/tests/licensedcode/data/licenses/artistic-perl-1.0.txt deleted file mode 100644 index 0f42b6572f7..00000000000 --- a/tests/licensedcode/data/licenses/artistic-perl-1.0.txt +++ /dev/null @@ -1,49 +0,0 @@ -The Artistic License -August 15, 1997 -Preamble - -The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. -Definitions - - "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. - - "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder as specified below. - - "Copyright Holder" is whoever is named in the copyright or copyrights for the package. - - "You" is you, if you're thinking about copying or distributing this Package. - - "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. - - 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - - 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. - - 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: - - 1. place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as uunet.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. - 2. use the modified Package only within your corporation or organization. - 3. rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. - 4. make other distribution arrangements with the Copyright Holder. - - 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: - - 1. distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. - 2. accompany the distribution with the machine-readable source of the Package with your modifications. - 3. give non-standard executables non-standard names, and clearly document the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. - 4. make other distribution arrangements with the Copyright Holder. - - 5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. You may embed this Package's interpreter within an executable of yours (by linking); this shall be construed as a mere form of aggregation, provided that the complete Standard Version of the interpreter is so embedded. - - 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. If such scripts or library files are aggregated with this Package via the so-called "undump" or "unexec" methods of producing a binary executable image, then distribution of such an image shall neither be construed as a distribution of this Package nor shall it fall under the restrictions of Paragraphs 3 and 4, provided that you do not represent such an executable image as a Standard Version of this Package. - - 7. C subroutines (or comparably compiled subroutines in other languages) supplied by you and linked into this Package in order to emulate subroutines and variables of the language defined by this Package shall not be considered part of this Package, but are the equivalent of input as in Paragraph 6, provided these subroutines do not change the language in any way that would cause it to fail the regression tests for the language. - - 8. Aggregation of this Package with a commercial distribution is always permitted provided that the use of this Package is embedded; that is, when no overt attempt is made to make this Package's interfaces visible to the end user of the commercial distribution. Such use shall not be construed as a distribution of this Package. - - 9. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. - - 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - diff --git a/tests/licensedcode/data/licenses/artistic-perl-1.0.yml b/tests/licensedcode/data/licenses/artistic-perl-1.0.yml deleted file mode 100644 index 0acb8dad47a..00000000000 --- a/tests/licensedcode/data/licenses/artistic-perl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-perl-1.0 diff --git a/tests/licensedcode/data/licenses/bahyph.txt b/tests/licensedcode/data/licenses/bahyph.txt deleted file mode 100644 index 48626cfebc5..00000000000 --- a/tests/licensedcode/data/licenses/bahyph.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT NOTICE - -These patterns and the generating sh script are Copyright (c) GMV 1991 - -These patterns were developed for internal GMV use and are made public in the hope that they will benefit others. Also, spreading these patterns throughout the Spanish-language TeX community is expected to provide back-benefits to GMV in that it can help keeping GMV in the mainstream of spanish users. - -However, this is given for free and WITHOUT ANY WARRANTY. Under no circumstances can Julio Sanchez, GMV, Jos'e A. Ma~nas or any agents or representatives thereof be held responsible for any errors in this software nor for any damages derived from its use, even in case any of the above has been notified of the possibility of such damages. If any such situation arises, you responsible for repair. Use of this software is an explicit acceptance of these conditions. - -You can use this software for any purpose. You cannot delete this copyright notice. If you change this software, you must include comments explaining who, when and why. You are kindly requested to send any changes to tex@gmv.es. If you change the generating script, you must include code in it such that any output is clearly labeled as generated by a modified script. Despite the lack of warranty, we would like to hear about any problem you find. Please report problems to tex@gmv.es. - -END OF COPYRIGHT NOTICE \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bahyph.yml b/tests/licensedcode/data/licenses/bahyph.yml deleted file mode 100644 index 88c77578b2f..00000000000 --- a/tests/licensedcode/data/licenses/bahyph.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bahyph diff --git a/tests/licensedcode/data/licenses/barr-tex.txt b/tests/licensedcode/data/licenses/barr-tex.txt deleted file mode 100644 index 8b341c96a55..00000000000 --- a/tests/licensedcode/data/licenses/barr-tex.txt +++ /dev/null @@ -1 +0,0 @@ -This is a package of commutative diagram macros built on top of Xy-pic by Michael Barr (email: barr@barrs.org). Its use is unrestricted. It may be freely distributed, unchanged, for non-commercial or commercial use. If changed, it must be renamed. Inclusion in a commercial software package is also permitted, but I would appreciate receiving a free copy for my personal examination and use. There are no guarantees that this package is good for anything. I have tested it with LaTeX 2e, LaTeX 2.09 and Plain TeX. Although I know of no reason it will not work with AMSTeX, I have not tested it. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/barr-tex.yml b/tests/licensedcode/data/licenses/barr-tex.yml deleted file mode 100644 index d6aa5f03eec..00000000000 --- a/tests/licensedcode/data/licenses/barr-tex.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - barr-tex diff --git a/tests/licensedcode/data/licenses/beal-screamer.txt b/tests/licensedcode/data/licenses/beal-screamer.txt deleted file mode 100644 index 8f6dba2670b..00000000000 --- a/tests/licensedcode/data/licenses/beal-screamer.txt +++ /dev/null @@ -1,22 +0,0 @@ - -License -by "Beal Screamer" - ------BEGIN PGP SIGNED MESSAGE----- - -A license???? For anonymously published software? Yes! The purpose here is to outline how I would like the software used. Putting together all this has been a lot of work, and I hope people can respect the purpose behind the software, as spelled out here. - - The purpose of this software is to re-assert your rights over fair use of audio files that you have legally purchased or otherwise obtained legally. Please use it for that purpose only. Do not use it to unprotect files you don't have a legal right to, or to unprotect legal files for the purpose of re-distributing them to others who do not have a legal right to the content. In other words, in use of this software obey traditional copyright laws -- but the DMCA may be completely ignored as far as this license concerned (although you must accept responsibility for ignoring this law, since it is enforceable). - - This is free software, without any warranties, guarantees, or any assurance that it will work as described. It relies on certain other software (from Microsoft) operating as it currently does, so I don't take any responsibility for what happens if Microsoft updates their software to render this useless, or even if they put bombs in their new software to erase all your files if they detect this software. But I sure hope they wouldn't do that. - ------BEGIN PGP SIGNATURE----- -Version: 2.6.2 - -iQCVAwUBO5qtlZCr1f2GXCalAQHLNAP+IU9J5wnZPihRsRGqkqK01cWAHPfrmwfx -pyEelwSpOf2Vd+kPTg3oViscg7PNr2jS92yDS8X8manr6qZmJE2zZ+r4G5o8SmBp -zLQiQHXsIuy4Looy9NxNe0REhDT0yg141Kvd+Sbpx2iv7A6H1aelxC4G1JkHU4Rq -hFobp8IvAC0= -=cO5z ------END PGP SIGNATURE----- - diff --git a/tests/licensedcode/data/licenses/beal-screamer.yml b/tests/licensedcode/data/licenses/beal-screamer.yml deleted file mode 100644 index f4ceff7a3be..00000000000 --- a/tests/licensedcode/data/licenses/beal-screamer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - beal-screamer diff --git a/tests/licensedcode/data/licenses/beerware_variant.txt b/tests/licensedcode/data/licenses/beerware_variant.txt deleted file mode 100644 index 9f076395a33..00000000000 --- a/tests/licensedcode/data/licenses/beerware_variant.txt +++ /dev/null @@ -1,5 +0,0 @@ - "THE BEER-WARE LICENSE" (Revision 42): - wrote this file. As long as you retain this notice you - can do whatever you want with this stuff. If we meet some day, and you think - this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp - diff --git a/tests/licensedcode/data/licenses/beerware_variant.yml b/tests/licensedcode/data/licenses/beerware_variant.yml deleted file mode 100644 index 8fea1322008..00000000000 --- a/tests/licensedcode/data/licenses/beerware_variant.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - beerware diff --git a/tests/licensedcode/data/licenses/bigdigits2.c b/tests/licensedcode/data/licenses/bigdigits2.c deleted file mode 100644 index d129fbe60b3..00000000000 --- a/tests/licensedcode/data/licenses/bigdigits2.c +++ /dev/null @@ -1,33 +0,0 @@ - -/******************** COPYRIGHT AND LICENCE NOTICE ******************** -This source code is part of the BIGDIGITS multiple-precision -arithmetic library Version 2.3 originally written by David Ireland, -copyright (c) 2001-11 D.I. Management Services Pty Limited, all rights -reserved. You are permitted to use compiled versions of this code at -no charge as part of your own executable files and to distribute -unlimited copies of such executable files for any purposes including -commercial ones provided you agree to these terms and conditions and -keep the copyright notices intact in the source code and you ensure -that the following characters remain in any object or executable files -you distribute AND clearly in any accompanying documentation: - -"Contains BIGDIGITS multiple-precision arithmetic code originally -written by David Ireland, copyright (c) 2001-11 by D.I. Management -Services Pty Limited , and is used with -permission." - -David Ireland and DI Management Services Pty Limited make no -representations concerning either the merchantability of this software -or the suitability of this software for any particular purpose. It is -provided "as is" without express or implied warranty of any kind. Our -liability will be limited exclusively to the refund of the money you -paid us for the software, namely nothing. By using the software you -expressly agree to such a waiver. If you do not agree to the terms, do -not use the software. - -Please forward any comments and bug reports to . -The latest version of the source code can be downloaded from -. - -Last updated: 11 November 2011. -*************** END OF COPYRIGHT AND LICENCE NOTICE ******************/ diff --git a/tests/licensedcode/data/licenses/bigdigits2.yml b/tests/licensedcode/data/licenses/bigdigits2.yml deleted file mode 100644 index 5a6282c5aeb..00000000000 --- a/tests/licensedcode/data/licenses/bigdigits2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bigdigits diff --git a/tests/licensedcode/data/licenses/bigdigits3.c b/tests/licensedcode/data/licenses/bigdigits3.c deleted file mode 100644 index 6f669f3c5ff..00000000000 --- a/tests/licensedcode/data/licenses/bigdigits3.c +++ /dev/null @@ -1,10 +0,0 @@ -/******************** SHORT COPYRIGHT NOTICE************************** -This source code is part of the BigDigits multiple-precision -arithmetic library Version 2.0 originally written by David Ireland, -copyright (c) 2001-5 D.I. Management Services Pty Limited, all rights -reserved. It is provided "as is" with no warranties. You may use -this software under the terms of the full copyright notice -"bigdigitsCopyright.txt" that should have been included with this -library or can be obtained from . -This notice must always be retained in any copy. -******************* END OF COPYRIGHT NOTICE***************************/ diff --git a/tests/licensedcode/data/licenses/bigdigits3.yml b/tests/licensedcode/data/licenses/bigdigits3.yml deleted file mode 100644 index 5a6282c5aeb..00000000000 --- a/tests/licensedcode/data/licenses/bigdigits3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bigdigits diff --git a/tests/licensedcode/data/licenses/biopython.txt b/tests/licensedcode/data/licenses/biopython.txt deleted file mode 100644 index 6bac0b11570..00000000000 --- a/tests/licensedcode/data/licenses/biopython.txt +++ /dev/null @@ -1,19 +0,0 @@ -Biopython License Agreement - -Permission to use, copy, modify, and distribute this software and its -documentation with or without modifications and for any purpose and -without fee is hereby granted, provided that any copyright notices -appear in all copies and that both those copyright notices and this -permission notice appear in supporting documentation, and that the -names of the contributors or copyright holders not be used in -advertising or publicity pertaining to distribution of the software -without specific prior permission. - -THE CONTRIBUTORS AND COPYRIGHT HOLDERS OF THIS SOFTWARE DISCLAIM ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT -OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/biopython.yml b/tests/licensedcode/data/licenses/biopython.yml deleted file mode 100644 index 4db6e24262e..00000000000 --- a/tests/licensedcode/data/licenses/biopython.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - biopython diff --git a/tests/licensedcode/data/licenses/boost-1.0.txt b/tests/licensedcode/data/licenses/boost-1.0.txt deleted file mode 100644 index c25fe2f18c3..00000000000 --- a/tests/licensedcode/data/licenses/boost-1.0.txt +++ /dev/null @@ -1 +0,0 @@ -// Distributed under the Boost Software License, Version 1. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/boost-1.0.yml b/tests/licensedcode/data/licenses/boost-1.0.yml deleted file mode 100644 index 92568190a9f..00000000000 --- a/tests/licensedcode/data/licenses/boost-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - boost-1.0 diff --git a/tests/licensedcode/data/licenses/borceux.txt b/tests/licensedcode/data/licenses/borceux.txt deleted file mode 100644 index 657a0605122..00000000000 --- a/tests/licensedcode/data/licenses/borceux.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright 1993 Francis Borceux -You may freely use, modify, and/or distribute each of the files in this package without limitation. The package consists of the following files: - -README -compatibility/OldDiagram -compatibility/OldMaxiDiagram -compatibility/OldMicroDiagram -compatibility/OldMiniDiagram -compatibility/OldMultipleArrows -diagram/Diagram -diagram/MaxiDiagram -diagram/MicroDiagram -diagram/MiniDiagram -diagram/MultipleArrows -user-guides/Diagram_Mode_d_Emploi -user-guides/Diagram_Read_Me - -Of course no support is guaranteed, but the author will attempt to assist with problems. Current email address: -francis dot borceux at uclouvain dot be. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/borceux.yml b/tests/licensedcode/data/licenses/borceux.yml deleted file mode 100644 index e2fccdd96a5..00000000000 --- a/tests/licensedcode/data/licenses/borceux.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - borceux diff --git a/tests/licensedcode/data/licenses/brad-martinez-vb-32.txt b/tests/licensedcode/data/licenses/brad-martinez-vb-32.txt deleted file mode 100644 index 5b9f870af04..00000000000 --- a/tests/licensedcode/data/licenses/brad-martinez-vb-32.txt +++ /dev/null @@ -1,17 +0,0 @@ -The Rules - -Unless noted otherwise, all files and code available on this site are authored by Brad Martinez, who retains exclusive copyright protection and distribution rights. - -Developers are free to use any code or concepts presented on this site in their applications without liability or compensation, but the courtesy of both notification of use and inclusion of due credit are requested. - -It is PROHIBITED to distribute or reproduce any of the files or code found in this site for profit or otherwise, on any web site, ftp server or BBS, or by any other means, including CD-ROM or other physical media, without the EXPRESS WRITTEN PERMISSION of the author. - -The Questions - -Due to an inordinate amount of email I receive regarding development specific questions, I find it sometimes difficult to respond. If you don't hear from me, I recommend searching either Microsoft's MSDN Library Online, Microsoft's Online Support Knowledge Base, or Deja News newsgroup archives for answers to your Visual Basic related questions. - -You may find me frequenting some of the "vb" newsgroups on the Microsoft news server msnews.microsoft.com, and on occasion, the "vb" newsgroups on the news server news.devx.com. - -The Disclaimer - -No warranty is implied as to the accuracy and/or reliability of the programs and code available on this site. The developer assumes all risk. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/brad-martinez-vb-32.yml b/tests/licensedcode/data/licenses/brad-martinez-vb-32.yml deleted file mode 100644 index 7b382d2c673..00000000000 --- a/tests/licensedcode/data/licenses/brad-martinez-vb-32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - brad-martinez-vb-32 diff --git a/tests/licensedcode/data/licenses/brian-gladman-3-clause.txt b/tests/licensedcode/data/licenses/brian-gladman-3-clause.txt deleted file mode 100644 index d279eba701b..00000000000 --- a/tests/licensedcode/data/licenses/brian-gladman-3-clause.txt +++ /dev/null @@ -1,29 +0,0 @@ -/* - --------------------------------------------------------------------------- - Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. All rights reserved. - - LICENSE TERMS - - The redistribution and use of this software (with or without changes) - is allowed without the payment of fees or royalties provided that: - - 1. source code distributions include the above copyright notice, this - list of conditions and the following disclaimer; - - 2. binary distributions include the above copyright notice, this list - of conditions and the following disclaimer in their documentation; - - 3. the name of the copyright holder is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explicit or implied warranties - in respect of its properties, including, but not limited to, correctness - and/or fitness for purpose. - --------------------------------------------------------------------------- - Issue Date: 20/12/2007 - - This file contains the definitions required to use AES in C. See aesopt.h - for optimisation details. -*/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/brian-gladman-3-clause.yml b/tests/licensedcode/data/licenses/brian-gladman-3-clause.yml deleted file mode 100644 index 74b28c639c0..00000000000 --- a/tests/licensedcode/data/licenses/brian-gladman-3-clause.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - brian-gladman-3-clause diff --git a/tests/licensedcode/data/licenses/brian-gladman-dual.txt b/tests/licensedcode/data/licenses/brian-gladman-dual.txt deleted file mode 100644 index 6aeed6a5dca..00000000000 --- a/tests/licensedcode/data/licenses/brian-gladman-dual.txt +++ /dev/null @@ -1,24 +0,0 @@ - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - ALTERNATIVELY, provided that this notice is retained in full, this product - may be distributed under the terms of the GNU General Public License (GPL), - in which case the provisions of the GPL apply INSTEAD OF those given above. - - DISCLAIMER - - This software is provided 'as is' with no explicit or implied warranties - in respect of its properties, including, but not limited to, correctness - and/or fitness for purpose. diff --git a/tests/licensedcode/data/licenses/brian-gladman-dual.yml b/tests/licensedcode/data/licenses/brian-gladman-dual.yml deleted file mode 100644 index 6c124f7aa9a..00000000000 --- a/tests/licensedcode/data/licenses/brian-gladman-dual.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - brian-gladman-dual diff --git a/tests/licensedcode/data/licenses/broadcom-proprietary.txt b/tests/licensedcode/data/licenses/broadcom-proprietary.txt deleted file mode 100644 index f9aa7449729..00000000000 --- a/tests/licensedcode/data/licenses/broadcom-proprietary.txt +++ /dev/null @@ -1,227 +0,0 @@ -Author: Broadcom Corporation -Download: http://www.broadcom.com/support/802.11/linux_sta.php - -Files: * -Copyright: (C) Broadcom Corporation -License: other - SOFTWARE LICENSE AGREEMENT - . - Unless you and Broadcom Corporation ("Broadcom") execute a separate written - software license agreement governing use of the accompanying software, this - software is licensed to you under the terms of this Software License Agreement - ("Agreement"). - . - ANY USE, REPRODUCTION OR DISTRIBUTION OF THE SOFTWARE CONSTITUTES YOUR - ACCEPTANCE OF THIS AGREEMENT. - . - 1. DEFINITIONS. - . - 1.1. "Broadcom Product" means any of the proprietary integrated circuit - product(s) sold by Broadcom with which the Software was designed to be used, or - their successors. - . - 1.2. "Licensee" means you or if you are accepting on behalf of an entity then - the entity and its affiliates exercising rights under, and complying with all - of the terms of this Agreement. - . - 1.3. "Software" shall mean that software made available by Broadcom to Licensee - in binary code form with this Agreement. - . - 2. LICENSE GRANT; OWNERSHIP - . - 2.1. License Grants. Subject to the terms and conditions of this Agreement, - Broadcom hereby grants to Licensee a non-exclusive, non-transferable, - royalty-free license (i) to use and integrate the Software in conjunction with - any other software; and (ii) to reproduce and distribute the Software complete, - unmodified and only for use with a Broadcom Product. - . - 2.2. Restriction on Modification. If and to the extent that the Software is - designed to be compliant with any published communications standard (including, - without limitation, DOCSIS, HomePNA, IEEE, and ITU standards), Licensee may not - make any modifications to the Software that would cause the Software or the - accompanying Broadcom Products to be incompatible with such standard. - . - 2.3. Restriction on Distribution. Licensee shall only distribute the Software - (a) under the terms of this Agreement and a copy of this Agreement accompanies - such distribution, and (b) agrees to defend and indemnify Broadcom and its - licensors from and against any damages, costs, liabilities, settlement amounts - and/or expenses (including attorneys' fees) incurred in connection with any - claim, lawsuit or action by any third party that arises or results from the use - or distribution of any and all Software by the Licensee except as contemplated - herein. - . - 2.4. Proprietary Notices. Licensee shall not remove, efface or obscure any - copyright or trademark notices from the Software. Licensee shall include - reproductions of the Broadcom copyright notice with each copy of the Software, - except where such Software is embedded in a manner not readily accessible to - the end user. Licensee acknowledges that any symbols, trademarks, tradenames, - and service marks adopted by Broadcom to identify the Software belong to - Broadcom and that Licensee shall have no rights therein. - . - 2.5. Ownership. Broadcom shall retain all right, title and interest, including - all intellectual property rights, in and to the Software. Licensee hereby - covenants that it will not assert any claim that the Software created by or for - Broadcom infringe any intellectual property right owned or controlled by - Licensee. - . - 2.6. No Other Rights Granted; Restrictions. Apart from the license rights - expressly set forth in this Agreement, Broadcom does not grant and Licensee - does not receive any ownership right, title or interest nor any security - interest or other interest in any intellectual property rights relating to the - Software, nor in any copy of any part of the foregoing. Licensee shall not (i) - use, license, sell or otherwise distribute the Software except as provided in - this Agreement, (ii) attempt to reverse engineer, decompile or disassemble any - portion of the Software; or (iii) use the Software or other material in - violation of any applicable law or regulation, including but not limited to any - regulatory agency, such as FCC, rules. - . - 3. NO WARRANTY OR SUPPORT - . - 3.1. No Warranty. THE SOFTWARE IS OFFERED "AS IS," AND BROADCOM GRANTS AND - LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY STATUTE, - COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. BROADCOM SPECIFICALLY - DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A SPECIFIC - PURPOSE OR NONINFRINGEMENT CONCERNING THE SOFTWARE OR ANY UPGRADES TO OR - DOCUMENTATION FOR THE SOFTWARE. WITHOUT LIMITATION OF THE ABOVE, BROADCOM - GRANTS NO WARRANTY THAT THE SOFTWARE IS ERROR-FREE OR WILL OPERATE WITHOUT - INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS THEREFROM - INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR RELIABILITY. - . - 3.2. No Support. Nothing in this agreement shall obligate Broadcom to provide - any support for the Software. Broadcom may, but shall be under no obligation - to, correct any defects in the Software and/or provide updates to licensees of - the Software. Licensee shall make reasonable efforts to promptly report to - Broadcom any defects it finds in the Software, as an aid to creating improved - revisions of the Software. - . - 3.3. Dangerous Applications. The Software is not designed, intended, or - certified for use in components of systems intended for the operation of - weapons, weapons systems, nuclear installations, means of mass transportation, - aviation, life-support computers or equipment (including resuscitation - equipment and surgical implants), pollution control, hazardous substances - management, or for any other dangerous application in which the failure of the - Software could create a situation where personal injury or death may occur. - Licensee understands that use of the Software in such applications is fully at - the risk of Licensee. - . - 4. TERM AND TERMINATION - . - 4.1. Termination. This Agreement will automatically terminate if Licensee fails - to comply with any of the terms and conditions hereof. In such event, Licensee - must destroy all copies of the Software and all of its component parts. - . - 4.2. Effect Of Termination. Upon any termination of this Agreement, the rights - and licenses granted to Licensee under this Agreement shall immediately - terminate. - . - 4.3. Survival. The rights and obligations under this Agreement which by their - nature should survive termination will remain in effect after expiration or - termination of this Agreement. - . - 5. CONFIDENTIALITY - . - 5.1. Obligations. Licensee acknowledges and agrees that any documentation - relating to the Software, and any other information (if such other information - is identified as confidential or should be recognized as confidential under the - circumstances) provided to Licensee by Broadcom hereunder (collectively, - "Confidential Information") constitute the confidential and proprietary - information of Broadcom, and that Licensee's protection thereof is an essential - condition to Licensee's use and possession of the Software. Licensee shall - retain all Confidential Information in strict confidence and not disclose it to - any third party or use it in any way except under a written agreement with - terms and conditions at least as protective as the terms of this Section. - Licensee will exercise at least the same amount of diligence in preserving the - secrecy of the Confidential Information as it uses in preserving the secrecy of - its own most valuable confidential information, but in no event less than - reasonable diligence. Information shall not be considered Confidential - Information if and to the extent that it: (i) was in the public domain at the - time it was disclosed or has entered the public domain through no fault of - Licensee; (ii) was known to Licensee, without restriction, at the time of - disclosure as proven by the files of Licensee in existence at the time of - disclosure; or (iii) becomes known to Licensee, without restriction, from a - source other than Broadcom without breach of this Agreement by Licensee and - otherwise not in violation of Broadcom's rights. - . - 5.2. Return of Confidential Information. Notwithstanding the foregoing, all - documents and other tangible objects containing or representing Broadcom - Confidential Information and all copies thereof which are in the possession of - Licensee shall be and remain the property of Broadcom, and shall be promptly - returned to Broadcom upon written request by Broadcom or upon termination of - this Agreement. - . - 6. LIMITATION OF LIABILITY - . - TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ANY OF - BROADCOM'S LICENSORS HAVE ANY LIABILITY FOR ANY INDIRECT, INCIDENTAL, SPECIAL, - OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, - ARISING OUT OF THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, - EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no - event will Broadcom's liability whether in contract, tort (including - negligence), or otherwise, exceed the amount paid by Licensee for Software - under this Agreement. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE - OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. - . - 7. MISCELLANEOUS - . - 7.1. Assignment. This Agreement shall be binding upon and inure to the benefit - of the parties and their respective successors and assigns, provided, however - that Licensee may not assign this Agreement or any rights or obligation - hereunder, directly or indirectly, by operation of law or otherwise, without - the prior written consent of Broadcom, and any such attempted assignment shall - be void. Notwithstanding the foregoing, Licensee may assign this Agreement to a - successor to all or substantially all of its business or assets to which this - Agreement relates that is not a competitor of Broadcom. - . - 7.2. Governing Law; Venue. This Agreement shall be governed by the laws of - California without regard to any conflict-of-laws rules, and the United Nations - Convention on Contracts for the International Sale of Goods is hereby excluded. - The sole jurisdiction and venue for actions related to the subject matter - hereof shall be the state and federal courts located in the County of Orange, - California, and both parties hereby consent to such jurisdiction and venue. - . - 7.3. Severability. All terms and provisions of this Agreement shall, if - possible, be construed in a manner which makes them valid, but in the event any - term or provision of this Agreement is found by a court of competent - jurisdiction to be illegal or unenforceable, the validity or enforceability of - the remainder of this Agreement shall not be affected if the illegal or - unenforceable provision does not materially affect the intent of this - Agreement. If the illegal or unenforceable provision materially affects the - intent of the parties to this Agreement, this Agreement shall become - terminated. - . - 7.4. Equitable Relief. Licensee hereby acknowledges that its breach of this - Agreement would cause irreparable harm and significant injury to Broadcom that - may be difficult to ascertain and that a remedy at law would be inadequate. - Accordingly, Licensee agrees that Broadcom shall have the right to seek and - obtain immediate injunctive relief to enforce obligations under the Agreement - in addition to any other rights and remedies it may have. - . - 7.5. Export Regulations. The parties agree that they shall each comply, at heir - own expense, with the U.S. Foreign Corrupt Practices Act and all import and - export laws, restrictions, national security controls and regulations of the - United States and any applicable foreign agency or authority. The parties shall - not import, export or re-export, or authorize the export or re-export of the - Software or any other product, technology, or information that it obtains or - learns hereunder, or any copy or direct product thereof, in violation of any of - such laws, restrictions, or regulations or without any license or approval - required thereunder. Any and all obligations of the parties to provide the - Software or any other product, technology, or information hereunder shall be - subject in all respects to such laws, restrictions, and regulations. - . - 7.6. Waiver. The waiver of, or failure to enforce, any breach or default - hereunder shall not constitute the waiver of any other or subsequent breach or - default. - . - 7.7. Entire Agreement. This Agreement sets forth the entire Agreement between - the parties and supersedes any and all prior proposals, agreements and - representations between them, whether written or oral concerning the Software. - This Agreement may be changed only by mutual agreement of the parties in - writing. - -Files: debian/* -Copyright: (C) 2009 Cyril Lacoux - (C) 2009 Daniel Baumann -License: PD - The Debian packaging is hereby placed in the public domain (no rights - reserved). \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/broadcom-proprietary.yml b/tests/licensedcode/data/licenses/broadcom-proprietary.yml deleted file mode 100644 index 675819a47bf..00000000000 --- a/tests/licensedcode/data/licenses/broadcom-proprietary.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - broadcom-proprietary -notes: https://launchpad.net/ubuntu/precise/+source/broadcom-sta/+copyright diff --git a/tests/licensedcode/data/licenses/broadcom-proprietary_1.txt b/tests/licensedcode/data/licenses/broadcom-proprietary_1.txt deleted file mode 100644 index a4184689e2f..00000000000 --- a/tests/licensedcode/data/licenses/broadcom-proprietary_1.txt +++ /dev/null @@ -1,216 +0,0 @@ -SOFTWARE LICENSE AGREEMENT - -Unless you and Broadcom Corporation ("Broadcom") execute a separate written -software license agreement governing use of the accompanying software, this -software is licensed to you under the terms of this Software License -Agreement ("Agreement"). - -ANY USE, REPRODUCTION OR DISTRIBUTION OF THE SOFTWARE CONSTITUTES YOUR -ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS. - -1.1. "Broadcom Product" means any of the proprietary integrated circuit -product(s) sold by Broadcom with which the Software was designed to be used, -or their successors. - -1.2. "Licensee" means you or if you are accepting on behalf of an entity -then the entity and its affiliates exercising rights under, and complying -with all of the terms of this Agreement. - -1.3. "Software" shall mean that software made available by Broadcom to -Licensee in binary code form with this Agreement. - -2. LICENSE GRANT; OWNERSHIP - -2.1. License Grants. Subject to the terms and conditions of this Agreement, -Broadcom hereby grants to Licensee a non-exclusive, non-transferable, -royalty-free license (i) to use and integrate the Software in conjunction -with any other software; and (ii) to reproduce and distribute the Software -complete, unmodified and only for use with a Broadcom Product. - -2.2. Restriction on Modification. If and to the extent that the Software is -designed to be compliant with any published communications standard -(including, without limitation, DOCSIS, HomePNA, IEEE, and ITU standards), -Licensee may not make any modifications to the Software that would cause the -Software or the accompanying Broadcom Products to be incompatible with such -standard. - -2.3. Restriction on Distribution. Licensee shall only distribute the -Software (a) under the terms of this Agreement and a copy of this Agreement -accompanies such distribution, and (b) agrees to defend and indemnify -Broadcom and its licensors from and against any damages, costs, liabilities, -settlement amounts and/or expenses (including attorneys' fees) incurred in -connection with any claim, lawsuit or action by any third party that arises -or results from the use or distribution of any and all Software by the -Licensee except as contemplated herein. - -2.4. Proprietary Notices. Licensee shall not remove, efface or obscure any -copyright or trademark notices from the Software. Licensee shall include -reproductions of the Broadcom copyright notice with each copy of the -Software, except where such Software is embedded in a manner not readily -accessible to the end user. Licensee acknowledges that any symbols, -trademarks, tradenames, and service marks adopted by Broadcom to identify the -Software belong to Broadcom and that Licensee shall have no rights therein. - -2.5. Ownership. Broadcom shall retain all right, title and interest, -including all intellectual property rights, in and to the Software. Licensee -hereby covenants that it will not assert any claim that the Software created -by or for Broadcom infringe any intellectual property right owned or -controlled by Licensee. - -2.6. No Other Rights Granted; Restrictions. Apart from the license rights -expressly set forth in this Agreement, Broadcom does not grant and Licensee -does not receive any ownership right, title or interest nor any security -interest or other interest in any intellectual property rights relating to -the Software, nor in any copy of any part of the foregoing. No license is -granted to Licensee in any human readable code of the Software (source code). -Licensee shall not (i) use, license, sell or otherwise distribute the -Software except as provided in this Agreement, (ii) attempt to reverse -engineer, decompile or disassemble any portion of the Software; or (iii) use -the Software or other material in violation of any applicable law or -regulation, including but not limited to any regulatory agency, such as FCC, -rules. - -3. NO WARRANTY OR SUPPORT - -3.1. No Warranty. THE SOFTWARE IS OFFERED "AS IS," AND BROADCOM GRANTS AND -LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY STATUTE, -COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. BROADCOM SPECIFICALLY -DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A SPECIFIC -PURPOSE OR NONINFRINGEMENT CONCERNING THE SOFTWARE OR ANY UPGRADES TO OR -DOCUMENTATION FOR THE SOFTWARE. WITHOUT LIMITATION OF THE ABOVE, BROADCOM -GRANTS NO WARRANTY THAT THE SOFTWARE IS ERROR-FREE OR WILL OPERATE WITHOUT -INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS -THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR -RELIABILITY. - -3.2. No Support. Nothing in this agreement shall obligate Broadcom to -provide any support for the Software. Broadcom may, but shall be under no -obligation to, correct any defects in the Software and/or provide updates to -licensees of the Software. Licensee shall make reasonable efforts to -promptly report to Broadcom any defects it finds in the Software, as an aid -to creating improved revisions of the Software. - -3.3. Dangerous Applications. The Software is not designed, intended, or -certified for use in components of systems intended for the operation of -weapons, weapons systems, nuclear installations, means of mass -transportation, aviation, life-support computers or equipment (including -resuscitation equipment and surgical implants), pollution control, hazardous -substances management, or for any other dangerous application in which the -failure of the Software could create a situation where personal injury or -death may occur. Licensee understands that use of the Software in such -applications is fully at the risk of Licensee. - -4. TERM AND TERMINATION - -4.1. Termination. This Agreement will automatically terminate if Licensee -fails to comply with any of the terms and conditions hereof. In such event, -Licensee must destroy all copies of the Software and all of its component -parts. - -4.2. Effect Of Termination. Upon any termination of this Agreement, the -rights and licenses granted to Licensee under this Agreement shall -immediately terminate. - -4.3. Survival. The rights and obligations under this Agreement which by -their nature should survive termination will remain in effect after -expiration or termination of this Agreement. - -5. CONFIDENTIALITY - -5.1. Obligations. Licensee acknowledges and agrees that any documentation -relating to the Software, and any other information (if such other -information is identified as confidential or should be recognized as -confidential under the circumstances) provided to Licensee by Broadcom -hereunder (collectively, "Confidential Information") constitute the -confidential and proprietary information of Broadcom, and that Licensee's -protection thereof is an essential condition to Licensee's use and possession -of the Software. Licensee shall retain all Confidential Information in -strict confidence and not disclose it to any third party or use it in any way -except under a written agreement with terms and conditions at least as -protective as the terms of this Section. Licensee will exercise at least the -same amount of diligence in preserving the secrecy of the Confidential -Information as it uses in preserving the secrecy of its own most valuable -confidential information, but in no event less than reasonable diligence. -Information shall not be considered Confidential Information if and to the -extent that it: (i) was in the public domain at the time it was disclosed or -has entered the public domain through no fault of Licensee; (ii) was known to -Licensee, without restriction, at the time of disclosure as proven by the -files of Licensee in existence at the time of disclosure; or (iii) becomes -known to Licensee, without restriction, from a source other than Broadcom -without breach of this Agreement by Licensee and otherwise not in violation -of Broadcom's rights. - -5.2. Return of Confidential Information. Notwithstanding the foregoing, all -documents and other tangible objects containing or representing Broadcom -Confidential Information and all copies thereof which are in the possession -of Licensee shall be and remain the property of Broadcom, and shall be -promptly returned to Broadcom upon written request by Broadcom or upon -termination of this Agreement. - -6. LIMITATION OF LIABILITY -TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ANY OF -BROADCOM'S LICENSORS HAVE ANY LIABILITY FOR ANY INDIRECT, INCIDENTAL, -SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR -OTHERWISE, ARISING OUT OF THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO LOSS -OF PROFITS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. IN NO EVENT WILL BROADCOM'S LIABILITY WHETHER IN CONTRACT, TORT -(INCLUDING NEGLIGENCE), OR OTHERWISE, EXCEED THE AMOUNT PAID BY LICENSEE FOR -SOFTWARE UNDER THIS AGREEMENT. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING -ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. - -7. MISCELLANEOUS - -7.1. Export Regulations. YOU UNDERSTAND AND AGREE THAT THE SOFTWARE IS -SUBJECT TO UNITED STATES AND OTHER APPLICABLE EXPORT-RELATED LAWS AND -REGULATIONS AND THAT YOU MAY NOT EXPORT, RE-EXPORT OR TRANSFER THE SOFTWARE -OR ANY DIRECT PRODUCT OF THE SOFTWARE EXCEPT AS PERMITTED UNDER THOSE LAWS. -WITHOUT LIMITING THE FOREGOING, EXPORT, RE-EXPORT OR TRANSFER OF THE SOFTWARE -TO CUBA, IRAN, NORTH KOREA, SUDAN AND SYRIA IS PROHIBITED. - -7.2 Assignment. This Agreement shall be binding upon and inure to the -benefit of the parties and their respective successors and assigns, provided, -however that Licensee may not assign this Agreement or any rights or -obligation hereunder, directly or indirectly, by operation of law or -otherwise, without the prior written consent of Broadcom, and any such -attempted assignment shall be void. Notwithstanding the foregoing, Licensee -may assign this Agreement to a successor to all or substantially all of its -business or assets to which this Agreement relates that is not a competitor -of Broadcom. - -7.3. Governing Law; Venue. This Agreement shall be governed by the laws of -California without regard to any conflict-of-laws rules, and the United -Nations Convention on Contracts for the International Sale of Goods is hereby -excluded. The sole jurisdiction and venue for actions related to the subject -matter hereof shall be the state and federal courts located in the County of -Orange, California, and both parties hereby consent to such jurisdiction and -venue. - -7.4. Severability. All terms and provisions of this Agreement shall, if -possible, be construed in a manner which makes them valid, but in the event -any term or provision of this Agreement is found by a court of competent -jurisdiction to be illegal or unenforceable, the validity or enforceability -of the remainder of this Agreement shall not be affected if the illegal or -unenforceable provision does not materially affect the intent of this -Agreement. If the illegal or unenforceable provision materially affects the -intent of the parties to this Agreement, this Agreement shall become -terminated. - -7.5. Equitable Relief. Licensee hereby acknowledges that its breach of this -Agreement would cause irreparable harm and significant injury to Broadcom -that may be difficult to ascertain and that a remedy at law would be -inadequate. Accordingly, Licensee agrees that Broadcom shall have the right -to seek and obtain immediate injunctive relief to enforce obligations under -the Agreement in addition to any other rights and remedies it may have. - -7.6. Waiver. The waiver of, or failure to enforce, any breach or default -hereunder shall not constitute the waiver of any other or subsequent breach -or default. - -7.7. Entire Agreement. This Agreement sets forth the entire Agreement -between the parties and supersedes any and all prior proposals, agreements -and representations between them, whether written or oral concerning the -Software. This Agreement may be changed only by mutual agreement of the -parties in writing. diff --git a/tests/licensedcode/data/licenses/broadcom-proprietary_1.yml b/tests/licensedcode/data/licenses/broadcom-proprietary_1.yml deleted file mode 100644 index 7cc68b65941..00000000000 --- a/tests/licensedcode/data/licenses/broadcom-proprietary_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - broadcom-proprietary diff --git a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd.txt b/tests/licensedcode/data/licenses/bsd-2-clause-freebsd.txt deleted file mode 100644 index 3ed56f9b087..00000000000 --- a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd.txt +++ /dev/null @@ -1,12 +0,0 @@ -The FreeBSD Copyright - -Copyright 1992-2012 The FreeBSD Project. 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. - -THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``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 FREEBSD PROJECT 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. -The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd.yml b/tests/licensedcode/data/licenses/bsd-2-clause-freebsd.yml deleted file mode 100644 index 9c8dfd2415e..00000000000 --- a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-2-clause-freebsd diff --git a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd_no_freebsd.variant b/tests/licensedcode/data/licenses/bsd-2-clause-freebsd_no_freebsd.variant deleted file mode 100644 index ab4ec3f20ab..00000000000 --- a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd_no_freebsd.variant +++ /dev/null @@ -1,8 +0,0 @@ -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. - -THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``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 FREEBSD PROJECT 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. -The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. diff --git a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd_no_freebsd.yml b/tests/licensedcode/data/licenses/bsd-2-clause-freebsd_no_freebsd.yml deleted file mode 100644 index de7dc4023f4..00000000000 --- a/tests/licensedcode/data/licenses/bsd-2-clause-freebsd_no_freebsd.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - bsd-2-clause-freebsd -notes: this variant does not mention the FreeBSD project diff --git a/tests/licensedcode/data/licenses/bsd-ack-carrot2.txt b/tests/licensedcode/data/licenses/bsd-ack-carrot2.txt deleted file mode 100644 index a9bd74f97be..00000000000 --- a/tests/licensedcode/data/licenses/bsd-ack-carrot2.txt +++ /dev/null @@ -1,29 +0,0 @@ -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -- 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. - -- Neither the name of the Carrot2 Project nor the names of its contributors -may be used to endorse or promote products derived from this software -without specific prior written permission. - -- We kindly request that you include in the end-user documentation provided with -the redistribution and/or in the software itself an acknowledgement equivalent -to the following: "This product includes software developed by the Carrot2 -Project." - -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 OWNER 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/tests/licensedcode/data/licenses/bsd-ack-carrot2.yml b/tests/licensedcode/data/licenses/bsd-ack-carrot2.yml deleted file mode 100644 index a6aeec42f49..00000000000 --- a/tests/licensedcode/data/licenses/bsd-ack-carrot2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-ack-carrot2 diff --git a/tests/licensedcode/data/licenses/bsd-ack.txt b/tests/licensedcode/data/licenses/bsd-ack.txt deleted file mode 100644 index 11ee4d3a981..00000000000 --- a/tests/licensedcode/data/licenses/bsd-ack.txt +++ /dev/null @@ -1,11 +0,0 @@ -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. - - 4. Redistributions of any form whatsoever must retain the following acknowledgment: 'This product includes software developed by the "Universidad de Palermo, Argentina" (http://www.palermo.edu/).' - -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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-ack.yml b/tests/licensedcode/data/licenses/bsd-ack.yml deleted file mode 100644 index 0385be8885d..00000000000 --- a/tests/licensedcode/data/licenses/bsd-ack.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-ack diff --git a/tests/licensedcode/data/licenses/bsd-new_11.txt b/tests/licensedcode/data/licenses/bsd-new_11.txt deleted file mode 100644 index 96f8244f5d2..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_11.txt +++ /dev/null @@ -1 +0,0 @@ -BSD-Modified \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-new_11.yml b/tests/licensedcode/data/licenses/bsd-new_11.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_160.txt b/tests/licensedcode/data/licenses/bsd-new_160.txt deleted file mode 100644 index 3537bf7e3d2..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_160.txt +++ /dev/null @@ -1,22 +0,0 @@ -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. 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. The name of the author may not be used to endorse or -promote products derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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/tests/licensedcode/data/licenses/bsd-new_160.yml b/tests/licensedcode/data/licenses/bsd-new_160.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_160.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_19.txt b/tests/licensedcode/data/licenses/bsd-new_19.txt deleted file mode 100644 index 2e49c0903a0..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_19.txt +++ /dev/null @@ -1,10 +0,0 @@ - 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. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-new_19.yml b/tests/licensedcode/data/licenses/bsd-new_19.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_36.txt b/tests/licensedcode/data/licenses/bsd-new_36.txt deleted file mode 100644 index d03618d2e51..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_36.txt +++ /dev/null @@ -1,26 +0,0 @@ - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * 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. - - * Neither the name of Gael Varoquaux. nor the names of other joblib - 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 - owner 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/tests/licensedcode/data/licenses/bsd-new_36.yml b/tests/licensedcode/data/licenses/bsd-new_36.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_50.txt b/tests/licensedcode/data/licenses/bsd-new_50.txt deleted file mode 100644 index 28b74d9f44e..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_50.txt +++ /dev/null @@ -1,7 +0,0 @@ -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of the 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 OWNER 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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-new_50.yml b/tests/licensedcode/data/licenses/bsd-new_50.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_50.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_57.txt b/tests/licensedcode/data/licenses/bsd-new_57.txt deleted file mode 100644 index 17424c4e489..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_57.txt +++ /dev/null @@ -1,33 +0,0 @@ -Copyright © . All rights reserved. - - is distributed subject to the following license conditions: -SOFTWARE LICENSE AGREEMENT -Software: - - 1. - - The "Software", below, refers to (in either source code, or binary form and accompanying documentation). Each licensee is addressed as "you" or "Licensee." - 2. - - The copyright holders shown above and their third-party licensors hereby grant Licensee a royalty-free nonexclusive license, subject to the limitations stated herein and U.S. Government license rights. - 3. - - You may modify and make a copy or copies of the Software for use within your organization, if you meet the following conditions: - 1. Copies in source code must include the copyright notice and this Software License Agreement. - 2. Copies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy. - 4. - - You may modify a copy or copies of the Software or any portion of it, thus forming a work based on the Software, and distribute copies of such work outside your organization, if you meet all of the following conditions: - 1. Copies in source code must include the copyright notice and this Software License Agreement; - 2. Copies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy; - 3. Modified copies and works based on the Software must carry prominent notices stating that you changed specified portions of the Software. - 5. - - Portions of the Software resulted from work developed under a U.S. Government contract and are subject to the following license: the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly. - 6. - - WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND THEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF THE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4) DO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL BE CORRECTED. - 7. - - LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF ANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE, EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGES. - diff --git a/tests/licensedcode/data/licenses/bsd-new_57.yml b/tests/licensedcode/data/licenses/bsd-new_57.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_and-apache.txt b/tests/licensedcode/data/licenses/bsd-new_and-apache.txt deleted file mode 100644 index 3a55368d481..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_and-apache.txt +++ /dev/null @@ -1,3 +0,0 @@ -// This file is dual licensed under the terms of the Apache License, Version -// 2.0, and the BSD License. See the LICENSE file in the root of this -// repository for complete details. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-new_and-apache.yml b/tests/licensedcode/data/licenses/bsd-new_and-apache.yml deleted file mode 100644 index e87d891edf4..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_and-apache.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new OR apache-2.0 diff --git a/tests/licensedcode/data/licenses/bsd-new_and_gpl.txt b/tests/licensedcode/data/licenses/bsd-new_and_gpl.txt deleted file mode 100644 index 314268ff6b4..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_and_gpl.txt +++ /dev/null @@ -1,4 +0,0 @@ - -#ifdef MODULE_LICENSE -MODULE_LICENSE("Dual BSD/GPL"); -#endif diff --git a/tests/licensedcode/data/licenses/bsd-new_and_gpl.yml b/tests/licensedcode/data/licenses/bsd-new_and_gpl.yml deleted file mode 100644 index b4a2f15a5f0..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_and_gpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new OR gpl-2.0 diff --git a/tests/licensedcode/data/licenses/bsd-new_and_mit_2.txt b/tests/licensedcode/data/licenses/bsd-new_and_mit_2.txt deleted file mode 100644 index 65ab40bf5e5..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_and_mit_2.txt +++ /dev/null @@ -1 +0,0 @@ -// Dual MIT/BSD license \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-new_and_mit_2.yml b/tests/licensedcode/data/licenses/bsd-new_and_mit_2.yml deleted file mode 100644 index f5f4994333d..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_and_mit_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit OR bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_like.txt b/tests/licensedcode/data/licenses/bsd-new_like.txt deleted file mode 100644 index 108d540616f..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_like.txt +++ /dev/null @@ -1,30 +0,0 @@ - * Redistribution and use in source and binary forms, with or - * without modification, are permitted provided that the following - * conditions are met: - * - * Redistributions of source code must retain the above - * copyright notice, this list of conditions and the - * following disclaimer. - * - * 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. - * - * Neither name of The Museum of Hiram 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 REGENTS 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/tests/licensedcode/data/licenses/bsd-new_like.yml b/tests/licensedcode/data/licenses/bsd-new_like.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_like.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_nomod.txt b/tests/licensedcode/data/licenses/bsd-new_nomod.txt deleted file mode 100644 index 3abca56239b..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_nomod.txt +++ /dev/null @@ -1,25 +0,0 @@ -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, - without modification. -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. The names of the above-listed copyright holders may not 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 OWNER 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/tests/licensedcode/data/licenses/bsd-new_nomod.yml b/tests/licensedcode/data/licenses/bsd-new_nomod.yml deleted file mode 100644 index 960ce82dc1d..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_nomod.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new-nomod diff --git a/tests/licensedcode/data/licenses/bsd-new_sun_1.txt b/tests/licensedcode/data/licenses/bsd-new_sun_1.txt deleted file mode 100644 index 3264f455780..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_sun_1.txt +++ /dev/null @@ -1,26 +0,0 @@ - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Sun Microsystems, Inc. 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/tests/licensedcode/data/licenses/bsd-new_sun_1.yml b/tests/licensedcode/data/licenses/bsd-new_sun_1.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_sun_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-new_sun_2.txt b/tests/licensedcode/data/licenses/bsd-new_sun_2.txt deleted file mode 100644 index 3264f455780..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_sun_2.txt +++ /dev/null @@ -1,26 +0,0 @@ - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Sun Microsystems, Inc. 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/tests/licensedcode/data/licenses/bsd-new_sun_2.yml b/tests/licensedcode/data/licenses/bsd-new_sun_2.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/licenses/bsd-new_sun_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/bsd-no-mod.txt b/tests/licensedcode/data/licenses/bsd-no-mod.txt deleted file mode 100644 index bf6bdb261a6..00000000000 --- a/tests/licensedcode/data/licenses/bsd-no-mod.txt +++ /dev/null @@ -1,30 +0,0 @@ -Redistribution and use in source and binary forms are permitted -provided that the following conditions are met: -1. The materials contained herein are unmodified and are used - unmodified. -2. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following NO - ''WARRANTY'' disclaimer below (''Disclaimer''), without - modification. -3. Redistributions in binary form must reproduce at minimum a - disclaimer similar to the Disclaimer below and any redistribution - must be conditioned upon including a substantially similar - Disclaimer requirement for further binary redistribution. -4. Neither the names of the above-listed copyright holders nor the - names of any contributors may be used to endorse or promote - product derived from this software without specific prior written - permission. - -NO WARRANTY -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 NONINFRINGEMENT, -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE -FOR 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 DAMAGES. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-no-mod.yml b/tests/licensedcode/data/licenses/bsd-no-mod.yml deleted file mode 100644 index f92d7bf7ab5..00000000000 --- a/tests/licensedcode/data/licenses/bsd-no-mod.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-no-mod diff --git a/tests/licensedcode/data/licenses/bsd-simplified.txt b/tests/licensedcode/data/licenses/bsd-simplified.txt deleted file mode 100644 index 4193d031a81..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified.txt +++ /dev/null @@ -1,57 +0,0 @@ -JOTM: Java Open Transaction Manager - -This project was originally developed by the following copyright holders -and contributors: - -- INRIA (www.inria.fr)inside the ObjectWeb Consortium -(http://www.objectweb.org) -- Experlog -(http://www.experlog.org) -- Bull S.A. as part of the JOnAS application server code released in July 1999 -(www.bull.com) - -HISTORY - -The project was originally licensed under the GNU LESSER GENERAL PUBLIC LICENSE -(LGPL)Version 2.1, February 1999. - -With the permission of the original copyright holders and contributors and at -the direction of the ObjectWeb Executive Board, the license was changed -to the Berkeley Software Distribution style license below. --Trent Shue December 05, 2003 - -------------------------------------------------------------------------------- -The original code and portions created by INRIA are -Copyright (c) 2002 INRIA -All rights reserved. - -The original code and portions created by Experlog are -Copyright (c) 2003 Experlog -All rights reserved. - -The original code and portions created by Bull SA are -Copyright (c) 1999 BULL SA -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - --Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - --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. - -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 OWNER 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. -------------------------------------------------------------------------------- \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-simplified.yml b/tests/licensedcode/data/licenses/bsd-simplified.yml deleted file mode 100644 index d881db3b22c..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-simplified diff --git a/tests/licensedcode/data/licenses/bsd-simplified_11.txt b/tests/licensedcode/data/licenses/bsd-simplified_11.txt deleted file mode 100644 index 13d6d099630..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_11.txt +++ /dev/null @@ -1,23 +0,0 @@ - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* 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. - -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 -OWNER 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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-simplified_11.yml b/tests/licensedcode/data/licenses/bsd-simplified_11.yml deleted file mode 100644 index d881db3b22c..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-simplified diff --git a/tests/licensedcode/data/licenses/bsd-simplified_5.txt b/tests/licensedcode/data/licenses/bsd-simplified_5.txt deleted file mode 100644 index 128b64f3365..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_5.txt +++ /dev/null @@ -1,21 +0,0 @@ - * 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. - * - * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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/tests/licensedcode/data/licenses/bsd-simplified_5.yml b/tests/licensedcode/data/licenses/bsd-simplified_5.yml deleted file mode 100644 index 691aa1a48cb..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-2-clause-netbsd diff --git a/tests/licensedcode/data/licenses/bsd-simplified_8.txt b/tests/licensedcode/data/licenses/bsd-simplified_8.txt deleted file mode 100644 index 424e137f129..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_8.txt +++ /dev/null @@ -1,24 +0,0 @@ - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* 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. - -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 -OWNER 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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-simplified_8.yml b/tests/licensedcode/data/licenses/bsd-simplified_8.yml deleted file mode 100644 index d881db3b22c..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-simplified diff --git a/tests/licensedcode/data/licenses/bsd-simplified_and_gpl-2.0-plus.txt b/tests/licensedcode/data/licenses/bsd-simplified_and_gpl-2.0-plus.txt deleted file mode 100644 index eb5e03287f3..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_and_gpl-2.0-plus.txt +++ /dev/null @@ -1,32 +0,0 @@ - -Redistribution and use in source and binary forms, with or without modifica- -tion, are permitted provided that the following conditions are met: - - *. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - *. 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. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- -CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- -CIAL, 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 OTH- -ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this file may be used under the terms of -the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of -the above. If you wish to allow the use of your version of this file -only under the terms of the GPL and not to allow others to use your -version of this file under the BSD license, indicate your decision -by deleting the provisions above and replace them with the notice -and other provisions required by the GPL. If you do not delete the -provisions above, a recipient may use your version of this file under -either the BSD or the GPL. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bsd-simplified_and_gpl-2.0-plus.yml b/tests/licensedcode/data/licenses/bsd-simplified_and_gpl-2.0-plus.yml deleted file mode 100644 index 069833bce8b..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_and_gpl-2.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-simplified OR gpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/bsd-simplified_and_lgpl-2.1.txt b/tests/licensedcode/data/licenses/bsd-simplified_and_lgpl-2.1.txt deleted file mode 100644 index f9c70ce0528..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_and_lgpl-2.1.txt +++ /dev/null @@ -1,57 +0,0 @@ -JOTM: Java Open Transaction Manager - -This project was originally developed by the following copyright holders -and contributors: - -- INRIA (www.inria.fr)inside the ObjectWeb Consortium -(http://www.objectweb.org) -- Experlog -(http://www.experlog.org) -- Bull S.A. as part of the JOnAS application server code released in July 1999 -(www.bull.com) - -HISTORY - -The project was originally licensed under the GNU LESSER GENERAL PUBLIC LICENSE -(LGPL)Version 2.1, February 1999. - -With the permission of the original copyright holders and contributors and at -the direction of the ObjectWeb Executive Board, the license was changed -to the Berkeley Software Distribution style license below. --Trent Shue December 05, 2003 - -------------------------------------------------------------------------------- -The original code and portions created by INRIA are -Copyright (c) 2002 INRIA -All rights reserved. - -The original code and portions created by Experlog are -Copyright (c) 2003 Experlog -All rights reserved. - -The original code and portions created by Bull SA are -Copyright (c) 1999 BULL SA -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - --Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - --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. - -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 OWNER 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/tests/licensedcode/data/licenses/bsd-simplified_and_lgpl-2.1.yml b/tests/licensedcode/data/licenses/bsd-simplified_and_lgpl-2.1.yml deleted file mode 100644 index d881db3b22c..00000000000 --- a/tests/licensedcode/data/licenses/bsd-simplified_and_lgpl-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-simplified diff --git a/tests/licensedcode/data/licenses/bsd-top_1.txt b/tests/licensedcode/data/licenses/bsd-top_1.txt deleted file mode 100644 index 3381fc5db69..00000000000 --- a/tests/licensedcode/data/licenses/bsd-top_1.txt +++ /dev/null @@ -1,5 +0,0 @@ -Redistribution and use in source, with or without modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer, without modification, immediately at the beginning of the file. - The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - diff --git a/tests/licensedcode/data/licenses/bsd-top_1.yml b/tests/licensedcode/data/licenses/bsd-top_1.yml deleted file mode 100644 index 370dbbb37a2..00000000000 --- a/tests/licensedcode/data/licenses/bsd-top_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-top diff --git a/tests/licensedcode/data/licenses/bsd-top_AND_gpl-2.0-plus_1.txt b/tests/licensedcode/data/licenses/bsd-top_AND_gpl-2.0-plus_1.txt deleted file mode 100644 index 3312491986b..00000000000 --- a/tests/licensedcode/data/licenses/bsd-top_AND_gpl-2.0-plus_1.txt +++ /dev/null @@ -1,8 +0,0 @@ -Redistribution and use in source, with or without modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer, without modification, immediately at the beginning of the file. - The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. URL http://www.gnu.org/licenses/gpl.html diff --git a/tests/licensedcode/data/licenses/bsd-top_AND_gpl-2.0-plus_1.yml b/tests/licensedcode/data/licenses/bsd-top_AND_gpl-2.0-plus_1.yml deleted file mode 100644 index 3890b218f59..00000000000 --- a/tests/licensedcode/data/licenses/bsd-top_AND_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - bsd-top AND gpl-2.0-plus AND free-unknown -notes: from http://reviser.osdn.jp/Excel_Reviser/_reviser.php.html this is a cross of the bsd-top - and the GPL diff --git a/tests/licensedcode/data/licenses/bzip2-libbzip-2010.txt b/tests/licensedcode/data/licenses/bzip2-libbzip-2010.txt deleted file mode 100644 index 02a5e5807fc..00000000000 --- a/tests/licensedcode/data/licenses/bzip2-libbzip-2010.txt +++ /dev/null @@ -1,59 +0,0 @@ -This program, "bzip2", the associated library "libbzip2", and all - -documentation, are copyright (C) 1996-2010 Julian R Seward. 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. The origin of this software must not be misrepresented; you must - - not claim that you wrote the original software. If you use this - - software in a product, an acknowledgment in the product - - documentation would be appreciated but is not required. - -3. Altered source versions must be plainly marked as such, and must - - not be misrepresented as being the original software. - -4. The name of the author may not be used to endorse or promote - - products derived from this software without specific prior written - - permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. - -Julian Seward, jseward@bzip.org - -bzip2/libbzip2 version 1.0.6 of 6 September 2010 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/bzip2-libbzip-2010.yml b/tests/licensedcode/data/licenses/bzip2-libbzip-2010.yml deleted file mode 100644 index 3eede2c4541..00000000000 --- a/tests/licensedcode/data/licenses/bzip2-libbzip-2010.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bzip2-libbzip-2010 diff --git a/tests/licensedcode/data/licenses/cavium-malloc.txt b/tests/licensedcode/data/licenses/cavium-malloc.txt deleted file mode 100644 index 3eec99bcff8..00000000000 --- a/tests/licensedcode/data/licenses/cavium-malloc.txt +++ /dev/null @@ -1,17 +0,0 @@ -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that (i) the above copyright notices and this permission -notice appear in all copies of the software and related documentation, -and (ii) the name of Wolfram Gloger may not be used in any advertising -or publicity relating to the software. - -THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -IN NO EVENT SHALL WOLFRAM GLOGER BE LIABLE FOR ANY SPECIAL, -INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY -DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY -OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cavium-malloc.yml b/tests/licensedcode/data/licenses/cavium-malloc.yml deleted file mode 100644 index 4e6dff090eb..00000000000 --- a/tests/licensedcode/data/licenses/cavium-malloc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cavium-malloc diff --git a/tests/licensedcode/data/licenses/cc-by-1.0.txt b/tests/licensedcode/data/licenses/cc-by-1.0.txt deleted file mode 100644 index cc67727b0ef..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-1.0.txt +++ /dev/null @@ -1,66 +0,0 @@ -Creative Commons -Creative Commons Legal Code -Link to summary of this license: http://creativecommons.org/licenses/by/1.0/ - -Attribution 1.0 -CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. - -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - - 1. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. - 2. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. - 3. "Licensor" means the individual or entity that offers the Work under the terms of this License. - 4. "Original Author" means the individual or entity who created the Work. - 5. "Work" means the copyrightable work of authorship offered under the terms of this License. - 6. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. - -2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - - 1. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; - 2. to create and reproduce Derivative Works; - 3. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; - 4. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; - -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - - 1. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. - 2. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. - -5. Representations, Warranties and Disclaimer - - 1. By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry: - 1. Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; - 2. The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. - 2. EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. - 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. - -8. Miscellaneous - - 1. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. - 2. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. - 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. - 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. - 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. - -Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - -Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. - -Creative Commons may be contacted at http://creativecommons.org/. - diff --git a/tests/licensedcode/data/licenses/cc-by-1.0.yml b/tests/licensedcode/data/licenses/cc-by-1.0.yml deleted file mode 100644 index 0329485b4a0..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-1.0 diff --git a/tests/licensedcode/data/licenses/cc-by-2.0-uk.txt b/tests/licensedcode/data/licenses/cc-by-2.0-uk.txt deleted file mode 100644 index 216459e5a69..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-2.0-uk.txt +++ /dev/null @@ -1,108 +0,0 @@ -Attribution 2.0 England and Wales - -CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. -Licence - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE ("CCPL" OR "LICENCE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENCE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -This Creative Commons England and Wales Public Licence enables You (all capitalised terms defined below) to view, edit, modify, translate and distribute Works worldwide, provided that You credit the Original Author. - -'The Licensor' [one or more legally recognised persons or entities offering the Work under the terms and conditions of this Licence] - -and - -'You' - -agree as follows: - -1. Definitions - -"Attribution" means acknowledging all the parties who have contributed to and have rights in the Work, Derivative Work or Collective Work under this Licence. -"Collective Work" means the Work in its entirety in unmodified form along with a number of other separate and independent works, assembled into a collective whole. -"Derivative Work" means any work created by the editing, modification, adaptation or translation of the Work in any media (however a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence). For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this Licence. -"Licence" means this Creative Commons England and Wales Public Licence agreement. -"Original Author" means the individual (or entity) who created the Work. -"Work" means the work protected by copyright which is offered under the terms of this Licence. -For the purpose of this Licence, when not inconsistent with the context, words in the singular number include the plural number. -2. Licence Terms - -2.1 The Licensor hereby grants to You a worldwide, royalty-free, non-exclusive, Licence for use and for the duration of copyright in the Work. - -You may: - -copy the Work; -create one or more Derivative Works; -incorporate the Work into one or more Collective Works; -copy Derivative Works or the Work as incorporated in any Collective Work; and -publish, distribute, archive, perform or otherwise disseminate the Work, Derivative Works or the Work as incorporated in any Collective Work, to the public in any material form in any media whether now known or hereafter created. - -HOWEVER, - -You must not: - -impose any terms on the use to be made of the Work, the Derivative Work or the Work as incorporated in a Collective Work that alter or restrict the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; -impose any digital rights management technology on the Work, the Derivative Work or the Work as incorporated in a Collective Work that alters or restricts the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; -sublicense the Work; -subject the Work to any derogatory treatment as defined in the Copyright, Designs and Patents Act 1988. - -FINALLY, - -You must: - -make reference to this Licence (by Uniform Resource Identifier (URI), spoken word or as appropriate to the media used) on all copies of the Work and Derivative Works and Collective Works published, distributed, performed or otherwise disseminated or made available to the public by You; -recognise the Licensor's / Original Author's right of attribution in any Work, Derivative Work and Collective Work that You publish, distribute, perform or otherwise disseminate to the public and ensure that You credit the Licensor / Original Author as appropriate to the media used; and -to the extent reasonably practicable, keep intact all notices that refer to this Licence, in particular the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. -Additional Provisions for third parties making use of the Work - -2.2. Further licence from the Licensor - -Each time You publish, distribute, perform or otherwise disseminate - -the Work; or -any Derivative Work; or -the Work as incorporated in a Collective Work -the Licensor agrees to offer to the relevant third party making use of the Work (in any of the alternatives set out above) a licence to use the Work on the same terms and conditions as granted to You hereunder. - -2.3. This Licence does not affect any rights that the User may have under any applicable law, including fair use, fair dealing or any other legally recognised limitation or exception to copyright infringement. - -2.4. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to, the exclusive right to collect, whether individually or via a licensing body, such as a collecting society, royalties for any use of the Work. - -3. Warranties and Disclaimer - -Except as required by law, the Work or any Derivative Work is licensed by the Licensor on an "as is" and "as available" basis and without any warranty of any kind, either express or implied. - -4. Limit of Liability - -Subject to any liability which may not be excluded or limited by law the Licensor shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You. - -5. Termination - -The rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Derivative Works or Collective Works from You under this Licence, however, will not have their Licences terminated provided such individuals or entities remain in full compliance with those Licences. - -6. General - -6.1. The validity or enforceability of the remaining terms of this agreement is not affected by the holding of any provision of it to be invalid or unenforceable. - -6.2. This Licence constitutes the entire Licence Agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication in any form. - -6.3. A person who is not a party to this Licence shall have no rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any of its terms. - -6.4. This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales. - -7. On the role of Creative Commons - -7.1. Neither the Licensor nor the User may use the Creative Commons logo except to indicate that the Work is licensed under a Creative Commons Licence. Any permitted use has to be in compliance with the Creative Commons trade mark usage guidelines at the time of use of the Creative Commons trade mark. These guidelines may be found on the Creative Commons website or be otherwise available upon request from time to time. - -7.2. Creative Commons Corporation does not profit financially from its role in providing this Licence and will not investigate the claims of any Licensor or user of the Licence. - -7.3. One of the conditions that Creative Commons Corporation requires of the Licensor and You is an acknowledgement of its limited role and agreement by all who use the Licence that the Corporation is not responsible to anyone for the statements and actions of You or the Licensor or anyone else attempting to use or using this Licence. - -7.4. Creative Commons Corporation is not a party to this Licence, and makes no warranty whatsoever in connection to the Work or in connection to the Licence, and in all events is not liable for any loss or damage resulting from the Licensor's or Your reliance on this Licence or on its enforceability. - -7.5. USE OF THIS LICENCE MEANS THAT YOU AND THE LICENSOR EACH ACCEPTS THESE CONDITIONS IN SECTION 7.1, 7.2, 7.3, 7.4 AND EACH ACKNOWLEDGES CREATIVE COMMONS CORPORATION'S VERY LIMITED ROLE AS A FACILITATOR OF THE LICENCE FROM THE LICENSOR TO YOU. - -Creative Commons is not a party to this Licence, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - -Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. - -Creative Commons may be contacted at http://creativecommons.org/. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cc-by-2.0-uk.yml b/tests/licensedcode/data/licenses/cc-by-2.0-uk.yml deleted file mode 100644 index 3daa7ca6c13..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-2.0-uk.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - cc-by-2.0-uk -notes: From http://creativecommons.org/licenses/by/2.0/uk/legalcode diff --git a/tests/licensedcode/data/licenses/cc-by-4.0.txt b/tests/licensedcode/data/licenses/cc-by-4.0.txt deleted file mode 100644 index 5b99c1227b9..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-4.0.txt +++ /dev/null @@ -1,89 +0,0 @@ -Creative Commons Attribution 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. -Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. -Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. -Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. -Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. -Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. -Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. -Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. -Licensor means the individual(s) or entity(ies) granting rights under this Public License. -Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. -Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. -You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. -License grant. -Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: -reproduce and Share the Licensed Material, in whole or in part; and -produce, reproduce, and Share Adapted Material. -Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. -Term. The term of this Public License is specified in Section 6(a). -Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. -Downstream recipients. -Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. -No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. -No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). -Other rights. - -Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. -Patent and trademark rights are not licensed under this Public License. -To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. - -Section 3 – License Conditions. -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - -Attribution. - -If You Share the Licensed Material (including in modified form), You must: - -retain the following if it is supplied by the Licensor with the Licensed Material: -identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); -a copyright notice; -a notice that refers to this Public License; -a notice that refers to the disclaimer of warranties; -a URI or hyperlink to the Licensed Material to the extent reasonably practicable; -indicate if You modified the Licensed Material and retain an indication of any previous modifications; and -indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. -You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. -If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. -If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. - -Section 4 – Sui Generis Database Rights. -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - -for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; -if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and -You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. -Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. -To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. -The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. -This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. -Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: - -automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or -upon express reinstatement by the Licensor. -For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. -For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. -Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. -The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. -Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. -For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. -To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. -No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. -Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. - -Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cc-by-4.0.yml b/tests/licensedcode/data/licenses/cc-by-4.0.yml deleted file mode 100644 index fd3e742ff6a..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-4.0 diff --git a/tests/licensedcode/data/licenses/cc-by-nc-4.0.txt b/tests/licensedcode/data/licenses/cc-by-nc-4.0.txt deleted file mode 100644 index 5e6e0792584..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nc-4.0.txt +++ /dev/null @@ -1,90 +0,0 @@ -Creative Commons Attribution-NonCommercial 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. -Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. -Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. -Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. -Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. -Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. -Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. -Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. -Licensor means the individual(s) or entity(ies) granting rights under this Public License. -NonCommercial means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange. -Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. -Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. -You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. -License grant. -Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: -reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and -produce, reproduce, and Share Adapted Material for NonCommercial purposes only. -Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. -Term. The term of this Public License is specified in Section 6(a). -Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. -Downstream recipients. -Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. -No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. -No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). -Other rights. - -Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. -Patent and trademark rights are not licensed under this Public License. -To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes. - -Section 3 – License Conditions. -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - -Attribution. - -If You Share the Licensed Material (including in modified form), You must: - -retain the following if it is supplied by the Licensor with the Licensed Material: -identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); -a copyright notice; -a notice that refers to this Public License; -a notice that refers to the disclaimer of warranties; -a URI or hyperlink to the Licensed Material to the extent reasonably practicable; -indicate if You modified the Licensed Material and retain an indication of any previous modifications; and -indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. -You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. -If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. -If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. - -Section 4 – Sui Generis Database Rights. -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - -for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only; -if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and -You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. -Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. -To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. -The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. -This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. -Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: - -automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or -upon express reinstatement by the Licensor. -For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. -For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. -Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. -The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. -Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. -For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. -To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. -No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. -Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. - -Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cc-by-nc-4.0.yml b/tests/licensedcode/data/licenses/cc-by-nc-4.0.yml deleted file mode 100644 index e1da885cf49..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nc-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-4.0 diff --git a/tests/licensedcode/data/licenses/cc-by-nc-nd-4.0.txt b/tests/licensedcode/data/licenses/cc-by-nc-nd-4.0.txt deleted file mode 100644 index 99d5efee8b8..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nc-nd-4.0.txt +++ /dev/null @@ -1,89 +0,0 @@ -Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. -Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. -Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. -Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. -Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. -Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. -Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. -Licensor means the individual(s) or entity(ies) granting rights under this Public License. -NonCommercial means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange. -Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. -Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. -You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. -License grant. -Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: -reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and -produce and reproduce, but not Share, Adapted Material for NonCommercial purposes only. -Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. -Term. The term of this Public License is specified in Section 6(a). -Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. -Downstream recipients. -Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. -No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. -No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). -Other rights. - -Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. -Patent and trademark rights are not licensed under this Public License. -To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes. - -Section 3 – License Conditions. -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - -Attribution. - -If You Share the Licensed Material, You must: - -retain the following if it is supplied by the Licensor with the Licensed Material: -identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); -a copyright notice; -a notice that refers to this Public License; -a notice that refers to the disclaimer of warranties; -a URI or hyperlink to the Licensed Material to the extent reasonably practicable; -indicate if You modified the Licensed Material and retain an indication of any previous modifications; and -indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. -For the avoidance of doubt, You do not have permission under this Public License to Share Adapted Material. -You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. -If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. - -Section 4 – Sui Generis Database Rights. -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - -for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only and provided You do not Share Adapted Material; -if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and -You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. -Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. -To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. -The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. -This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. -Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: - -automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or -upon express reinstatement by the Licensor. -For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. -For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. -Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. -The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. -Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. -For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. -To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. -No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. -Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. - -Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cc-by-nc-nd-4.0.yml b/tests/licensedcode/data/licenses/cc-by-nc-nd-4.0.yml deleted file mode 100644 index 9ba349510bd..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nc-nd-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-nd-4.0 diff --git a/tests/licensedcode/data/licenses/cc-by-nc-sa-4.0.txt b/tests/licensedcode/data/licenses/cc-by-nc-sa-4.0.txt deleted file mode 100644 index 7e4c2c93556..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nc-sa-4.0.txt +++ /dev/null @@ -1,98 +0,0 @@ -Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. -Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. -Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. -BY-NC-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. -Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. -Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. -Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. -License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution, NonCommercial, and ShareAlike. -Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. -Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. -Licensor means the individual(s) or entity(ies) granting rights under this Public License. -NonCommercial means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange. -Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. -Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. -You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. -License grant. -Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: -reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and -produce, reproduce, and Share Adapted Material for NonCommercial purposes only. -Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. -Term. The term of this Public License is specified in Section 6(a). -Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. -Downstream recipients. -Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. -Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. -No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. -No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). -Other rights. - -Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. -Patent and trademark rights are not licensed under this Public License. -To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes. - -Section 3 – License Conditions. -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - -Attribution. - -If You Share the Licensed Material (including in modified form), You must: - -retain the following if it is supplied by the Licensor with the Licensed Material: -identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); -a copyright notice; -a notice that refers to this Public License; -a notice that refers to the disclaimer of warranties; -a URI or hyperlink to the Licensed Material to the extent reasonably practicable; -indicate if You modified the Licensed Material and retain an indication of any previous modifications; and -indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. -You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. -If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. -ShareAlike. -In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. - -The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-NC-SA Compatible License. -You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. -You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. - -Section 4 – Sui Generis Database Rights. -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - -for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only; -if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and -You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. -Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. -To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. -The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. -This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. -Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: - -automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or -upon express reinstatement by the Licensor. -For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. -For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. -Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. -The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. -Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. -For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. -To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. -No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. -Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. - -Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cc-by-nc-sa-4.0.yml b/tests/licensedcode/data/licenses/cc-by-nc-sa-4.0.yml deleted file mode 100644 index 69fe13421de..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nc-sa-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-sa-4.0 diff --git a/tests/licensedcode/data/licenses/cc-by-nd-4.0.txt b/tests/licensedcode/data/licenses/cc-by-nd-4.0.txt deleted file mode 100644 index 0239484397f..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nd-4.0.txt +++ /dev/null @@ -1,88 +0,0 @@ -Creative Commons Attribution-NoDerivatives 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NoDerivatives 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. -Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. -Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. -Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. -Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. -Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. -Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. -Licensor means the individual(s) or entity(ies) granting rights under this Public License. -Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. -Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. -You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. -License grant. -Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: -reproduce and Share the Licensed Material, in whole or in part; and -produce and reproduce, but not Share, Adapted Material. -Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. -Term. The term of this Public License is specified in Section 6(a). -Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. -Downstream recipients. -Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. -No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. -No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). -Other rights. - -Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. -Patent and trademark rights are not licensed under this Public License. -To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. - -Section 3 – License Conditions. -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - -Attribution. - -If You Share the Licensed Material, You must: - -retain the following if it is supplied by the Licensor with the Licensed Material: -identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); -a copyright notice; -a notice that refers to this Public License; -a notice that refers to the disclaimer of warranties; -a URI or hyperlink to the Licensed Material to the extent reasonably practicable; -indicate if You modified the Licensed Material and retain an indication of any previous modifications; and -indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. -For the avoidance of doubt, You do not have permission under this Public License to Share Adapted Material. -You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. -If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. - -Section 4 – Sui Generis Database Rights. -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - -for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database, provided You do not Share Adapted Material; -if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and -You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. -Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. -To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. -The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. -This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. -Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: - -automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or -upon express reinstatement by the Licensor. -For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. -For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. -Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. -The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. -Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. -For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. -To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. -No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. -Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. - -Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cc-by-nd-4.0.yml b/tests/licensedcode/data/licenses/cc-by-nd-4.0.yml deleted file mode 100644 index 391208efc2f..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-nd-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nd-4.0 diff --git a/tests/licensedcode/data/licenses/cc-by-sa-4.0.txt b/tests/licensedcode/data/licenses/cc-by-sa-4.0.txt deleted file mode 100644 index dd5d0b5fb23..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-sa-4.0.txt +++ /dev/null @@ -1,97 +0,0 @@ -Creative Commons Attribution-ShareAlike 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. -Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. -Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. -BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. -Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. -Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. -Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. -License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. -Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. -Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. -Licensor means the individual(s) or entity(ies) granting rights under this Public License. -Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. -Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. -You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. -License grant. -Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: -reproduce and Share the Licensed Material, in whole or in part; and -produce, reproduce, and Share Adapted Material. -Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. -Term. The term of this Public License is specified in Section 6(a). -Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. -Downstream recipients. -Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. -Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. -No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. -No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). -Other rights. - -Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. -Patent and trademark rights are not licensed under this Public License. -To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. - -Section 3 – License Conditions. -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - -Attribution. - -If You Share the Licensed Material (including in modified form), You must: - -retain the following if it is supplied by the Licensor with the Licensed Material: -identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); -a copyright notice; -a notice that refers to this Public License; -a notice that refers to the disclaimer of warranties; -a URI or hyperlink to the Licensed Material to the extent reasonably practicable; -indicate if You modified the Licensed Material and retain an indication of any previous modifications; and -indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. -You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. -If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. -ShareAlike. -In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. - -The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. -You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. -You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. - -Section 4 – Sui Generis Database Rights. -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - -for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; -if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and -You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. -Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. -To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. -The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. -This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. -Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: - -automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or -upon express reinstatement by the Licensor. -For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. -For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. -Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. -The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. -Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. -For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. -To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. -No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. -Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. - -Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cc-by-sa-4.0.yml b/tests/licensedcode/data/licenses/cc-by-sa-4.0.yml deleted file mode 100644 index 5ee521055de..00000000000 --- a/tests/licensedcode/data/licenses/cc-by-sa-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-sa-4.0 diff --git a/tests/licensedcode/data/licenses/cddl-1.0-glassfish_1.txt b/tests/licensedcode/data/licenses/cddl-1.0-glassfish_1.txt deleted file mode 100644 index 9dcbf80c39e..00000000000 --- a/tests/licensedcode/data/licenses/cddl-1.0-glassfish_1.txt +++ /dev/null @@ -1,20 +0,0 @@ -/* - * The contents of this file are subject to the terms - * of the Common Development and Distribution License - * (the "License"). You may not use this file except - * in compliance with the License. - * - * You can obtain a copy of the license at - * glassfish/bootstrap/legal/CDDLv1.0.txt or - * https://glassfish.dev.java.net/public/CDDLv1.0.html. - * See the License for the specific language governing - * permissions and limitations under the License. - * - * When distributing Covered Code, include this CDDL - * HEADER in each file and include the License file at - * glassfish/bootstrap/legal/CDDLv1.0.txt. If applicable, - * add the following below this CDDL HEADER, with the - * fields enclosed by brackets "[]" replaced with your - * own identifying information: Portions Copyright [yyyy] - * [name of copyright owner] - */ diff --git a/tests/licensedcode/data/licenses/cddl-1.0-glassfish_1.yml b/tests/licensedcode/data/licenses/cddl-1.0-glassfish_1.yml deleted file mode 100644 index 5bf385411a0..00000000000 --- a/tests/licensedcode/data/licenses/cddl-1.0-glassfish_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cddl-1.0 diff --git a/tests/licensedcode/data/licenses/cddl-1.0_1.txt b/tests/licensedcode/data/licenses/cddl-1.0_1.txt deleted file mode 100644 index 8b240367067..00000000000 --- a/tests/licensedcode/data/licenses/cddl-1.0_1.txt +++ /dev/null @@ -1,128 +0,0 @@ -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 - -1. Definitions. - - 1.1. Contributor means each individual or entity that creates or contributes to the creation of Modifications. - - 1.2. Contributor Version means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. - - 1.3. Covered Software means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. - - 1.4. Executable means the Covered Software in any form other than Source Code. - - 1.5. Initial Developer means the individual or entity that first makes Original Software available under this License. - - 1.6. Larger Work means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. - - 1.7. License means this document. - - 1.8. Licensable means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - - 1.9. Modifications means the Source Code and Executable form of any of the following: - A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; - B. Any new file that contains any part of the Original Software or previous Modification; or - - C. Any new file that is contributed or otherwise made available under the terms of this License. - - 1.10. Original Software means the Source Code and Executable form of computer software code that is originally released under this License. - - 1.11. Patent Claims means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - - 1.12. Source Code means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. - - 1.13. You (or Your) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - - -2. License Grants. - - 2.1. The Initial Developer Grant. - - Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). - - (c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. - - 2.2. Contributor Grant. - - Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - - (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. - - (d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - - 3.1. Availability of Source Code. - - Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. - - 3.2. Modifications. - - The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. - - 3.3. Required Notices. - - You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. - - 3.4. Application of Additional Terms. - - You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - - 3.5. Distribution of Executable Versions. - - You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipients rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - - 3.6. Larger Works. - - You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. - -4. Versions of the License. - - 4.1. New Versions. - - Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. - - 4.2. Effect of New Versions. - - You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. - - 4.3. Modified Versions. - - When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. - -5. DISCLAIMER OF WARRANTY. - -COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -6. TERMINATION. - - 6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - - 6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as Participant) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. - - 6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. - -7. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -8. U.S. GOVERNMENT END USERS. - -The Covered Software is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software (as that term is defined at 48 C.F.R. 252.227-7014(a)(1)) and commercial computer software documentation as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. - -9. MISCELLANEOUS. - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdictions conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. - -10. RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. diff --git a/tests/licensedcode/data/licenses/cddl-1.0_1.yml b/tests/licensedcode/data/licenses/cddl-1.0_1.yml deleted file mode 100644 index 5bf385411a0..00000000000 --- a/tests/licensedcode/data/licenses/cddl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cddl-1.0 diff --git a/tests/licensedcode/data/licenses/cddl-1.0_and_gpl-2.0-classpath_and_gpl-2.0-plus.txt b/tests/licensedcode/data/licenses/cddl-1.0_and_gpl-2.0-classpath_and_gpl-2.0-plus.txt deleted file mode 100644 index ea826b65ad3..00000000000 --- a/tests/licensedcode/data/licenses/cddl-1.0_and_gpl-2.0-classpath_and_gpl-2.0-plus.txt +++ /dev/null @@ -1,137 +0,0 @@ -Dual License CDDL + GPL - -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 - 1. Definitions. -o 1.1. Contributor means each individual or entity that creates or contributes to the creation of Modifications. -o 1.2. Contributor Version means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. -o 1.3. Covered Software means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. -o 1.4. Executable means the Covered Software in any form other than Source Code. -o 1.5. Initial Developer means the individual or entity that first makes Original Software available under this License. -o 1.6. Larger Work means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. -o 1.7. License means this document. -o 1.8. Licensable means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -o 1.9. Modifications means the Source Code and Executable form of any of the following: - A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; - B. Any new file that contains any part of the Original Software or previous Modification; or - C. Any new file that is contributed or otherwise made available under the terms of this License. -o 1.10. Original Software means the Source Code and Executable form of computer software code that is originally released under this License. -o 1.11. Patent Claims means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. -o 1.12. Source Code means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. -o 1.13. You (or Your) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a)the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b)ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - 2. License Grants. -o 2.1. The Initial Developer Grant. -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: - (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and - (b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). - (c) The licenses granted in Sections2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. - (d) Notwithstanding Section2.1(b) above, no patent license is granted: (1)for code that You delete from the Original Software, or (2)for infringements caused by: (i)the modification of the Original Software, or (ii)the combination of the Original Software with other software or devices. -o 2.2. Contributor Grant. -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and - (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1)Modifications made by that Contributor (or portions thereof); and (2)the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - (c) The licenses granted in Sections2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. - (d) Notwithstanding Section2.2(b) above, no patent license is granted: (1)for any code that Contributor has deleted from the Contributor Version; (2)for infringements caused by: (i)third party modifications of Contributor Version, or (ii)the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3)under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. - 3. Distribution Obligations. -o 3.1. Availability of Source Code. -Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. -o 3.2. Modifications. -The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. -o 3.3. Required Notices. -You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. -o 3.4. Application of Additional Terms. -You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. -o 3.5. Distribution of Executable Versions. -You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipients rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. -o 3.6. Larger Works. -You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. - 4. Versions of the License. -o 4.1. New Versions. -Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. -o 4.2. Effect of New Versions. -You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. -o 4.3. Modified Versions. -When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a)rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b)otherwise make it clear that the license contains terms which differ from this License. - 5. DISCLAIMER OF WARRANTY. -COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - 6. TERMINATION. -o 6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -o 6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as Participant) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. -o 6.3. In the event of termination under Sections6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. - 7. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - 8. U.S. GOVERNMENT END USERS. -The Covered Software is a commercial item, as that term is defined in 48C.F.R.2.101 (Oct. 1995), consisting of commercial computer software (as that term is defined at 48 C.F.R. 252.227-7014(a)(1)) and commercial computer software documentation as such terms are used in 48C.F.R.12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. - 9. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdictions conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. - 10. RESPONSIBILITY FOR CLAIMS. -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) -The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. -The GNU General Public License (GPL) Version 2, June 1991 -Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -Preamble -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. -For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. -We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. -Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. -The precise terms and conditions for copying, distribution and modification follow. -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. - 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: -o a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. -o b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. -o c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. -In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: -o a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -o b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -o c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) -The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. -If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. - 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. -Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. - 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - NO WARRANTY - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - END OF TERMS AND CONDITIONS - How to Apply These Terms to Your New Programs -If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. -To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. -o One line to give the program's name and a brief idea of what it does. -o Copyright (C) -o This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. -o This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -o You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Also add information on how to contact you by electronic and paper mail. -If the program is interactive, make it output a short notice like this when it starts in an interactive mode: -o Gnomovision version 69, Copyright (C) year name of author -Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. -The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: -o Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. -signature of Ty Coon, 1 April 1989 -Ty Coon, President of Vice -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. - "CLASSPATH" EXCEPTION TO THE GPL VERSION 2 -Certain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL Version 2, but only where Sun has expressly included in the particular source file's header the words -"Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the License file that accompanied this code." -Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License Version 2 cover the whole combination. -As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module.? An independent module is a module which is not derived from or based on this library.? If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so.? If you do not wish to do so, delete this exception statement from your version. diff --git a/tests/licensedcode/data/licenses/cddl-1.0_and_gpl-2.0-classpath_and_gpl-2.0-plus.yml b/tests/licensedcode/data/licenses/cddl-1.0_and_gpl-2.0-classpath_and_gpl-2.0-plus.yml deleted file mode 100644 index ce1c249c856..00000000000 --- a/tests/licensedcode/data/licenses/cddl-1.0_and_gpl-2.0-classpath_and_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -notes: weird format for cddl + gpl + classpath diff --git a/tests/licensedcode/data/licenses/chris-stoy.txt b/tests/licensedcode/data/licenses/chris-stoy.txt deleted file mode 100644 index 688ad860ddf..00000000000 --- a/tests/licensedcode/data/licenses/chris-stoy.txt +++ /dev/null @@ -1,10 +0,0 @@ -Simple CommandLine Parser -Copyright (C) 2008 Chris Stoy -For questions or comments see the article on CodeProject (www.codeproject.com ) -or email me at cstoy at nc.rr.com. - -You are free to use this code in all commercial and non-commercial applications -as long as this copyright message is left intact. -Use this code at your own risk. I take no responsibility if it should fail to -do anything you would expect it to do and it could, at any time, fail to function -in any manner. You have the source code, make it do what you want. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/chris-stoy.yml b/tests/licensedcode/data/licenses/chris-stoy.yml deleted file mode 100644 index c8893e044aa..00000000000 --- a/tests/licensedcode/data/licenses/chris-stoy.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - chris-stoy diff --git a/tests/licensedcode/data/licenses/christopher-velazquez.txt b/tests/licensedcode/data/licenses/christopher-velazquez.txt deleted file mode 100644 index 6d15ec33306..00000000000 --- a/tests/licensedcode/data/licenses/christopher-velazquez.txt +++ /dev/null @@ -1 +0,0 @@ -Any duplication of the content on this web site without permission of the author is strictly prohibited. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/christopher-velazquez.yml b/tests/licensedcode/data/licenses/christopher-velazquez.yml deleted file mode 100644 index b5b2fab0526..00000000000 --- a/tests/licensedcode/data/licenses/christopher-velazquez.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - christopher-velazquez diff --git a/tests/licensedcode/data/licenses/classic-vb.txt b/tests/licensedcode/data/licenses/classic-vb.txt deleted file mode 100644 index 17a17ce69ed..00000000000 --- a/tests/licensedcode/data/licenses/classic-vb.txt +++ /dev/null @@ -1,28 +0,0 @@ -Policy -All code samples, tools, articles, and other content provided by this website is considered to be protected by United States and international copyright law. It is provided for the educational use of site visitors. Free license is hereby granted to use the code provided and techniques discussed here within your applications. You are not licensed to share any of the samples, or other content on this website, in any form of mass distribution. Specifically, - -you may not repost on other websites material(s) found here, -you may not sell compilation CDs or DVDs that contain material taken directly from this website, -you may provide modules found here, as source, within applications delivered to your clients provided they agree to the same policies stated here and that you both retain the embedded copyright notice(s), -you may email samples you consider cool to your friends, if you tell them where you found them, -you may cite this site and its owner in the credits for your application, if you wish, -you may choose to donate to support this website, if material found here has saved you time/money. - -Copyright violations will be pursued vigorously. - -Rationale -This site is intended to be a benefit to the community of Classic VB developers. Code provided here is subject to continual update, as site visitors report bugs, and fixes are found. Having a single source for this codebase allows folks to always know where they can turn to find the latest and presumably greatest. This way, if you have downloaded code from this site, and it isn't behaving in a reasonable manner, the first thing you can do is return to see if it's been updated recently. - -When the contents of this site are redistributed elsewhere, I lose control over versioning, and inevitably end up with emails asking about bugs fixed long ago. It really is easier for everyone to have a single source. The policy stated here isn't meant to be a hindrance to visitors, and if you find it so it's very likely I haven't explained it well enough. - -If you find problems with code here, or wonder about licensing and redistribution, please let me know! - -Thanks for understanding... - -Exceptions -You're probably thinking, "Yeah, but maybe if I email him and ask really nice, ... , after all, my posting to the internet will absolutely benefit all humanity, and I stand to gain nothing personally, and yadda yadda yadda..." I know. A million good causes, and a free sample to go with each. Well, yeah, I really do mean, and want to stick with, what I wrote above. I'm very glad you like my code, so much so that you want to repost it somewhere else. I'd really prefer you didn't do that. I do appreciate your understanding. - -Disclaimer -Microsoft is in no way affiliated with, nor offering endorsement of, this site. It happens that we used to share a common interest in certain topics, but that's the extent of the relationship with regard to what's presented here. - -All software offered on this site is considered to work, but no liability is assumed by the author(s). As a developer yourself, it is assumed you realize that sample code is just that. It is your responsibility to use what you find here responsibly. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/classic-vb.yml b/tests/licensedcode/data/licenses/classic-vb.yml deleted file mode 100644 index 4b417662660..00000000000 --- a/tests/licensedcode/data/licenses/classic-vb.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - classic-vb diff --git a/tests/licensedcode/data/licenses/cnri-python-1.6.1.txt b/tests/licensedcode/data/licenses/cnri-python-1.6.1.txt deleted file mode 100644 index 99efc4a1be9..00000000000 --- a/tests/licensedcode/data/licenses/cnri-python-1.6.1.txt +++ /dev/null @@ -1,23 +0,0 @@ -CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6.1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. - -1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6.1 software in source or binary form and its associated documentation. - -2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6.1 alone or in any derivative version, provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright © 1995-2001 Corporation for National Research Initiatives; All Rights Reserved" are retained in Python 1.6.1 alone or in any derivative version prepared by Licensee. Alternately, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6.1 is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement together with Python 1.6.1 may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1013. This Agreement may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1013". - -3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6.1 or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python 1.6.1. - -4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. - -7. This License Agreement shall be governed by the federal intellectual property law of the United States, including without limitation the federal copyright law, and, to the extent such U.S. federal law does not apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. Notwithstanding the foregoing, with regard to derivative works based on Python 1.6.1 that incorporate non-separable material that was previously distributed under the GNU General Public License (GPL), the law of the Commonwealth of Virginia shall govern this License Agreement only as to issues arising under or with respect to Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. - -8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. - -ACCEPT \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cnri-python-1.6.1.yml b/tests/licensedcode/data/licenses/cnri-python-1.6.1.yml deleted file mode 100644 index 70de042be8e..00000000000 --- a/tests/licensedcode/data/licenses/cnri-python-1.6.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cnri-python-1.6.1 diff --git a/tests/licensedcode/data/licenses/cnri-python-1.6.txt b/tests/licensedcode/data/licenses/cnri-python-1.6.txt deleted file mode 100644 index 73d448e035a..00000000000 --- a/tests/licensedcode/data/licenses/cnri-python-1.6.txt +++ /dev/null @@ -1,25 +0,0 @@ -CNRI OPEN SOURCE LICENSE AGREEMENT - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. - -1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). - -2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. - -Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". - -3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. - -4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. - -7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. - -8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. - -ACCEPT \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cnri-python-1.6.yml b/tests/licensedcode/data/licenses/cnri-python-1.6.yml deleted file mode 100644 index 77289223d3f..00000000000 --- a/tests/licensedcode/data/licenses/cnri-python-1.6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cnri-python-1.6 diff --git a/tests/licensedcode/data/licenses/codeguru-permissions.txt b/tests/licensedcode/data/licenses/codeguru-permissions.txt deleted file mode 100644 index 356d1540a4b..00000000000 --- a/tests/licensedcode/data/licenses/codeguru-permissions.txt +++ /dev/null @@ -1,8 +0,0 @@ -Permissions -As you know, this site is a valuable resource for the developer community. Please note, however, that to avoid legal complications, we need to obtain your permission to use any computer code and any related materials ("resources") that you are providing to us. Accordingly, by submitting any such resource to CodeGuru, you grant to QuinStreet a nonexclusive, worldwide, perpetual license to reproduce, distribute, adapt, perform, display, and sublicense the submitted resource (in both object and source code formats, as well as on and off the Web), and you acknowledge that you have the authority to grant such rights to QuinStreet. - -By submitting the resource, you also grant your article's readers the permission to use any source code in the resource for commercial or noncommercial software. PLEASE NOTE THAT YOU RETAIN OWNERSHIP OF ANY COPYRIGHTS IN ANY RESOURCES SUBMITTED! - -ALSO, IN MAKING THE RESOURCE AVAILABLE TO OTHER SITE VISITORS FOR DOWNLOADING, QUINSTREET WILL INFORM SUCH OTHER VISITORS THAT, ALTHOUGH THEY MAY DOWNLOAD ANY RESOURCES FOR COMMERCIAL OR NONCOMMERCIAL USES, THEY MAY NOT REPUBLISH THE SOURCE CODE SO THAT IT IS ACCESSIBLE TO THE PUBLIC WITHOUT FIRST OBTAINING THE COPYRIGHT OWNER'S PERMISSION. - -For CodeGuru's standard Legal Notices, Licensing, Reprints & Permissions, and Privacy Policy, see the links at the bottom of any CodeGuru page. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/codeguru-permissions.yml b/tests/licensedcode/data/licenses/codeguru-permissions.yml deleted file mode 100644 index 592e5fe4a13..00000000000 --- a/tests/licensedcode/data/licenses/codeguru-permissions.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - codeguru-permissions diff --git a/tests/licensedcode/data/licenses/codexia.txt b/tests/licensedcode/data/licenses/codexia.txt deleted file mode 100644 index fc3b8ac5b89..00000000000 --- a/tests/licensedcode/data/licenses/codexia.txt +++ /dev/null @@ -1,21 +0,0 @@ -// By Mike Ryan (mike@codexia.com) -// Copyright (c) 2000, portions (c) Allen Denver -// 07.30.2000 -// -// Some of the code based on Allen Denver's article "Using the Performance Data Helper Library" -// -// Free usage granted in all applications including commercial. -// Do NOT distribute without permission from me. I can be reached -// at mike@codexia.com, http://www.codexia.com -// Please feel free to email me about this class. -// -// Compatibility: -// Windows 98, Windows NT 4.0 SP 3 (Dlls required), Windows 2000 -// -// Development Environ: -// Visual C++ 6.0 -// -// Libraries / DLLs: -// pdh.lib (linked in) -// pdh.dll (provided with Windows 2000, must copy in for NT 4.0) -// diff --git a/tests/licensedcode/data/licenses/codexia.yml b/tests/licensedcode/data/licenses/codexia.yml deleted file mode 100644 index e6f8a6e1b46..00000000000 --- a/tests/licensedcode/data/licenses/codexia.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - codexia diff --git a/tests/licensedcode/data/licenses/commonj-timer.txt b/tests/licensedcode/data/licenses/commonj-timer.txt deleted file mode 100644 index 05067e77e6c..00000000000 --- a/tests/licensedcode/data/licenses/commonj-timer.txt +++ /dev/null @@ -1,40 +0,0 @@ -CommonJ Time and Work Manager License -General information: -http://dev2dev.bea.com/wlplatform/commonj/twm.html -License Text - - The Timer and Work Manager for Application Servers Specification is being provided by the copyright holders under - the following license. By using and/or copying this work, you agree that you have read, understood and will comply - with the following terms and conditions: - - Permission to copy and display the Timer and Work Manager for Application Servers - Specification and/or portions thereof, without modification, in any medium without fee or - royalty is hereby granted, provided that you include the following on ALL copies of the - Timer and Work Manager for Application Servers Specification, or portions thereof, that - you make: - 1. A link or URL to the Timer and Work Manager for Application Servers Specification at - this location: http://dev2dev.bea.com/technologies/commonj/index.jsp - or at this location: - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ - 2. The full text of this copyright notice as shown in the Timer and Work Manager for - Application Servers Specification. - - IBM and BEA (collectively, the 'Authors') agree to grant you a royalty-free license, - under reasonable, non-discriminatory terms and conditions to patents that they deem - necessary to implement the Timer and Work Manager for Application Servers Specification. - THE Timer and Work Manager for Application Servers SPECIFICATION IS PROVIDED 'AS IS,' AND - THE AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS - SPECIFICATION AND THE IMPLEMENTATION OF ITS CONTENTS, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT OR - TITLE. - - THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR - CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THE Timer - and Work Manager for Application Servers SPECIFICATION. - The name and trademarks of the Authors may NOT be used in any manner, including - advertising or publicity pertaining to the Timer and Work Manager for Application Servers - Specification or its contents without specific, written prior permission. Title to - copyright in the Timer and Work Manager for Application Servers Specification will at all - times remain with the Authors. - - No other rights are granted by implication, estoppel or otherwise. diff --git a/tests/licensedcode/data/licenses/commonj-timer.yml b/tests/licensedcode/data/licenses/commonj-timer.yml deleted file mode 100644 index 4dede3a4c9b..00000000000 --- a/tests/licensedcode/data/licenses/commonj-timer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - commonj-timer diff --git a/tests/licensedcode/data/licenses/copyheart.txt b/tests/licensedcode/data/licenses/copyheart.txt deleted file mode 100644 index ab3ead05fae..00000000000 --- a/tests/licensedcode/data/licenses/copyheart.txt +++ /dev/null @@ -1 +0,0 @@ -♡ Copying is an act of love. Please copy. diff --git a/tests/licensedcode/data/licenses/copyheart.yml b/tests/licensedcode/data/licenses/copyheart.yml deleted file mode 100644 index a7e5e127c19..00000000000 --- a/tests/licensedcode/data/licenses/copyheart.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - copyheart diff --git a/tests/licensedcode/data/licenses/copyheart_1.txt b/tests/licensedcode/data/licenses/copyheart_1.txt deleted file mode 100644 index f928cc32b3a..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_1.txt +++ /dev/null @@ -1 +0,0 @@ -♡ Copying Art is an act of love. Please copy and share. diff --git a/tests/licensedcode/data/licenses/copyheart_1.yml b/tests/licensedcode/data/licenses/copyheart_1.yml deleted file mode 100644 index a7e5e127c19..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - copyheart diff --git a/tests/licensedcode/data/licenses/copyheart_2.txt b/tests/licensedcode/data/licenses/copyheart_2.txt deleted file mode 100644 index 86ed230532a..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_2.txt +++ /dev/null @@ -1 +0,0 @@ -♡ Copying Art is an act of love. Love is not subject to law. diff --git a/tests/licensedcode/data/licenses/copyheart_2.yml b/tests/licensedcode/data/licenses/copyheart_2.yml deleted file mode 100644 index a7e5e127c19..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - copyheart diff --git a/tests/licensedcode/data/licenses/copyheart_5.txt b/tests/licensedcode/data/licenses/copyheart_5.txt deleted file mode 100644 index ab3ead05fae..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_5.txt +++ /dev/null @@ -1 +0,0 @@ -♡ Copying is an act of love. Please copy. diff --git a/tests/licensedcode/data/licenses/copyheart_5.yml b/tests/licensedcode/data/licenses/copyheart_5.yml deleted file mode 100644 index a7e5e127c19..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - copyheart diff --git a/tests/licensedcode/data/licenses/copyheart_6.txt b/tests/licensedcode/data/licenses/copyheart_6.txt deleted file mode 100644 index 035f8930bef..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_6.txt +++ /dev/null @@ -1 +0,0 @@ -♡ Copying is an act of love. Love is not subject to law. diff --git a/tests/licensedcode/data/licenses/copyheart_6.yml b/tests/licensedcode/data/licenses/copyheart_6.yml deleted file mode 100644 index a7e5e127c19..00000000000 --- a/tests/licensedcode/data/licenses/copyheart_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - copyheart diff --git a/tests/licensedcode/data/licenses/couchbase-community.txt b/tests/licensedcode/data/licenses/couchbase-community.txt deleted file mode 100644 index de2425f4b92..00000000000 --- a/tests/licensedcode/data/licenses/couchbase-community.txt +++ /dev/null @@ -1,46 +0,0 @@ -COUCHBASE INC. COMMUNITY EDITION LICENSE AGREEMENT - -IMPORTANT-READ CAREFULLY: BY CLICKING THE "I ACCEPT" BOX OR -INSTALLING, DOWNLOADING OR OTHERWISE USING THIS SOFTWARE AND ANY -ASSOCIATED DOCUMENTATION, YOU, ON BEHALF OF YOURSELF OR AS AN -AUTHORIZED REPRESENTATIVE ON BEHALF OF AN ENTITY ("LICENSEE") AGREE TO -ALL THE TERMS OF THIS COMMUNITY EDITION LICENSE AGREEMENT (THE -"AGREEMENT") REGARDING YOUR USE OF THE SOFTWARE. YOU REPRESENT AND -WARRANT THAT YOU HAVE FULL LEGAL AUTHORITY TO BIND THE LICENSEE TO -THIS AGREEMENT. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS, DO NOT -SELECT THE "I ACCEPT" BOX AND DO NOT INSTALL, DOWNLOAD OR OTHERWISE -USE THE SOFTWARE. THE EFFECTIVE DATE OF THIS AGREEMENT IS THE DATE ON -WHICH YOU CLICK "I ACCEPT" OR OTHERWISE INSTALL, DOWNLOAD OR USE THE -SOFTWARE. - -1. License Grant. Couchbase Inc. hereby grants Licensee, free of -charge, the non-exclusive right to use, copy, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -Licensee including the following copyright notice in all copies or -substantial portions of the Software: - -Couchbase (r) -http://www.Couchbase.com -Copyright 2010 Couchbase, Inc. - -As used in this Agreement, "Software" means the object code version of -the applicable elastic data management server software provided by -Couchbase Inc.. - -2. Support. Couchbase Inc. will provide Licensee with access to, and -use of, the Couchbase Inc. support forum available at the following -URL: http://couchbase.com . Couchbase Inc. may, at its discretion, -modify, suspend or terminate support at any time upon notice to -Licensee. - -3. Warranty Disclaimer and Limitation of Liability. THE SOFTWARE IS -PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT -SHALL COUCHBASE INC. OR THE AUTHORS OR COPYRIGHT HOLDERS IN THE -SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES (IINCLUDING, WITHOUT -LIMITATION, DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES) OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. diff --git a/tests/licensedcode/data/licenses/couchbase-community.yml b/tests/licensedcode/data/licenses/couchbase-community.yml deleted file mode 100644 index 0b58aa30e04..00000000000 --- a/tests/licensedcode/data/licenses/couchbase-community.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - couchbase-community diff --git a/tests/licensedcode/data/licenses/couchbase-enterprise.txt b/tests/licensedcode/data/licenses/couchbase-enterprise.txt deleted file mode 100644 index f1fa9f01c1c..00000000000 --- a/tests/licensedcode/data/licenses/couchbase-enterprise.txt +++ /dev/null @@ -1,240 +0,0 @@ -COUCHBASE INC. ENTERPRISE LICENSE AGREEMENT - FREE EDITION - -IMPORTANT-READ CAREFULLY: BY CLICKING THE "I ACCEPT" BOX OR INSTALLING, -DOWNLOADING OR OTHERWISE USING THIS SOFTWARE AND ANY ASSOCIATED -DOCUMENTATION, YOU, ON BEHALF OF YOURSELF OR AS AN AUTHORIZED -REPRESENTATIVE ON BEHALF OF AN ENTITY ("LICENSEE") AGREE TO ALL THE -TERMS OF THIS ENTERPRISE LICENSE AGREEMENT - FREE EDITION (THE -"AGREEMENT") REGARDING YOUR USE OF THE SOFTWARE. YOU REPRESENT AND -WARRANT THAT YOU HAVE FULL LEGAL AUTHORITY TO BIND THE LICENSEE TO THIS -AGREEMENT. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS, DO NOT SELECT -THE "I ACCEPT" BOX AND DO NOT INSTALL, DOWNLOAD OR OTHERWISE USE THE -SOFTWARE. THE EFFECTIVE DATE OF THIS AGREEMENT IS THE DATE ON WHICH YOU -CLICK "I ACCEPT" OR OTHERWISE INSTALL, DOWNLOAD OR USE THE SOFTWARE. - -1. License Grant. Subject to Licensee's compliance with the terms and -conditions of this Agreement, Couchbase Inc. hereby grants to Licensee a -perpetual, non-exclusive, non-transferable, non-sublicensable, -royalty-free, limited license to install and use the Software only for -Licensee's own internal production use on up to two (2) Licensed Servers -or for Licensee's own internal non-production use for the purpose of -evaluation and/or development on an unlimited number of Licensed -Servers. - -2. Restrictions. Licensee will not: (a) copy or use the Software in any -manner except as expressly permitted in this Agreement; (b) use or -deploy the Software on any server in excess of the Licensed Servers for -which Licensee has paid the applicable Subscription Fee unless it is -covered by a valid license; (c) transfer, sell, rent, lease, lend, -distribute, or sublicense the Software to any third party; (d) use the -Software for providing time-sharing services, service bureau services or -as part of an application services provider or as a service offering -primarily designed to offer the functionality of the Software; (e) -reverse engineer, disassemble, or decompile the Software (except to the -extent such restrictions are prohibited by law); (f) alter, modify, -enhance or prepare any derivative work from or of the Software; (g) -alter or remove any proprietary notices in the Software; (h) make -available to any third party the functionality of the Software or any -license keys used in connection with the Software; (i) publically -display or communicate the results of internal performance testing or -other benchmarking or performance evaluation of the Software; or (j) -export the Software in violation of U.S. Department of Commerce export -administration rules or any other export laws or regulations. - -3. Proprietary Rights. The Software, and any modifications or -derivatives thereto, is and shall remain the sole property of Couchbase -Inc. and its licensors, and, except for the license rights granted -herein, Couchbase Inc. and its licensors retain all right, title and -interest in and to the Software, including all intellectual property -rights therein and thereto. The Software may include third party open -source software components. If Licensee is the United States Government -or any contractor thereof, all licenses granted hereunder are subject to -the following: (a) for acquisition by or on behalf of civil agencies, as -necessary to obtain protection as "commercial computer software" and -related documentation in accordance with the terms of this Agreement and -as specified in Subpart 12.1212 of the Federal Acquisition Regulation -(FAR), 48 C.F.R.12.1212, and its successors; and (b) for acquisition by -or on behalf of the Department of Defense (DOD) and any agencies or -units thereof, as necessary to obtain protection as "commercial computer -software" and related documentation in accordance with the terms of this -Agreement and as specified in Subparts 227.7202-1 and 227.7202-3 of the -DOD FAR Supplement, 48 C.F.R.227.7202-1 and 227.7202-3, and its -successors. Manufacturer is Couchbase, Inc. - -4. Support. Couchbase Inc. will provide Licensee with: (a) periodic -Software updates to correct known bugs and errors to the extent -Couchbase Inc. incorporates such corrections into the free edition -version of the Software; and (b) access to, and use of, the Couchbase -Inc. support forum available at the following URL: -http://www.couchbase.org/forums/. Licensee must have Licensed Servers -at the same level of Support Services for all instances in a production -deployment running the Software. Licensee must also have Licensed -Servers at the same level of Support Services for all instances in a -development and test environment running the Software, although these -Support Services may be at a different level than the production -Licensed Servers. Couchbase Inc. may, at its discretion, modify, -suspend or terminate support at any time upon notice to Licensee. - -5. Records Retention and Audit. Licensee shall maintain complete and -accurate records to permit Couchbase Inc. to verify the number of -Licensed Servers used by Licensee hereunder. Upon Couchbase Inc.'s -written request, Licensee shall: (a) provide Couchbase Inc. with such -records within ten (10) days; and (b) will furnish Couchbase Inc. with a -certification signed by an officer of Licensee verifying that the -Software is being used pursuant to the terms of this Agreement. Upon at -least thirty (30) days prior written notice, Couchbase Inc. may audit -Licensee's use of the Software to ensure that Licensee is in compliance -with the terms of this Agreement. Any such audit will be conducted -during regular business hours at Licensee's facilities and will not -unreasonably interfere with Licensee's business activities. Licensee -will provide Couchbase Inc. with access to the relevant Licensee records -and facilities. If an audit reveals that Licensee has used the Software -in excess of the authorized Licensed Servers, then (i) Couchbase Inc. -will invoice Licensee, and Licensee will promptly pay Couchbase Inc., -the applicable licensing fees for such excessive use of the Software, -which fees will be based on Couchbase Inc.'s price list in effect at the -time the audit is completed; and (ii) Licensee will pay Couchbase Inc.'s -reasonable costs of conducting the audit. - -6. Confidentiality. Licensee and Couchbase Inc. will maintain the -confidentiality of Confidential Information. The receiving party of any -Confidential Information of the other party agrees not to use such -Confidential Information for any purpose except as necessary to fulfill -its obligations and exercise its rights under this Agreement. The -receiving party shall protect the secrecy of and prevent disclosure and -unauthorized use of the disclosing party's Confidential Information -using the same degree of care that it takes to protect its own -confidential information and in no event shall use less than reasonable -care. The terms of this Confidentiality section shall survive -termination of this Agreement. Upon termination or expiration of this -Agreement, the receiving party will, at the disclosing party's option, -promptly return or destroy (and provide written certification of such -destruction) the disclosing party's Confidential Information. - -7. Disclaimer of Warranty. THE SOFTWARE AND ANY SERVICES PROVIDED -HEREUNDER ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. COUCHBASE -INC. DOES NOT WARRANT THAT THE SOFTWARE OR THE SERVICES PROVIDED -HEREUNDER WILL MEET LICENSEE'S REQUIREMENTS, THAT THE SOFTWARE WILL -OPERATE IN THE COMBINATIONS LICENSEE MAY SELECT FOR USE, THAT THE -OPERATION OF THE SOFTWARE WILL BE ERROR-FREE OR UNINTERRUPTED OR THAT -ALL SOFTWARE ERRORS WILL BE CORRECTED. COUCHBASE INC. HEREBY DISCLAIMS -ALL WARRANTIES, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED -TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE, NON-INFRINGEMENT, TITLE, AND ANY WARRANTIES ARISING OUT OF -COURSE OF DEALING, USAGE OR TRADE. - -8. Agreement Term and Termination. The term of this Agreement shall -begin on the Effective Date and will continue until terminated by the -parties. Licensee may terminate this Agreement for any reason, or for no -reason, by providing at least ten (10) days prior written notice to -Couchbase Inc. Couchbase Inc. may terminate this Agreement if Licensee -materially breaches its obligations hereunder and, where such breach is -curable, such breach remains uncured for ten (10) days following written -notice of the breach. Licensee acknowledges that the Software may -contain a license key with a time-out mechanism that will suspend and/or -terminate Licensee's use of the Software upon termination of this -Agreement. Upon termination of this Agreement, Licensee will, at -Couchbase Inc.'s option, promptly return or destroy (and provide written -certification of such destruction) the applicable Software and all -copies and portions thereof, in all forms and types of media. The -following sections will survive termination or expiration of this -Agreement: Sections 2, 3, 6, 7, 8, 9, 10 and 11. - -9. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY -APPLICABLE LAW, IN NO EVENT WILL COUCHBASE INC. OR ITS LICENSORS BE -LIABLE TO LICENSEE OR TO ANY THIRD PARTY FOR ANY INDIRECT, SPECIAL, -INCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES OR FOR THE COST OF -PROCURING SUBSTITUTE PRODUCTS OR SERVICES ARISING OUT OF OR IN ANY WAY -RELATING TO OR IN CONNECTION WITH THIS AGREEMENT OR THE USE OF OR -INABILITY TO USE THE SOFTWARE OR DOCUMENTATION OR THE SERVICES PROVIDED -BY COUCHBASE INC. HEREUNDER INCLUDING, WITHOUT LIMITATION, DAMAGES OR -OTHER LOSSES FOR LOSS OF USE, LOSS OF BUSINESS, LOSS OF GOODWILL, WORK -STOPPAGE, LOST PROFITS, LOSS OF DATA, COMPUTER FAILURE OR ANY AND ALL -OTHER COMMERCIAL DAMAGES OR LOSSES EVEN IF ADVISED OF THE POSSIBILITY -THEREOF AND REGARDLESS OF THE LEGAL OR EQUITABLE THEORY (CONTRACT, TORT -OR OTHERWISE) UPON WHICH THE CLAIM IS BASED. IN NO EVENT WILL COUCHBASE -INC.'S OR ITS LICENSORS' AGGREGATE LIABILITY TO LICENSEE, FROM ALL -CAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY, EXCEED ONE -THOUSAND DOLLARS (US $1,000). The parties expressly acknowledge and -agree that Couchbase Inc. has set its prices and entered into this -Agreement in reliance upon the limitations of liability specified -herein, which allocate the risk between Couchbase Inc. and Licensee and -form a basis of the bargain between the parties. - -10. General. Couchbase Inc. shall not be liable for any delay or failure -in performance due to causes beyond its reasonable control. Neither -party will, without the other party's prior written consent, make any -news release, public announcement, denial or confirmation of this -Agreement, its value, or its terms and conditions, or in any manner -advertise or publish the fact of this Agreement. Notwithstanding the -above, Couchbase Inc. may use Licensee's name and logo, consistent with -Licensee's trademark policies, on customer lists so long as such use in -no way promotes either endorsement or approval of Couchbase Inc. or any -Couchbase Inc. products or services. Licensee may not assign this -Agreement, in whole or in part, by operation of law or otherwise, -without Couchbase Inc.'s prior written consent. Any attempt to assign -this Agreement, without such consent, will be null and of no effect. -Subject to the foregoing, this Agreement will bind and inure to the -benefit of each party's successors and permitted assigns. If for any -reason a court of competent jurisdiction finds any provision of this -Agreement invalid or unenforceable, that provision of the Agreement will -be enforced to the maximum extent permissible and the other provisions -of this Agreement will remain in full force and effect. The failure by -either party to enforce any provision of this Agreement will not -constitute a waiver of future enforcement of that or any other -provision. All waivers must be in writing and signed by both parties. -All notices permitted or required under this Agreement shall be in -writing and shall be delivered in person, by confirmed facsimile, -overnight courier service or mailed by first class, registered or -certified mail, postage prepaid, to the address of the party specified -above or such other address as either party may specify in writing. Such -notice shall be deemed to have been given upon receipt. This Agreement -shall be governed by the laws of the State of California, U.S.A., -excluding its conflicts of law rules. The parties expressly agree that -the UN Convention for the International Sale of Goods (CISG) will not -apply. Any legal action or proceeding arising under this Agreement will -be brought exclusively in the federal or state courts located in the -Northern District of California and the parties hereby irrevocably -consent to the personal jurisdiction and venue therein. Any amendment or -modification to the Agreement must be in writing signed by both parties. -This Agreement constitutes the entire agreement and supersedes all prior -or contemporaneous oral or written agreements regarding the subject -matter hereof. To the extent there is a conflict between this Agreement -and the terms of any "shrinkwrap" or "clickwrap" license included in any -package, media, or electronic version of Couchbase Inc.-furnished -software, the terms and conditions of this Agreement will control. Each -of the parties has caused this Agreement to be executed by its duly -authorized representatives as of the Effective Date. Except as expressly -set forth in this Agreement, the exercise by either party of any of its -remedies under this Agreement will be without prejudice to its other -remedies under this Agreement or otherwise. The parties to this -Agreement are independent contractors and this Agreement will not -establish any relationship of partnership, joint venture, employment, -franchise, or agency between the parties. Neither party will have the -power to bind the other or incur obligations on the other's behalf -without the other's prior written consent. - -11. Definitions. Capitalized terms used herein shall have the following -definitions: "Confidential Information" means any proprietary -information received by the other party during, or prior to entering -into, this Agreement that a party should know is confidential or -proprietary based on the circumstances surrounding the disclosure -including, without limitation, the Software and any non-public technical -and business information. Confidential Information does not include -information that (a) is or becomes generally known to the public through -no fault of or breach of this Agreement by the receiving party; (b) is -rightfully known by the receiving party at the time of disclosure -without an obligation of confidentiality; (c) is independently developed -by the receiving party without use of the disclosing party's -Confidential Information; or (d) the receiving party rightfully obtains -from a third party without restriction on use or disclosure. -"Documentation" means any technical user guides or manuals provided by -Couchbase Inc. related to the Software. "Licensed Server" means an -instance of the Software running on one (1) operating system. Each -operating system instance may be running directly on physical hardware, -in a virtual machine, or on a cloud server. "Couchbase Website" means -www.couchbase.com."Software" means the object code version of the -applicable elastic data management server software provided by Couchbase -Inc. and ordered by Licensee during the ordering process on the -Couchbase Website. If you have any questions regarding this Agreement, -please contact us at 650-417-7500. diff --git a/tests/licensedcode/data/licenses/couchbase-enterprise.yml b/tests/licensedcode/data/licenses/couchbase-enterprise.yml deleted file mode 100644 index 2c320bf8014..00000000000 --- a/tests/licensedcode/data/licenses/couchbase-enterprise.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - couchbase-enterprise diff --git a/tests/licensedcode/data/licenses/cpl-1.0.txt b/tests/licensedcode/data/licenses/cpl-1.0.txt deleted file mode 100644 index f2b302f710d..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0.txt +++ /dev/null @@ -1,189 +0,0 @@ -Common Public License Version 1.0 -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. -1. DEFINITIONS -"Contribution" means: -a) in the case of the initial Contributor, the initial code and -documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -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. -"Contributor" means any person or entity that distributes the Program. -"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. -"Program" means the Contributions distributed in accordance with this -Agreement. -"Recipient" means anyone who receives the Program under this Agreement, -including all Contributors. -2. GRANT OF RIGHTS -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. -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. -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. -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. -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form -under its own license agreement, provided that: -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -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; -ii) effectively excludes on behalf of all Contributors all liability -for damages, including direct, indirect, special, incidental and -consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are -offered by that Contributor alone and not by any other party; and -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. -When the Program is made available in source code form: -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the -Program. -Contributors may not remove or alter any copyright notices contained -within the Program. -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. -4. COMMERCIAL DISTRIBUTION -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. -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. -5. NO WARRANTY -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. -6. DISCLAIMER OF LIABILITY -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. -7. GENERAL -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. -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. -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. -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. -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. - diff --git a/tests/licensedcode/data/licenses/cpl-1.0.yml b/tests/licensedcode/data/licenses/cpl-1.0.yml deleted file mode 100644 index 8808113e450..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-1.0 diff --git a/tests/licensedcode/data/licenses/cpl-1.0_2.txt b/tests/licensedcode/data/licenses/cpl-1.0_2.txt deleted file mode 100644 index a8e6c050cc1..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0_2.txt +++ /dev/null @@ -1,86 +0,0 @@ -Common Public License - v 1.0 - -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. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and - b) in the case of each subsequent Contributor: - - i) changes to the Program, and - - ii) additions to the Program; - - 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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - - 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. - - 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. - - 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. - - 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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - - a) it complies with the terms and conditions of this Agreement; and - - b) its license agreement: - - 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; - - ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - - iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - - 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. - -When the Program is made available in source code form: - - a) it must be made available under this Agreement; and - - b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. - -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. diff --git a/tests/licensedcode/data/licenses/cpl-1.0_2.yml b/tests/licensedcode/data/licenses/cpl-1.0_2.yml deleted file mode 100644 index 8808113e450..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-1.0 diff --git a/tests/licensedcode/data/licenses/cpl-1.0_3.txt b/tests/licensedcode/data/licenses/cpl-1.0_3.txt deleted file mode 100644 index 2b3c4e67a87..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0_3.txt +++ /dev/null @@ -1,87 +0,0 @@ -Common Public License Version 1.0 - -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. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - - i) changes to the Program, and - - ii) additions to the Program; - - 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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - - 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. - - 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. - - 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. - - 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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - - a) it complies with the terms and conditions of this Agreement; and - - b) its license agreement: - - 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; - - ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - - iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - - 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. - -When the Program is made available in source code form: - - a) it must be made available under this Agreement; and - - b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. - -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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cpl-1.0_3.yml b/tests/licensedcode/data/licenses/cpl-1.0_3.yml deleted file mode 100644 index 8808113e450..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-1.0 diff --git a/tests/licensedcode/data/licenses/cpl-1.0_4.txt b/tests/licensedcode/data/licenses/cpl-1.0_4.txt deleted file mode 100644 index 5723258b58e..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0_4.txt +++ /dev/null @@ -1,213 +0,0 @@ -Common Public License Version 1.0 - -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. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial code and -documentation distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - - i) changes to the Program, and - - ii) additions to the Program; - - 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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, -including all Contributors. - -2. GRANT OF RIGHTS - - 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. - - 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. - - 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. - - 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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its -own license agreement, provided that: - - a) it complies with the terms and conditions of this Agreement; and - - b) its license agreement: - - 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; - - ii) effectively excludes on behalf of all Contributors all liability for -damages, including direct, indirect, special, incidental and consequential -damages, such as lost profits; - - iii) states that any provisions which differ from this Agreement are offered -by that Contributor alone and not by any other party; and - - 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. - -When the Program is made available in source code form: - - a) it must be made available under this Agreement; and - - b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the -Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. - -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. diff --git a/tests/licensedcode/data/licenses/cpl-1.0_4.yml b/tests/licensedcode/data/licenses/cpl-1.0_4.yml deleted file mode 100644 index 8808113e450..00000000000 --- a/tests/licensedcode/data/licenses/cpl-1.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-1.0 diff --git a/tests/licensedcode/data/licenses/crossword.txt b/tests/licensedcode/data/licenses/crossword.txt deleted file mode 100644 index 843e733d6c1..00000000000 --- a/tests/licensedcode/data/licenses/crossword.txt +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (C) 1995-2009 Gerd Neugebauer -   -cwpuzzle.dtx is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. -  . -Everyone is granted permission to copy, modify and redistribute cwpuzzle.dtx, provided this copyright notice is preserved and any modifications are indicated. diff --git a/tests/licensedcode/data/licenses/crossword.yml b/tests/licensedcode/data/licenses/crossword.yml deleted file mode 100644 index 49d9c0fe735..00000000000 --- a/tests/licensedcode/data/licenses/crossword.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - crossword diff --git a/tests/licensedcode/data/licenses/cube.txt b/tests/licensedcode/data/licenses/cube.txt deleted file mode 100644 index f38bcd479a9..00000000000 --- a/tests/licensedcode/data/licenses/cube.txt +++ /dev/null @@ -1,17 +0,0 @@ -Cube game engine source code, 20 dec 2003 release. - -Copyright (C) 2001-2003 Wouter van Oortmerssen. - -This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - - 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - - 3. This notice may not be removed or altered from any source distribution. - -additional clause specific to Cube: - - 4. Source versions may not be "relicensed" under a different license without my explicitly written permission. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cube.yml b/tests/licensedcode/data/licenses/cube.yml deleted file mode 100644 index 5e4ce137aa6..00000000000 --- a/tests/licensedcode/data/licenses/cube.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cube diff --git a/tests/licensedcode/data/licenses/cximage.txt b/tests/licensedcode/data/licenses/cximage.txt deleted file mode 100644 index 102c269cc80..00000000000 --- a/tests/licensedcode/data/licenses/cximage.txt +++ /dev/null @@ -1,48 +0,0 @@ -This copy of the CxImage notices is provided for your convenience. In case of -any discrepancy between this copy and the notices in the file ximage.h that is -included in the CxImage distribution, the latter shall prevail. - -If you modify CxImage you may insert additional notices immediately following -this sentence. - --------------------------------------------------------------------------------- - -COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: - -CxImage version 5.99c 17/Oct/2004 - -CxImage : Copyright (C) 2001 - 2004, Davide Pizzolato - -Original CImage and CImageIterator implementation are: -Copyright (C) 1995, Alejandro Aguilar Sierra (asierra(at)servidor(dot)unam(dot)mx) - -Covered code is provided under this license on an "as is" basis, without warranty -of any kind, either expressed or implied, including, without limitation, warranties -that the covered code is free of defects, merchantable, fit for a particular purpose -or non-infringing. The entire risk as to the quality and performance of the covered -code is with you. Should any covered code prove defective in any respect, you (not -the initial developer or any other contributor) assume the cost of any necessary -servicing, repair or correction. This disclaimer of warranty constitutes an essential -part of this license. No use of any covered code is authorized hereunder except under -this disclaimer. - -Permission is hereby granted to use, copy, modify, and distribute this -source code, or portions hereof, for any purpose, including commercial applications, -freely and without fee, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. - -3. This notice may not be removed or altered from any source distribution. - --------------------------------------------------------------------------------- - -Other information: about CxImage, and the latest version, can be found at the -CxImage home page: http://www.xdp.it - --------------------------------------------------------------------------------- \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/cximage.yml b/tests/licensedcode/data/licenses/cximage.yml deleted file mode 100644 index 245742bd026..00000000000 --- a/tests/licensedcode/data/licenses/cximage.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cximage diff --git a/tests/licensedcode/data/licenses/d-fsl-1.0-de.txt b/tests/licensedcode/data/licenses/d-fsl-1.0-de.txt deleted file mode 100644 index dba63f10697..00000000000 --- a/tests/licensedcode/data/licenses/d-fsl-1.0-de.txt +++ /dev/null @@ -1,453 +0,0 @@ -Deutsche Freie Software Lizenz - -(c) Ministerium für Wissenschaft und Forschung -Nordrhein-Westfalen 2004 - -Erstellt von Axel Metzger und Till Jaeger, -Institut für Rechtsfragen der Freien und Open -Source Software - . - -Präambel - -Software ist mehr als ein Wirtschaftsgut. Sie ist -die technische Grundlage der -Informationsgesellschaft. Die Frage der Teilhabe -der Allgemeinheit ist deswegen von besonderer -Bedeutung. Herkömmlich lizenzierte Programme -werden nur im Object Code vertrieben, der Nutzer -darf das Programm weder verändern noch -weitergeben. Das Lizenzmodell der Freien Software -(synonym "Open Source Software") gewährt Ihnen -dagegen umfassende Freiheiten im Umgang mit dem -Programm. Die Deutsche Freie Software Lizenz -folgt diesem Lizenzmodell. Sie gewährt Ihnen das -Recht, das Programm in umfassender Weise zu -nutzen. Es ist Ihnen gestattet, das Programm nach -Ihren Vorstellungen zu verändern, in veränderter -oder unveränderter Form zu vervielfältigen, zu -verbreiten und öffentlich zugänglich zu machen. -Diese Rechte werden unentgeltlich eingeräumt. - -Die Deutsche Freie Software Lizenz verbindet die -Rechtseinräumung allerdings mit Pflichten, die -dem Zweck dienen, das freie Zirkulieren des -Programms und aller veröffentlichten -Fortentwicklungen zu sichern. Wenn Sie das -Programm verbreiten oder öffentlich zugänglich -machen, dann müssen Sie jedem, der das Programm -von Ihnen erhält, eine Kopie dieser Lizenz -mitliefern und den Zugriff auf den Source Code -ermöglichen. Eine weitere Pflicht betrifft -Fortentwicklungen des Programms. Änderungen am -Programm, die Sie öffentlich verbreiten oder -zugänglich machen, müssen nach den Bestimmungen -dieser Lizenz frei gegeben werden. - -Die Deutsche Freie Software Lizenz nimmt auf die -besonderen Anforderungen des deutschen und -europäischen Rechts Rücksicht. Sie ist -zweisprachig gestaltet und damit auch auf den -internationalen Vertrieb ausgerichtet. - - -§ 0 Definitionen - -Dokumentation: Die Beschreibung des Aufbaus -und/oder der Struktur der Programmierung und/oder -der Funktionalitäten des Programms, unabhängig -davon, ob sie im Source Code oder gesondert -vorgenommen wird. - -Lizenz: Die zwischen dem Lizenzgeber und Ihnen -geschlossene Vereinbarung mit dem Inhalt der -"Deutschen Freien Software Lizenz" bzw. das -Angebot hierzu. - -Lizenznehmer: Jede natürliche oder juristische -Person, die die Lizenz angenommen hat. - -Programm: Jedes Computerprogramm, das von den -Rechtsinhabern nach den Bestimmungen dieser -Lizenz verbreitet oder öffentlich zugänglich -gemacht worden ist. - -Object Code: Die maschinenlesbare, übersetzte -Form des Programms. - -Öffentlich: Nicht nur an einen bestimmten -Personenkreis gerichtet, der persönlich oder -durch die Zugehörigkeit zu einer juristischen -Person oder einem öffentlichen Träger miteinander -verbunden ist. - -Öffentlich zugänglich machen: Die öffentliche -Weitergabe des Programms in unkörperlicher Form, -insbesondere das Bereithalten zum Download in -Datennetzen. - -Rechtsinhaber: Der bzw. die Urheber oder -sonstigen Inhaber der ausschließlichen -Nutzungsrechte an dem Programm. - -Source Code: Die für Menschen lesbare, in -Programmiersprache dargestellte Form des -Programms. - -Verändern: Jede Erweiterung, Kürzung und -Bearbeitung des Programms, insbesondere -Weiterentwicklungen. - -Verbreiten: Die öffentliche Weitergabe -körperlicher Vervielfältigungsstücke, -insbesondere auf Datenträgern oder in Verbindung -mit Hardware. - -Vollständiger Source Code: Der Source Code in der -für die Erstellung bzw. die Bearbeitung benutzten -Form zusammen mit den zur Übersetzung und -Installation erforderlichen Konfigurationsdateien -und Software-Werkzeugen, sofern diese in der -benötigten Form nicht allgemein gebräuchlich -(z.B. Standard-Kompiler) oder für jedermann -lizenzgebührenfrei im Internet abrufbar sind. - - -§ 1 Rechte - -(1) Sie dürfen das Programm in unveränderter Form -vervielfältigen, verbreiten und öffentlich -zugänglich machen. - -(2) Sie dürfen das Programm verändern und -entsprechend veränderte Versionen -vervielfältigen, verbreiten und öffentlich -zugänglich machen. Gestattet ist auch die -Kombination des Programms oder Teilen hiervon mit -anderen Programmen. - -(3) Sie erhalten die Rechte unentgeltlich. - - -§ 2 Pflichten beim Vertrieb - -(1) Wenn Sie das Programm verbreiten oder -öffentlich zugänglich machen, sei es in -unveränderter oder veränderter Form, sei es in -einer Kombination mit anderen Programmen oder in -Verbindung mit Hardware, dann müssen sie -mitliefern: - -1. alle Vermerke im Source Code und/oder Object -Code, die auf diese Lizenz hinweisen; - -2. alle Vermerke im Source Code und/oder Object -Code, die über die Urheber des Programms Auskunft -geben; - -3. einen für den Empfänger deutlich wahrnehmbaren -Hinweis auf diese Lizenz und die Internetadresse -; - -4. den vollständigen Text dieser Lizenz in -deutlich wahrnehmbarer Weise. - -(2) Wenn bei der Installation des Programms -und/oder beim Programmstart Lizenz- und/oder -Vertragsbedingungen angezeigt werden, dann müssen - -1. diese Lizenz, - -2. ein Hinweis auf diese Lizenz und - -3. ein Hinweis auf den oder die Rechtsinhaber an -den ersten unter dieser Lizenz nutzbaren -Programmbestandteilen - -ebenfalls angezeigt werden. - -(3) Sie dürfen die Nutzung des Programms nicht -von Pflichten oder Bedingungen abhängig machen, -die nicht in dieser Lizenz vorgesehen sind. - -(4) Sofern Sie mit dem Programm eine -Dokumentation erhalten haben, muss diese -Dokumentation entsprechend mitgeliefert werden, -es sei denn, die freie Mitlieferung der -Dokumentation ist Ihnen aufgrund der Lizenz für -die Dokumentation nicht gestattet. - - -§ 3 Weitere Pflichten beim Vertrieb veränderter -Versionen - -(1) Veränderte Versionen des Programms dürfen Sie -nur unter den Bedingungen dieser Lizenz -verbreiten oder öffentlich zugänglich machen, so -dass Dritte das veränderte Programm insgesamt -unter dieser Lizenz nutzen können. - -(2) Wird das Programm oder ein Teil hiervon mit -einem anderen Programm kombiniert, gilt auch die -Kombination insgesamt als eine veränderte Version -des Programms, es sei denn, das andere Programm -ist formal und inhaltlich eigenständig. Ein -anderes Programm ist dann als eigenständig -anzusehen, wenn es die folgenden Voraussetzungen -alle erfüllt: - -1. Der Source Code der kombinierten Programme -muss jeweils in eigenen Dateien vorhanden sein, -die keine Bestandteile des anderen Teils -enthalten, die über die zur Programmkombination -üblichen und erforderlichen Informationen über -den anderen Teil hinausgehen, wobei der Source -Code des anderen Programms nicht mitgeliefert -werden muss. - -2. Der mit dem Programm kombinierte Teil muss -auch dann sinnvoll nutzbar sein, wenn er nicht -mit dem Programm kombiniert wird, und zwar -entweder alleine oder mit sonstigen Programmen. -Was als "sinnvoll nutzbar" anzusehen ist, richtet -sich nach der Auffassung der betroffenen -Fachkreise. Zu den betroffenen Fachkreisen -gehören alle Personen, die das Programm oder -Programme mit vergleichbarer Funktionalität -entwickeln, benutzen, verbreiten oder öffentlich -zugänglich machen. - -(3) Wenn Sie das Programm oder einen Teil hiervon -- verändert oder unverändert - zusammen mit einem -anderen Programm verbreiten oder öffentlich -zugänglich machen, das unter der GNU General -Public License (GPL) lizenziert wird, darf das -Programm auch unter den Bedingungen der GPL -genutzt werden, sofern es mit dem anderen -Programm ein "derivative work" im Sinne der GPL -bildet. Dabei sollen die Hinweise auf diese -Lizenz entfernt und durch einen Hinweis auf die -GPL ersetzt werden. Ob bei der Zusammenstellung -ein "derivate work" im Sinne der GPL entsteht, -beurteilt sich nach Ziffer 2 b) der GPL. Diese -Bestimmung lautet: "You must cause any work that -you distribute or publish, that in whole or in -part contains or is derived from the Program or -any part thereof, to be licensed as a whole at no -charge to all third parties under the terms of -this License." Die GPL kann abgerufen werden -unter . - -(4) Wenn Sie das Programm in einer veränderten -Form verbreiten oder öffentlich zugänglich -machen, müssen Sie im Source Code einen Hinweis -mit den Änderungen aufnehmen und mit dem Datum -der Änderung versehen. Der Hinweis muss erkennen -lassen, welche Änderungen vorgenommen wurden und -bestehende Vermerke, die über die Urheber des -Programms Auskunft geben, übernehmen. Dies gilt -unabhängig davon, ob Sie einen eigenen -Urhebervermerk hinzufügen. Anstelle eines -Hinweises im Source Code können Sie auch ein -Versionskontrollsystem verwenden oder -weiterführen, sofern dieses mitverbreitet wird -oder öffentlich zugänglich ist. - -(5) Sie dürfen von Dritten für die Einräumung -eines einfachen Nutzungsrechts an veränderten -Versionen des Programms kein Entgelt verlangen. - -(6) Wenn Sie an der veränderten Version des -Programms ein anderes Schutzrecht als ein -Urheberrecht erwerben, insbesondere ein Patent -oder Gebrauchsmuster, lizenzieren Sie dieses -Schutzrecht für veränderte und unveränderte -Versionen des Programms in dem Umfang, der -erforderlich ist, um die Rechte aus dieser Lizenz -wahrnehmen zu können. - - -§ 4 Weitere Pflichten beim Vertrieb im Object -Code - -(1) Wenn Sie das Programm nur im Object Code -verbreiten, dann müssen Sie zusätzlich zu den in -§ 2 und § 3 geregelten Pflichten entweder - -1. den vollständigen Source Code im Internet -öffentlich zugänglich machen und bei der -Verbreitung des Object Codes deutlich auf die -vollständige Internetadresse hinweisen, unter der -der Source Code abgerufen werden kann oder - -2. den vollständigen Source Code auf einem -hierfür üblichen Datenträger unter Beachtung der -§§ 2 und 3 mitverbreiten. - -(2) Wenn Sie das Programm im Object Code -öffentlich zugänglich machen, dann müssen Sie -zusätzlich zu den in § 2 und § 3 geregelten -Pflichten den vollständigen Source Code im -Internet öffentlich zugänglich machen und dabei -deutlich auf die vollständige Internetadresse -hinweisen. - -(3) Sofern Sie mit dem Programm eine -Dokumentation erhalten haben, muss diese -Dokumentation entsprechend der Absätze 1 und 2 -mitgeliefert werden, es sei denn, die freie -Mitlieferung der Dokumentation ist Ihnen aufgrund -der Lizenz für die Dokumentation nicht gestattet. - - -§ 5 Vertragsschluss - -(1) Mit dieser Lizenz wird Ihnen und jeder -anderen Person ein Angebot auf Abschluss eines -Vertrages über die Nutzung des Programms unter -den Bedingungen der Deutschen Freien -Softwarelizenz unterbreitet. - -(2) Sie dürfen das Programm nach den jeweils -anwendbaren gesetzlichen Vorschriften -bestimmungsgemäß benutzen, ohne dass es der -Annahme dieser Lizenz bedarf. Dieses Recht -umfasst in der Europäischen Union und in den -meisten anderen Rechtsordnungen insbesondere die -folgenden Befugnisse: - -1. das Programm ablaufen zu lassen sowie die -Erstellung von hierfür erforderlichen -Vervielfältigungen im Haupt- und Arbeitsspeicher; - -2. das Erstellen einer Sicherungskopie; - -3. die Fehlerberichtigung; - -4. die Weitergabe einer rechtmäßig erworbenen -körperlichen Kopie des Programms. - -(3) Sie erklären Ihre Zustimmung zum Abschluss -dieser Lizenz, indem Sie das Programm verbreiten, -öffentlich zugänglich machen, verändern oder in -einer Weise vervielfältigen, die über die -bestimmungsgemäße Nutzung im Sinne von Absatz 2 -hinausgeht. Ab diesem Zeitpunkt ist diese Lizenz -als rechtlich verbindlicher Vertrag zwischen den -Rechtsinhabern und Ihnen geschlossen, ohne dass -es eines Zugangs der Annahmeerklärung bei den -Rechtsinhabern bedarf. - -(4) Sie und jeder andere Lizenznehmer erhalten -die Rechte aus dieser Lizenz direkt von den -Rechtsinhabern. Eine Unterlizenzierung oder -Übertragung der Rechte ist nicht gestattet. - - -§ 6 Beendigung der Rechte bei Zuwiderhandlung - -(1) Jede Verletzung Ihrer Verpflichtungen aus -dieser Lizenz führt zu einer automatischen -Beendigung Ihrer Rechte aus dieser Lizenz. - -(2) Die Rechte Dritter, die das Programm oder -Rechte an dem Programm von Ihnen erhalten haben, -bleiben hiervon unberührt. - - -§ 7 Haftung und Gewährleistung - -(1) Für entgegenstehende Rechte Dritter haften -die Rechtsinhaber nur, sofern sie Kenntnis von -diesen Rechten hatten, ohne Sie zu informieren. - -(2) Die Haftung für Fehler und sonstige Mängel -des Programms richtet sich nach den außerhalb -dieser Lizenz getroffenen Vereinbarungen zwischen -Ihnen und den Rechtsinhabern oder, wenn eine -solche Vereinbarung nicht existiert, nach den -gesetzlichen Regelungen. - - -§ 8 Verträge mit Dritten - -(1) Diese Lizenz regelt nur die Beziehung -zwischen Ihnen und den Rechtsinhabern. Sie ist -nicht Bestandteil der Verträge zwischen Ihnen und -Dritten. - -(2) Die Lizenz beschränkt Sie nicht in der -Freiheit, mit Dritten, die von Ihnen Kopien des -Programms erhalten oder Leistungen in Anspruch -nehmen, die im Zusammenhang mit dem Programm -stehen, Verträge beliebigen Inhalts zu schließen, -sofern Sie dabei Ihren Verpflichtungen aus dieser -Lizenz nachkommen und die Rechte der Dritten aus -dieser Lizenz nicht beeinträchtigt werden. -Insbesondere dürfen Sie für die Überlassung des -Programms oder sonstige Leistungen ein Entgelt -verlangen. - -(3) Diese Lizenz verpflichtet Sie nicht, das -Programm an Dritte weiterzugeben. Es steht Ihnen -frei zu entscheiden, wem Sie das Programm -zugänglich machen. Sie dürfen aber die weitere -Nutzung durch Dritte nicht durch den Einsatz -technischer Schutzmaßnahmen, insbesondere durch -den Einsatz von Kopierschutzvorrichtungen -jeglicher Art, verhindern oder erschweren. Eine -passwortgeschützte Zugangsbeschränkung oder die -Nutzung in einem Intranet wird nicht als -technische Schutzmaßnahme angesehen. - - -§ 9 Text der Lizenz - -(1) Diese Lizenz ist in deutscher und englischer -Sprache abgefasst. Beide Fassungen sind gleich -verbindlich. Es wird unterstellt, dass die in der -Lizenz verwandten Begriffe in beiden Fassungen -dieselbe Bedeutung haben. Ergeben sich dennoch -Unterschiede, so ist die Bedeutung maßgeblich, -welche die Fassungen unter Berücksichtigung des -Ziels und Zwecks der Lizenz am besten miteinander -in Einklang bringt. - -(2) Der Lizenzrat der Deutschen Freien Software -Lizenz kann mit verbindlicher Wirkung neue -Versionen der Lizenz in Kraft setzen, soweit -dies erforderlich und zumutbar ist. Neue -Versionen der Lizenz werden auf der Internetseite - mit einer eindeutigen -Versionsnummer veröffentlicht. Die neue Version -der Lizenz erlangt für Sie verbindliche Wirkung, -wenn Sie von deren Veröffentlichung Kenntnis -genommen haben. Gesetzliche Rechtsbehelfe gegen -die Änderung der Lizenz werden durch die -vorstehenden Bestimmungen nicht beschränkt. - -(3) Sie dürfen diese Lizenz in unveränderter Form -vervielfältigen, verbreiten und öffentlich -zugänglich machen. - - -§ 10 Anwendbares Recht - -Auf diese Lizenz findet deutsches Recht -Anwendung. - - -Anhang: Wie unterstellen Sie ein Programm der -Deutschen Freien Software Lizenz? - -Um jedermann den Abschluss dieser Lizenz zu -ermöglichen, wird empfohlen, das Programm mit -folgendem Hinweis auf die Lizenz zu versehen: - -"Copyright (C) 20[jj] [Name des Rechtsinhabers]. - -Dieses Programm kann durch jedermann gemäß den -Bestimmungen der Deutschen Freien Software Lizenz -genutzt werden. - -Die Lizenz kann unter -abgerufen werden." \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/d-fsl-1.0-de.yml b/tests/licensedcode/data/licenses/d-fsl-1.0-de.yml deleted file mode 100644 index 6934bd74c83..00000000000 --- a/tests/licensedcode/data/licenses/d-fsl-1.0-de.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - d-fsl-1.0-de diff --git a/tests/licensedcode/data/licenses/d-fsl-1.0-en.txt b/tests/licensedcode/data/licenses/d-fsl-1.0-en.txt deleted file mode 100644 index e4e59ea3c79..00000000000 --- a/tests/licensedcode/data/licenses/d-fsl-1.0-en.txt +++ /dev/null @@ -1,438 +0,0 @@ -German Free Software License - -(c) Ministry of Science and Research, State of -North-Rhine Westphalia 2004 - -Developed and created by Axel Metzger and Till -Jaeger, Institut für Rechtsfragen der Freien und -Open Source Software (Institute for Legal Issues -On Free and Open Source Software), -. - -Preamble - -Software is more than a mere economic asset. It -is the technical foundation of the information -society. Therefore, the issue of the public share -in software is of particular importance. -Conventionally licensed computer programs are -distributed in object code form only, and the -user is not entitled to modify or pass on the -program to third parties. The license model for -Free Software (synonym "Open Source Software"), -however, grants comprehensive rights in the -handling of the program. The German Free Software -License is based on this license model. It gives -you the right to use the program in a -comprehensive manner. You are allowed to modify -the computer program according to your -requirements or to reproduce or distribute it and -make it publicly available in a modified or -unmodified form. These rights are granted free of -charge. - -However, the German Free Software License -combines these rights with certain obligations -that will ensure the free circulation of the -program and all further developments published. -If you distribute the program or make it publicly -available, you have to include a copy of this -license to anyone receiving the program from you -and enable access to its source code. Another -obligation arises from further developments of -the program. Modifications to the program which -you distribute or make publicly available shall -be released in accordance with the conditions of -this license. - -German Free Software License takes into account -the special requirements of German and European -law. It is drafted bilingually and thus intended -for international distribution. - - -Section 0 Definitions - -Documentation: Description of composition, -architecture and/or structure of the programming -process and/or functionalities of the program, -irrespective of whether they were done in the -Source Code or separately. - -License: The agreement concluded between the -licensor and you, with the content of the German -Free Software License and/or the pertaining -offer. - -Licensee: Every natural or legal entity who has -accepted this License. - -Program: Every computer program which has been -distributed or made publicly available by the -entitled person in accordance with the terms of -this License. - -Object Code: The machine-readable form of the -Program. - -Public/publicly: Not solely directed towards a -certain group of people who have a personal -connection to each other or are associated -through their affiliation with a legal person or -public organisation. - -Making Publicly Available: The public -distribution of the Program in an immaterial -form, in particular, by making it available for -download in data networks. - -Entitled Person(s): The author(s) or other -holders of the exclusive right to use for the -Program. - -Source Code: The form of the Program represented -in programming language and readable for humans. - -Modification: Any extension, shortening and/or -alteration of the Program, including, but not -limited to further developments. - -Distribution: The public passing on of material -copies to third parties, in particular, onto -storage devices or in connection with hardware. - -Complete Source Code: The Source Code in the form -used for preparation and/or modification together -with the configuration files and software tools -required for compilation and installation, -provided that these are not commonly used in the -required form (e.g. standard compiler) or can be -downloaded by any Internet user without license -fee. - - -Section 1 Rights - -(1) You may reproduce and distribute the Program -and make it publicly available in an unmodified -form. - -(2) You may modify the Program and reproduce and -distribute modified versions and make them -publicly available. It is also permitted to -combine the Program or parts thereof with other -programs. - -(3) You obtain the rights free of charge. - - -Section 2 Obligations for Distribution and Making -Publicly Available - -(1) If you distribute the Program or make it -publicly available, be it in unmodified or -modified form, be it in combination with other -programs or in connection with hardware, you also -have to provide or include the following: - -1. all references to this License in the Source -Code and/or Object Code; - -2. all references in the Source Code and/or -Object Code containing information about the -author of the Program; - -3. a conspicuous reference to this License and -the Internet address , to -be displayed in a form that can easily be read by -the recipient; - -4. the complete text of this License in a form -easy to perceive. - -(2) If license and/or contract terms are -displayed when the Program is installed and/or -started, the following items must also be -displayed: - -1. this License; - -2. a reference to this License; and - -3. a reference to the Entitled Person(s) to the -initial program components used under this -License. - -(3) You may not make the use of the Program -contingent upon the compliance with conditions or -obligations that are not set forth in this -License. - -(4) Provided that you have received Documentation -for the Program, you have to deliver this -Documentation with the Program, as well, unless -free delivery of the Documentation is not -permitted by the documentation license. - - -Section 3 Further Obligations regarding the -Distribution of Modified Versions - -(1) You may only distribute modified versions of -the Program or make them publicly available in -accordance with the terms of this License, so -that any third party is able to make use of the -modified Program as a whole under this License. - -(2) If the Program or a part thereof is combined -with another program, this also applies to the -entire combination as a modified version of the -Program, unless the other program is independent -in terms of form and content. Another program -shall be regarded as independent if it fulfils -the following requirements: - -1. The Source Code of the combined programs must -be contained in separate files which do not -include components of the other part except for -parts containing the information customary and -required for the Program combination. The Source -Code of the other program does not have to be -delivered. - -2. The part which is combined with the Program -must also be reasonably usable when not combined -with the Program, i.e. on a standalone basis or -with other programs. The meaning of "reasonably -usable" will be based on the opinion of pertinent -circles of expert groups in the relevant field. -Such circles of experts include everyone who -develops, uses, distributes or makes publicly -available the Program concerned or programs with -similar functionality. - -(3) If you distribute or make publicly available -the Program or parts thereof - modified or -unmodified - in combination with another program -licensed under the GNU General Public License -(GPL), the Program may also be used under -conditions of the GPL, provided it constitutes a -"derivative work" together with the other program -in the sense of the GPL. In this case, any -reference to this License should be removed and -replaced by a reference to the GPL. Whether a -"derivative work" in the sense of the GPL arises -from this combination is primarily defined in -section 2 b) of the GPL. This provision reads: -"You must cause any work that you distribute or -publish, that in whole or in part contains or is -derived from the Program or any part thereof, to -be licensed as a whole at no charge to all third -parties under the terms of this License." The GPL -can be obtained under -. - -(4) If you distribute the Program or make it -publicly available in a modified form, you must -include a reference to the modifications and the -date of the modification in the Source Code. This -reference must reveal which modifications were -carried out and include existing references -containing information on the author of the -Program. This applies to whether or not you add -your own copyright notice. Instead of a reference -in the Source Code you may also use or carry on a -version control system, provided this is also -distributed or made publicly available. - -(5) You may not charge any third party for the -granting of the non-exclusive rights of use for -the Program. - -(6) If you acquire any other intellectual or -industrial property right to this Program apart -from a copyright, in particular a patent or -utility model, you license this intellectual or -industrial property right for modified or -unmodified versions of the Program to the extent -that is necessary to make due use of the rights -arising from this License. - - -Section 4 Further Obligations for the -Distribution of the Object Code - -(1) If you distribute the Program in Object Code -form only, apart from the obligations defined in -Sections 2 and 3, you have to either: - -1. make the Complete Source Code publicly -available in the Internet and - when distributing -the Object Code - make a clear reference to the -complete Internet address from which the Source -Code can be downloaded; or - -2. distribute the Complete Source Code on a -customary data carrier, taking into consideration -Sections 2 and 3. - -(2) If you make the Program publicly available in -Object Code form, apart from the obligations -defined in Sections 2 and 3 you must also make -the Complete Source Code publicly available in -the Internet and make a clear reference to the -complete Internet address. - -(3) Provided that you have received the -Documentation for the Program, you have to -deliver this Documentation together with the -Program in accordance with Subsections 1 and 2, -as well, unless free delivery of the -Documentation is not permitted by the -documentation license. - - -Section 5 Conclusion of the Contract - -(1) With this License you and any other person -are offered the conclusion of a contract for the -use of this Program under the conditions of this -License. - -(2) You may use the Program in accordance with -the applicable statutory provisions for the -intended purpose without having to accept this -License. In the European Union and in most other -legal systems, this right in particular includes -the following authorizations: - -1. Running of the Program as well as reproducing -on hard-drive and RAM required for this; - -2. Making of a back-up copy; - -3. Correcting errors; - -4. Distributing a lawfully acquired physical copy -of the Program. - -(3) You declare your acceptance of this License -by distributing the Program, making it publicly -available, modifying or reproducing it in a way -that goes beyond the intended use in the sense of -Subsection 2. From this time on, this License -shall be deemed as a legally binding agreement -between the Entitled Persons and you, without the -need for the Entitled Persons to obtain a -declaration of acceptance. - -(4) You and any other licensee acquire the rights -arising from this License directly from the -Entitled Persons. Any sub-licensing or transfer -of rights is not permitted. - - -Section 6 Termination of Rights in the Event of -Violations - -(1) Any violation of your obligations under this -License automatically leads to the termination of -your rights under this License. - -(2) Any rights of third parties having obtained -the Program or rights to the Program from you -shall remain unaffected. - - -Section 7 Liability and Warranty - -(1) The Entitled Persons are only liable for -conflicting third-party rights if they were aware -of such rights without informing you. - -(2) Liability for errors and/or other defects in -the Program shall be governed by agreements -concluded between you and the Entitled Person -beyond the scope of this License or, if no such -agreement exists, by the pertinent statutory -provisions. - - -Section 8 Agreements with Third Parties - -(1) This License only governs the relationship -between you and the Entitled Persons. It is not -part of agreements between you and third parties. - -(2) This License does not limit your freedom to -conclude agreements of any content whatsoever -with third parties obtaining copies of the -Program from you or purchasing services from you -in connection with the Program, provided that you -fulfil your obligations under this License and -third-party rights under this License are not -infringed. In particular, you may charge a fee as -consideration for the transfer of the Program or -other services. - -(3) This License does not commit you to forward -the Program to a third party. You are free to -decide to whom you wish to make the Program -available. However, you may not prevent or -complicate further use by third parties through -the use of technical protective measures, in -particular, the use of copy protection of any -kind. Password-protected access restriction or -use in an Intranet shall not be regarded as -technical protective measures. - - -Section 9 Text of the License - -(1) This License is written in German and -English. Both versions are equally binding. It is -assumed that terminology used in the License has -the same meaning in both versions. Should, -however, differences arise, such meaning is -authoritative which best brings into line both -versions, taking into consideration the aim and -purpose of the License. - -(2) The license board of the German Free Software -License may put into force binding new versions -of this License inasmuch as this is required and -reasonable. New versions of the License will be -published on the Internet site with a unique version number. The new -version of the License becomes binding for you as -soon as you become aware of its publication. -Legal remedies against the modification of the -License are not restricted by the regulations -described above. - -(3) You may reproduce and distribute this License -and make it publicly available in an unmodified -form. - - -Section 10 Applicable Law - -The License is governed by German law. - - -Appendix: How to submit a Program to the German -Free Software License. - -In order to make it possible for anyone to -conclude this License, it is recommended to -include the following reference to the License in -the Program: - -"Copyright (C) 20[yy] [Name of the Entitled -Person]. - -This Program may be used by anyone in accordance -with the terms of the German Free Software -License - -The License may be obtained under ." \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/d-fsl-1.0-en.yml b/tests/licensedcode/data/licenses/d-fsl-1.0-en.yml deleted file mode 100644 index 462a1a73d9d..00000000000 --- a/tests/licensedcode/data/licenses/d-fsl-1.0-en.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - d-fsl-1.0-en diff --git a/tests/licensedcode/data/licenses/dante-treglia.txt b/tests/licensedcode/data/licenses/dante-treglia.txt deleted file mode 100644 index e74dcab3337..00000000000 --- a/tests/licensedcode/data/licenses/dante-treglia.txt +++ /dev/null @@ -1,2 +0,0 @@ -This is provided as is without express or implied warranties. You may freely copy and compile this source into applications you distribute provided that the copyright text below is included in the resulting source code, for example: -"Portions copyright (c) Dante Treglia II, 2000" \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/dante-treglia.yml b/tests/licensedcode/data/licenses/dante-treglia.yml deleted file mode 100644 index 7ad60b836f1..00000000000 --- a/tests/licensedcode/data/licenses/dante-treglia.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - dante-treglia diff --git a/tests/licensedcode/data/licenses/day-spec_1.txt b/tests/licensedcode/data/licenses/day-spec_1.txt deleted file mode 100644 index 2c1dbde62ad..00000000000 --- a/tests/licensedcode/data/licenses/day-spec_1.txt +++ /dev/null @@ -1,147 +0,0 @@ -[Day Specification License] - -Day Management AG ("Licensor") is willing to license this specification -to you ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED -IN THIS LICENSE AGREEMENT ("Agreement"). Please read the terms and -conditions of this Agreement carefully. - -Content Repository for JavaTM Technology API Specification ("Specification") -Version: 1.0 -Status: FCS -Release: 11 May 2005 - -Copyright 2005 Day Management AG -Barfüsserplatz 6, 4001 Basel, Switzerland. -All rights reserved. - -NOTICE; LIMITED LICENSE GRANTS - -1. License for Purposes of Evaluation and Developing Applications. -Licensor hereby grants you a fully-paid, non-exclusive, non-transferable, -worldwide, limited license (without the right to sublicense), under -Licensor's applicable intellectual property rights to view, download, -use and reproduce the Specification only for the purpose of internal -evaluation. This includes developing applications intended to run on an -implementation of the Specification provided that such applications do -not themselves implement any portion(s) of the Specification. - -2. License for the Distribution of Compliant Implementations. Licensor -also grants you a perpetual, non-exclusive, non-transferable, worldwide, -fully paid-up, royalty free, limited license (without the right to -sublicense) under any applicable copyrights or, subject to the provisions -of subsection 4 below, patent rights it may have covering the -Specification to create and/or distribute an Independent Implementation -of the Specification that: (a) fully implements the Specification -including all its required interfaces and functionality; (b) does not -modify, subset, superset or otherwise extend the Licensor Name Space, or -include any public or protected packages, classes, Java interfaces, fields -or methods within the Licensor Name Space other than those -required/authorized by the Specification or Specifications being -implemented; and (c) passes the Technology Compatibility Kit (including -satisfying the requirements of the applicable TCK Users Guide) for such -Specification ("Compliant Implementation"). In addition, the foregoing -license is expressly conditioned on your not acting outside its scope. -No license is granted hereunder for any other purpose (including, for -example, modifying the Specification, other than to the extent of your -fair use rights, or distributing the Specification to third parties). - -3. Pass-through Conditions. You need not include limitations (a)-(c) from -the previous paragraph or any other particular "pass through" requirements -in any license You grant concerning the use of your Independent -Implementation or products derived from it. However, except with respect -to Independent Implementations (and products derived from them) that -satisfy limitations (a)-(c) from the previous paragraph, You may neither: -(a) grant or otherwise pass through to your licensees any licenses under -Licensor's applicable intellectual property rights; nor (b) authorize your -licensees to make any claims concerning their implementation's compliance -with the Specification. - -4. Reciprocity Concerning Patent Licenses. With respect to any patent -claims covered by the license granted under subparagraph 2 above that -would be infringed by all technically feasible implementations of the -Specification, such license is conditioned upon your offering on fair, -reasonable and non-discriminatory terms, to any party seeking it from -You, a perpetual, non-exclusive, non-transferable, worldwide license -under Your patent rights that are or would be infringed by all technically -feasible implementations of the Specification to develop, distribute and -use a Compliant Implementation. - -5. Definitions. For the purposes of this Agreement: "Independent -Implementation" shall mean an implementation of the Specification that -neither derives from any of Licensor's source code or binary code -materials nor, except with an appropriate and separate license from -Licensor, includes any of Licensor's source code or binary code materials; -"Licensor Name Space" shall mean the public class or interface -declarations whose names begin with "java", "javax", "javax.jcr" or their -equivalents in any subsequent naming convention adopted by Licensor -through the Java Community Process, or any recognized successors or -replacements thereof; and "Technology Compatibility Kit" or "TCK" shall -mean the test suite and accompanying TCK User's Guide provided by -Licensor which corresponds to the particular version of the Specification -being tested. - -6. Termination. This Agreement will terminate immediately without notice -from Licensor if you fail to comply with any material provision of or act -outside the scope of the licenses granted above. - -7. Trademarks. No right, title, or interest in or to any trademarks, -service marks, or trade names of Licensor is granted hereunder. Java is -a registered trademark of Sun Microsystems, Inc. in the United States and -other countries. - -8. Disclaimer of Warranties. The Specification is provided "AS IS". -LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT (INCLUDING AS A -CONSEQUENCE OF ANY PRACTICE OR IMPLEMENTATION OF THE SPECIFICATION), OR -THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE. -This document does not represent any commitment to release or implement -any portion of the Specification in any product. - -The Specification could include technical inaccuracies or typographical -errors. Changes are periodically added to the information therein; these -changes will be incorporated into new versions of the Specification, if -any. Licensor may make improvements and/or changes to the product(s) -and/or the program(s) described in the Specification at any time. Any -use of such changes in the Specification will be governed by the -then-current license for the applicable version of the Specification. - -9. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO -EVENT WILL LICENSOR BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT -LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, -CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND -REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY -FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN -IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -10. Report. If you provide Licensor with any comments or suggestions in -connection with your use of the Specification ("Feedback"), you hereby: -(i) agree that such Feedback is provided on a non-proprietary and -non-confidential basis, and (ii) grant Licensor a perpetual, -non-exclusive, worldwide, fully paid-up, irrevocable license, with the -right to sublicense through multiple levels of sublicensees, to -incorporate, disclose, and use without limitation the Feedback for any -purpose related to the Specification and future versions, -implementations, and test suites thereof. - -[Addendum to the Day Specification License] - -In addition to the permissions granted under the Specification -License, Day Management AG hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -license to reproduce, publicly display, publicly perform, -sublicense, and distribute unmodified copies of the Content -Repository for Java Technology API (JCR 1.0) Java Archive (JAR) -file ("jcr-1.0.jar") and to make, have made, use, offer to sell, -sell, import, and otherwise transfer said file on its own or -as part of a larger work that makes use of the JCR API. - -With respect to any patent claims covered by this license -that would be infringed by all technically feasible implementations -of the Specification, such license is conditioned upon your -offering on fair, reasonable and non-discriminatory terms, -to any party seeking it from You, a perpetual, non-exclusive, -non-transferable, worldwide license under Your patent rights -that are or would be infringed by all technically feasible -implementations of the Specification to develop, distribute -and use a Compliant Implementation. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/day-spec_1.yml b/tests/licensedcode/data/licenses/day-spec_1.yml deleted file mode 100644 index afa75498a41..00000000000 --- a/tests/licensedcode/data/licenses/day-spec_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - day-spec diff --git a/tests/licensedcode/data/licenses/diffmark.txt b/tests/licensedcode/data/licenses/diffmark.txt deleted file mode 100644 index 855112397b9..00000000000 --- a/tests/licensedcode/data/licenses/diffmark.txt +++ /dev/null @@ -1,2 +0,0 @@ -1. you can do what you want with it -2. I refuse any responsibility for the consequences \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/diffmark.yml b/tests/licensedcode/data/licenses/diffmark.yml deleted file mode 100644 index df7ff02b3f7..00000000000 --- a/tests/licensedcode/data/licenses/diffmark.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - diffmark diff --git a/tests/licensedcode/data/licenses/dotseqn.txt b/tests/licensedcode/data/licenses/dotseqn.txt deleted file mode 100644 index c309a995a75..00000000000 --- a/tests/licensedcode/data/licenses/dotseqn.txt +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (C) 1995 by Donald Arseneau - -This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \documentclass). - -This notice must be left intact. diff --git a/tests/licensedcode/data/licenses/dotseqn.yml b/tests/licensedcode/data/licenses/dotseqn.yml deleted file mode 100644 index dd616b2b957..00000000000 --- a/tests/licensedcode/data/licenses/dotseqn.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - dotseqn diff --git a/tests/licensedcode/data/licenses/dr-john-maddock.txt b/tests/licensedcode/data/licenses/dr-john-maddock.txt deleted file mode 100644 index 9dbe2b9b257..00000000000 --- a/tests/licensedcode/data/licenses/dr-john-maddock.txt +++ /dev/null @@ -1,10 +0,0 @@ -Copyright (c) 1998-2000 -Dr John Maddock - -Permission to use, copy, modify, distribute and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation. Dr John Maddock makes no representations -about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/dr-john-maddock.yml b/tests/licensedcode/data/licenses/dr-john-maddock.yml deleted file mode 100644 index 29a8d6eb8f6..00000000000 --- a/tests/licensedcode/data/licenses/dr-john-maddock.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - dr-john-maddock diff --git a/tests/licensedcode/data/licenses/dsdp.txt b/tests/licensedcode/data/licenses/dsdp.txt deleted file mode 100644 index 2e457c21bf6..00000000000 --- a/tests/licensedcode/data/licenses/dsdp.txt +++ /dev/null @@ -1,18 +0,0 @@ -COPYRIGHT NOTIFICATION - -(C) COPYRIGHT 2004 UNIVERSITY OF CHICAGO - -This program discloses material protectable under copyright laws of the United States. Permission to copy and modify this software and its documentation is hereby granted, provided that this notice is retained thereon and on all copies or modifications. The University of Chicago makes no representations as to the suitability and operability of this software for any purpose. It is provided "as is"; without express or implied warranty. Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others, so long as this original copyright notice is retained. Any publication resulting from research that made use of this software should cite this document. - - This software was authored by: - - Steven J. Benson Mathematics and Computer Science Division Argonne National Laboratory Argonne IL 60439 - - Yinyu Ye Department of Management Science and Engineering Stanford University Stanford, CA U.S.A - - Any questions or comments on the software may be directed to benson@mcs.anl.gov or yinyu-ye@stanford.edu - -Argonne National Laboratory with facilities in the states of Illinois and Idaho, is owned by The United States Government, and operated by the University of Chicago under provision of a contract with the Department of Energy. - -DISCLAIMER -THIS PROGRAM WAS PREPARED AS AN ACCOUNT OF WORK SPONSORED BY AN AGENCY OF THE UNITED STATES GOVERNMENT. NEITHER THE UNITED STATES GOVERNMENT NOR ANY AGENCY THEREOF, NOR THE UNIVERSITY OF CHICAGO, NOR ANY OF THEIR EMPLOYEES OR OFFICERS, MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS. REFERENCE HEREIN TO ANY SPECIFIC COMMERCIAL PRODUCT, PROCESS, OR SERVICE BY TRADE NAME, TRADEMARK, MANUFACTURER, OR OTHERWISE, DOES NOT NECESSARILY CONSTITUTE OR IMPLY ITS ENDORSEMENT, RECOMMENDATION, OR FAVORING BY THE UNITED STATES GOVERNMENT OR ANY AGENCY THEREOF. THE VIEW AND OPINIONS OF AUTHORS EXPRESSED HEREIN DO NOT NECESSARILY STATE OR REFLECT THOSE OF THE UNITED STATES GOVERNMENT OR ANY AGENCY THEREOF. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/dsdp.yml b/tests/licensedcode/data/licenses/dsdp.yml deleted file mode 100644 index 4d530de4da1..00000000000 --- a/tests/licensedcode/data/licenses/dsdp.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - dsdp diff --git a/tests/licensedcode/data/licenses/dual-bsd-gpl_not_madwifi-dual_2.txt b/tests/licensedcode/data/licenses/dual-bsd-gpl_not_madwifi-dual_2.txt deleted file mode 100644 index 6172cc77a1d..00000000000 --- a/tests/licensedcode/data/licenses/dual-bsd-gpl_not_madwifi-dual_2.txt +++ /dev/null @@ -1,25 +0,0 @@ - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * Alternatively, this software may be distributed under the terms of the - * GNU General Public License ("GPL") version 2 as published by the Free - * Software Foundation. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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/tests/licensedcode/data/licenses/dual-bsd-gpl_not_madwifi-dual_2.yml b/tests/licensedcode/data/licenses/dual-bsd-gpl_not_madwifi-dual_2.yml deleted file mode 100644 index 86130a87808..00000000000 --- a/tests/licensedcode/data/licenses/dual-bsd-gpl_not_madwifi-dual_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - bsd-new OR gpl-2.0 -notes: this is a common bew-new notice here diff --git a/tests/licensedcode/data/licenses/dualjna1.txt b/tests/licensedcode/data/licenses/dualjna1.txt deleted file mode 100644 index 57ff351552c..00000000000 --- a/tests/licensedcode/data/licenses/dualjna1.txt +++ /dev/null @@ -1,3 +0,0 @@ - * The contents of this file is dual-licensed under 2 - * alternative Open Source/Free licenses: LGPL 2.1 or later and - * Apache License 2.0. diff --git a/tests/licensedcode/data/licenses/dualjna1.yml b/tests/licensedcode/data/licenses/dualjna1.yml deleted file mode 100644 index 7b42724548b..00000000000 --- a/tests/licensedcode/data/licenses/dualjna1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus OR apache-2.0 diff --git a/tests/licensedcode/data/licenses/dualjna3.txt b/tests/licensedcode/data/licenses/dualjna3.txt deleted file mode 100644 index 25703ce54e8..00000000000 --- a/tests/licensedcode/data/licenses/dualjna3.txt +++ /dev/null @@ -1,3 +0,0 @@ -License - -This library is licensed under the LGPL, version 2.1 or later, and (from version 4.0 onward) the Apache Software License, version 2.0. Commercial license arrangements are negotiable. diff --git a/tests/licensedcode/data/licenses/dualjna3.yml b/tests/licensedcode/data/licenses/dualjna3.yml deleted file mode 100644 index ce533cd9f97..00000000000 --- a/tests/licensedcode/data/licenses/dualjna3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus OR apache-2.0 OR commercial-license diff --git a/tests/licensedcode/data/licenses/dualjna4.txt b/tests/licensedcode/data/licenses/dualjna4.txt deleted file mode 100644 index a958a38f0e8..00000000000 --- a/tests/licensedcode/data/licenses/dualjna4.txt +++ /dev/null @@ -1,12 +0,0 @@ -This copy of JNA is licensed under the -Apache (Software) License, version 2.0 ("the License"). -See the License for details about distribution rights, and the -specific rights regarding derivate works. - -You may obtain a copy of the License at: - -http://www.apache.org/licenses/ - -A copy is also included in the downloadable source code package -containing JNA, in file "AL2.0", under the same directory -as this file. diff --git a/tests/licensedcode/data/licenses/dualjna4.yml b/tests/licensedcode/data/licenses/dualjna4.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/licenses/dualjna4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/dualjna5.txt b/tests/licensedcode/data/licenses/dualjna5.txt deleted file mode 100644 index 06702bd4c33..00000000000 --- a/tests/licensedcode/data/licenses/dualjna5.txt +++ /dev/null @@ -1,12 +0,0 @@ -This copy of JNA is licensed under the -Lesser General Public License (LGPL), version 2.1 ("the License"). -See the License for details about distribution rights, and the -specific rights regarding derivate works. - -You may obtain a copy of the License at: - -http://www.gnu.org/licenses/licenses.html - -A copy is also included in the downloadable source code package -containing JNA, in file "LGPL2.1", under the same directory -as this file. diff --git a/tests/licensedcode/data/licenses/dualjna5.yml b/tests/licensedcode/data/licenses/dualjna5.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/licenses/dualjna5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/dvipdfm.txt b/tests/licensedcode/data/licenses/dvipdfm.txt deleted file mode 100644 index 3293406cbce..00000000000 --- a/tests/licensedcode/data/licenses/dvipdfm.txt +++ /dev/null @@ -1 +0,0 @@ -A modified version of this file may be distributed, but it should be distributed with a *different* name. Changed files must be distributed *together with a complete and unchanged* distribution of these files. diff --git a/tests/licensedcode/data/licenses/dvipdfm.yml b/tests/licensedcode/data/licenses/dvipdfm.yml deleted file mode 100644 index ec6cc71e2ba..00000000000 --- a/tests/licensedcode/data/licenses/dvipdfm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - dvipdfm diff --git a/tests/licensedcode/data/licenses/ecl-2.0.txt b/tests/licensedcode/data/licenses/ecl-2.0.txt deleted file mode 100644 index 4b4a6a8a3ce..00000000000 --- a/tests/licensedcode/data/licenses/ecl-2.0.txt +++ /dev/null @@ -1,193 +0,0 @@ -Educational Community License -Version 2.0, April 2007 - -The Educational Community License version 2.0 ("ECL") consists of the Apache 2.0 -license, modified to change the scope of the patent grant in section 3 to be -specific to the needs of the education communities using this license. The -original Apache 2.0 license can be found at: -http://www.apache.org/licenses/LICENSE-2.0 - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, non- -exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, -prepare Derivative Works of, publicly display, publicly perform, sublicense, and -distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, -each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no- -charge, royalty-free, irrevocable (except as stated in this section) patent -license to make, have made, use, offer to sell, sell, import, and otherwise -transfer the Work, where such license applies only to those patent claims -licensable by such Contributor that are necessarily infringed by their -Contribution(s) alone or by combination of their Contribution(s) with the Work -to which such Contribution(s) was submitted. If You institute patent litigation -against any entity (including a cross-claim or counterclaim in a lawsuit) -alleging that the Work or a Contribution incorporated within the Work -constitutes direct or contributory patent infringement, then any patent licenses -granted to You under this License for that Work shall terminate as of the date -such litigation is filed. Any patent license granted hereby with respect to -contributions by an individual employed by an institution or organization is -limited to patent claims where the individual that is the author of the Work is -also the inventor of the patent claims licensed, and where the organization or -institution has the right to grant such license under applicable grant and -research funding agreements. No other express or implied licenses are granted. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and - -You must cause any modified files to carry prominent notices stating that You -changed the files; and - -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and - -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. - -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any -Contribution intentionally submitted for inclusion in the Work by You to the -Licensor shall be under the terms and conditions of this License, without any -additional terms or conditions. Notwithstanding the above, nothing herein shall -supersede or modify the terms of any separate license agreement you may have -executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, -trademarks, service marks, or product names of the Licensor, except as required -for reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in -writing, Licensor provides the Work (and each Contributor provides its -Contributions) 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. You are solely responsible for determining the -appropriateness of using or redistributing the Work and assume any risks -associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in -tort (including negligence), contract, or otherwise, unless required by -applicable law (such as deliberate and grossly negligent acts) or agreed to in -writing, shall any Contributor be liable to You for damages, including any -direct, indirect, special, incidental, or consequential damages of any character -arising as a result of this License or out of the use or inability to use the -Work (including but not limited to damages for loss of goodwill, work stoppage, -computer failure or malfunction, or any and all other commercial damages or -losses), even if such Contributor has been advised of the possibility of such -damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or -Derivative Works thereof, You may choose to offer, and charge a fee for, -acceptance of support, warranty, indemnity, or other liability obligations -and/or rights consistent with this License. However, in accepting such -obligations, You may act only on Your own behalf and on Your sole -responsibility, not on behalf of any other Contributor, and only if You agree to -indemnify, defend, and hold each Contributor harmless for any liability incurred -by, or claims asserted against, such Contributor by reason of your accepting any -such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Educational Community License to your work - -To apply the Educational Community License to your work, attach the following -boilerplate notice, with the fields enclosed by brackets "[]" replaced with your -own identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - -Copyright [yyyy] [name of copyright owner] Licensed under the -Educational Community License, Version 2.0 (the "License"); you may -not use this file except in compliance with the License. You may -obtain a copy of the License at - -http://www.osedu.org/licenses/ECL-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an "AS IS" -BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -or implied. See the License for the specific language governing -permissions and limitations under the License. - diff --git a/tests/licensedcode/data/licenses/ecl-2.0.yml b/tests/licensedcode/data/licenses/ecl-2.0.yml deleted file mode 100644 index 2292801eb49..00000000000 --- a/tests/licensedcode/data/licenses/ecl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ecl-2.0 diff --git a/tests/licensedcode/data/licenses/egenix-1.1.0.txt b/tests/licensedcode/data/licenses/egenix-1.1.0.txt deleted file mode 100644 index 15c2fca7941..00000000000 --- a/tests/licensedcode/data/licenses/egenix-1.1.0.txt +++ /dev/null @@ -1,40 +0,0 @@ -EGENIX.COM PUBLIC LICENSE AGREEMENT -Version 1.1.0 - -This license agreement is based on the Python CNRI License Agreement, a widely accepted open- source license. - -1. Introduction -This "License Agreement" is between eGenix.com Software, Skills and Services GmbH ("eGenix.com"), having an office at Pastor-Loeh-Str. 48, D-40764 Langenfeld, Germany, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). - -2. License -Subject to the terms and conditions of this eGenix.com Public License Agreement, eGenix.com hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the eGenix.com Public License Agreement is retained in the Software, or in any derivative version of the Software prepared by Licensee. - -3. NO WARRANTY -eGenix.com is making the Software available to Licensee on an "AS IS" basis. SUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, EGENIX.COM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, EGENIX.COM MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -4. LIMITATION OF LIABILITY -EGENIX.COM SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO LICENSEE. - -5. Termination -This License Agreement will automatically terminate upon a material breach of its terms and conditions. - -6. Third Party Rights -Any software or documentation in source or binary form provided along with the Software that is associated with a separate license agreement is licensed to Licensee under the terms of that license agreement. This License Agreement does not apply to those portions of the Software. Copies of the third party licenses are included in the Software Distribution. - -7. General -Nothing in this License Agreement affects any statutory rights of consumers that cannot be waived or limited by contract. - -Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between eGenix.com and Licensee. - -If any provision of this License Agreement shall be unlawful, void, or for any reason unenforceable, such provision shall be modified to the extent necessary to render it enforceable without losing its intent, or, if no such modification is possible, be severed from this License Agreement and shall not affect the validity and enforceability of the remaining provisions of this License Agreement. - -This License Agreement shall be governed by and interpreted in all respects by the law of Germany, excluding conflict of law provisions. It shall not be governed by the United Nations Convention on Contracts for International Sale of Goods. This License Agreement does not grant permission to use eGenix.com trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. - -The controlling language of this License Agreement is English. If Licensee has received a translation into another language, it has been provided for Licensee's convenience only. - -8. Agreement -By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. For question regarding this License Agreement, please write to: - eGenix.com Software, Skills and Services GmbH - Pastor-Loeh-Str. 48 - D-40764 Langenfeld - Germany \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/egenix-1.1.0.yml b/tests/licensedcode/data/licenses/egenix-1.1.0.yml deleted file mode 100644 index 05294134092..00000000000 --- a/tests/licensedcode/data/licenses/egenix-1.1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - egenix-1.1.0 diff --git a/tests/licensedcode/data/licenses/ekioh.txt b/tests/licensedcode/data/licenses/ekioh.txt deleted file mode 100644 index e82bd46d59b..00000000000 --- a/tests/licensedcode/data/licenses/ekioh.txt +++ /dev/null @@ -1,19 +0,0 @@ -The EKLibrary library is proprietary and copyright Ekioh Ltd. -This EKLibrary file is licensed as follows: - -Copyright (c) 2006-2011 Ekioh Ltd. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ekioh.yml b/tests/licensedcode/data/licenses/ekioh.yml deleted file mode 100644 index c21b29a1332..00000000000 --- a/tests/licensedcode/data/licenses/ekioh.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ekioh diff --git a/tests/licensedcode/data/licenses/ellis-lab.txt b/tests/licensedcode/data/licenses/ellis-lab.txt deleted file mode 100644 index 8eca348d643..00000000000 --- a/tests/licensedcode/data/licenses/ellis-lab.txt +++ /dev/null @@ -1,49 +0,0 @@ -This license is a legal agreement between you and {{copyright-owner}} for the use -of {{component}} (the "Software"). By obtaining the Software you -agree to comply with the terms and conditions of this license. - -PERMITTED USE -You are permitted to use, copy, modify, and distribute the Software and its -documentation, with or without modification, for any purpose, provided that -the following conditions are met: - -1. A copy of this license agreement must be included with the distribution. - -2. Redistributions of source code must retain the above copyright notice in - all source code files. - -3. Redistributions in binary form must reproduce the above copyright notice - in the documentation and/or other materials provided with the distribution. - -4. Any files that have been modified must carry notices stating the nature - of the change and the names of those who changed them. - -5. Products derived from the Software must include an acknowledgment that - they are derived from {{component}} in their documentation and/or other - materials provided with the distribution. - -6. Products derived from the Software may not be called "{{component}}", - nor may "{{component}}" appear in their name, without prior written - permission from {{copyright-owner}}. - - -INDEMNITY -You agree to indemnify and hold harmless the authors of the Software and -any contributors for any direct, indirect, incidental, or consequential -third-party claims, actions or suits, as well as any related expenses, -liabilities, damages, settlements or fees arising from your use or misuse -of the Software, or a violation of any terms of this license. - -DISCLAIMER OF WARRANTY -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR -IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF QUALITY, PERFORMANCE, -NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. - -LIMITATIONS OF LIABILITY -YOU ASSUME ALL RISK ASSOCIATED WITH THE INSTALLATION AND USE OF THE SOFTWARE. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS OF THE SOFTWARE BE LIABLE -FOR CLAIMS, DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION -WITH THE SOFTWARE. LICENSE HOLDERS ARE SOLELY RESPONSIBLE FOR DETERMINING THE -APPROPRIATENESS OF USE AND ASSUME ALL RISKS ASSOCIATED WITH ITS USE, INCLUDING -BUT NOT LIMITED TO THE RISKS OF PROGRAM ERRORS, DAMAGE TO EQUIPMENT, LOSS OF -DATA OR SOFTWARE PROGRAMS, OR UNAVAILABILITY OR INTERRUPTION OF OPERATIONS. diff --git a/tests/licensedcode/data/licenses/ellis-lab.yml b/tests/licensedcode/data/licenses/ellis-lab.yml deleted file mode 100644 index 97066c25f50..00000000000 --- a/tests/licensedcode/data/licenses/ellis-lab.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ellis-lab diff --git a/tests/licensedcode/data/licenses/entessa-1.0.txt b/tests/licensedcode/data/licenses/entessa-1.0.txt deleted file mode 100644 index ac74ef92a45..00000000000 --- a/tests/licensedcode/data/licenses/entessa-1.0.txt +++ /dev/null @@ -1,20 +0,0 @@ -Entessa Public License Version. 1.0 - -Copyright (c) 2003 Entessa, LLC. 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. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: - - "This product includes open source software developed by openSEAL (http://www.openseal.org/)." - - Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. - 4. The names "openSEAL" and "Entessa" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact epl@entessa.com. - 5. Products derived from this software may not be called "openSEAL", nor may "openSEAL" appear in their name, without prior written permission of Entessa. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 ENTESSA, LLC, OPENSEAL OR ITS 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. -============================================================ - -This software consists of voluntary contributions made by many individuals on behalf of openSEAL and was originally based on software contributed by Entessa, LLC, http://www.entessa.com. For more information on the openSEAL, please see . diff --git a/tests/licensedcode/data/licenses/entessa-1.0.yml b/tests/licensedcode/data/licenses/entessa-1.0.yml deleted file mode 100644 index cfabcd6d8e5..00000000000 --- a/tests/licensedcode/data/licenses/entessa-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - entessa-1.0 diff --git a/tests/licensedcode/data/licenses/epl-1.0.txt b/tests/licensedcode/data/licenses/epl-1.0.txt deleted file mode 100644 index a751773d13f..00000000000 --- a/tests/licensedcode/data/licenses/epl-1.0.txt +++ /dev/null @@ -1,86 +0,0 @@ -Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: - -i) changes to the Program, and - -ii) additions to the Program; - -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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -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. - -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. - -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. - -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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -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; - -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - -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. - -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and - -b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation 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. - -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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/epl-1.0.yml b/tests/licensedcode/data/licenses/epl-1.0.yml deleted file mode 100644 index 7559a6e74cd..00000000000 --- a/tests/licensedcode/data/licenses/epl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-1.0 diff --git a/tests/licensedcode/data/licenses/epl-1.0_1.txt b/tests/licensedcode/data/licenses/epl-1.0_1.txt deleted file mode 100644 index 9defd965567..00000000000 --- a/tests/licensedcode/data/licenses/epl-1.0_1.txt +++ /dev/null @@ -1,202 +0,0 @@ -Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC -LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM -CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation -distributed under this Agreement, and - -b) in the case of each subsequent Contributor: - -i) changes to the Program, and -ii) additions to the Program; -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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, -including all Contributors. - -2. GRANT OF RIGHTS - -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. - -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. - -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. - -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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its -own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -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; -ii) effectively excludes on behalf of all Contributors all liability for -damages, including direct, indirect, special, incidental and consequential -damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by -that Contributor alone and not by any other party; and -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. -When the Program is made available in source code form: -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the -Program. -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. -The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation -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. - -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. -  - diff --git a/tests/licensedcode/data/licenses/epl-1.0_1.yml b/tests/licensedcode/data/licenses/epl-1.0_1.yml deleted file mode 100644 index 7559a6e74cd..00000000000 --- a/tests/licensedcode/data/licenses/epl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-1.0 diff --git a/tests/licensedcode/data/licenses/epl-1.0_or_bsd-new_1.txt b/tests/licensedcode/data/licenses/epl-1.0_or_bsd-new_1.txt deleted file mode 100644 index 9d841b89fe0..00000000000 --- a/tests/licensedcode/data/licenses/epl-1.0_or_bsd-new_1.txt +++ /dev/null @@ -1,8 +0,0 @@ -This program and the accompanying materials -are made available under the terms of the Eclipse Public License v1.0 -and Eclipse Distribution License v1.0 which accompany this distribution. - -The Eclipse Public License is available at - http://www.eclipse.org/legal/epl-v10.html -and the Eclipse Distribution License is available at - http://www.eclipse.org/org/documents/edl-v10.php. diff --git a/tests/licensedcode/data/licenses/epl-1.0_or_bsd-new_1.yml b/tests/licensedcode/data/licenses/epl-1.0_or_bsd-new_1.yml deleted file mode 100644 index 20a533913a6..00000000000 --- a/tests/licensedcode/data/licenses/epl-1.0_or_bsd-new_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-1.0 OR bsd-new diff --git a/tests/licensedcode/data/licenses/erlangpl-1.1.txt b/tests/licensedcode/data/licenses/erlangpl-1.1.txt deleted file mode 100644 index 289ee55c95f..00000000000 --- a/tests/licensedcode/data/licenses/erlangpl-1.1.txt +++ /dev/null @@ -1,10 +0,0 @@ -%% The contents of this file are subject to the Erlang Public License, -%% Version 1.1, (the "License"); you may not use this file except in -%% compliance with the License. You should have received a copy of the -%% Erlang Public License along with this software. If not, it can be -%% retrieved online at http://www.erlang.org/. -%% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -%% the License for the specific language governing rights and limitations -%% under the License. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/erlangpl-1.1.yml b/tests/licensedcode/data/licenses/erlangpl-1.1.yml deleted file mode 100644 index d0438f87310..00000000000 --- a/tests/licensedcode/data/licenses/erlangpl-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - erlangpl-1.1 diff --git a/tests/licensedcode/data/licenses/errbot.txt b/tests/licensedcode/data/licenses/errbot.txt deleted file mode 100644 index 4e8e52bb78b..00000000000 --- a/tests/licensedcode/data/licenses/errbot.txt +++ /dev/null @@ -1,5 +0,0 @@ -As a special exception, the copyright holders of Errbot hereby grant permission -for plug-ins, scripts or add-ons not bundled or distributed as part -of Errbot itself and potentially licensed under a different license, to be -used with Errbot, provided that you also meet the terms and conditions of the -licenses of those plug-ins, scripts or add-ons. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/errbot.yml b/tests/licensedcode/data/licenses/errbot.yml deleted file mode 100644 index 1c8b872f42d..00000000000 --- a/tests/licensedcode/data/licenses/errbot.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - errbot-exception diff --git a/tests/licensedcode/data/licenses/eupl-1.0.txt b/tests/licensedcode/data/licenses/eupl-1.0.txt deleted file mode 100644 index 6b77e146e5b..00000000000 --- a/tests/licensedcode/data/licenses/eupl-1.0.txt +++ /dev/null @@ -1,153 +0,0 @@ -European Union Public Licence V.1.0 -EUPL © the European Community 2007 - -This European Union Public Licence (the “EUPL”) applies to the Work or Software (as defined below) which is provided under the terms of this Licence. Any use of the Work, other than as authorised under this Licence is prohibited (to the extent such use is covered by a right of the copyright holder of the Work). The Original Work is provided under the terms of this Licence when the Licensor (as defined below) has placed the following notice immediately following the copyright notice for the Original Work: - - Licensed under the EUPL V.1.0 - -or has expressed by any other mean his willingness to license under the EUPL. - -1. Definitions. In this Licence, the following terms have the following meaning: - -− The Licence: this Licence. - -− The Original Work or the Software: the software distributed and/or communicated by the Licensor under this Licence, available as Source Code and also as Executable Code as the case may be. - -− Derivative Works: the works or software that could be created by the Licensee, based upon the Original Work or modifications thereof. This Licence does not define the extent of modification or dependence on the Original Work required in order to classify a work as a Derivative Work; this extent is determined by copyright law applicable in the country mentioned in Article 15. - -− The Work: the Original Work and/or its Derivative Works. - -− The Source Code: the human-readable form of the Work which is the most convenient for people to study and modify. - -− The Executable Code: any code which has generally been compiled and which is meant to be interpreted by a computer as a program. - -− The Licensor: the natural or legal person that distributes and/or communicates the Work under the Licence. - -− Contributor(s): any natural or legal person who modifies the Work under the Licence, or otherwise contributes to the creation of a Derivative Work. - -− The Licensee or “You”: any natural or legal person who makes any usage of the Software under the terms of the Licence. − Distribution and/or Communication: any act of selling, giving, lending, renting, distributing, communicating, transmitting, or otherwise making available, on-line or off-line, copies of the Work at the disposal of any other natural or legal person. - -2. Scope of the rights granted by the Licence - -The Licensor hereby grants You a world-wide, royalty-free, non-exclusive, sub-licensable licence to do the following, for the duration of copyright vested in the Original Work: -− use the Work in any circumstance and for all usage, -− reproduce the Work, -− modify the Original Work, and make Derivative Works based upon the Work, -− communicate to the public, including the right to make available or display the Work or copies thereof to the public and perform publicly, as the case may be, the Work, -− distribute the Work or copies thereof, -− lend and rent the Work or copies thereof, -− sub-license rights in the Work or copies thereof. - -Those rights can be exercised on any media, supports and formats, whether now known or later invented, as far as the applicable law permits so. In the countries where moral rights apply, the Licensor waives his right to exercise his moral right to the extent allowed by law in order to make effective the licence of the economic rights here above listed. - -The Licensor grants to the Licensee royalty-free, non exclusive usage rights to any patents held by the Licensor, to the extent necessary to make use of the rights granted on the Work under this Licence. - -3. Communication of the Source Code -The Licensor may provide the Work either in its Source Code form, or as Executable Code. If the Work is provided as Executable Code, the Licensor provides in addition a machine readable copy of the Source Code of the Work along with each copy of the Work that the Licensor distributes or indicates, in a notice following the copyright notice attached to the Work, a repository where the Source Code is easily and freely accessible for as long as the Licensor continues to distribute and/or communicate the Work. - -4. Limitations on copyright -Nothing in this Licence is intended to deprive the Licensee of the benefits from any exception or limitation to the exclusive rights of the rights owners in the Original Work or Software, of the exhaustion of those rights or of other applicable limitations thereto. - -5. Obligations of the Licensee -The grant of the rights mentioned above is subject to some restrictions and obligations imposed on the Licensee. Those obligations are the following: - -Attribution right: the Licensee shall keep intact all copyright, patent or trademarks notices and all notices that refer to the Licence and to the disclaimer of warranties. The Licensee must include a copy of such notices and a copy of the Licence with every copy of the Work he/she distributes and/or communicates. The Licensee must cause any Derivative Work to carry prominent notices stating that the Work has been modified and the date of modification. - -Copyleft clause: If the Licensee distributes and/or communicates copies of the Original Works or Derivative Works based upon the Original Work, this Distribution and/or Communication will be done under the terms of this Licence. The Licensee (becoming Licensor) cannot offer or impose any additional terms or conditions on the Work or Derivative Work that alter or restrict the terms of the Licence. - -Compatibility clause: If the Licensee Distributes and/or Communicates Derivative Works or copies thereof based upon both the Original Work and another work licensed under a Compatible Licence, this Distribution and/or Communication can be done under the terms of this Compatible Licence. For the sake of this clause, “Compatible Licence” refers to the licences listed in the appendix attached to this Licence. Should the Licensee’s obligations under the Compatible Licence conflict with his/her obligations under this Licence, the obligations of the Compatible Licence shall prevail. - -Provision of Source Code: When distributing and/or communicating copies of the Work, the Licensee will provide a machine-readable copy of the Source Code or indicate a repository where this Source will be easily and freely available for as long as the Licensee continues to distribute and/or communicate the Work. - -Legal Protection: This Licence does not grant permission to use the trade names, trademarks, service marks, or names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the copyright notice. - -6. Chain of Authorship -The original Licensor warrants that the copyright in the Original Work granted hereunder is owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. Each Contributor warrants that the copyright in the modifications he/she brings to the Work are owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. Each time You, as a Licensee, receive the Work, the original Licensor and subsequent Contributors grant You a licence to their contributions to the Work, under the terms of this Licence. - -7. Disclaimer of Warranty -The Work is a work in progress, which is continuously improved by numerous contributors. It is not a finished work and may therefore contain defects or “bugs” inherent to this type of software development. For the above reason, the Work is provided under the Licence on an “as is” basis and without warranties of any kind concerning the Work, including without limitation merchantability, fitness for a particular purpose, absence of defects or errors, accuracy, non-infringement of intellectual property rights other than copyright as stated in Article 6 of this Licence. This disclaimer of warranty is an essential part of the Licence and a condition for the grant of any rights to the Work. - -8. Disclaimer of Liability -Except in the cases of wilful misconduct or damages directly caused to natural persons, the -Licensor will in no event be liable for any direct or indirect, material or moral, damages of -any kind, arising out of the Licence or of the use of the Work, including without limitation, -damages for loss of goodwill, work stoppage, computer failure or malfunction, loss of data or -any commercial damage, even if the Licensor has been advised of the possibility of such -damage. However, the Licensor will be liable under statutory product liability laws as far such -laws apply to the Work. - -9. Additional agreements -While distributing the Original Work or Derivative Works, You may choose to conclude an -additional agreement to offer, and charge a fee for, acceptance of support, warranty, -indemnity, or other liability obligations and/or services consistent with this Licence. - -However, in accepting such obligations, You may act only on your own behalf and on your -sole responsibility, not on behalf of the original Licensor or any other Contributor, and only if -You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred -by, or claims asserted against such Contributor by the fact You have accepted any such -warranty or additional liability. - -10. Acceptance of the Licence -The provisions of this Licence can be accepted by clicking on an icon “I agree” placed under -the bottom of a window displaying the text of this Licence or by affirming consent in any -other similar way, in accordance with the rules of applicable law. Clicking on that icon -indicates your clear and irrevocable acceptance of this Licence and all of its terms and conditions. - -Similarly, you irrevocably accept this Licence and all of its terms and conditions by -exercising any rights granted to You by Article 2 of this Licence, such as the use of the Work, -the creation by You of a Derivative Work or the Distribution and/or Communication by You -of the Work or copies thereof. - -11. Information to the public -In case of any Distribution and/or Communication of the Work by means of electronic -communication by You (for example, by offering to download the Work from a remote -location) the distribution channel or media (for example, a website) must at least provide to -the public the information requested by the applicable law regarding the identification and -address of the Licensor, the Licence and the way it may be accessible, concluded, stored and -reproduced by the Licensee. - -12. Termination of the Licence -The Licence and the rights granted hereunder will terminate automatically upon any breach by -the Licensee of the terms of the Licence. - -Such a termination will not terminate the licences of any person who has received the Work -from the Licensee under the Licence, provided such persons remain in full compliance with -the Licence. - -13. Miscellaneous -Without prejudice of Article 9 above, the Licence represents the complete agreement between -the Parties as to the Work licensed hereunder. - -If any provision of the Licence is invalid or unenforceable under applicable law, this will not -affect the validity or enforceability of the Licence as a whole. Such provision will be -construed and/or reformed so as necessary to make it valid and enforceable. - -The European Commission may put into force translations and/or binding new versions of -this Licence, so far this is required and reasonable. New versions of the Licence will be -published with a unique version number. The new version of the Licence becomes binding for -You as soon as You become aware of its publication. - -14. Jurisdiction -Any litigation resulting from the interpretation of this License, arising between the European -Commission, as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court -of Justice of the European Communities, as laid down in article 238 of the Treaty establishing -the European Community. - -Any litigation arising between Parties, other than the European Commission, and resulting -from the interpretation of this License, will be subject to the exclusive jurisdiction of the -competent court where the Licensor resides or conducts its primary business. - -15. Applicable Law -This Licence shall be governed by the law of the European Union country where the Licensor resides or has his registered office. -This licence shall be governed by the Belgian law if: -− a litigation arises between the European Commission, as a Licensor, and any Licensee; -− the Licensor, other than the European Commission, has no residence or registered office inside a European Union country. - - ===Appendix -“Compatible Licences” according to article 5 EUPL are: -− General Public License (GPL) v. 2 -− Open Software License (OSL) v. 2.1, v. 3.0 -− Common Public License v. 1.0 -− Eclipse Public License v. 1.0 -− Cecill v. 2.0 - diff --git a/tests/licensedcode/data/licenses/eupl-1.0.yml b/tests/licensedcode/data/licenses/eupl-1.0.yml deleted file mode 100644 index 2cd11f4c189..00000000000 --- a/tests/licensedcode/data/licenses/eupl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - eupl-1.0 diff --git a/tests/licensedcode/data/licenses/eupl-1.1.txt b/tests/licensedcode/data/licenses/eupl-1.1.txt deleted file mode 100644 index 08472441666..00000000000 --- a/tests/licensedcode/data/licenses/eupl-1.1.txt +++ /dev/null @@ -1,260 +0,0 @@ -European Union Public Licence -V. 1.1 - -EUPL © the European Community 2007 - -This European Union Public Licence (the “EUPL”) applies to the Work or Software -(as defined below) which is provided under the terms of this Licence. Any use of the -Work, other than as authorised under this Licence is prohibited (to the extent such use -is covered by a right of the copyright holder of the Work). - -The Original Work is provided under the terms of this Licence when the Licensor (as -defined below) has placed the following notice immediately following the copyright -notice for the Original Work: - -Licensed under the EUPL V.1.1 - -or has expressed by any other mean his willingness to license under the EUPL. - -1. Definitions - -In this Licence, the following terms have the following meaning: - -- The Licence: this Licence. - -- The Original Work or the Software: the software distributed and/or communicated -by the Licensor under this Licence, available as Source Code and also as Executable -Code as the case may be. - -- Derivative Works: the works or software that could be created by the Licensee, -based upon the Original Work or modifications thereof. This Licence does not define -the extent of modification or dependence on the Original Work required in order to -classify a work as a Derivative Work; this extent is determined by copyright law -applicable in the country mentioned in Article 15. - -- The Work: the Original Work and/or its Derivative Works. - -- The Source Code: the human-readable form of the Work which is the most -convenient for people to study and modify. - -- The Executable Code: any code which has generally been compiled and which is -meant to be interpreted by a computer as a program. - -- The Licensor: the natural or legal person that distributes and/or communicates the -Work under the Licence. - -- Contributor(s): any natural or legal person who modifies the Work under the -Licence, or otherwise contributes to the creation of a Derivative Work. - -- The Licensee or “You”: any natural or legal person who makes any usage of the -Software under the terms of the Licence. - -- Distribution and/or Communication: any act of selling, giving, lending, renting, -distributing, communicating, transmitting, or otherwise making available, on-line or -off-line, copies of the Work or providing access to its essential functionalities at the -disposal of any other natural or legal person. - -2. Scope of the rights granted by the Licence - -The Licensor hereby grants You a world-wide, royalty-free, non-exclusive, sub- -licensable licence to do the following, for the duration of copyright vested in the -Original Work: - -- use the Work in any circumstance and for all usage, -- reproduce the Work, -- modify the Original Work, and make Derivative Works based upon the Work, -- communicate to the public, including the right to make available or display the -Work or copies thereof to the public and perform publicly, as the case may be, -the Work, -- distribute the Work or copies thereof, -- lend and rent the Work or copies thereof, -- sub-license rights in the Work or copies thereof. - -Those rights can be exercised on any media, supports and formats, whether now -known or later invented, as far as the applicable law permits so. - -In the countries where moral rights apply, the Licensor waives his right to exercise his -moral right to the extent allowed by law in order to make effective the licence of the -economic rights here above listed. - -The Licensor grants to the Licensee royalty-free, non exclusive usage rights to any -patents held by the Licensor, to the extent necessary to make use of the rights granted -on the Work under this Licence. - -3. Communication of the Source Code - -The Licensor may provide the Work either in its Source Code form, or as Executable -Code. If the Work is provided as Executable Code, the Licensor provides in addition a -machine-readable copy of the Source Code of the Work along with each copy of the -Work that the Licensor distributes or indicates, in a notice following the copyright -notice attached to the Work, a repository where the Source Code is easily and freely -accessible for as long as the Licensor continues to distribute and/or communicate the -Work. - -4. Limitations on copyright - -Nothing in this Licence is intended to deprive the Licensee of the benefits from any -exception or limitation to the exclusive rights of the rights owners in the Original -Work or Software, of the exhaustion of those rights or of other applicable limitations -thereto. - -5. Obligations of the Licensee - -The grant of the rights mentioned above is subject to some restrictions and obligations -imposed on the Licensee. Those obligations are the following: - -Attribution right: the Licensee shall keep intact all copyright, patent or trademarks -notices and all notices that refer to the Licence and to the disclaimer of warranties. -The Licensee must include a copy of such notices and a copy of the Licence with -every copy of the Work he/she distributes and/or communicates. The Licensee must -cause any Derivative Work to carry prominent notices stating that the Work has been -modified and the date of modification. - -Copyleft clause: If the Licensee distributes and/or communicates copies of the -Original Works or Derivative Works based upon the Original Work, this Distribution -and/or Communication will be done under the terms of this Licence or of a later -version of this Licence unless the Original Work is expressly distributed only under -this version of the Licence. The Licensee (becoming Licensor) cannot offer or impose -any additional terms or conditions on the Work or Derivative Work that alter or -restrict the terms of the Licence. - -Compatibility clause: If the Licensee Distributes and/or Communicates Derivative -Works or copies thereof based upon both the Original Work and another work -licensed under a Compatible Licence, this Distribution and/or Communication can be -done under the terms of this Compatible Licence. For the sake of this clause, -“Compatible Licence” refers to the licences listed in the appendix attached to this -Licence. Should the Licensee’s obligations under the Compatible Licence conflict -with his/her obligations under this Licence, the obligations of the Compatible Licence -shall prevail. - -Provision of Source Code: When distributing and/or communicating copies of the -Work, the Licensee will provide a machine-readable copy of the Source Code or -indicate a repository where this Source will be easily and freely available for as long -as the Licensee continues to distribute and/or communicate the Work. - -Legal Protection: This Licence does not grant permission to use the trade names, -trademarks, service marks, or names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and reproducing -the content of the copyright notice. - -6. Chain of Authorship - -The original Licensor warrants that the copyright in the Original Work granted -hereunder is owned by him/her or licensed to him/her and that he/she has the power -and authority to grant the Licence. - -Each Contributor warrants that the copyright in the modifications he/she brings to the -Work are owned by him/her or licensed to him/her and that he/she has the power and -authority to grant the Licence. - -Each time You accept the Licence, the original Licensor and subsequent Contributors -grant You a licence to their contributions to the Work, under the terms of this -Licence. - -7. Disclaimer of Warranty - -The Work is a work in progress, which is continuously improved by numerous -contributors. It is not a finished work and may therefore contain defects or “bugs” -inherent to this type of software development. - -For the above reason, the Work is provided under the Licence on an “as is” basis and -without warranties of any kind concerning the Work, including without limitation -merchantability, fitness for a particular purpose, absence of defects or errors, -accuracy, non-infringement of intellectual property rights other than copyright as -stated in Article 6 of this Licence. - -This disclaimer of warranty is an essential part of the Licence and a condition for the -grant of any rights to the Work. - -8. Disclaimer of Liability - -Except in the cases of wilful misconduct or damages directly caused to natural -persons, the Licensor will in no event be liable for any direct or indirect, material or -moral, damages of any kind, arising out of the Licence or of the use of the Work, -including without limitation, damages for loss of goodwill, work stoppage, computer -failure or malfunction, loss of data or any commercial damage, even if the Licensor -has been advised of the possibility of such damage. However, the Licensor will be -liable under statutory product liability laws as far such laws apply to the Work. - -9. Additional agreements - -While distributing the Original Work or Derivative Works, You may choose to -conclude an additional agreement to offer, and charge a fee for, acceptance of support, -warranty, indemnity, or other liability obligations and/or services consistent with this -Licence. However, in accepting such obligations, You may act only on your own -behalf and on your sole responsibility, not on behalf of the original Licensor or any -other Contributor, and only if You agree to indemnify, defend, and hold each -Contributor harmless for any liability incurred by, or claims asserted against such -Contributor by the fact You have accepted any such warranty or additional liability. - -10. Acceptance of the Licence - -The provisions of this Licence can be accepted by clicking on an icon “I agree” -placed under the bottom of a window displaying the text of this Licence or by -affirming consent in any other similar way, in accordance with the rules of applicable -law. Clicking on that icon indicates your clear and irrevocable acceptance of this -Licence and all of its terms and conditions. - -Similarly, you irrevocably accept this Licence and all of its terms and conditions by -exercising any rights granted to You by Article 2 of this Licence, such as the use of -the Work, the creation by You of a Derivative Work or the Distribution and/or -Communication by You of the Work or copies thereof. - -11. Information to the public - -In case of any Distribution and/or Communication of the Work by means of electronic -communication by You (for example, by offering to download the Work from a -remote location) the distribution channel or media (for example, a website) must at -least provide to the public the information requested by the applicable law regarding -the Licensor, the Licence and the way it may be accessible, concluded, stored and -reproduced by the Licensee. - -12. Termination of the Licence - -The Licence and the rights granted hereunder will terminate automatically upon any -breach by the Licensee of the terms of the Licence. - -Such a termination will not terminate the licences of any person who has received the -Work from the Licensee under the Licence, provided such persons remain in full -compliance with the Licence. - -13. Miscellaneous - -Without prejudice of Article 9 above, the Licence represents the complete agreement -between the Parties as to the Work licensed hereunder. - -If any provision of the Licence is invalid or unenforceable under applicable law, this -will not affect the validity or enforceability of the Licence as a whole. Such provision -will be construed and/or reformed so as necessary to make it valid and enforceable. - -The European Commission may publish other linguistic versions and/or new versions -of this Licence, so far this is required and reasonable, without reducing the scope of -the rights granted by the Licence. New versions of the Licence will be published with -a unique version number. - -All linguistic versions of this Licence, approved by the European Commission, have -identical value. Parties can take advantage of the linguistic version of their choice. - -14. Jurisdiction - -Any litigation resulting from the interpretation of this License, arising between the -European Commission, as a Licensor, and any Licensee, will be subject to the -jurisdiction of the Court of Justice of the European Communities, as laid down in -article 238 of the Treaty establishing the European Community. - -Any litigation arising between Parties, other than the European Commission, and -resulting from the interpretation of this License, will be subject to the exclusive -jurisdiction of the competent court where the Licensor resides or conducts its primary -business. - -15. Applicable Law - -This Licence shall be governed by the law of the European Union country where the -Licensor resides or has his registered office. - -This licence shall be governed by the Belgian law if: - -- a litigation arises between the European Commission, as a Licensor, and any -Licensee; -- the Licensor, other than the European Commission, has no residence or -registered office inside a European Union country. diff --git a/tests/licensedcode/data/licenses/eupl-1.1.yml b/tests/licensedcode/data/licenses/eupl-1.1.yml deleted file mode 100644 index dbca2a6c00d..00000000000 --- a/tests/licensedcode/data/licenses/eupl-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - eupl-1.1 diff --git a/tests/licensedcode/data/licenses/fastcgi-devkit.txt b/tests/licensedcode/data/licenses/fastcgi-devkit.txt deleted file mode 100644 index fe6d4ec3c4d..00000000000 --- a/tests/licensedcode/data/licenses/fastcgi-devkit.txt +++ /dev/null @@ -1,28 +0,0 @@ -This FastCGI application library source and object code (the -"Software") and its documentation (the "Documentation") are -copyrighted by Open Market, Inc ("Open Market"). The following terms -apply to all files associated with the Software and Documentation -unless explicitly disclaimed in individual files. - -Open Market permits you to use, copy, modify, distribute, and license -this Software and the Documentation for any purpose, provided that -existing copyright notices are retained in all copies and that this -notice is included verbatim in any distributions. No written -agreement, license, or royalty fee is required for any of the -authorized uses. Modifications to this Software and Documentation may -be copyrighted by their authors and need not follow the licensing -terms described here. If modifications to this Software and -Documentation have new licensing terms, the new terms must be clearly -indicated on the first page of each file where they apply. - -OPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE -SOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN -NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY -DAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE -DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR -CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR -LOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS". -OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR -OTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/fastcgi-devkit.yml b/tests/licensedcode/data/licenses/fastcgi-devkit.yml deleted file mode 100644 index 9833a1c909e..00000000000 --- a/tests/licensedcode/data/licenses/fastcgi-devkit.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - fastcgi-devkit diff --git a/tests/licensedcode/data/licenses/filament-group-mit.txt b/tests/licensedcode/data/licenses/filament-group-mit.txt deleted file mode 100644 index ef94ccdae79..00000000000 --- a/tests/licensedcode/data/licenses/filament-group-mit.txt +++ /dev/null @@ -1,24 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -The end-user documentation included with the redistribution, if any, must -include the following acknowledgment: "This product includes software -developed by Filament Group, Inc (http://www.filamentgroup.com/) and its -contributors", in the same place and form as other third-party acknowledgments. -Alternately, this acknowledgment may appear in the software itself, in the same -form and location as other such third-party acknowledgments. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/filament-group-mit.yml b/tests/licensedcode/data/licenses/filament-group-mit.yml deleted file mode 100644 index 83144fdfd4b..00000000000 --- a/tests/licensedcode/data/licenses/filament-group-mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - filament-group-mit -notes: similar to MIT but with Special Attribution Obligations diff --git a/tests/licensedcode/data/licenses/first-works-appreciative-1.2.txt b/tests/licensedcode/data/licenses/first-works-appreciative-1.2.txt deleted file mode 100644 index fdb0fe51ce4..00000000000 --- a/tests/licensedcode/data/licenses/first-works-appreciative-1.2.txt +++ /dev/null @@ -1,124 +0,0 @@ -First Works Appreciative License - -Version 1.2 -July 7, 2005 -Copyright (c) 2005 -Jonathan Michael Davis - - - -All Rights Reserved - - -This First Works Appreciative License (the "License") applies to any original -work of authorship (the "Original Work") under whose owner (the "Licensor") has -included and clearly referenced this license as part of the Original work, or -has placed the following notice immediately following or accompanying the -copyright notice for the Original Work: - - "Licensed under the First Works Appreciative License version 1.2" - -The recipient and/or of Original Work (the "Licensee") is hereby granted this -License. - -1) GRANT OF LICENSE. Licensor hereby grants to the Licensee a worldwide, - non-exclusive, perpetual license to exercise the following activities: - - a) to reproduce the Original Work in its original state; - - b) to prepare cooperative works in conjunction with the Original Work - that extend the functionality or usefulness of Original Work; - - c) to modify the Original Work (the "Modified Work") for personal use - or limited distribution, with the provision that copies of the - Modified Work shall conform to the obligations set forth by the - sections of this license entitled Conditions Of Redistribution - (section 2) and Limitations Of Derivative Work (section 3); - - d) to distribute copies of the Original Work and associated works to - the public, with the provision that copies of the Original Work - shall conform to the obligations set forth by the sections of this - license entitled Conditions Of Redistribution (section 2) and - Limitations Of Derivative Work (section 3); - - e) to perform the Original Work publicly or privately; - - f) to display the Original Work publicly or privately. - -2) CONDITIONS OF REDISTRIBUTION. The grant of copyright license for - redistribution is limited to the following conditions: - - a) Original authorship recognition shall be retained with all copies of - Original Work and Modified Work insomuch as was reflected by the - Original Work. Modified Work may assign new logos and other artwork - and designs to override Original Work, provided it does not negate - communication of original authorship or Licensor and identifies the - name and/or title of the Original Work. - - b) Distribution of Original Work may not directly profit, including - profitable sale of the Original Work, without permission from the - Licensor, whether accompanied with this License or provided to - Licensee as a separate exchange of communication or agreement. This - limitation DOES NOT hinder Licensee from bundling Original Work with - other work of value for profit, provided that the bundle is not - identified, labeled, described, or otherwise marketed with the - bundled work being the primary product associated with the bundle. - - c) Distribution of Modified Work may directly profit, including - profitable sale of the Modified Work, provided that the Licensee has - made a reasonable effort to obtain prior permission to perform the - work. Licensor reserves the right to deny permission if contacted. - However, the requirement of permission is dependent upon the - Licensor's accessibility, such as having a valid address. If the - Licensee can reasonably evidence that contact could not be made - with the Licensor to obtain permission within 60 days of reasonable - effort, obtainment of permission is not required, provided - subsection "d" is retained. - - d) Distribution of Modified Work shall not be granted unless either: - - 1. The modifications are reasonably minor, and the product is - clearly identified as modified, but the product otherwise - retains all identifications of the Original Work, with the - original author and Licensor retained. - - ii. The modifications are reasonably significant, and the - Modified Work has insignificant (less than 50%) dependence - upon the Original Work to maintain value or usefulness. - Ratio of dependence shall not be construed to assume - measurement based upon file size, lines of code, visual - exposure, or otherwise, but shall be measured fairly on a - case by case basis in a court of law or by a third party - mediator. - -3) LIMITATIONS OF DERIVATIVE WORK. Source code is provided freely for personal - use on the local machine, and for modifying Original Work to create Modified - Work for use on a personal basis on a local machine, or to distribute - according to the Conditions of Redistribution (section 2). Source code may - also be used for business use, but not for commercial use except as outlined - in Conditions of Redistribution (section 2). Source code is also provided - for unlimited educational use, provided that the Licensee is or represents - an established educational organization, and original authorship notations - and recognitions are retained. - -4) NO WARRANTY. Except as expressly set forth in this or any superseding - agreement, the Original Work 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 Original Work (or Modified Work) and assumes all risks - associated with its exercise of rights under this License, including but not - limited to the risks and costs of software errors, compliance with - applicable laws, damage to or loss of data, software or hardware, and - unavailability or interruption of operations. - -5) DISCLAIMER OF LIABILITY. Except as expressly set forth in this or any - superseding agreement, neither Licensee nor Licensor, nor any contributors - to Modified Works, 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 Original - Work or the exercise of any rights granted hereunder, even if advised of - the possibility of such damages. diff --git a/tests/licensedcode/data/licenses/first-works-appreciative-1.2.yml b/tests/licensedcode/data/licenses/first-works-appreciative-1.2.yml deleted file mode 100644 index c2619567871..00000000000 --- a/tests/licensedcode/data/licenses/first-works-appreciative-1.2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - first-works-appreciative-1.2 diff --git a/tests/licensedcode/data/licenses/fpl.txt b/tests/licensedcode/data/licenses/fpl.txt deleted file mode 100644 index aa0a3f55d0e..00000000000 --- a/tests/licensedcode/data/licenses/fpl.txt +++ /dev/null @@ -1,11 +0,0 @@ -Freeware Public License (FPL) - -This software is licensed as "freeware." Permission to distribute -this software in source and binary forms, including incorporation -into other products, is hereby granted without a fee. THIS SOFTWARE -IS PROVIDED 'AS IS' AND WITHOUT ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHOR SHALL NOT BE HELD -LIABLE FOR ANY DAMAGES RESULTING FROM THE USE OF THIS SOFTWARE, EITHER -DIRECTLY OR INDIRECTLY, INCLUDING, BUT NOT LIMITED TO, LOSS OF DATA -OR DATA BEING RENDERED INACCURATE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/fpl.yml b/tests/licensedcode/data/licenses/fpl.yml deleted file mode 100644 index eee8a5dc702..00000000000 --- a/tests/licensedcode/data/licenses/fpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - fpl diff --git a/tests/licensedcode/data/licenses/fplot.txt b/tests/licensedcode/data/licenses/fplot.txt deleted file mode 100644 index 04b9b60e94f..00000000000 --- a/tests/licensedcode/data/licenses/fplot.txt +++ /dev/null @@ -1,13 +0,0 @@ -This software is Freeware. - -Permission to use, copy, and distribute this software and its -documentation for any purpose with or without fee is hereby granted, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation. - -Permission to modify the software is granted, but not the right to -distribute the modified code. Modifications are to be distributed -as patches to released version. - -This software is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/fplot.yml b/tests/licensedcode/data/licenses/fplot.yml deleted file mode 100644 index 6856142d3d1..00000000000 --- a/tests/licensedcode/data/licenses/fplot.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - fplot diff --git a/tests/licensedcode/data/licenses/free-fork.txt b/tests/licensedcode/data/licenses/free-fork.txt deleted file mode 100644 index 322d018bc60..00000000000 --- a/tests/licensedcode/data/licenses/free-fork.txt +++ /dev/null @@ -1,70 +0,0 @@ -University of Washington's Free-Fork License - -University of Washington IMAP toolkit -Version 2002 of IMAP toolkit -Copyright 1988-2002 University of Washington - -This University of Washington Distribution (code and documentation) is -made available to the open source community as a public service by the -University of Washington. Contact the University of Washington at -imap-license@cac.washington.edu for information on other licensing -arrangements (e.g. for use in proprietary applications). - -Under this license, this Distribution may be modified and the original -version and modified versions may be copied, distributed, publicly -displayed and performed provided that the following conditions are -met: - -(1) modified versions are distributed with source code and -documentation and with permission for others to use any code and -documentation (whether in original or modified versions) as granted -under this license; - -(2) if modified, the source code, documentation, and user run-time -elements should be clearly labeled by placing an identifier of origin -(such as a name, initial, or other tag) after the version number; - -(3) users, modifiers, distributors, and others coming into possession -or using the Distribution in original or modified form accept the -entire risk as to the possession, use, and performance of the -Distribution; - -(4) this copyright management information (software identifier and -version number, copyright notice and license) shall be retained in all -versions of the Distribution; - -(5) the University of Washington may make modifications to the -Distribution that are substantially similar to modified versions of -the Distribution, and may make, use, sell, copy, distribute, publicly -display, and perform such modifications, including making such -modifications available under this or other licenses, without -obligation or restriction; - -(6) modifications incorporating code, libraries, and/or documentation -subject to any other open source license may be made, and the -resulting work may be distributed under the terms of such open source -license if required by that open source license, but doing so will not -affect this Distribution, other modifications made under this license -or modifications made under other University of Washington licensing -arrangements; - -(7) no permission is granted to distribute, publicly display, or -publicly perform modifications to the Distribution made using -proprietary materials that cannot be released in source format under -conditions of this license; - -(8) the name of the University of Washington may not be used in -advertising or publicity pertaining to Distribution of the software -without specific, prior written permission. - -This software is made available "as is", and - -THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR -IMPLIED, WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE, AND IN NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/free-fork.yml b/tests/licensedcode/data/licenses/free-fork.yml deleted file mode 100644 index 751a15dbd2f..00000000000 --- a/tests/licensedcode/data/licenses/free-fork.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - free-fork diff --git a/tests/licensedcode/data/licenses/freebsd-doc_1.txt b/tests/licensedcode/data/licenses/freebsd-doc_1.txt deleted file mode 100644 index dc261633f5d..00000000000 --- a/tests/licensedcode/data/licenses/freebsd-doc_1.txt +++ /dev/null @@ -1,7 +0,0 @@ -Redistribution and use in source (SGML DocBook) and 'compiled' forms (SGML, HTML, PDF, PostScript, RTF and so forth) with or without modification, are permitted provided that the following conditions are met: - - Redistributions of source code (SGML DocBook) must retain the above copyright notice, this list of conditions and the following disclaimer as the first lines of this file unmodified. - - Redistributions in compiled form (transformed to other DTDs, converted to PDF, PostScript, RTF and other formats) 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. - -THIS DOCUMENTATION IS PROVIDED BY THE FREEBSD DOCUMENTATION PROJECT "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 FREEBSD DOCUMENTATION PROJECT 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 DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/freebsd-doc_1.yml b/tests/licensedcode/data/licenses/freebsd-doc_1.yml deleted file mode 100644 index a252dff41f5..00000000000 --- a/tests/licensedcode/data/licenses/freebsd-doc_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - freebsd-doc diff --git a/tests/licensedcode/data/licenses/freebsd-doc_2.txt b/tests/licensedcode/data/licenses/freebsd-doc_2.txt deleted file mode 100644 index 879a513eae5..00000000000 --- a/tests/licensedcode/data/licenses/freebsd-doc_2.txt +++ /dev/null @@ -1,23 +0,0 @@ -Redistribution and use in source (XML DocBook) and 'compiled' forms (XML, -(X)HTML, PDF, PostScript, RTF and so forth) with or without modification, are -permitted provided that the following conditions are met: - -1. Redistributions of source code (XML DocBook) must retain the above copyright -notice, this list of conditions and the following disclaimer as the first lines -of this file unmodified. - -2. Redistributions in compiled form (transformed to other DTDs, converted to -PDF, PostScript, RTF and other formats) 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. - -Important: THIS DOCUMENTATION IS PROVIDED BY THE IZPACK PROJECT "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 IZPACK PROJECT 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 -DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tests/licensedcode/data/licenses/freebsd-doc_2.yml b/tests/licensedcode/data/licenses/freebsd-doc_2.yml deleted file mode 100644 index a252dff41f5..00000000000 --- a/tests/licensedcode/data/licenses/freebsd-doc_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - freebsd-doc diff --git a/tests/licensedcode/data/licenses/freetts.txt b/tests/licensedcode/data/licenses/freetts.txt deleted file mode 100644 index 2daf6557e04..00000000000 --- a/tests/licensedcode/data/licenses/freetts.txt +++ /dev/null @@ -1,23 +0,0 @@ -Permission is hereby granted, free of charge, to use and distribute - this software and its documentation without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of this work, and to - permit persons to whom this work is furnished to do so, subject to - the following conditions: - 1. The code must retain the above copyright notice, this list of - conditions and the following disclaimer. - 2. Any modifications must be clearly marked as such. - 3. Original authors' names are not deleted. - 4. The authors' names are not used to endorse or promote products - derived from this software without specific prior written - permission. - - THE UNIVERSITY OF EDINBURGH AND THE CONTRIBUTORS TO THIS WORK - DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING - ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT - SHALL THE UNIVERSITY OF EDINBURGH NOR THE CONTRIBUTORS BE LIABLE - FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN - AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, - ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF - THIS SOFTWARE. diff --git a/tests/licensedcode/data/licenses/freetts.yml b/tests/licensedcode/data/licenses/freetts.yml deleted file mode 100644 index 6d121184ae9..00000000000 --- a/tests/licensedcode/data/licenses/freetts.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - freetts diff --git a/tests/licensedcode/data/licenses/french_gfdl.yml b/tests/licensedcode/data/licenses/french_gfdl.yml index 940b28f0a74..8e42d4faa8a 100644 --- a/tests/licensedcode/data/licenses/french_gfdl.yml +++ b/tests/licensedcode/data/licenses/french_gfdl.yml @@ -1,2 +1,5 @@ license_expressions: - gfdl-1.1 + - unknown + - unknown + diff --git a/tests/licensedcode/data/licenses/frontier-1.0.txt b/tests/licensedcode/data/licenses/frontier-1.0.txt deleted file mode 100644 index 722efd03bc4..00000000000 --- a/tests/licensedcode/data/licenses/frontier-1.0.txt +++ /dev/null @@ -1,61 +0,0 @@ -The Frontier Artistic License - -The Frontier Artistic License Version 1.0 -Copyright © 1999 by Samuel Reynolds. -Derived from the Artistic License at OpenSource.org. -Submitted to OpenSource.org for Open Source Initiative certification. - -Plain-text version of this license -Preamble - -The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. - -Definitions - - "Package" refers to the script, suite, file, or collection of scripts, suites, and/or files distributed by the Copyright Holder, and to derivatives of that Package created through textual modification. - - "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. - - "Copyright Holder" is whoever is named in the copyright statement or statements for the package. - - "You" is you, if you're thinking about copying or distributing this Package. - - "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. - -Terms - -1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes, and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed script, suite, or file stating how and when you changed that script, suite, or file, and provided that you do at least ONE of the following: - - a) Use the modified Package only within your corporation or organization, or retain the modified Package solely for personal use. - - b) Place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. - - c) Rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page (or equivalent) for each non-standard executable that clearly documents how it differs from the Standard Version. - - d) Make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: - - a) Distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. - - b) Accompany the distribution with the machine-readable source of the Package with your modifications. - - c) Accompany any non-standard executables with their corresponding Standard Version executables, give the non-standard executables non-standard names, and clearly document the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. - - d) Make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. - -7. Scripts, suites, or programs supplied by you that depend on or otherwise make use of this Package shall not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/frontier-1.0.yml b/tests/licensedcode/data/licenses/frontier-1.0.yml deleted file mode 100644 index c422efdcb3c..00000000000 --- a/tests/licensedcode/data/licenses/frontier-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - frontier-1.0 diff --git a/tests/licensedcode/data/licenses/frontier-1.0_1.txt b/tests/licensedcode/data/licenses/frontier-1.0_1.txt deleted file mode 100644 index b2059c8644b..00000000000 --- a/tests/licensedcode/data/licenses/frontier-1.0_1.txt +++ /dev/null @@ -1,113 +0,0 @@ -THE FRONTIER ARTISTIC LICENSE Version 1.0 -Copyright (c) 1999 by Samuel Reynolds. -Derived from the "Artistic License" at "OpenSource.org". -Submitted to OpenSource.org for Open Source Initiative certification. - -PREAMBLE - -The intent of this document is to state the conditions under which a -Package may be copied, such that the Copyright Holder maintains some -semblance of artistic control over the development of the package, -while giving the users of the package the right to use and distribute -the Package in a more-or-less customary fashion, plus the right to -make reasonable modifications. - -DEFINITIONS - -o "Package" refers to the script, suite, file, or collection of scripts, - suites, and/or files distributed by the Copyright Holder, and to - derivatives of that Package created through textual modification. - -o "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes of the - Copyright Holder. - -o "Copyright Holder" is whoever is named in the copyright statement or - statements for the package. - -o "You" is you, if you're thinking about copying or distributing this - Package. - -o "Reasonable copying fee" is whatever you can justify on the basis of - media cost, duplication charges, time of people involved, and so on. - (You will not be required to justify it to the Copyright Holder, but - only to the computing community at large as a market that must bear the - fee.) - -o "Freely Available" means that no fee is charged for the item itself, - though there may be fees involved in handling the item. It also means - that recipients of the item may redistribute it under the same - conditions they received it. - -TERMS - -1. You may make and give away verbatim copies of the source form of the - Standard Version of this Package without restriction, provided that you - duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes, and other modifications - derived from the Public Domain or from the Copyright Holder. A Package - modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided - that you insert a prominent notice in each changed script, suite, or file - stating how and when you changed that script, suite, or file, and provided - that you do at least ONE of the following: - - a) Use the modified Package only within your corporation or - organization, or retain the modified Package solely for personal use. - - b) Place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or an - equivalent medium, or placing the modifications on a major archive site - such as ftp.uu.net, or by allowing the Copyright Holder to include your - modifications in the Standard Version of the Package. - - c) Rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide a - separate manual page (or equivalent) for each non-standard executable - that clearly documents how it differs from the Standard Version. - - d) Make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or - executable form, provided that you do at least ONE of the following: - - a) Distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - - b) Accompany the distribution with the machine-readable source of the - Package with your modifications. - - c) Accompany any non-standard executables with their corresponding - Standard Version executables, give the non-standard executables - non-standard names, and clearly document the differences in manual - pages (or equivalent), together with instructions on where to get the - Standard Version. - - d) Make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this - Package. You may charge any fee you choose for support of this Package. - You may not charge a fee for this Package itself. However, you may - distribute this Package in aggregate with other (possibly commercial) - programs as part of a larger (possibly commercial) software distribution - provided that you do not advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as - output from the programs of this Package do not automatically fall under - the copyright of this Package, but belong to whomever generated them, and - may be sold commercially, and may be aggregated with this Package. - -7. Scripts, suites, or programs supplied by you that depend on or - otherwise make use of this Package shall not be considered part of this - Package. - -8. The name of the Copyright Holder may not be used to endorse or promote - products derived from this software without specific prior written - permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/tests/licensedcode/data/licenses/frontier-1.0_1.yml b/tests/licensedcode/data/licenses/frontier-1.0_1.yml deleted file mode 100644 index 737e4cfa168..00000000000 --- a/tests/licensedcode/data/licenses/frontier-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - frontier-1.0 -notes: file with weird encoding diff --git a/tests/licensedcode/data/licenses/fsfap.txt b/tests/licensedcode/data/licenses/fsfap.txt deleted file mode 100644 index 7d672c2b7cd..00000000000 --- a/tests/licensedcode/data/licenses/fsfap.txt +++ /dev/null @@ -1 +0,0 @@ -Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/fsfap.yml b/tests/licensedcode/data/licenses/fsfap.yml deleted file mode 100644 index cec241b6eb4..00000000000 --- a/tests/licensedcode/data/licenses/fsfap.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - fsf-ap diff --git a/tests/licensedcode/data/licenses/ftpbean.txt b/tests/licensedcode/data/licenses/ftpbean.txt deleted file mode 100644 index f1c9cd9a701..00000000000 --- a/tests/licensedcode/data/licenses/ftpbean.txt +++ /dev/null @@ -1,21 +0,0 @@ -/* - * FtpBean Version 1.4.2 - * Copyright 1999 Calvin Tai - * E-mail: citidancer@hongkong.com - * URL: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean - * - * COPYRIGHT NOTICE - * Copyright 1999 Calvin Tai All Rights Reserved. - * - * FtpBean may be modified and used in any application free of charge by - * anyone so long as this copyright notice and the comments above remain - * intact. By using this code you agree to indemnify Calvin Tai from any - * liability that might arise from it's use. - * - * Selling the code for this java bean alone is expressly forbidden. - * In other words, please ask first before you try and make money off of - * this java bean as a standalone application. - * - * Obtain permission before redistributing this software over the Internet or - * in any other medium. In all cases copyright and header must remain intact. - */ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ftpbean.yml b/tests/licensedcode/data/licenses/ftpbean.yml deleted file mode 100644 index f35c64a734e..00000000000 --- a/tests/licensedcode/data/licenses/ftpbean.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ftpbean diff --git a/tests/licensedcode/data/licenses/fuse_lgpl.txt b/tests/licensedcode/data/licenses/fuse_lgpl.txt deleted file mode 100644 index 5ef3dc1fd7f..00000000000 --- a/tests/licensedcode/data/licenses/fuse_lgpl.txt +++ /dev/null @@ -1,3 +0,0 @@ - This program can be distributed under the terms of the GNU LGPLv2. - See the file COPYING.LIB. - diff --git a/tests/licensedcode/data/licenses/fuse_lgpl.yml b/tests/licensedcode/data/licenses/fuse_lgpl.yml deleted file mode 100644 index 768efc150b3..00000000000 --- a/tests/licensedcode/data/licenses/fuse_lgpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0 diff --git a/tests/licensedcode/data/licenses/gdcl.txt b/tests/licensedcode/data/licenses/gdcl.txt deleted file mode 100644 index c04f86953ed..00000000000 --- a/tests/licensedcode/data/licenses/gdcl.txt +++ /dev/null @@ -1,4 +0,0 @@ -Copyright (c) GDCL 2004-6. All Rights Reserved. -You are free to re-use this as the basis for your own filter development, -provided you retain this copyright notice in the source. -http://www.gdcl.co.uk \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gdcl.yml b/tests/licensedcode/data/licenses/gdcl.yml deleted file mode 100644 index 8cf164949fa..00000000000 --- a/tests/licensedcode/data/licenses/gdcl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gdcl diff --git a/tests/licensedcode/data/licenses/gfdl-1.2_1.txt b/tests/licensedcode/data/licenses/gfdl-1.2_1.txt deleted file mode 100644 index 267597f8b42..00000000000 --- a/tests/licensedcode/data/licenses/gfdl-1.2_1.txt +++ /dev/null @@ -1 +0,0 @@ -- license of manual now GFDL 1.2 or later, with no invariant sections. diff --git a/tests/licensedcode/data/licenses/gfdl-1.2_1.yml b/tests/licensedcode/data/licenses/gfdl-1.2_1.yml deleted file mode 100644 index 5a11591df5e..00000000000 --- a/tests/licensedcode/data/licenses/gfdl-1.2_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gfdl-1.2-plus diff --git a/tests/licensedcode/data/licenses/gl2ps.txt b/tests/licensedcode/data/licenses/gl2ps.txt deleted file mode 100644 index 1faa292c5eb..00000000000 --- a/tests/licensedcode/data/licenses/gl2ps.txt +++ /dev/null @@ -1,13 +0,0 @@ -GL2PS LICENSE Version 2, November 2003 - -Copyright (C) 2003, Christophe Geuzaine - -Permission to use, copy, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. - -Permission to modify and distribute modified versions of this software is granted, provided that: - -1) the modifications are licensed under the same terms as this software; - -2) you make available the source code of any modifications that you distribute, either on the same media as you distribute any executable or other form of this software, or via a mechanism generally accepted in the software development community for the electronic transfer of data. - -This software is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gl2ps.yml b/tests/licensedcode/data/licenses/gl2ps.yml deleted file mode 100644 index be6c08eda62..00000000000 --- a/tests/licensedcode/data/licenses/gl2ps.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gl2ps diff --git a/tests/licensedcode/data/licenses/glulxe.txt b/tests/licensedcode/data/licenses/glulxe.txt deleted file mode 100644 index bc3336792ff..00000000000 --- a/tests/licensedcode/data/licenses/glulxe.txt +++ /dev/null @@ -1,3 +0,0 @@ -The source code in this package is copyright 1999-2010 by Andrew Plotkin. - -You may copy and distribute it freely, by any means and under any conditions, as long as the code and documentation is not changed. You may also incorporate this code into your own program and distribute that, or modify this code and use and distribute the modified version, as long as you retain a notice in your program or documentation which mentions my name and the URL shown above. diff --git a/tests/licensedcode/data/licenses/glulxe.yml b/tests/licensedcode/data/licenses/glulxe.yml deleted file mode 100644 index 980a4beb369..00000000000 --- a/tests/licensedcode/data/licenses/glulxe.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - glulxe diff --git a/tests/licensedcode/data/licenses/gnuplot.txt b/tests/licensedcode/data/licenses/gnuplot.txt deleted file mode 100644 index c9d1a0f32bc..00000000000 --- a/tests/licensedcode/data/licenses/gnuplot.txt +++ /dev/null @@ -1,14 +0,0 @@ -Copyright 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley - -Permission to use, copy, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. - -Permission to modify the software is granted, but not the right to distribute the complete modified source code. Modifications are to be distributed as patches to the released version. Permission to distribute binaries produced by compiling modified sources is granted, provided you - - 1. distribute the corresponding source modifications from the released version in the form of a patch file along with the binaries, - 2. add special version identification to distinguish your version in addition to the base release version number, - 3. provide your name and address as the primary contact for the support of your modified version, and - 4. retain our contact information in regard to use of the base software. - -Permission to distribute the released version of the source code along with corresponding source modifications in the form of a patch file is granted with same provisions 2 through 4 for binary distributions. - -This software is provided "as is" without express or implied warranty to the extent permitted by applicable law. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gnuplot.yml b/tests/licensedcode/data/licenses/gnuplot.yml deleted file mode 100644 index ba046b75ff5..00000000000 --- a/tests/licensedcode/data/licenses/gnuplot.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gnuplot diff --git a/tests/licensedcode/data/licenses/google-analytics-tos_1.txt b/tests/licensedcode/data/licenses/google-analytics-tos_1.txt deleted file mode 100644 index fe474a215c0..00000000000 --- a/tests/licensedcode/data/licenses/google-analytics-tos_1.txt +++ /dev/null @@ -1,69 +0,0 @@ - -GOOGLE ANALYTICS TERMS OF SERVICE - -These Google Analytics Terms of Service (this "Agreement") are entered into by Google Inc. ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: -1. Definitions. - -"Account" refers to the billing account for the Service. All Profiles linked to a single Property will have their Hits aggregated before determining the charge for the Service for that Property. - -"Confidential Information" includes any proprietary data and any other information disclosed by one party to the other in writing and marked "confidential" or disclosed orally and, within five business days, reduced to writing and marked "confidential". However, Confidential Information will not include any information that is or becomes known to the general public, which is already in the receiving party's possession prior to disclosure by a party or which is independently developed by the receiving party without the use of Confidential Information. - -"Customer Data" means the data concerning the characteristics and activities of Visitors that is collected through use of the GATC and then forwarded to the Servers and analyzed by the Processing Software. - -"Documentation" means any accompanying documentation made available to You by Google for use with the Processing Software, including any documentation available online. - -"GATC" means the Google Analytics Tracking Code, which is installed on a Property for the purpose of collecting Customer Data, together with any fixes, updates and upgrades provided to You. - -"Hit" means the base unit that the Google Analytics system processes. A Hit may be a call to the Google Analytics system by various libraries, including, Javascript (ga.js, urchin.js), Silverlight, Flash, and Mobile. A Hit may currently be a page view, a transaction, item, or event. Hits may also be delivered to the Google Analytics system without using one of the various libraries by other Google Analytics-supported protocols and mechanisms the Service makes available to You. - -"Processing Software" means the Google Analytics server-side software and any upgrades, which analyzes the Customer Data and generates the Reports. - -"Profile" means the collection of settings that together determine the information to be included in, or excluded from, a particular Report. For example, a Profile could be established to view a small portion of a web site as a unique Report. There can be multiple Profiles established under a single Property. - -"Property" means a group of web pages or apps that are linked to an Account and use the same GATC. Each Property includes a default Profile that measures all pages within the Property. - -"Privacy Policy" means the privacy policy on a Property. - -"Report" means the resulting analysis shown at http://www.google.com/analytics for a Profile. - -"Servers" means the servers controlled by Google (or its wholly owned subsidiaries) on which the Processing Software and Customer Data are stored. - -"Software" means the GATC and the Processing Software. - -"Third Party" means any third party (i) to which You provide access to Your Account or (i) for which You use the Service to collect information on the third party's behalf. - -"Visitors" means visitors to Your Properties. - -The words "include" and "including" mean "including but not limited to." -2. Fees and Service. -Subject to Section 15, the Service is provided without charge to You for up to 10 million Hits per month per account. Google may change its fees and payment policies for the Service from time to time including the addition of costs for geographic data, the importing of cost data from search engines, or other fees charged to Google or its wholly-owned subsidiaries by third party vendors for the inclusion of data in the Service reports. The changes to the fees or payment policies are effective upon Your acceptance of those changes which will be posted at http://www.google.com/analytics. Unless otherwise stated, all fees are quoted in U.S. Dollars. Any outstanding balance becomes immediately due and payable upon termination of this Agreement and any collection expenses (including attorneys' fees) incurred by Google will be included in the amount owed, and may be charged to the credit card or other billing mechanism associated with Your AdWords account. -3. Member Account, Password, and Security. -To register for the Service, You must complete the registration process by providing Google with current, complete and accurate information as prompted by the registration form, including Your e-mail address (username) and password. You will protect Your passwords and take full responsibility for Your own, and third party, use of Your accounts. You are solely responsible for any and all activities that occur under Your Account. You will notify Google immediately upon learning of any unauthorized use of Your Account or any other breach of security. Google's (or its wholly-owned subsidiaries') support staff may, from time to time, log in to the Service under Your customer password in order to maintain or improve service, including to provide You assistance with technical or billing issues. -4. Nonexclusive License. -Subject to the terms and conditions of this Agreement, (a) Google grants You a limited, revocable, non-exclusive, non-sublicensable license to install, copy and use the GATC solely as necessary for You to use the Service on Your Properties or Third Party's Properties; and (b) You may remotely access, view and download Your Reports stored at http://www.google.com/analytics. You will not (and You will not allow any third party to) (i) copy, modify, adapt, translate or otherwise create derivative works of the Software or the Documentation; (ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software, except as expressly permitted by the law in effect in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or otherwise transfer rights in or to the Software, the Documentation or the Service; (iv) remove any proprietary notices or labels on the Software or placed by the Service; (v) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; or (vi) use data labeled as belonging to a third party in the Service for purposes other than generating, viewing, and downloading Reports. You will comply with all applicable laws and regulations in Your use of and access to the Documentation, Software, Service and Reports. -5. Confidentiality. -Neither party will use or disclose the other party's Confidential Information without the other's prior written consent except for the purpose of performing its obligations under this Agreement or if required by law, regulation or court order; in which case, the party being compelled to disclose Confidential Information will give the other party as much notice as is reasonably practicable prior to disclosing the Confidential Information. Upon termination of this Agreement, the parties will promptly either return or destroy all Confidential Information and, upon request, provide written certification of such. -6. Information Rights and Publicity. -Google and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at http://www.google.com/privacy.html), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures. -7. Privacy. -You will not (and will not allow any third party to) use the Service to track, collect or upload any data that personally identifies an individual (such as a name, email address or billing information), or other data which can be reasonably linked to such information by Google. You will have and abide by an appropriate Privacy Policy and will comply with all applicable laws and regulations relating to the collection of information from Visitors. You must post a Privacy Policy and that Privacy Policy must provide notice of Your use of cookies that are used to collect traffic data, and You must not circumvent any privacy features (e.g., an opt-out) that are part of the Service. - -You may participate in an integrated version of Google Analytics and any DoubleClick product or service or any other Google display ads product or service ("Google Analytics for Display Advertisers"). If You use Google Analytics for Display Advertisers, You will comply with the Google Analytics for Display Advertisers Policy (available at http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 ) and, as set forth in the policy, disclose in Your Privacy Policy (i) Your use of Google Analytics for Display Advertisers and its features You use, and (ii) how Visitors can opt-out from Google Analytics for Display Advertisers. Your access to and use of any DoubleClick or Google display ads data is subject to the applicable terms between You and Google. -8. Indemnification. -To the extent permitted by applicable law, You will indemnify, hold harmless and defend Google and its wholly owned subsidiaries, at Your expense, from any and all third-party claims, actions, proceedings, and suits brought against Google or any of its officers, directors, employees, agents or affiliates, and all related liabilities, damages, settlements, penalties, fines, costs or expenses (including, reasonable attorneys' fees and other litigation expenses) incurred by Google or any of its officers, directors, employees, agents or affiliates, arising out of or relating to (i) Your breach of any term or condition of this Agreement, (ii) Your use of the Service, (iii) Your violations of applicable laws, rules or regulations in connection with the Service, (iv) any representations and warranties made by You concerning any aspect of the Service, the Software or Reports to any Third Party; (v) any claims made by or on behalf of any Third Party pertaining directly or indirectly to Your use of the Service, the Software or Reports; (vi) violations of Your obligations of privacy to any Third Party; and (vii) any claims with respect to acts or omissions of any Third Party in connection with the Service, the Software or Reports. Google will provide You with written notice of any claim, suit or action from which You must indemnify Google. You will cooperate as fully as reasonably required in the defense of any claim. Google reserves the right, at its own expense, to assume the exclusive defense and control of any matter subject to indemnification by You. -9. Third Parties. -If You use the Service on behalf of the Third Party or a Third Party otherwise uses the Service through Your Account, whether or not You are authorized by Google to do so, then You represent and warrant that (a) You are authorized to act on behalf of, and bind to this Agreement, the Third Party to all obligations that You have under this Agreement, (b) Google may share with the Third Party any Customer Data that is specific to the Third Party's Properties, and (c) You will not disclose Third Party's Customer Data to any other party without the Third Party's consent. -10. DISCLAIMER OF WARRANTIES. -TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT. -11. LIMITATION OF LIABILITY. -TO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED SUBSIDIARIES' TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING TO THIS AGREEMENT WILL NOT EXCEED $500 (USD). -12. Proprietary Rights Notice. -The Service, which includes the Software and all Intellectual Property Rights therein are, and will remain, the property of Google (and its wholly owned subsidiaries). All rights in and to the Software not expressly granted to You in this Agreement are reserved and retained by Google and its licensors without restriction, including, Google's (and its wholly owned subsidiaries') right to sole ownership of the Software and Documentation. Without limiting the generality of the foregoing, You agree not to (and not to allow any third party to): (a) sublicense, distribute, or use the Service or Software outside of the scope of the license granted in this Agreement; (b) copy, modify, adapt, translate, prepare derivative works from, reverse engineer, disassemble, or decompile the Software or otherwise attempt to discover any source code or trade secrets related to the Service; (c) rent, lease, sell, assign or otherwise transfer rights in or to the Software or the Service; (d) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; (e) use the trademarks, trade names, service marks, logos, domain names and other distinctive brand features or any copyright or other proprietary rights associated with the Service for any purpose without the express written consent of Google; (f) register, attempt to register, or assist anyone else to register any trademark, trade name, serve marks, logos, domain names and other distinctive brand features, copyright or other proprietary rights associated with Google (or its wholly owned subsidiaries) other than in the name of Google (or its wholly owned subsidiaries, as the case may be); or (g) remove, obscure, or alter any notice of copyright, trademark, or other proprietary right appearing in or on any item included with the Service. -13. U.S. Government Rights. -If the use of the Service is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the Government's rights in the Software, including its rights to use, modify, reproduce, release, perform, display or disclose the Software or Documentation, will be subject in all respects to the commercial license rights and restrictions provided in this Agreement. -14. Term and Termination. -Either party may terminate this Agreement at any time with notice. Upon any termination of this Agreement, Google will stop providing, and You will stop accessing the Service; and You will delete all copies of the GATC from all Properties and certify thereto in writing to Google within 3 business days of such termination. In the event of any termination (a) You will not be entitled to any refunds of any usage fees or any other fees, and (b) any (i) outstanding balance for Service rendered through the date of termination, and (ii) other unpaid payment obligations during the remainder of the Initial Term will be immediately due and payable in full and (c) all of Your historical Report data will no longer be available to You. -15. Modifications to Terms of Service and Other Policies. -Google may modify these terms or any additional terms that apply to the Service to, for example, reflect changes to the law or changes to the Service. You should look at the terms regularly. Google will post notice of modifications to these terms at http://www.google.com/analytics or policies referenced in these terms at the applicable URL for such policies. Changes will not apply retroactively and will become effective no sooner than 14 days after they are posted. If You do not agree to the modified terms for the Service, You should discontinue Your use Google Analytics. No amendment to or modification of this Agreement will be binding unless (i) in writing and signed by a duly authorized representative of Google, (ii) You accept updated terms online, or (iii) You continue to use the Service after Google has posted updates to the Agreement or to any policy governing the Service. -16. Miscellaneous, Applicable Law and Venue. -Google will be excused from performance in this Agreement to the extent that performance is prevented, delayed or obstructed by causes beyond its reasonable control. This Agreement (including any amendment agreed upon by the parties in writing) represents the complete agreement between You and Google concerning its subject matter, and supersedes all prior agreements and representations between the parties. If any provision of this Agreement is held to be unenforceable for any reason, such provision will be reformed to the extent necessary to make it enforceable to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement will continue in full force and effect. This Agreement will be governed by and construed under the laws of the state of California without reference to its conflict of law principles. In the event of any conflicts between foreign law, rules, and regulations, and California law, rules, and regulations, California law, rules and regulations will prevail and govern. Each party agrees to submit to the exclusive and personal jurisdiction of the courts located in Santa Clara County, California. The United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act do not apply to this Agreement. The Software is controlled by U.S. Export Regulations, and it may be not be exported to or used by embargoed countries or individuals. Any notices to Google must be sent to: Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department, via first class or air mail or overnight courier, and are deemed given upon receipt. A waiver of any default is not a waiver of any subsequent default. You may not assign or otherwise transfer any of Your rights in this Agreement without Google's prior written consent, and any such attempt is void. The relationship between Google and You is not one of a legal partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/google-analytics-tos_1.yml b/tests/licensedcode/data/licenses/google-analytics-tos_1.yml deleted file mode 100644 index 7f299248c19..00000000000 --- a/tests/licensedcode/data/licenses/google-analytics-tos_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - google-analytics-tos diff --git a/tests/licensedcode/data/licenses/gpl-1.0-plus.txt b/tests/licensedcode/data/licenses/gpl-1.0-plus.txt deleted file mode 100644 index 1fb64448b09..00000000000 --- a/tests/licensedcode/data/licenses/gpl-1.0-plus.txt +++ /dev/null @@ -1,14 +0,0 @@ - - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 1, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-1.0-plus.yml b/tests/licensedcode/data/licenses/gpl-1.0-plus.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl-1.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_5.txt b/tests/licensedcode/data/licenses/gpl-2.0-autoconf_5.txt deleted file mode 100644 index f15e31c84e4..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_5.txt +++ /dev/null @@ -1,19 +0,0 @@ -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. diff --git a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_5.yml b/tests/licensedcode/data/licenses/gpl-2.0-autoconf_5.yml deleted file mode 100644 index 3359e6a5d7a..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus WITH autoconf-simple-exception-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_6.txt b/tests/licensedcode/data/licenses/gpl-2.0-autoconf_6.txt deleted file mode 100644 index 37c165fe21a..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_6.txt +++ /dev/null @@ -1,17 +0,0 @@ -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, see . -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. diff --git a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_6.yml b/tests/licensedcode/data/licenses/gpl-2.0-autoconf_6.yml deleted file mode 100644 index 3359e6a5d7a..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus WITH autoconf-simple-exception-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_7.txt b/tests/licensedcode/data/licenses/gpl-2.0-autoconf_7.txt deleted file mode 100644 index b2cbad4ad5b..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_7.txt +++ /dev/null @@ -1,17 +0,0 @@ -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, see . -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. diff --git a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_7.yml b/tests/licensedcode/data/licenses/gpl-2.0-autoconf_7.yml deleted file mode 100644 index 3359e6a5d7a..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-autoconf_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus WITH autoconf-simple-exception-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0-classpath.txt b/tests/licensedcode/data/licenses/gpl-2.0-classpath.txt deleted file mode 100644 index dad05a348af..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-classpath.txt +++ /dev/null @@ -1,11 +0,0 @@ - Linking this library statically or dynamically with other modules is making a combined work based on this -library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. - - As a special exception, the copyright holders of this library give you permission to link this library with -independent modules to produce an executable, regardless of the license terms of these independent modules, and -to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each -linked independent module, the terms and conditions of the license of that module. An independent module is a module -which is not derived from or based on this library. If you modify this library, you may extend this exception to your -version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception -statement from your version. - diff --git a/tests/licensedcode/data/licenses/gpl-2.0-classpath.yml b/tests/licensedcode/data/licenses/gpl-2.0-classpath.yml deleted file mode 100644 index 36794830769..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-classpath.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - classpath-exception-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0-libtool.txt b/tests/licensedcode/data/licenses/gpl-2.0-libtool.txt deleted file mode 100644 index d5b52efa9c1..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-libtool.txt +++ /dev/null @@ -1,15 +0,0 @@ -As a special exception to the GNU General Public License, -if you distribute this file as part of a program or library that -is built using GNU Libtool, you may include this file under the -same distribution terms that you use for the rest of that program. - -GNU Libtool is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GNU Libtool; see the file COPYING. If not, a copy -can be downloaded from http://www.gnu.org/licenses/gpl.html, or -obtained by writing to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0-libtool.yml b/tests/licensedcode/data/licenses/gpl-2.0-libtool.yml deleted file mode 100644 index fc09bb0fc30..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-libtool.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus WITH libtool-exception-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus-gcc.txt b/tests/licensedcode/data/licenses/gpl-2.0-plus-gcc.txt deleted file mode 100644 index cead58279ce..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus-gcc.txt +++ /dev/null @@ -1,9 +0,0 @@ - - - This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - - In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combined executable.) - - This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus-gcc.yml b/tests/licensedcode/data/licenses/gpl-2.0-plus-gcc.yml deleted file mode 100644 index 68277df566a..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus-gcc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus WITH gcc-linking-exception-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus-linking.txt b/tests/licensedcode/data/licenses/gpl-2.0-plus-linking.txt deleted file mode 100644 index f0a2708e0ea..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus-linking.txt +++ /dev/null @@ -1,6 +0,0 @@ -As a special exception, if you link this library with other files, -some of which are compiled with GCC, to produce an executable, -this library does not by itself cause the resulting executable to -be covered by the GNU General Public License. This exception does -not however invalidate any other reasons why the executable file -might be covered by the GNU General Public License. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus-linking.yml b/tests/licensedcode/data/licenses/gpl-2.0-plus-linking.yml deleted file mode 100644 index 27123a13a3d..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus-linking.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - linking-exception-2.0-plus diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus_10.txt b/tests/licensedcode/data/licenses/gpl-2.0-plus_10.txt deleted file mode 100644 index 59e58a3d3d9..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus_10.txt +++ /dev/null @@ -1,15 +0,0 @@ -GPL2 OR LATER - -is free software; you can redistribute it and/or modify (it)? -under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2.* -.*or \(at your option\) any later version - -.* is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details - -You should have received a copy of the GNU General Public License -along with .* if not, write to the Free Software -Foundation .* .*USA \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus_10.yml b/tests/licensedcode/data/licenses/gpl-2.0-plus_10.yml deleted file mode 100644 index 2b610937bd7..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus_14.txt b/tests/licensedcode/data/licenses/gpl-2.0-plus_14.txt deleted file mode 100644 index 1bf5010300d..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus_14.txt +++ /dev/null @@ -1,9 +0,0 @@ -#This program is free software; you can redistribute it and/or modify -#it under the terms of the GNU General Public License as published by -#the Free Software Foundation; either version 2 of the License, or -#(at your option) any later version. - - -#You should have received a copy of the GNU General Public License -#along with this program; if not, write to the Free Software -#Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus_14.yml b/tests/licensedcode/data/licenses/gpl-2.0-plus_14.yml deleted file mode 100644 index 2b610937bd7..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus_31.txt b/tests/licensedcode/data/licenses/gpl-2.0-plus_31.txt deleted file mode 100644 index fd82dfccab2..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus_31.txt +++ /dev/null @@ -1,4 +0,0 @@ -The 16FUSB software is licensed under the terms of the GNU General -Public License as published by the Free Software Foundation, either -version 2 of the license, or (at your option) any later version. A -copy of the GPL version 2 license can be found in the file COPYING. diff --git a/tests/licensedcode/data/licenses/gpl-2.0-plus_31.yml b/tests/licensedcode/data/licenses/gpl-2.0-plus_31.yml deleted file mode 100644 index 2b610937bd7..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0-plus_31.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/gpl-2.0_10.txt b/tests/licensedcode/data/licenses/gpl-2.0_10.txt deleted file mode 100644 index 034d0725501..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_10.txt +++ /dev/null @@ -1,280 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_10.yml b/tests/licensedcode/data/licenses/gpl-2.0_10.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_12.txt b/tests/licensedcode/data/licenses/gpl-2.0_12.txt deleted file mode 100644 index 7a0bd05b0b3..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_12.txt +++ /dev/null @@ -1 +0,0 @@ - MODULE_LICENSE("\x47\x50\x4c\x20\x76\x32"); \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_12.yml b/tests/licensedcode/data/licenses/gpl-2.0_12.yml deleted file mode 100644 index 0d2005815ce..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - gpl-2.0 -notes: The hex resolves to GPL v2 and per module.h this GPL-2.0 only diff --git a/tests/licensedcode/data/licenses/gpl-2.0_13.txt b/tests/licensedcode/data/licenses/gpl-2.0_13.txt deleted file mode 100644 index fa8011d5e42..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_13.txt +++ /dev/null @@ -1 +0,0 @@ -MODULE_LICENSE("\x47\x50\x4c\x20\x76\x32"); \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_13.yml b/tests/licensedcode/data/licenses/gpl-2.0_13.yml deleted file mode 100644 index 0d2005815ce..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - gpl-2.0 -notes: The hex resolves to GPL v2 and per module.h this GPL-2.0 only diff --git a/tests/licensedcode/data/licenses/gpl-2.0_14.txt b/tests/licensedcode/data/licenses/gpl-2.0_14.txt deleted file mode 100644 index 36b272b9d3d..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_14.txt +++ /dev/null @@ -1,15 +0,0 @@ -GPL 2 - -is free software; you can redistribute it and/or modify (it)? -under the terms of the GNU General Public License as -published by the Free Software Foundation; version 2 -of the License - -.* is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details - -You should have received a copy of the GNU General Public License -along with .* if not, write to the Free Software -Foundation .* .*USA \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_14.yml b/tests/licensedcode/data/licenses/gpl-2.0_14.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_24.txt b/tests/licensedcode/data/licenses/gpl-2.0_24.txt deleted file mode 100644 index 52a08bfc96b..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_24.txt +++ /dev/null @@ -1,3 +0,0 @@ -This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation version 2 of the License. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_24.yml b/tests/licensedcode/data/licenses/gpl-2.0_24.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_25.txt b/tests/licensedcode/data/licenses/gpl-2.0_25.txt deleted file mode 100644 index 8b33330fd1a..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_25.txt +++ /dev/null @@ -1 +0,0 @@ -\x47\x50\x4c\x20\x76\x32 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_25.yml b/tests/licensedcode/data/licenses/gpl-2.0_25.yml deleted file mode 100644 index 29cf819364d..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0 -notes: | - The hex "\x47\x50\x4c\x20\x76\x32" resolves to "GPL v2" diff --git a/tests/licensedcode/data/licenses/gpl-2.0_3.txt b/tests/licensedcode/data/licenses/gpl-2.0_3.txt deleted file mode 100644 index 623b6258a13..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_3.txt +++ /dev/null @@ -1,340 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. diff --git a/tests/licensedcode/data/licenses/gpl-2.0_3.yml b/tests/licensedcode/data/licenses/gpl-2.0_3.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_31.txt b/tests/licensedcode/data/licenses/gpl-2.0_31.txt deleted file mode 100644 index e024e6c161b..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_31.txt +++ /dev/null @@ -1,342 +0,0 @@ -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, located in the file LICENSE. - - -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type 'show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type 'show c' for details. - -The hypothetical commands 'show w' and 'show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than 'show w' and 'show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - 'Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_31.yml b/tests/licensedcode/data/licenses/gpl-2.0_31.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_31.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_33.txt b/tests/licensedcode/data/licenses/gpl-2.0_33.txt deleted file mode 100644 index 46fdb06145b..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_33.txt +++ /dev/null @@ -1,278 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. diff --git a/tests/licensedcode/data/licenses/gpl-2.0_33.yml b/tests/licensedcode/data/licenses/gpl-2.0_33.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_4.txt b/tests/licensedcode/data/licenses/gpl-2.0_4.txt deleted file mode 100644 index 04087bd5e8d..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_4.txt +++ /dev/null @@ -1,7 +0,0 @@ - - -a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. - - c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) diff --git a/tests/licensedcode/data/licenses/gpl-2.0_4.yml b/tests/licensedcode/data/licenses/gpl-2.0_4.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_43.txt b/tests/licensedcode/data/licenses/gpl-2.0_43.txt deleted file mode 100644 index 3de52cefce3..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_43.txt +++ /dev/null @@ -1,36 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - diff --git a/tests/licensedcode/data/licenses/gpl-2.0_43.yml b/tests/licensedcode/data/licenses/gpl-2.0_43.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_45.txt b/tests/licensedcode/data/licenses/gpl-2.0_45.txt deleted file mode 100644 index 733d054e144..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_45.txt +++ /dev/null @@ -1,4 +0,0 @@ -GNU Fortran comes with NO WARRANTY, to the extent permitted by law. -You may redistribute copies of GNU Fortran -under the terms of the GNU General Public License. -For more information about these matters, see the file named COPYING diff --git a/tests/licensedcode/data/licenses/gpl-2.0_45.yml b/tests/licensedcode/data/licenses/gpl-2.0_45.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl-2.0_46.txt b/tests/licensedcode/data/licenses/gpl-2.0_46.txt deleted file mode 100644 index d511905c164..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_46.txt +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/tests/licensedcode/data/licenses/gpl-2.0_46.yml b/tests/licensedcode/data/licenses/gpl-2.0_46.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_46.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_47.txt b/tests/licensedcode/data/licenses/gpl-2.0_47.txt deleted file mode 100644 index 6432f5fb689..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_47.txt +++ /dev/null @@ -1,340 +0,0 @@ -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. - diff --git a/tests/licensedcode/data/licenses/gpl-2.0_47.yml b/tests/licensedcode/data/licenses/gpl-2.0_47.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_47.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_49.txt b/tests/licensedcode/data/licenses/gpl-2.0_49.txt deleted file mode 100644 index 734e5c3cd5b..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_49.txt +++ /dev/null @@ -1,121 +0,0 @@ -GNU GENERAL PUBLIC LICENSE -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - - Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. - -Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification follow. - -GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. - - c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - - -Copyright (C) - -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this when it starts in an interactive mode: - -Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. - -, 1 April 1989 Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_49.yml b/tests/licensedcode/data/licenses/gpl-2.0_49.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_49.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_5.txt b/tests/licensedcode/data/licenses/gpl-2.0_5.txt deleted file mode 100644 index 397a1d47654..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_5.txt +++ /dev/null @@ -1,14 +0,0 @@ -GPL 2 - -is free software; you can redistribute it andor modify -it under the terms of the GNU General Public License Version 2 as -published by the Free Software Foundation - -.* is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details - -You should have received a copy of the GNU General Public License -along with .* if not, write to the Free Software -Foundation, Inc .* USA \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_5.yml b/tests/licensedcode/data/licenses/gpl-2.0_5.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_50.txt b/tests/licensedcode/data/licenses/gpl-2.0_50.txt deleted file mode 100644 index 4563809bcce..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_50.txt +++ /dev/null @@ -1,340 +0,0 @@ -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. - diff --git a/tests/licensedcode/data/licenses/gpl-2.0_50.yml b/tests/licensedcode/data/licenses/gpl-2.0_50.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_50.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-2.0_with_gpl-2.0-broadcom-linking.txt b/tests/licensedcode/data/licenses/gpl-2.0_with_gpl-2.0-broadcom-linking.txt deleted file mode 100644 index c35d281ad3c..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_with_gpl-2.0-broadcom-linking.txt +++ /dev/null @@ -1,23 +0,0 @@ -<:label-BRCM:2011:DUAL/GPL:standard - - Unless you and Broadcom execute a separate written software license - agreement governing use of this software, this software is licensed - to you under the terms of the GNU General Public License version 2 - (the "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, - with the following added to such license: - - As a special exception, the copyright holders of this software give - you permission to link this software with independent modules, and - to copy and distribute the resulting executable under terms of your - choice, provided that you also meet, for each linked independent - module, the terms and conditions of the license of that module. - An independent module is a module which is not derived from this - software. The special exception does not apply to any modifications - of the software. - - Not withstanding the above, under no circumstances may you combine - this software in any way with any other Broadcom software provided - under a license other than the GPL, without Broadcom's express prior - written consent. - - :> \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-2.0_with_gpl-2.0-broadcom-linking.yml b/tests/licensedcode/data/licenses/gpl-2.0_with_gpl-2.0-broadcom-linking.yml deleted file mode 100644 index 232b5308c38..00000000000 --- a/tests/licensedcode/data/licenses/gpl-2.0_with_gpl-2.0-broadcom-linking.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license diff --git a/tests/licensedcode/data/licenses/gpl-3.0-gcc.txt b/tests/licensedcode/data/licenses/gpl-3.0-gcc.txt deleted file mode 100644 index d263766bbe9..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0-gcc.txt +++ /dev/null @@ -1,30 +0,0 @@ -GCC RUNTIME LIBRARY EXCEPTION - -Version 3.1, 31 March 2009 - -Copyright © 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -This GCC Runtime Library Exception ("Exception") is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. - -When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception. - -0. Definitions. -A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library. - -"GCC" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions published by the FSF. - -"GPL-compatible Software" is software whose conditions of propagation, modification and use would permit combination with GCC in accord with the license of GCC. - -"Target Code" refers to output from any compiler for a real or virtual target processor architecture, in executable form or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not include data in any format that is used as a compiler intermediate representation, or used for producing a compiler intermediate representation. - -The "Compilation Process" transforms code entirely represented in non-intermediate languages designed for human-written code, and/or in Java Virtual Machine byte code, into Target Code. Thus, for example, use of source code generators and preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as starting with the output of the generators or preprocessors. - -A Compilation Process is "Eligible" if it is done using GCC, alone or with other GPL-compatible software, or if it is done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC intermediate representations would not qualify as an Eligible Compilation Process. - -1. Grant of Additional Permission. -You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules. - -2. No Weakening of GCC Copyleft. -The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl-3.0-gcc.yml b/tests/licensedcode/data/licenses/gpl-3.0-gcc.yml deleted file mode 100644 index 0c213cc8a0b..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0-gcc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gcc-exception-3.1 diff --git a/tests/licensedcode/data/licenses/gpl-3.0-plus_1.txt b/tests/licensedcode/data/licenses/gpl-3.0-plus_1.txt deleted file mode 100644 index 28b4130989f..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0-plus_1.txt +++ /dev/null @@ -1,15 +0,0 @@ -GPL 3 - -is free software; you can redistribute it and/or modify (it)? -under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 3 -.*or \(at your option\) any later version - -.* is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details - -You should have received a copy of the GNU General Public License -along with .* if not, write to the Free Software -Foundation .* .*USA diff --git a/tests/licensedcode/data/licenses/gpl-3.0-plus_1.yml b/tests/licensedcode/data/licenses/gpl-3.0-plus_1.yml deleted file mode 100644 index 9e6faf078d7..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0-plus diff --git a/tests/licensedcode/data/licenses/gpl-3.0-plus_with_classpath-fabric3.txt b/tests/licensedcode/data/licenses/gpl-3.0-plus_with_classpath-fabric3.txt deleted file mode 100644 index 0cf4f9522b5..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0-plus_with_classpath-fabric3.txt +++ /dev/null @@ -1,32 +0,0 @@ -* Fabric3 is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as -* published by the Free Software Foundation, either version 3 of -* the License, or (at your option) any later version, with the -* following exception: -* -* Linking this software statically or dynamically with other -* modules is making a combined work based on this software. -* Thus, the terms and conditions of the GNU General Public -* License cover the whole combination. -* -* As a special exception, the copyright holders of this software -* give you permission to link this software with independent -* modules to produce an executable, regardless of the license -* terms of these independent modules, and to copy and distribute -* the resulting executable under terms of your choice, provided -* that you also meet, for each linked independent module, the -* terms and conditions of the license of that module. An -* independent module is a module which is not derived from or -* based on this software. If you modify this software, you may -* extend this exception to your version of the software, but -* you are not obligated to do so. If you do not wish to do so, -* delete this exception statement from your version. -* -* Fabric3 is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty -* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -* See the GNU General Public License for more details. -* -* You should have received a copy of the -* GNU General Public License along with Fabric3. -* If not, see . diff --git a/tests/licensedcode/data/licenses/gpl-3.0-plus_with_classpath-fabric3.yml b/tests/licensedcode/data/licenses/gpl-3.0-plus_with_classpath-fabric3.yml deleted file mode 100644 index c7b7ffd813c..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0-plus_with_classpath-fabric3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0-plus WITH classpath-exception-2.0 diff --git a/tests/licensedcode/data/licenses/gpl-3.0_1.txt b/tests/licensedcode/data/licenses/gpl-3.0_1.txt deleted file mode 100644 index 818433ecc0e..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0_1.txt +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/tests/licensedcode/data/licenses/gpl-3.0_1.yml b/tests/licensedcode/data/licenses/gpl-3.0_1.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/licenses/gpl-3.0_3.txt b/tests/licensedcode/data/licenses/gpl-3.0_3.txt deleted file mode 100644 index 68b8c606fa8..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0_3.txt +++ /dev/null @@ -1,675 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. - diff --git a/tests/licensedcode/data/licenses/gpl-3.0_3.yml b/tests/licensedcode/data/licenses/gpl-3.0_3.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/licenses/gpl-3.0_4.txt b/tests/licensedcode/data/licenses/gpl-3.0_4.txt deleted file mode 100644 index 94a9ed024d3..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0_4.txt +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/tests/licensedcode/data/licenses/gpl-3.0_4.yml b/tests/licensedcode/data/licenses/gpl-3.0_4.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/licenses/gpl-3.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/licenses/gpl.txt b/tests/licensedcode/data/licenses/gpl.txt deleted file mode 100644 index e11b7d84414..00000000000 --- a/tests/licensedcode/data/licenses/gpl.txt +++ /dev/null @@ -1 +0,0 @@ -This file is released under General Public License \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl.yml b/tests/licensedcode/data/licenses/gpl.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_10.txt b/tests/licensedcode/data/licenses/gpl_10.txt deleted file mode 100644 index e9e6a975e77..00000000000 --- a/tests/licensedcode/data/licenses/gpl_10.txt +++ /dev/null @@ -1 +0,0 @@ -This software is released under the GPL \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl_10.yml b/tests/licensedcode/data/licenses/gpl_10.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_11.txt b/tests/licensedcode/data/licenses/gpl_11.txt deleted file mode 100644 index 258dc11d442..00000000000 --- a/tests/licensedcode/data/licenses/gpl_11.txt +++ /dev/null @@ -1 +0,0 @@ -This software is released under the GPL.[3] \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl_11.yml b/tests/licensedcode/data/licenses/gpl_11.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/licenses/gpl_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/licenses/gpl_16.txt b/tests/licensedcode/data/licenses/gpl_16.txt deleted file mode 100644 index 082f07c6e1c..00000000000 --- a/tests/licensedcode/data/licenses/gpl_16.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* This is GPL */ - diff --git a/tests/licensedcode/data/licenses/gpl_16.yml b/tests/licensedcode/data/licenses/gpl_16.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_17.txt b/tests/licensedcode/data/licenses/gpl_17.txt deleted file mode 100644 index 182616f6aa8..00000000000 --- a/tests/licensedcode/data/licenses/gpl_17.txt +++ /dev/null @@ -1 +0,0 @@ -This software is released under the GPL. #3 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl_17.yml b/tests/licensedcode/data/licenses/gpl_17.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/licenses/gpl_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/licenses/gpl_2.txt b/tests/licensedcode/data/licenses/gpl_2.txt deleted file mode 100644 index 55d4621533e..00000000000 --- a/tests/licensedcode/data/licenses/gpl_2.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* licensed under http://www.gnu.org/licenses/gpl.html */ - diff --git a/tests/licensedcode/data/licenses/gpl_2.yml b/tests/licensedcode/data/licenses/gpl_2.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_41.txt b/tests/licensedcode/data/licenses/gpl_41.txt deleted file mode 100644 index e3377147f26..00000000000 --- a/tests/licensedcode/data/licenses/gpl_41.txt +++ /dev/null @@ -1 +0,0 @@ -This software is released under the GPL. (3) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl_41.yml b/tests/licensedcode/data/licenses/gpl_41.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/licenses/gpl_41.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/licenses/gpl_45.txt b/tests/licensedcode/data/licenses/gpl_45.txt deleted file mode 100644 index 329b0d8fdce..00000000000 --- a/tests/licensedcode/data/licenses/gpl_45.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* My work is under the GNU GPL license */ - diff --git a/tests/licensedcode/data/licenses/gpl_45.yml b/tests/licensedcode/data/licenses/gpl_45.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_50.txt b/tests/licensedcode/data/licenses/gpl_50.txt deleted file mode 100644 index e19154b1f3e..00000000000 --- a/tests/licensedcode/data/licenses/gpl_50.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* GPL is what governs this work */ - diff --git a/tests/licensedcode/data/licenses/gpl_50.yml b/tests/licensedcode/data/licenses/gpl_50.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_50.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_51.txt b/tests/licensedcode/data/licenses/gpl_51.txt deleted file mode 100644 index aef77a768a8..00000000000 --- a/tests/licensedcode/data/licenses/gpl_51.txt +++ /dev/null @@ -1 +0,0 @@ -This software is released under the GPL. '3' \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl_51.yml b/tests/licensedcode/data/licenses/gpl_51.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/licenses/gpl_51.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/licenses/gpl_58.txt b/tests/licensedcode/data/licenses/gpl_58.txt deleted file mode 100644 index 43cea892f9a..00000000000 --- a/tests/licensedcode/data/licenses/gpl_58.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* licensed under http://www.fsf.org/licensing/licenses/gpl.html */ - diff --git a/tests/licensedcode/data/licenses/gpl_58.yml b/tests/licensedcode/data/licenses/gpl_58.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_82.txt b/tests/licensedcode/data/licenses/gpl_82.txt deleted file mode 100644 index 5350c97221e..00000000000 --- a/tests/licensedcode/data/licenses/gpl_82.txt +++ /dev/null @@ -1,3 +0,0 @@ -You can redistribute it and/or modify it under either -the terms of the GPL (see COPYING.txt file), or the -conditions below \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/gpl_82.yml b/tests/licensedcode/data/licenses/gpl_82.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_82.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_9.txt b/tests/licensedcode/data/licenses/gpl_9.txt deleted file mode 100644 index e89d077371c..00000000000 --- a/tests/licensedcode/data/licenses/gpl_9.txt +++ /dev/null @@ -1,12 +0,0 @@ - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 1,2,3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . diff --git a/tests/licensedcode/data/licenses/gpl_9.yml b/tests/licensedcode/data/licenses/gpl_9.yml deleted file mode 100644 index 65132aeb552..00000000000 --- a/tests/licensedcode/data/licenses/gpl_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/gpl_and_lgpl_3.txt b/tests/licensedcode/data/licenses/gpl_and_lgpl_3.txt deleted file mode 100644 index 5c64c68a93e..00000000000 --- a/tests/licensedcode/data/licenses/gpl_and_lgpl_3.txt +++ /dev/null @@ -1,9 +0,0 @@ -This file can can be used in projects which are not available under -the GNU General Public License or the GNU Library General Public -License but which still want to provide support for the GNU gettext -functionality. - -Please note that the actual code of the GNU gettext library is covered -by the GNU Library General Public License, and the rest of the GNU -gettext package package is covered by the GNU General Public License. -They are *not* in the public domain. diff --git a/tests/licensedcode/data/licenses/gpl_and_lgpl_3.yml b/tests/licensedcode/data/licenses/gpl_and_lgpl_3.yml deleted file mode 100644 index e80e383fa94..00000000000 --- a/tests/licensedcode/data/licenses/gpl_and_lgpl_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus AND lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/graphics-gems.txt b/tests/licensedcode/data/licenses/graphics-gems.txt deleted file mode 100644 index 9a8a06f0db8..00000000000 --- a/tests/licensedcode/data/licenses/graphics-gems.txt +++ /dev/null @@ -1,5 +0,0 @@ -LICENSE - -This code repository predates the concept of Open Source, and predates most licenses along such lines. As such, the official license truly is: - -EULA: The Graphics Gems code is copyright-protected. In other words, you cannot claim the text of the code as your own and resell it. Using the code is permitted in any program, product, or library, non-commercial or commercial. Giving credit is not required, though is a nice gesture. The code comes as-is, and if there are any flaws or problems with any Gems code, nobody involved with Gems - authors, editors, publishers, or webmasters - are to be held responsible. Basically, don't be a jerk, and remember that anything free comes with no guarantee. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/graphics-gems.yml b/tests/licensedcode/data/licenses/graphics-gems.yml deleted file mode 100644 index a3cb430cf92..00000000000 --- a/tests/licensedcode/data/licenses/graphics-gems.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - graphics-gems diff --git a/tests/licensedcode/data/licenses/haskell-report.txt b/tests/licensedcode/data/licenses/haskell-report.txt deleted file mode 100644 index 89d3d79a6b6..00000000000 --- a/tests/licensedcode/data/licenses/haskell-report.txt +++ /dev/null @@ -1,6 +0,0 @@ -Code derived from the document "Report on the Programming Language -Haskell 2010", is distributed under the following license: - -Copyright (c) 2010 Simon Marlow - -The authors intend this Report to belong to the entire Haskell community, and so we grant permission to copy and distribute it for any purpose, provided that it is reproduced in its entirety, including this Notice. Modified versions of this Report may also be copied and distributed for any purpose, provided that the modified version is clearly presented as such, and that it does not claim to be a definition of the Haskell 2010 Language. diff --git a/tests/licensedcode/data/licenses/haskell-report.yml b/tests/licensedcode/data/licenses/haskell-report.yml deleted file mode 100644 index 0231e530f35..00000000000 --- a/tests/licensedcode/data/licenses/haskell-report.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - haskell-report diff --git a/tests/licensedcode/data/licenses/henry-spencer-1999_base.txt b/tests/licensedcode/data/licenses/henry-spencer-1999_base.txt deleted file mode 100644 index a2e1ec56922..00000000000 --- a/tests/licensedcode/data/licenses/henry-spencer-1999_base.txt +++ /dev/null @@ -1,23 +0,0 @@ - * Development of this software was funded, in part, by Cray Research Inc., - * UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics - * Corporation, none of whom are responsible for the results. The author - * thanks all of them. - * - * Redistribution and use in source and binary forms - with or without - * modification - are permitted for any purpose, provided that redistributions - * in source form retain this entire copyright notice and indicate the origin - * and nature of any modifications. - * - * I'd appreciate being given credit for this package in the documentation of - * software which uses it, but that is not a requirement. - * - * THIS SOFTWARE IS PROVIDED ``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 - * HENRY SPENCER 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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/henry-spencer-1999_base.yml b/tests/licensedcode/data/licenses/henry-spencer-1999_base.yml deleted file mode 100644 index f9289212a16..00000000000 --- a/tests/licensedcode/data/licenses/henry-spencer-1999_base.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - henry-spencer-1999 diff --git a/tests/licensedcode/data/licenses/hidapi.txt b/tests/licensedcode/data/licenses/hidapi.txt deleted file mode 100644 index ac0372d5cbc..00000000000 --- a/tests/licensedcode/data/licenses/hidapi.txt +++ /dev/null @@ -1 +0,0 @@ -This software may be used by anyone for any reason so long as the copyright notice in the source files remains intact. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/hidapi.yml b/tests/licensedcode/data/licenses/hidapi.yml deleted file mode 100644 index 03895b00d88..00000000000 --- a/tests/licensedcode/data/licenses/hidapi.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - hidapi diff --git a/tests/licensedcode/data/licenses/hp_notice.txt b/tests/licensedcode/data/licenses/hp_notice.txt deleted file mode 100644 index a927abd0d56..00000000000 --- a/tests/licensedcode/data/licenses/hp_notice.txt +++ /dev/null @@ -1,10 +0,0 @@ -To anyone who acknowledges that this file is provided "AS IS" -without any express or implied warranty: - permission to use, copy, modify, and distribute this file -for any purpose is hereby granted without fee, provided that -the above copyright notice and this notice appears in all -copies, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -Hewlett-Packard Company makes no representations about the -suitability of this software for any purpose. diff --git a/tests/licensedcode/data/licenses/hp_notice.yml b/tests/licensedcode/data/licenses/hp_notice.yml deleted file mode 100644 index f4a28fec470..00000000000 --- a/tests/licensedcode/data/licenses/hp_notice.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - osf-1990 diff --git a/tests/licensedcode/data/licenses/hs-regexp.RULE b/tests/licensedcode/data/licenses/hs-regexp.RULE deleted file mode 100644 index b149a649bd0..00000000000 --- a/tests/licensedcode/data/licenses/hs-regexp.RULE +++ /dev/null @@ -1,19 +0,0 @@ -This software is not subject to any license of the American Telephone -and Telegraph Company or of the Regents of the University of California. - -Permission is granted to anyone to use this software for any purpose on -any computer system, and to alter it and redistribute it, subject -to the following restrictions: - -1. The author is not responsible for the consequences of use of this - software, no matter how awful, even if they arise from flaws in it. - -2. The origin of this software must not be misrepresented, either by - explicit claim or by omission. Since few users ever read sources, - credits must appear in the documentation. - -3. Altered versions must be plainly marked as such, and must not be - misrepresented as being the original software. Since few users - ever read sources, credits must appear in the documentation. - -4. This notice may not be removed or altered. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/hs-regexp.yml b/tests/licensedcode/data/licenses/hs-regexp.yml deleted file mode 100644 index f71298a0f27..00000000000 --- a/tests/licensedcode/data/licenses/hs-regexp.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - hs-regexp diff --git a/tests/licensedcode/data/licenses/ian-kaplan.txt b/tests/licensedcode/data/licenses/ian-kaplan.txt deleted file mode 100644 index 74031afc2a4..00000000000 --- a/tests/licensedcode/data/licenses/ian-kaplan.txt +++ /dev/null @@ -1,11 +0,0 @@ -/* - Copyright stuff - - Use of this program, for any purpose, is granted the author, - Ian Kaplan, as long as this copyright notice is included in - the source code or any source code derived from this program. - The user assumes all responsibility for using this code. - - Ian Kaplan, October 1996 - -*/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ian-kaplan.yml b/tests/licensedcode/data/licenses/ian-kaplan.yml deleted file mode 100644 index a7ec179d5ca..00000000000 --- a/tests/licensedcode/data/licenses/ian-kaplan.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ian-kaplan diff --git a/tests/licensedcode/data/licenses/ian-piumarta.txt b/tests/licensedcode/data/licenses/ian-piumarta.txt deleted file mode 100644 index 308d7d3b06f..00000000000 --- a/tests/licensedcode/data/licenses/ian-piumarta.txt +++ /dev/null @@ -1,11 +0,0 @@ - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the 'Software'), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, provided that the above copyright notice(s) and this - * permission notice appear in all copies of the Software. Acknowledgement - * of the use of this Software in supporting documentation would be - * appreciated but is not required. - * - * THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ian-piumarta.yml b/tests/licensedcode/data/licenses/ian-piumarta.yml deleted file mode 100644 index 68cfd15bdc0..00000000000 --- a/tests/licensedcode/data/licenses/ian-piumarta.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ian-piumarta diff --git a/tests/licensedcode/data/licenses/ibm-developerworks-community-download.txt b/tests/licensedcode/data/licenses/ibm-developerworks-community-download.txt deleted file mode 100644 index c6a6fd75e70..00000000000 --- a/tests/licensedcode/data/licenses/ibm-developerworks-community-download.txt +++ /dev/null @@ -1,20 +0,0 @@ -Download of Content Agreement -The following are terms of a legal downloader agreement (the "Agreement") regarding Your download of Content (as defined below) from this Website. IBM may change these terms of use and other requirements and guidelines for use of this Website at its sole discretion. This Website may contain other proprietary notices and copyright information (http://www.ibm.com/developerworks/exchange), the terms of which must be observed and followed. Any use of the Content in violation of this Agreement is strictly prohibited. - -"Content" includes, but is not limited to software, text and/or speech files, code, associated materials, media and /or documentation that You download from this Website. The Content may be provided by IBM or third-parties. IBM-Content is owned by IBM and is copyrighted and licensed, not sold. Third-party Content is owned by its respective owner and is licensed by the third party directly to You. IBM's decision to permit posting of third-party Content does not constitute an express or implied license from IBM to You or a recommendation or endorsement by IBM of any particular product, service, company or technology. - -The party providing the Content (the "Provider") grants You a nonexclusive, worldwide, irrevocable, royalty-free, copyright license to edit, copy, reproduce, publish, publicly display and/or perform, format, modify and/or make derivative works of, translate, re-arrange, and distribute the Content or any portions thereof and to sublicense any or all such rights and to permit sublicensees to further sublicense such rights, for both commercial and non-commercial use, provided You abide by the terms of this Agreement. You understand that no assurances are provided that the Content does not infringe the intellectual property rights of any other entity. Neither IBM nor the provider of the Content grants a patent license of any kind, whether expressed or implied or by estoppel. As a condition of exercising the rights and licenses granted under this Agreement, You assume sole responsibility to obtain any other intellectual property rights needed. - -The Provider of the Content is the party that submitted the Content for Posting and who represents and warrants that they own all of the Content, (or have obtained all written releases, authorizations and licenses from any other owner(s) necessary to grant IBM and downloaders this license with respect to portions of the Content not owned by the Provider). All information provided on or through this Website may be changed or updated without notice. You understand that IBM has no obligation to check information and/or Content on the Website and that the information and/or Content provided on this Web site may contain technical inaccuracies or typographical errors. - -IBM may, in its sole discretion, discontinue the Website, any service provided on or through the Website, as well as limit or discontinue access to any Content posted on the Website for any reason without notice. IBM may terminate this Agreement and Your rights to access, use and download Content from the Website at any time, with or without cause, immediately and without notice. - -ALL INFORMATION AND CONTENT IS PROVIDED ON AN "AS IS" BASIS. IBM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, CONCERNING USE OF THE WEBSITE, THE CONTENT, OR THE COMPLETENESS OR ACCURACY OF THE CONTENT OR INFORMATION OBTAINED FROM THE WEBSITE. IBM SPECIFICALLY DISCLAIMS ALL WARRANTIES WITH REGARD TO THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IBM DOES NOT WARRANT UNINTERRUPTED OR ERROR-FREE OPERATION OF ANY CONTENT. IBM IS NOT RESPONSIBLE FOR THE RESULTS OBTAINED FROM THE USE OF THE CONTENT OR INFORMATION OBTAINED FROM THE WEBSITE. - -LIMITATION OF LIABILITY. IN NO EVENT WILL IBM BE LIABLE TO ANY PARTY FOR ANY DIRECT, INDIRECT, SPECIAL OR OTHER CONSEQUENTIAL DAMAGES FOR ANY USE OF THIS WEBSITE, THE USE OF CONTENT FROM THIS WEBSITE, OR ON ANY OTHER HYPER LINKED WEB SITE, INCLUDING, WITHOUT LIMITATION, ANY LOST PROFITS, BUSINESS INTERRUPTION, LOSS OF PROGRAMS OR OTHER DATA ON YOUR INFORMATION HANDLING SYSTEM OR OTHERWISE, EVEN IF IBM IS EXPRESSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -The laws of the State of New York, USA govern this Agreement, without reference to conflict of law principles. The "United Nations Convention on International Sale of Goods" does not apply. This Agreement may not be assigned by You. The parties agree to waive their right to a trial by jury. - -This Agreement is the complete and exclusive agreement between the parties and supersedes all prior agreements, oral or written, and all other communications relating to the subject matter hereof. For clarification, it is understood and You agree, that any additional agreement or license terms that may accompany the Content is invalid, void, and non-enforceable to any downloader of this Content including IBM. - -If any section of this Agreement is found by competent authority to be invalid, illegal or unenforceable in any respect for any reason, the validity, legality and enforceability of any such section in every other respect and the remainder of this Agreement shall continue in effect. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ibm-developerworks-community-download.yml b/tests/licensedcode/data/licenses/ibm-developerworks-community-download.yml deleted file mode 100644 index 71ba955c19b..00000000000 --- a/tests/licensedcode/data/licenses/ibm-developerworks-community-download.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ibm-developerworks-community-download diff --git a/tests/licensedcode/data/licenses/ibm-nwsc.txt b/tests/licensedcode/data/licenses/ibm-nwsc.txt deleted file mode 100644 index 464b0c4cf75..00000000000 --- a/tests/licensedcode/data/licenses/ibm-nwsc.txt +++ /dev/null @@ -1,89 +0,0 @@ -IBM International License Agreement for Non-Warranted Sample Code - -Part 1 - General Terms ------------------------------------------------------------ -PLEASE READ THIS AGREEMENT CAREFULLY BEFORE DOWNLOADING THE SAMPLE CODE. IBM WILL LICENSE THE SAMPLE CODE TO YOU ONLY IF YOU FIRST ACCEPT THE TERMS OF THIS AGREEMENT. BY DOWNLOADING THE SAMPLE CODE YOU AGREE TO THESE TERMS. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD THE SAMPLE CODE. - -The Sample Code is authored by International Business Machines Corporation or one of its subsidiaries (IBM) or an IBM supplier, and is copyrighted and licensed, not sold. - -The term "Sample Code" means a program, or portion of a program, being distributed in its source programming language and all whole or partial copies of it. - -This Agreement includes Part 1 - General Terms and Part 2 - Country-unique Terms and is the complete agreement regarding the use of this Sample Code, and replaces any prior oral or written communications between you and IBM. The terms of Part 2 may replace or modify those of Part 1. - -1. License - -IBM grants you a nonexclusive license to use, copy, or modify the Sample Code. You may include the Sample Code in programs for your own use or for commercial sale. - -You will ensure that anyone who uses the sample code does so only in compliance with the terms of this Agreement. - - -2. No Warranty - -The Sample Code has not been submitted to any formal IBM test and is distributed "AS IS". Use of the Sample Code, or implementation of any techniques contained in the code, is a customer responsibility and depends on the customer's ability to evaluate and integrate the code into the customer's operational environment. While sample code may have been reviewed by IBM for accuracy in a specific situation there is no guarantee that the same or similar results will be obtained elsewhere. Customers attempting to use Sample Code in their own environments do so at their own risk. - -SUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, IBM MAKES NO WARRANTIES OR CONDITIONS EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, THE WARRANTY OF NON-INFRINGEMENT AND THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE SAMPLE CODE. - -The exclusion also applies to any of IBM's subcontractors, suppliers, or program developers (collectively called "Suppliers"). - -3. Limitation of Liability - -NEITHER IBM NOR ITS SUPPLIERS WILL BE LIABLE FOR ANY DIRECT OR INDIRECT DAMAGES, INCLUDING WITHOUT LIMITATION, LOST PROFITS, LOST SAVINGS, OR ANY INCIDENTAL, SPECIAL, OR OTHER ECONOMIC CONSEQUENTIAL DAMAGES, EVEN IF IBM IS INFORMED OF THEIR POSSIBILITY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO YOU. - -4. General - -Nothing in this Agreement affects any statutory rights of consumers that cannot be waived or limited by contract. - -IBM may terminate your license if you fail to comply with the terms of this Agreement. If IBM does so, you must immediately destroy the Sample Code and all copies you made of it. - -You agree to comply with applicable export laws and regulations. - -Neither you nor IBM will bring a legal action under this Agreement more than two years after the cause of action arose unless otherwise provided by local law without the possibility of contractual waiver or limitation. - -Neither you nor IBM is responsible for failure to fulfill any obligations due to causes beyond its control. - -IBM does not provide program services or technical support, unless IBM specifies otherwise. - -The laws of the country in which you acquire the Sample Code govern this Agreement, except 1) in Australia, the laws of the State or Territory in which the transaction is performed govern this Agreement; 2) in Albania, Armenia, Belarus, Bosnia/Herzegovina, Bulgaria, Croatia, Czech Republic, Federal Republic of Yugoslavia, Georgia, Hungary, Kazakhstan, Kirghizia, Former Yugoslav Republic of Macedonia (FYROM), Moldova, Poland, Romania, Russia, Slovak Republic, Slovenia, and Ukraine, the laws of Austria govern this Agreement; 3) in the United Kingdom, all disputes relating to this Agreement will be governed by English Law and will be submitted to the exclusive jurisdiction of the English courts; 4) in Canada, the laws in the Province of Ontario govern this Agreement; and 5) in the United States and Puerto Rico, and People's Republic of China, the laws of the State of New York govern this Agreement. - - - -IBM International License Agreement for Non-Warranted Sample Code - -Part 2 - Country-unique Terms ------------------------------------------------------------ -AUSTRALIA: No Warranty (Section 2): The following paragraph is added to this Section: -Although IBM specifies that there are no warranties, you may have certain rights under the Trade Practices Act 1974 or other legislation and are only limited to the extent permitted by the applicable legislation. - -Limitation of Liability (Section 3): The following paragraph is added to this Section: -Where IBM is in breach of a condition or warranty implied by the Trade Practices Act 1974, IBM's liability is limited to the repair or replacement of the goods, or the supply of equivalent goods. Where that condition or warranty relates to right to sell, quiet possession or clear title, or the goods are of a kind ordinarily acquired for personal, domestic or household use or consumption, then none of the limitations in this paragraph apply. - - -GERMANY: No Warranty (Section 2): The following paragraph is added to this Section: -The minimum warranty period for Sample Code is six months. - -Limitation of Liability (Section 3): The following paragraph is added to this Section: -The limitations and exclusions specified in the Agreement will not apply to damages caused by IBM with fraud or gross negligence, and for express warranty. - - -INDIA: General (Section 4 ): The following replaces the fourth paragraph of this Section: -If no suit or other legal action is brought, within two years after the cause of action arose, in respect of any claim that either party may have against the other, the rights of the concerned party in respect of such claim will be forfeited and the other party will stand released from its obligations in respect of such claim. - - -IRELAND: No Warranty (Section 2): The following paragraph is added to this Section: -Except as expressly provided in these terms and conditions, all statutory conditions, including all warranties implied, but without prejudice to the generality of the foregoing, all warranties implied by the Sale of Goods Act 1893 or the Sale of Goods and Supply of Services Act 1980 are hereby excluded. - - -ITALY: Limitation of Liability (Section 3): This Section is replaced by the following: -Unless otherwise provided by mandatory law, IBM is not liable for any damages which might arise. - - -NEW ZEALAND: No Warranty (Section 2 ): The following paragraph is added to this Section: -Although IBM specifies that there are no warranties, you may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods or services which IBM provides, if you require the goods or services for the purposes of a business as defined in that Act. - -Limitation of Liability (Section 3): The following paragraph is added to this Section: -Where Sample Code is not acquired for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act. - - - -UNITED KINGDOM: Limitation of Liability (Section 3 ): The following paragraph is added to this Section: -The limitation of liability will not apply to any breach of IBM's obligations implied by Section 12 of the Sales of Goods Act 1979 or Section 2 of the Supply of Goods and Services Act 1982. diff --git a/tests/licensedcode/data/licenses/ibm-nwsc.yml b/tests/licensedcode/data/licenses/ibm-nwsc.yml deleted file mode 100644 index 043a1c7d278..00000000000 --- a/tests/licensedcode/data/licenses/ibm-nwsc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ibm-nwsc diff --git a/tests/licensedcode/data/licenses/ibm-sample.txt b/tests/licensedcode/data/licenses/ibm-sample.txt deleted file mode 100644 index e025e3d83f0..00000000000 --- a/tests/licensedcode/data/licenses/ibm-sample.txt +++ /dev/null @@ -1,20 +0,0 @@ - The sample program(s) is/are owned by International Business Machines - Corporation or one of its subsidiaries ("IBM") and is/are copyrighted and - licensed, not sold. - - You may copy, modify, and distribute this/these sample program(s) in any form - without payment to IBM, for any purpose including developing, using, marketing - or distributing programs that include or are derivative works of the sample - program(s). - - The sample program(s) is/are provided to you on an "AS IS" basis, without - warranty of any kind. IBM HEREBY EXPRESSLY DISCLAIMS ALL WARRANTIES, EITHER - EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Some jurisdictions do - not allow for the exclusion or limitation of implied warranties, so the above - limitations or exclusions may not apply to you. IBM shall not be liable for - any damages you suffer as a result of using, modifying or distributing the - sample program(s) or its/their derivatives. - - Each copy of any portion of this/these sample program(s) or any derivative - work, must include the above copyright notice and disclaimer of warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ibm-sample.yml b/tests/licensedcode/data/licenses/ibm-sample.yml deleted file mode 100644 index 0f04a54fc38..00000000000 --- a/tests/licensedcode/data/licenses/ibm-sample.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ibm-sample diff --git a/tests/licensedcode/data/licenses/ibmpl-1.0.txt b/tests/licensedcode/data/licenses/ibmpl-1.0.txt deleted file mode 100644 index b1d0cf955ec..00000000000 --- a/tests/licensedcode/data/licenses/ibmpl-1.0.txt +++ /dev/null @@ -1,67 +0,0 @@ -IBM Public License Version 1.0 -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. -1. DEFINITIONS - -"Contribution" means: - - 1. in the case of International Business Machines Corporation ("IBM"), the Original Program, and - 2. in the case of each Contributor, - 1. changes to the Program, and - 2. additions to the Program; - 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. - -"Contributor" means IBM and any other entity that distributes the Program. - -"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. - -"Original Program" means the original version of the software accompanying this Agreement as released by IBM, including source code, object code and documentation, if any. - -"Program" means the Original Program and Contributions. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. -2. GRANT OF RIGHTS - - 1. 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. - 2. 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. - 3. 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. - 4. 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. - -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - - 1. it complies with the terms and conditions of this Agreement; and - 2. its license agreement: - 1. 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; - 2. effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - 3. states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - 4. 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. - -When the Program is made available in source code form: - - 1. it must be made available under this Agreement; and - 2. a copy of this Agreement must be included with each copy of the Program. - -Each Contributor must include the following in a conspicuous location in the Program: - - Copyright (C) International Business Machines Corporation and others. All Rights Reserved. - -In addition, 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. -4. COMMERCIAL DISTRIBUTION - -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. - -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. -5. NO WARRANTY -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. -6. DISCLAIMER OF LIABILITY -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. -7. GENERAL -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. - -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. - -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. - -IBM may publish new versions (including revisions) of this Agreement from time to time. 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. No one other than IBM has the right to modify this Agreement. 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. - -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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ibmpl-1.0.yml b/tests/licensedcode/data/licenses/ibmpl-1.0.yml deleted file mode 100644 index a28174e1513..00000000000 --- a/tests/licensedcode/data/licenses/ibmpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ibmpl-1.0 diff --git a/tests/licensedcode/data/licenses/ibmpl-1.0_2.txt b/tests/licensedcode/data/licenses/ibmpl-1.0_2.txt deleted file mode 100644 index e2340fab9e6..00000000000 --- a/tests/licensedcode/data/licenses/ibmpl-1.0_2.txt +++ /dev/null @@ -1,210 +0,0 @@ -IBM Public License Version 1.0 -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE -("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES -RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - - -1. DEFINITIONS - - -"Contribution" means: - -a) in the case of International Business Machines Corporation ("IBM"), the Original -Program, and -b) in the case of each Contributor, -i) changes to the Program, and -ii) additions to the Program; -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. - -"Contributor" means IBM and any other entity that distributes the Program. - - -"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. - - -"Original Program" means the original version of the software accompanying this Agreement -as released by IBM, including source code, object code and documentation, if any. - - -"Program" means the Original Program and Contributions. - - -"Recipient" means anyone who receives the Program under this Agreement, including all -Contributors. - - -2. GRANT OF RIGHTS - -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. - -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. - -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. - -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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own -license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -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; -ii) effectively excludes on behalf of all Contributors all liability for damages, -including direct, indirect, special, incidental and consequential damages, such as lost -profits; -iii) states that any provisions which differ from this Agreement are offered by that -Contributor alone and not by any other party; and -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. -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and - -b) a copy of this Agreement must be included with each copy of the Program. - -Each Contributor must include the following in a conspicuous location in the Program: - - -Copyright Š {date here}, International Business Machines Corporation and others. All Rights Reserved. - - -In addition, 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. - - -4. COMMERCIAL DISTRIBUTION - -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. - - -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. - - -5. NO WARRANTY - -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. - - -6. DISCLAIMER OF LIABILITY - -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. - - -7. GENERAL - -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. - - -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. - - -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. - - -IBM may publish new versions (including revisions) of this Agreement from time to time. -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. No one other than IBM has the right to modify this -Agreement. 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. - - -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. diff --git a/tests/licensedcode/data/licenses/ibmpl-1.0_2.yml b/tests/licensedcode/data/licenses/ibmpl-1.0_2.yml deleted file mode 100644 index a28174e1513..00000000000 --- a/tests/licensedcode/data/licenses/ibmpl-1.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ibmpl-1.0 diff --git a/tests/licensedcode/data/licenses/indiana-extreme.txt b/tests/licensedcode/data/licenses/indiana-extreme.txt deleted file mode 100644 index 20e12466e82..00000000000 --- a/tests/licensedcode/data/licenses/indiana-extreme.txt +++ /dev/null @@ -1,34 +0,0 @@ -Indiana University Extreme! Lab Software License -Version 1.1.1 -Copyright (c) 2002 Extreme! Lab, Indiana University. 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. The end-user documentation included with the redistribution, if any, must -include the following acknowledgment: -"This product includes software developed by the Indiana University Extreme! Lab -(http://www.extreme.indiana.edu/)." -Alternately, this acknowledgment may appear in the software itself, if and -wherever such third-party acknowledgments normally appear. -4. The names "Indiana Univeristy" and "Indiana Univeristy Extreme! Lab" must not -be used to endorse or promote products derived from this software without prior -written permission. For written permission, please contact -http://www.extreme.indiana.edu/. -5. Products derived from this software may not use "Indiana Univeristy" name nor -may "Indiana Univeristy" appear in their name, without prior written permission -of the Indiana University. -THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED 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 AUTHORS, -COPYRIGHT HOLDERS OR ITS 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/tests/licensedcode/data/licenses/indiana-extreme.yml b/tests/licensedcode/data/licenses/indiana-extreme.yml deleted file mode 100644 index 84191da9394..00000000000 --- a/tests/licensedcode/data/licenses/indiana-extreme.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - indiana-extreme diff --git a/tests/licensedcode/data/licenses/initial-developer-public.txt b/tests/licensedcode/data/licenses/initial-developer-public.txt deleted file mode 100644 index c4e15644203..00000000000 --- a/tests/licensedcode/data/licenses/initial-developer-public.txt +++ /dev/null @@ -1,203 +0,0 @@ -Initial Developer's Public License Version 1.0 -1. Definitions - -1.0 "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. - -1.1 "Contributor" means each entity that creates or contributes to the creation of Modifications. - -1.2 "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source Code. - -1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. "License" means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -Any new file that contains any part of the Original Code or previous Modifications. - -1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity w hich controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and - -(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. - -d) Notwithstanding Section 2.1(b) above, no patent license is granted: - -1) for code that You delete from the Original Code; - -2) separate from the Original Code; or - -3) for infringements caused by: - -i) the modification of the Original Code or - -ii) the combination of the Original Code with other software or devices. - -2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. - -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: - -1) for any code that Contributor has deleted from the Contributor Version; - -2) separate from the Contributor Version; - -3) for infringements caused by: i) third party modifications of Contributor Version or - -ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or - -4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - -3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in - -(a) the Source Code, and - -(b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. - -(c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and hat the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: - -(a) comply with the terms of this License to the maximum extent possible; and - -(b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions. The Initial Developer of this code may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by the Initial Developer. No one other than the Initial Developer has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must - -(a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL", or any confusingly similar phrases do not appear in your license (except to note that your license differs from this License) and - -(b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -6.4 Origin of the Initial Developer's Public License. The Initial Developer's Public License is based on the Mozilla Public License V 1.1 with the following changes: - -1) The license is published by the Initial Developer of this code. Only the Initial Developer can modify the terms applicable to Covered Code. - -2) The license can be modified and used for code which is not already governed by this license. Modified versions of the license must be renamed to avoid confusion with the Initial Developer's Public License and must include a description of changes from the Initial Developer's Public License. - -3) The name of the license in Exhibit A is the "Initial Developer's Public License". - -4) The reference to an alternative license in Exhibit A has been removed . - -5) Amendments I, II, III, V, and VI have been deleted. - -6) Exhibit A, Netscape Public License has been deleted - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - -8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: - -(a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: - -(i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or - -(ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. - -If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. - -8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - -The Covered Code is a "commercial item", as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation", as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. MISCELLANEOUS. - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - -Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Devpoeloper permits you to utilize portions of the Covered Code under Your choice of the IDPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. - -EXHIBIT A -Initial Developer's Public License. - -The contents of this file are subject to the Initial Developer's Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License from the Firebird Project website, at http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/ - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is ________________________. - -Portions created by ______________________ -are Copyright (C) ______ _______________________. - -All Rights Reserved. - -Contributor(s): ______________________________________. diff --git a/tests/licensedcode/data/licenses/initial-developer-public.yml b/tests/licensedcode/data/licenses/initial-developer-public.yml deleted file mode 100644 index 3b5c5d3f543..00000000000 --- a/tests/licensedcode/data/licenses/initial-developer-public.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - initial-developer-public diff --git a/tests/licensedcode/data/licenses/inno-setup.txt b/tests/licensedcode/data/licenses/inno-setup.txt deleted file mode 100644 index 81b0a8c6ad6..00000000000 --- a/tests/licensedcode/data/licenses/inno-setup.txt +++ /dev/null @@ -1,36 +0,0 @@ -Inno Setup License -================== - -Except where otherwise noted, all of the documentation and software included -in the Inno Setup package is copyrighted by Jordan Russell. - -Copyright (C) 1997-2007 Jordan Russell. All rights reserved. - -This software is provided "as-is," without any express or implied warranty. -In no event shall the author be held liable for any damages arising from the -use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter and redistribute it, -provided that the following conditions are met: - -1. All redistributions of source code files must retain all copyright - notices that are currently in place, and this list of conditions without - modification. - -2. All redistributions in binary form must retain all occurrences of the - above copyright notice and web site addresses that are currently in - place (for example, in the About boxes). - -3. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software to - distribute a product, an acknowledgment in the product documentation - would be appreciated but is not required. - -4. Modified versions in source or binary form must be plainly marked as - such, and must not be misrepresented as being the original software. - - -Jordan Russell -jr-2007 AT jrsoftware.org -http://www.jrsoftware.org/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/inno-setup.yml b/tests/licensedcode/data/licenses/inno-setup.yml deleted file mode 100644 index 0e524ff6c7e..00000000000 --- a/tests/licensedcode/data/licenses/inno-setup.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - inno-setup diff --git a/tests/licensedcode/data/licenses/intel-acpi.txt b/tests/licensedcode/data/licenses/intel-acpi.txt deleted file mode 100644 index 30ed42ea358..00000000000 --- a/tests/licensedcode/data/licenses/intel-acpi.txt +++ /dev/null @@ -1,34 +0,0 @@ -ACPI - Software License Agreement -
Software License Agreement IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. - -Do not use or load this software and any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. - -1. COPYRIGHT NOTICE Some or all of this work - Copyright © 1999-2005, Intel Corp. All rights reserved. - -2. LICENSE - -2.1. This is your license from Intel Corp. under its intellectual property rights. You may have additional license terms from the party that provided you this software, covering your right to use that party's intellectual property rights. - -2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a copy of the source code appearing in this file ("Covered Code") an irrevocable, perpetual, worldwide license under Intel's copyrights in the base code distributed originally by Intel ("Original Intel Code") to copy, make derivatives, distribute, use and display any portion of the Covered Code in any form, with the right to sublicense such rights; and - -2.3. Intel grants Licensee a non-exclusive and non-transferable patent license (with the right to sublicense), under only those claims of Intel patents that are infringed by the Original Intel Code, to make, use, sell, offer to sell, and import the Covered Code and derivative works thereof solely to the minimum extent necessary to exercise the above copyright license, and in no event shall the patent license extend to any additions to or modifications of the Original Intel Code. No other license or right is granted directly or by implication, estoppel or otherwise; The above copyright and patent license is granted only if the following conditions are met: - -3. CONDITIONS - -3.1. Redistribution of Source with Rights to Further Distribute Source. Redistribution of source code of any substantial portion of the Covered Code or modification with rights to further distribute source must include the above Copyright Notice, the above License, this list of Conditions, and the following Disclaimer and Export Compliance provision. In addition, Licensee must cause all Covered Code to which Licensee contributes to contain a file documenting the changes Licensee made to create that Covered Code and the date of any change. Licensee must include in that file the documentation of any changes made by any predecessor Licensee. Licensee must include a prominent statement that the modification is derived, directly or indirectly, from Original Intel Code. - -3.2. Redistribution of Source with no Rights to Further Distribute Source. Redistribution of source code of any substantial portion of the Covered Code or modification without rights to further distribute source must include the following Disclaimer and Export Compliance provision in the documentation and/or other materials provided with distribution. In addition, Licensee may not authorize further sublicense of source of any portion of the Covered Code, and must include terms to the effect that the license from Licensee to its licensee is limited to the intellectual property embodied in the software Licensee provides to its licensee, and not to intellectual property embodied in modifications its licensee may make. - -3.3. Redistribution of Executable. Redistribution in executable form of any substantial portion of the Covered Code or modification must reproduce the above Copyright Notice, and the following Disclaimer and Export Compliance provision in the documentation and/or other materials provided with the distribution. - -3.4. Intel retains all right, title, and interest in and to the Original Intel Code. - -3.5. Neither the name Intel nor any other trademark owned or controlled by Intel shall be used in advertising or otherwise to promote the sale, use or other dealings in products derived from or relating to the Covered Code without prior written authorization from Intel. - -4. DISCLAIMER AND EXPORT COMPLIANCE - -4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. - -4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. - -4.3. Licensee shall not export, either directly or indirectly, any of this software or system incorporating such software without first obtaining any required license or other approval from the U. S. Department of Commerce or any other agency or department of the United States Government. In the event Licensee exports any such software from the United States or re-exports any such software from a foreign destination, Licensee shall ensure that the distribution and export/re-export of the software is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations. Licensee agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, software, or service, directly or indirectly, to any country for which the United States government or any agency thereof requires an export license, other governmental approval, or letter of assurance, without first obtaining such license, approval or letter. diff --git a/tests/licensedcode/data/licenses/intel-acpi.yml b/tests/licensedcode/data/licenses/intel-acpi.yml deleted file mode 100644 index 1a1ca740763..00000000000 --- a/tests/licensedcode/data/licenses/intel-acpi.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - intel-acpi diff --git a/tests/licensedcode/data/licenses/intel-bsd_or_gpl-2.0_3.txt b/tests/licensedcode/data/licenses/intel-bsd_or_gpl-2.0_3.txt deleted file mode 100644 index 00369e2748e..00000000000 --- a/tests/licensedcode/data/licenses/intel-bsd_or_gpl-2.0_3.txt +++ /dev/null @@ -1,31 +0,0 @@ -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, - without modification. -2. Redistributions in binary form must reproduce at minimum a disclaimer - similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any - redistribution must be conditioned upon including a substantially - similar Disclaimer requirement for further binary redistribution. -3. Neither the names of the above-listed copyright holders nor the names - of any contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -Alternatively, this software may be distributed under the terms of the -GNU General Public License ("GPL") version 2 as published by the Free -Software Foundation. - -NO WARRANTY -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 NONINFRINGEMENT, MERCHANTIBILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. - diff --git a/tests/licensedcode/data/licenses/intel-bsd_or_gpl-2.0_3.yml b/tests/licensedcode/data/licenses/intel-bsd_or_gpl-2.0_3.yml deleted file mode 100644 index e30f2e962dc..00000000000 --- a/tests/licensedcode/data/licenses/intel-bsd_or_gpl-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - intel-bsd OR gpl-2.0 diff --git a/tests/licensedcode/data/licenses/intel-code-samples.txt b/tests/licensedcode/data/licenses/intel-code-samples.txt deleted file mode 100644 index 1453a63d1f2..00000000000 --- a/tests/licensedcode/data/licenses/intel-code-samples.txt +++ /dev/null @@ -1,47 +0,0 @@ -Code Samples License - -IMPORTANT - READ BEFORE COPYING, INSTALLING, OR USING. -Do not copy, install, or use the "Materials" provided under this license agreement ("Agreement"), until you have carefully read the following terms and conditions. - -By copying, installing, or otherwise using the Materials, you agree to be bound by the terms of this Agreement. If you do not agree to the terms of this Agreement, do not copy, install, or use the Materials. - -Intel® Product License Agreement -LICENSE GRANT: -Subject to the License Restrictions below, Intel Corporation ("Intel") grants to you the following non-exclusive, non-assignable royalty-free copyright licenses in the "Materials" below, which are identified specifically in License Definitions, and in any updates thereto that Intel may offer in the future. - -LICENSE DEFINITIONS: -Materials are defined as consisting of Sample Source, Redistributables, and End-User Documentation. - -Sample Source: may include example interface or application source code. You may copy, modify, and compile the Sample Source and distribute it in your own products in binary and source code form. - -Redistributables: include header, library, and dynamically linkable library files. You may copy and distribute Redistributables with your product. - -End-User Documentation: includes textual materials intended for end users. You may copy, modify, and distribute them. - -LICENSE RESTRICTIONS: -You may not reverse-assemble, reverse-compile, or otherwise reverse-engineer any software provided solely in binary form. - -Upon Intel's release of an update, upgrade, or new version of the Materials, you will make reasonable efforts to discontinue distribution of the enclosed Materials and you will make reasonable efforts to distribute such updates, upgrades, or new versions to your customers who have received the Materials herein. - -Distribution of the Materials is also subject to the following limitations: You (i) shall be solely responsible to your customers for any update or support obligation or other liability which may arise from the distribution, (ii) do not make any statement that your product is "certified," or that its performance is guaranteed, by Intel, (iii) do not use Intel's name or trademarks to market your product without written permission, (iv) shall prohibit disassembly and reverse engineering, (v) shall not publish reviews of Materials designated herein as beta without written permission by Intel, and (vi) shall indemnify, hold harmless, and defend Intel and its suppliers from and against any claims or lawsuits, including attorney's fees, that arise or result from your distribution of any product. - -COPYRIGHT: -Title to the Materials and all copies thereof remain with Intel or its suppliers. The Materials are copyrighted and are protected by United States copyright laws and international treaty provisions. You will not remove any copyright notice from the Materials. You agree to prevent unauthorized copying of the Materials. Except as expressly provided herein, Intel does not grant any express or implied right to you under Intel patents, copyrights, trademarks, or trade secret information. - -REPLACEMENTS: -The Materials are provided "AS IS" without warranty of any kind. - -USER SUBMISSIONS: -You agree that any material, information, or other communication, including all data, images, sounds, text, and other things embodied therein, you transmit or post to an Intel website will be considered non-confidential ("Communications"). Intel will have no confidentiality obligations with respect to the Communications. You agree that Intel and its designees will be free to copy, modify, create derivative works, publicly display, disclose, distribute, license and sublicense through multiple tiers of distribution and licensees, incorporate, and otherwise use the Communications, including derivative works thereto, for any and all commercial or non-commercial purposes. - -LIMITATION OF LIABILITY: -THE ABOVE REPLACEMENT PROVISION IS THE ONLY WARRANTY OF ANY KIND. INTEL OFFERS NO OTHER WARRANTY EITHER EXPRESS OR IMPLIED INCLUDING THOSE OF MERCHANTABILITY, NONINFRINGEMENT OF THIRD-PARTY INTELLECTUAL PROPERTY, OR FITNESS FOR A PARTICULAR PURPOSE. NEITHER INTEL NOR ITS SUPPLIERS SHALL BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS PROHIBIT THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. - -TERMINATION OF THIS LICENSE: -Intel may terminate this license at any time if you are in breach of any of its terms and conditions. Upon termination, you will immediately destroy the Materials or return all copies of the Materials to Intel along with any copies you have made. - -U.S. GOVERNMENT RESTRICTED RIGHTS: -The Materials are provided with "RESTRICTED RIGHTS." Use, duplication, or disclosure by the Government is subject to restrictions set forth in FAR52.227-14 and DFAR252.227-7013 et. seq. or its successor. Use of the Materials by the Government constitutes acknowledgement of Intel's rights in them. - -APPLICABLE LAWS: -Any claim arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware or federal courts located in Delaware, without regard to principles of conflict of laws. You may not export the Materials in violation of applicable export laws. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/intel-code-samples.yml b/tests/licensedcode/data/licenses/intel-code-samples.yml deleted file mode 100644 index 3f832598e9c..00000000000 --- a/tests/licensedcode/data/licenses/intel-code-samples.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - intel-code-samples diff --git a/tests/licensedcode/data/licenses/intel-scl.txt b/tests/licensedcode/data/licenses/intel-scl.txt deleted file mode 100644 index afc3387d432..00000000000 --- a/tests/licensedcode/data/licenses/intel-scl.txt +++ /dev/null @@ -1,46 +0,0 @@ -Intel Source Code License Agreement - -This license governs use of the accompanying software. By installing or copying all or any part of the software components in this package, you (“you” or “Licensee”) agree to the terms of this agreement. Do not install or copy the software until you have carefully read and agreed to the following terms and conditions. If you do not agree to the terms of this agreement, promptly return the software to Intel Corporation (“Intel”). - -1. Definitions: - -A. “Materials" are defined as the software (including the Redistributables and Source as defined herein), documentation, and other materials, including any updates and upgrade thereto, that are provided to you under this Agreement. - -B. "Redistributables" are the binary files listed in the "redist.txt" file that is included in the Materials or are otherwise clearly identified as redistributable files by Intel. - -C. “ Source” is the source code file(s) that: (i) demonstrate(s) certain functions for particular purposes; (ii) are identified as source code; and (iii) are provided hereunder in source code form. - -D. “Intel’s Licensed Patent Claims” means those claims of Intel’s patents that (a) are infringed by the Source or Redistributables, alone and not in combination, in their unmodified form, as furnished by Intel to Licensee and (b) Intel has the right to license. - -2. License Grant: Subject to all of the terms and conditions of this Agreement: - -A. Intel grants to you a non-exclusive, non-assignable, copyright license to use the Material for your internal development purposes only. - -B. Intel grants to you a non-exclusive, non-assignable copyright license to reproduce the Source, prepare derivative works of the Source and distribute the Source or any derivative works thereof that you create, as part of the product or application you develop using the Materials. - -C. Intel grants to you a non-exclusive, non-assignable copyright license to distribute the Redistributables in binary form, or any portions thereof, as part of the product or application you develop using the Materials. - -D. Intel grants Licensee a non-transferable, non-exclusive, worldwide, non-sublicenseable license under Intel’s Licensed Patent Claims to make, use, sell, and import the Source and the Redistributables. - - -3. Conditions and Limitations: - -A. This license does not grant you any rights to use Intel’s name, logo or trademarks. - -B. Title to the Materials and all copies thereof remain with Intel. The Materials are copyrighted and are protected by United States copyright laws. You will not remove any copyright notice from the Materials. You agree to prevent any unauthorized copying of the Materials. Except as expressly provided herein, Intel does not grant any express or implied right to you under Intel patents, copyrights, trademarks, or trade secret information. - -C. You may NOT: (i) use or copy the Materials except as provided in this Agreement; (ii) rent or lease the Materials to any third party; (iii) assign this Agreement or transfer the Materials without the express written consent of Intel; (iv) modify, adapt, or translate the Materials in whole or in part except as provided in this Agreement; (v) reverse engineer, decompile, or disassemble the Materials not provided to you in source code form; or (vii) distribute, sublicense or transfer the source code form of any components of the Materials and derivatives thereof to any third party except as provided in this Agreement. - -4. No Warranty: - - THE MATERIALS ARE PROVIDED “AS IS”. INTEL DISCLAIMS ALL EXPRESS OR IMPLIED WARRANTIES WITH RESPECT TO THEM, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR ANY PARTICULAR PURPOSE. - -5. LIMITATION OF LIABILITY: NEITHER INTEL NOR ITS SUPPLIERS SHALL BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS PROHIBIT THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. - -6. USER SUBMISSIONS: You agree that any material, information or other communication, including all data, images, sounds, text, and other things embodied therein, you transmit or post to an Intel website or provide to Intel under this Agreement will be considered non-confidential ("Communications"). Intel will have no confidentiality obligations with respect to the Communications. You agree that Intel and its designees will be free to copy, modify, create derivative works, publicly display, disclose, distribute, license and sublicense through multiple tiers of distribution and licensees, incorporate and otherwise use the Communications, including derivative works thereto, for any and all commercial or non-commercial purposes - -7. TERMINATION OF THIS LICENSE: This Agreement becomes effective on the date you accept this Agreement and will continue until terminated as provided for in this Agreement. Intel may terminate this license at any time if you are in breach of any of its terms and conditions. Upon termination, you will immediately return to Intel or destroy the Materials and all copies thereof. - -8. U.S. GOVERNMENT RESTRICTED RIGHTS: The Materials are provided with "RESTRICTED RIGHTS". Use, duplication or disclosure by the Government is subject to restrictions set forth in FAR52.227-14 and DFAR252.227-7013 et seq. or its successor. Use of the Materials by the Government constitutes acknowledgment of Intel's rights in them. - -9. APPLICABLE LAWS: Any claim arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware, without regard to principles of conflict of laws. You may not export the Materials in violation of applicable export laws. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/intel-scl.yml b/tests/licensedcode/data/licenses/intel-scl.yml deleted file mode 100644 index c3fe5a5f4bb..00000000000 --- a/tests/licensedcode/data/licenses/intel-scl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - intel-scl -notes: From http://software.intel.com/en-us/articles/intel-64-architecture-processor-topology-enumeration diff --git a/tests/licensedcode/data/licenses/isc_7.txt b/tests/licensedcode/data/licenses/isc_7.txt deleted file mode 100644 index 7a85fc9745b..00000000000 --- a/tests/licensedcode/data/licenses/isc_7.txt +++ /dev/null @@ -1,11 +0,0 @@ -Permission to use, copy, modify, and / or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. -IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA -OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. diff --git a/tests/licensedcode/data/licenses/isc_7.yml b/tests/licensedcode/data/licenses/isc_7.yml deleted file mode 100644 index eb467f8698a..00000000000 --- a/tests/licensedcode/data/licenses/isc_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - isc diff --git a/tests/licensedcode/data/licenses/isc_9.txt b/tests/licensedcode/data/licenses/isc_9.txt deleted file mode 100644 index 82002425774..00000000000 --- a/tests/licensedcode/data/licenses/isc_9.txt +++ /dev/null @@ -1,11 +0,0 @@ -Permission to use, copy, modify, and distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. -IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA -OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. diff --git a/tests/licensedcode/data/licenses/isc_9.yml b/tests/licensedcode/data/licenses/isc_9.yml deleted file mode 100644 index eb467f8698a..00000000000 --- a/tests/licensedcode/data/licenses/isc_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - isc diff --git a/tests/licensedcode/data/licenses/isotope-cla.txt b/tests/licensedcode/data/licenses/isotope-cla.txt deleted file mode 100644 index f4c4113a920..00000000000 --- a/tests/licensedcode/data/licenses/isotope-cla.txt +++ /dev/null @@ -1,23 +0,0 @@ -This Commercial License Agreement is a binding legal agreement between you and Metafizzy LLC (Metafizzy). By installing, copying, or using Isotope (the Software), you agree to be bound by these terms of this Agreement. - -Grant of License - -Subject to the payment of the fee required and the conditions herein, you are hereby granted a non-exclusive, non-transferable right to use Isotope (the Software) to design and develop commercial applications (Applications). - -DEVELOPER GRANT - -The Isotope Commercial Developer License grants 1 license for you as 1 designated user (Developer) to use the Software for the purpose of developing Applications. A Developer is an individual who implements the Software into Applications, most often writing the necessary code to do so. You must purchase another separate license to the Software for each and any additional Developer, or purchase a Isotope Commercial Organization License to cover your organization as a whole. - -ORGANIZATION GRANT - -The Isotope Commercial Organization License grants 1 license for your Organization as 1 designated, collective user (Organization) to use the Software for the purpose of developing Applications. There is no limit or restriction of the number of Developers within your Organization who may develop Applications using the Software. - -USAGE - -You are granted the right to use and to modify the source code of the Software for use in Applications. There is no limit or restriction of the number of Applications which use the Software. You own any original work authored by you. Metafizzy continues to retain all copyright and other intellectual property rights in the Software. You are not permitted to move, remove, edit, or obscure any copyright, trademark, attribution, warning or disclaimer notices in the Software. - -You may use the Software only to create Applications that are significantly different than and do not compete with the Software. You are granted the license to distribute the Software as part of your Applications on a royalty-free basis. Users of your Applications are permitted to use the Software or your modifications of the Software as part of your Applications. Users do not need to purchase their own commercial license for the Software, so long as they are not acting as Developers, developing their own commercial Applications with the Software. - -Warranties and Remedies - -The Software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. Metafizzy’s entire liability and your exclusive remedy under this agreement shall be return of the price paid for the Software. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/isotope-cla.yml b/tests/licensedcode/data/licenses/isotope-cla.yml deleted file mode 100644 index 0e394e54ce4..00000000000 --- a/tests/licensedcode/data/licenses/isotope-cla.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - isotope-cla diff --git a/tests/licensedcode/data/licenses/itc-eula.txt b/tests/licensedcode/data/licenses/itc-eula.txt deleted file mode 100644 index 42fe14b2875..00000000000 --- a/tests/licensedcode/data/licenses/itc-eula.txt +++ /dev/null @@ -1,26 +0,0 @@ -This Agreement constitutes the complete agreement between you and International Typeface Corporation (ITC) (except for multi-CPU licenses, where another document supplements this one and outlines and confirms the scope of the your upgraded license). If you do not agree to the terms stated in this Agreement, you may obtain a full refund by contacting ITC at the address below within 15 days with your proof of payment. - -International Typeface Corporation -Department: DRL -228 East 45th Street / 12th Floor -New York, New York 10017 USA -Email: info@itcfonts.com -THE SOFTWARE. The digital file downloaded to your computer contains Software that is the property of ITC. “Software” includes computer programs and the digitally encoded, machine readable, scalable outline font data as encoded in a special format. This Agreement grants you certain rights to use the Software and is not an agreement for sale of the Software or any portion or copy of it. - -GRANT OF LICENSE. In return for the license fee that you have paid, ITC grants you a non-exclusive license to install and use the Software on up to five CPUs at a single location. These CPUs can be connected to, and the Software used with, any number of output devices, such as a laser printer, ink jet printer, an imagesetter or a film recorder, but the Software may only be downloaded to the non-volatile memory, such as a hard disk, of one output device. If you need to download the Software to more than one output device or install it on more than five CPUs, you are required to acquire additional licenses from ITC. - -OTHER RIGHTS. Except for your right to use the Software granted by this license, all other rights, title and interest in the Software and related trademarks and trade names are owned and retained by ITC . You agree to establish reasonable procedures regulating access to and use of the Software and use of the related trademarks and trade names in accordance with the laws of the United States and this Agreement. - -OTHER RESTRICTION. You may not duplicate or copy the Software except as needed to use it as described above. You may not modify, adapt, translate, reverse engineer, decompile or disassemble the Software. You agree not to ship, export, or transfer the Software into any country or to use the Software in any manner prohibited by the United States Export Administration Act. The trademarks and trade names of ITC can only be used to identify printed output produced by the Software. You agree not to remove and trademark or copyright notices from the output produced by the Software. - -ASSIGNMENT. You are not authorized to sublicense, sell, or lease the Software, but you may permanently transfer your rights under this Agreement to a third party; provided that (i) you transfer your copy of this Agreement, the Software, and all original documentation to the third party, (ii) you destroy all of your copies of the Software and accompanying documentation, and (iii) the third party agrees in writing to be bound by the terms of this Agreement. - -SERVICE BUREAUS. You are authorized to provide a copy of the Software to a service bureau only if they provide you with written assurance that they already own a valid license from ITC to use the Software. Any copies of the Software transferred to a service bureau under this condition must contain the proprietary notices of ITC contained in the Software. - -TERMINATION. This Agreement will immediately and automatically terminate without notice if you fail to comply with any term or condition of this Agreement. If this Agreement is terminated, you agreed to destroy all copies of the Software and documentation in your possession. - -LIMITED WARRANTY. For a period of 90 days after delivery, ITC warrants that the Software will perform in accordance with the specifications published by ITC. ITC MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED. THE WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE AND MERCHANTABILITY ARE SPECIFICALLY EXCLUDED. ITC DOES NOT WARRANT THAT THE SOFTWARE IS FREE FROM ALL ERRORS AND OMISSIONS. If you require or desire greater protection or rights, you may notify ITC and make additional payments for this purpose in amounts to be discussed with ITC. - -LIMITATION OF LIABILITY. Your exclusive remedy and the sole liability of ITC in connection with the Software is repair or replacement of defective parts. ITC’S CUMULATIVE LIABILITY FOR ANY LOSS OR DAMAGE RELATING TO THIS AGREEMENT SHALL NOT EXCEED THE PURCHASE PRICE THAT YOU PAID FOR THE LICENSE. IN NO EVENT WILL ITC BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES SUCH AS LOST PROFITS, OR LOST DATA, OR ANY DAMAGES CAUSED BY THE ABUSE OR MISAPPLICATION OF THE SOFTWARE. - -GENERAL. This Agreement will be governed by the law of New York. YOU ACKNOWLEDGE THAT YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS AGREEMENT. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/itc-eula.yml b/tests/licensedcode/data/licenses/itc-eula.yml deleted file mode 100644 index dd1cfe2c2f1..00000000000 --- a/tests/licensedcode/data/licenses/itc-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - itc-eula diff --git a/tests/licensedcode/data/licenses/jason-mayes.txt b/tests/licensedcode/data/licenses/jason-mayes.txt deleted file mode 100644 index 5af1e58b714..00000000000 --- a/tests/licensedcode/data/licenses/jason-mayes.txt +++ /dev/null @@ -1,9 +0,0 @@ -/********************************************************************* -* #### Twitter Post Fetcher v10.0 #### -* Coded by Jason Mayes 2013. A present to all the developers out there. -* www.jasonmayes.com -* Please keep this disclaimer with my code if you use it. Thanks. :) -* Got feedback or questions, ask here: -* http://www.jasonmayes.com/projects/twitterApi/ -* Updates will be posted to this site. -*********************************************************************/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/jason-mayes.yml b/tests/licensedcode/data/licenses/jason-mayes.yml deleted file mode 100644 index cc4f05e23e5..00000000000 --- a/tests/licensedcode/data/licenses/jason-mayes.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - jason-mayes diff --git a/tests/licensedcode/data/licenses/jdom.txt b/tests/licensedcode/data/licenses/jdom.txt deleted file mode 100644 index 4a979c2a182..00000000000 --- a/tests/licensedcode/data/licenses/jdom.txt +++ /dev/null @@ -1,49 +0,0 @@ -Copyright (C) 2000-2012 Jason Hunter & Brett McLaughlin. -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 disclaimer that follows - these conditions in the documentation and/or other materials - provided with the distribution. - -3. The name "JDOM" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact . - -4. Products derived from this software may not be called "JDOM", nor - may "JDOM" appear in their name, without prior written permission - from the JDOM Project Management . - -In addition, we request (but do not require) that you include in the -end-user documentation provided with the redistribution and/or in the -software itself an acknowledgement equivalent to the following: - "This product includes software developed by the - JDOM Project (http://www.jdom.org/)." -Alternatively, the acknowledgment may be graphical using the logos -available at http://www.jdom.org/images/logos. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 JDOM AUTHORS OR THE PROJECT -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. - -This software consists of voluntary contributions made by many -individuals on behalf of the JDOM Project and was originally -created by Jason Hunter and -Brett McLaughlin . For more information -on the JDOM Project, please see . \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/jdom.yml b/tests/licensedcode/data/licenses/jdom.yml deleted file mode 100644 index 875146460cf..00000000000 --- a/tests/licensedcode/data/licenses/jdom.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - jdom diff --git a/tests/licensedcode/data/licenses/jetty.txt b/tests/licensedcode/data/licenses/jetty.txt deleted file mode 100644 index 6a0d97c452f..00000000000 --- a/tests/licensedcode/data/licenses/jetty.txt +++ /dev/null @@ -1,133 +0,0 @@ -Jetty License -$Revision: 584 $ -Preamble: - -The intent of this document is to state the conditions under which the Jetty -Package may be copied, such that the Copyright Holder maintains some semblance -of control over the development of the package, while giving the users of the -package the right to use, distribute and make reasonable modifications to the -Package in accordance with the goals and ideals of the Open Source concept as -described at http://www.opensource.org. - -It is the intent of this license to allow commercial usage of the Jetty package, -so long as the source code is distributed or suitable visible credit given or -other arrangements made with the copyright holders. - -Definitions: - - * "Jetty" refers to the collection of Java classes that are distributed as a -HTTP server with servlet capabilities and associated utilities. - - * "Package" refers to the collection of files distributed by the Copyright -Holder, and derivatives of that collection of files created through textual -modification. - - * "Standard Version" refers to such a Package if it has not been modified, -or has been modified in accordance with the wishes of the Copyright Holder. - - * "Copyright Holder" is whoever is named in the copyright or copyrights for -the package. - Mort Bay Consulting Pty. Ltd. (Australia) is the "Copyright Holder" for -the Jetty package. - - * "You" is you, if you're thinking about copying or distributing this -Package. - - * "Reasonable copying fee" is whatever you can justify on the basis of media -cost, duplication charges, time of people involved, and so on. (You will not be -required to justify it to the Copyright Holder, but only to the computing -community at large as a market that must bear the fee.) - - * "Freely Available" means that no fee is charged for the item itself, -though there may be fees involved in handling the item. It also means that -recipients of the item may redistribute it under the same conditions they -received it. - -0. The Jetty Package is Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) -and others. Individual files in this package may contain additional copyright -notices. The javax.servlet packages are copyright Sun Microsystems Inc. - -1. The Standard Version of the Jetty package is available from -http://jetty.mortbay.org. - -2. You may make and distribute verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you include -this license and all of the original copyright notices and associated -disclaimers. - -3. You may make and distribute verbatim copies of the compiled form of the -Standard Version of this Package without restriction, provided that you include -this license. - -4. You may apply bug fixes, portability fixes and other modifications derived -from the Public Domain or from the Copyright Holder. A Package modified in such -a way shall still be considered the Standard Version. - -5. You may otherwise modify your copy of this Package in any way, provided that -you insert a prominent notice in each changed file stating how and when you -changed that file, and provided that you do at least ONE of the following: - - a) Place your modifications in the Public Domain or otherwise make them -Freely Available, such as by posting said modifications to Usenet or an -equivalent medium, or placing the modifications on a major archive site such as -ftp.uu.net, or by allowing the Copyright Holder to include your modifications in -the Standard Version of the Package. - - b) Use the modified Package only within your corporation or organization. - - c) Rename any non-standard classes so the names do not conflict with -standard classes, which must also be provided, and provide a separate manual -page for each non-standard class that clearly documents how it differs from the -Standard Version. - - d) Make other arrangements with the Copyright Holder. - -6. You may distribute modifications or subsets of this Package in source code or -compiled form, provided that you do at least ONE of the following: - - a) Distribute this license and all original copyright messages, together -with instructions (in the about dialog, manual page or equivalent) on where to -get the complete Standard Version. - - b) Accompany the distribution with the machine-readable source of the -Package with your modifications. The modified package must include this license -and all of the original copyright notices and associated disclaimers, together -with instructions on where to get the complete Standard Version. - - c) Make other arrangements with the Copyright Holder. - -7. You may charge a reasonable copying fee for any distribution of this Package. -You may charge any fee you choose for support of this Package. You may not -charge a fee for this Package itself. However, you may distribute this Package -in aggregate with other (possibly commercial) programs as part of a larger -(possibly commercial) software distribution provided that you meet the other -distribution requirements of this license. - -8. Input to or the output produced from the programs of this Package do not -automatically fall under the copyright of this Package, but belong to whomever -generated them, and may be sold commercially, and may be aggregated with this -Package. - -9. Any program subroutines supplied by you and linked into this Package shall -not be considered part of this Package. - -10. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -11. This license may change with each release of a Standard Version of the -Package. You may choose to use the license associated with version you are using -or the license of the latest Standard Version. - -12. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -13. If any superior law implies a warranty, the sole remedy under such shall be -, at the Copyright Holders option either a) return of any price paid or b) use -or reasonable endeavours to repair or replace the software. - -14. This license shall be read under the laws of Australia. - -The End -This license was derived from the Artistic license published on -http://www.opensource.com \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/jetty.yml b/tests/licensedcode/data/licenses/jetty.yml deleted file mode 100644 index 35aac4bf6c6..00000000000 --- a/tests/licensedcode/data/licenses/jetty.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - jetty diff --git a/tests/licensedcode/data/licenses/jgraph-general.txt b/tests/licensedcode/data/licenses/jgraph-general.txt deleted file mode 100644 index 70df3328131..00000000000 --- a/tests/licensedcode/data/licenses/jgraph-general.txt +++ /dev/null @@ -1,163 +0,0 @@ -JGraph General License - -JGRAPH GENERAL LICENSE STATEMENT AND LIMITED WARRANTY -IMPORTANT - READ CAREFULLY - -This license statement and limited warranty constitutes a legal agreement -("License Agreement") between you (either as an individual or a single entity) -and JGraph Ltd. for the software product ("Software") identified above, -including any software, media, and accompanying on-line or printed -documentation. - -BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND -BY ALL OF THE TERMS AND CONDITIONS OF THE LICENSE AGREEMENT. - -Upon your acceptance of the terms and conditions of the License Agreement, -JGraph Ltd. grants you the right to use the Software in the manner provided -below. - -This Software is owned by JGraph Ltd. and is protected by copyright law and -international copyright treaty. Therefore, you must treat this Software like -any other copyrighted material (e.g., a book), except that you may either make -one copy of the Software solely for backup or archival purposes or transfer the -Software to a single hard disk provided you keep the original solely for backup -or archival purposes. - -You may transfer the Software and documentation on a permanent basis provided -you retain no copies and the recipient agrees to the terms of the License -Agreement. Except as provided in the License Agreement, you may not transfer, -rent, lease, lend, copy, modify, translate, sublicense, time-share or -electronically transmit or receive the Software, media or documentation. - -If you are not in receipt of the source code of the Software, you acknowledge -that the Software is a confidential trade secret of JGraph Ltd. and therefore -you agree not to reverse engineer, decompile, or disassemble the Software. - -ADDITIONAL LICENSE TERMS FOR SOFTWARE - -JGraph Ltd. grants to you as an individual, a personal, nonexclusive license -to install and use the Software for the sole purposes of designing, developing, -testing, and deploying application programs which you create. You may install -copies of the Software on computers in a manner consistent with the type of -license purchased. A Single Developer License may be installed on a computer -and be freely moved from one computer to another, providing that you have -purchased a number of Single Developer Licenses equivalent to the maximum -possible number of developers using that Software concurrently. A Site -Developer License may be installed on any number of computers and be used by -any number of developers at any time at one geographical location. A -geographical location is defined as a building or site occupied by the -employees of one company or organization. -If you are an entity, JGraph Ltd. grants you the right to designate -one individual within your organization ("Named User") to have the right to use -the Software in the manner provided above, in the case of the Single Developer -License. - -GENERAL TERMS THAT APPLY TO COMPILED PROGRAMS AND REDISTRIBUTION - -You may write and compile (including byte-code compile) your own application -programs using the Software, including any libraries and source code included -for such purpose with the Software. You may reproduce and distribute, in -executable form only, programs which you create using the Software and -accompanying Software libraries without additional license or fees, subject to -all of the conditions in this License Agreement. - -ADDITIONAL REDISTRIBUTION TERMS FOR SOFTWARE - -You may not distribute any program or file which includes, is created from, or -otherwise incorporates portions of the Software if such program or file is a -general purpose development tool, library, and/or component, or is otherwise -generally competitive with or a substitute for any JGraph Ltd. product. - -SOURCE CODE - -In addition to the license and rights granted, JGraph Ltd. grants you the -right to use and modify the SOFTWARE source provided you purchased source code. - -You may not distribute the SOFTWARE source code, or any modified version or -derivative work of the SOFTWARE source code, in source code form. - -The source code contained herein and in related files is provided to the -registered developer for the purposes of education and troubleshooting. Under -no circumstances may any portion of the source code be distributed, disclosed -or otherwise made available to any third party without the express written -consent of JGraph Ltd. - -Under no circumstances may the source code be used in whole or in part, as the -basis for creating a product that provides the same, or substantially the same, -functionality as any JGraph Ltd. product. - -The registered developer acknowledges that this source code contains valuable -and proprietary trade secrets of JGraph Ltd. The registered developer agrees -to expend every effort to insure its confidentiality. - -SOURCE CODE IS SOLD AS IS. JGRAPH LTD. DOES NOT PROVIDE ANY TECHNICAL SUPPORT -FOR SOURCE CODE. - -MARKETING - -JGraph Ltd is permitted to reference you as a user of the Software in customer -lists on the JGraph web-site, in presentations to clients and at trade events. - -LIMITED WARRANTY - -JGraph Ltd. warrants that the Software, as updated and when properly used, -will perform substantially in accordance with the accompanying documentation, -and the Software media will be free from defects in materials and workmanship, -for a period of ninety (90) days from the date of receipt. Any implied -warranties on the Software are limited to ninety (90) days. Some -states/jurisdictions do not allow limitations on duration of an implied -warranty, so the above limitation may not apply to you. - -This Limited Warranty is void if failure of the Software has resulted from -accident, abuse, or misapplication. Any replacement Software will be warranted -for the remainder of the original warranty period or thirty (30) days, -whichever is longer. - -TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JGRAPH LTD. AND ITS -SUPPLIERS DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS OR -IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO -THE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS -LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS. YOU MAY HAVE OTHERS, WHICH -VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. - -LIMITATION OF LIABILITY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN -NO EVENT SHALL JGRAPH LTD. OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, -INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT -LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS -OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF -OR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE TO -PROVIDE SUPPORT SERVICES, EVEN IF JGRAPH LTD. HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME STATES AND JURISDICTIONS DO NOT -ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY, THE ABOVE LIMITATION MAY NOT -APPLY TO YOU. - -HIGH RISK ACTIVITIES - -The Software is not fault-tolerant and is not designed, manufactured or -intended for use or resale as on-line control equipment in hazardous -environments requiring fail-safe performance, such as in the operation of -nuclear facilities, aircraft navigation or communication systems, air traffic -control, direct life support machines, or weapons systems, in which the failure -of the Software could lead directly to death, personal injury, or severe -physical or environmental damage ("High Risk Activities"). JGraph Ltd. and -its suppliers specifically disclaim any express or implied warranty of fitness -for High Risk Activities. - -GENERAL PROVISIONS - -This License Agreement may only be modified in writing signed by you and -JGraph Ltd. If any provision of this License Agreement is found void or -unenforceable, the remainder will remain valid and enforceable according to its -terms. If any remedy provided is determined to have failed for its essential -purpose, all limitations of liability and exclusions of damages set forth in -the Limited Warranty shall remain in effect. - -GOVERNING LAW AND JURISDICTION - -This Agreement shall be subject to and governed by the _Law of England and -Wales_. Any dispute arising out of or in connection with this Agreement shall -be exclusively dealt with by the courts of England and Wales. This License -Agreement gives you specific legal rights; you may have others which vary from -state to state and from country to country. JGraph Ltd. reserves all rights not -specifically granted in this License Agreement. diff --git a/tests/licensedcode/data/licenses/jgraph-general.yml b/tests/licensedcode/data/licenses/jgraph-general.yml deleted file mode 100644 index a953f2b236a..00000000000 --- a/tests/licensedcode/data/licenses/jgraph-general.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - jgraph-general diff --git a/tests/licensedcode/data/licenses/jj2000.txt b/tests/licensedcode/data/licenses/jj2000.txt deleted file mode 100644 index 93d41ed0e94..00000000000 --- a/tests/licensedcode/data/licenses/jj2000.txt +++ /dev/null @@ -1,26 +0,0 @@ -This software module was originally developed by Raphaël Grosbois and -Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel -Askelöf (Ericsson Radio Systems AB); and Bertrand Berthelot, David -Bouchard, Félix Henry, Gerard Mozelle and Patrice Onno (Canon Research -Centre France S.A) in the course of development of the JPEG2000 -standard as specified by ISO/IEC 15444 (JPEG 2000 Standard). This -software module is an implementation of a part of the JPEG 2000 -Standard. Swiss Federal Institute of Technology-EPFL, Ericsson Radio -Systems AB and Canon Research Centre France S.A (collectively JJ2000 -Partners) agree not to assert against ISO/IEC and users of the JPEG -2000 Standard (Users) any of their rights under the copyright, not -including other intellectual property rights, for this software module -with respect to the usage by ISO/IEC and Users of this software module -or modifications thereof for use in hardware or software products -claiming conformance to the JPEG 2000 Standard. Those intending to use -this software module in hardware or software products are advised that -their use may infringe existing patents. The original developers of -this software module, JJ2000 Partners and ISO/IEC assume no liability -for use of this software module or modifications thereof. No license -or right to this software module is granted for non JPEG 2000 Standard -conforming products. JJ2000 Partners have full right to use this -software module for his/her own purpose, assign or donate this -software module to any third party and to inhibit third parties from -using this software module for non JPEG 2000 Standard conforming -products. This copyright notice must be included in all copies or -derivative works of this software module. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/jj2000.yml b/tests/licensedcode/data/licenses/jj2000.yml deleted file mode 100644 index 3d3f8f583cf..00000000000 --- a/tests/licensedcode/data/licenses/jj2000.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - jj2000 diff --git a/tests/licensedcode/data/licenses/jmagnetic.txt b/tests/licensedcode/data/licenses/jmagnetic.txt deleted file mode 100644 index 3870c06170b..00000000000 --- a/tests/licensedcode/data/licenses/jmagnetic.txt +++ /dev/null @@ -1,11 +0,0 @@ -JMAGNETIC Licence Agreement - -This is a legal agreement between you and Stefan Meier covering your use of JMagnetic. Be sure to read the following agreement before using the software. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE AND DESTROY ALL COPIES OF IT. - -The JMagnetic application, the JMagnetic class package, all accompanying documentation and source code (collectively referred to as "the JMagnetic Software") are copyright (c) 1998-99, Stefan Meier. The JMagnetic Software may be redistributed freely under the following conditions: -(1) That no profit is made from the sale or distribution of the JMagnetic Software -(2) That the source code of the JMagnetic Software, or any portion thereof, not be modified in any way or incorporated into any other software without pemission. -(3) That this legal statement be distributed unmodified with the JMagnetic Software, and that Stefan Meier be credited for its authorship. -With that said, anyone who wishes to include any of my code in their own or who wishes to base a new application on this code is encouraged to contact me. Commercial usage or redistribution of the JMagnetic software is strictly prohibited. Inquiries on commercial distribution of Magnetic Scrolls related products should be directly send to Ken Gordon. - -The JMagnetic software and related documentation are provided "AS IS" and without warranty of any kind and the author expressly disclaims all other warranties, express or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. Under no circumstances shall Stefan Meier be liable for any incidental, special or consequential damages that result from the use or inability to use the software or related documentation, even if Stefan Meier has been advised of the possibility of such damages. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/jmagnetic.yml b/tests/licensedcode/data/licenses/jmagnetic.yml deleted file mode 100644 index dabfe6dc18b..00000000000 --- a/tests/licensedcode/data/licenses/jmagnetic.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - jmagnetic diff --git a/tests/licensedcode/data/licenses/jython.yml b/tests/licensedcode/data/licenses/jython.yml index 76ae82da307..405f580963a 100644 --- a/tests/licensedcode/data/licenses/jython.yml +++ b/tests/licensedcode/data/licenses/jython.yml @@ -1,2 +1,2 @@ license_expressions: - - jython + - bsd-new diff --git a/tests/licensedcode/data/licenses/karl-peterson.txt b/tests/licensedcode/data/licenses/karl-peterson.txt deleted file mode 100644 index c87cec5388f..00000000000 --- a/tests/licensedcode/data/licenses/karl-peterson.txt +++ /dev/null @@ -1,3 +0,0 @@ -You are free to use this code within your own applications, but you -are expressly forbidden from selling or otherwise distributing this -source code without prior written consent. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/karl-peterson.yml b/tests/licensedcode/data/licenses/karl-peterson.yml deleted file mode 100644 index 91966f615d7..00000000000 --- a/tests/licensedcode/data/licenses/karl-peterson.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - karl-peterson diff --git a/tests/licensedcode/data/licenses/keith-rule.txt b/tests/licensedcode/data/licenses/keith-rule.txt deleted file mode 100644 index a3e264aefc9..00000000000 --- a/tests/licensedcode/data/licenses/keith-rule.txt +++ /dev/null @@ -1,6 +0,0 @@ -// Author: Keith Rule -// Email: keithr@europa.com -// Copyright 1996-2002, Keith Rule -// -// You may freely use or modify this code provided this -// Copyright is included in all derived versions. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/keith-rule.yml b/tests/licensedcode/data/licenses/keith-rule.yml deleted file mode 100644 index 33c19bdc88f..00000000000 --- a/tests/licensedcode/data/licenses/keith-rule.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - keith-rule diff --git a/tests/licensedcode/data/licenses/kerberos.txt b/tests/licensedcode/data/licenses/kerberos.txt deleted file mode 100644 index 72806632926..00000000000 --- a/tests/licensedcode/data/licenses/kerberos.txt +++ /dev/null @@ -1,59 +0,0 @@ -Kerberos License - -Copyright @copyright{} 1985-2002 by the Massachusetts Institute of Technology. - -Export of software employing encryption from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain such a license before exporting. - -WITHIN THAT CONSTRAINT, permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of M.I.T. not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Furthermore if you modify this software you must label your software as modified software and not distribute it in such a fashion that it might be confused with the original MIT software. M.I.T. makes no representations about the suitability of this software for any purpose. It is provided ``as is'' without express or implied warranty. - -The following copyright and permission notice applies to the OpenVision Kerberos Administration system located in kadmin/create, kadmin/dbutil, kadmin/passwd, kadmin/server, lib/kadm5, and portions of lib/rpc: - -Copyright, OpenVision Technologies, Inc., 1996, All Rights Reserved - -WARNING: Retrieving the OpenVision Kerberos Administration system source code, as described below, indicates your acceptance of the following terms. If you do not agree to the following terms, do not retrieve the - -OpenVision Kerberos administration system. - -You may freely use and distribute the Source Code and Object Code compiled from it, with or without modification, but this Source Code is provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY OTHER REASON. - -OpenVision retains all copyrights in the donated Source Code. OpenVision also retains copyright to derivative works of the Source Code, whether created by OpenVision or by a third party. The OpenVision copyright notice must be preserved if derivative works are made based on the donated Source Code. - -OpenVision Technologies, Inc. has donated this Kerberos Administration system to MIT for inclusion in the standard Kerberos 5 distribution. This donation underscores our commitment to continuing - -Kerberos technology development and our gratitude for the valuable work which has been performed by MIT and the Kerberos community. - -The implementation of the Yarrow pseudo-random number generator in src/lib/crypto/yarrow has the following copyright: - -Copyright 2000 by Zero-Knowledge Systems, Inc. - -Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Zero-Knowledge Systems, Inc. not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Zero-Knowledge Systems, Inc. makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. - -ZERO-KNOWLEDGE SYSTEMS, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL ZERO- KNOWLEDGE SYSTEMS, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -The implementation of the AES encryption algorithm in src/lib/crypto/aes has the following copyright: Copyright (c) 2001, Dr Brian Gladman , Worcester, UK. All rights reserved. LICENSE TERMS - -The free distribution and use of this software in both source and binary form is allowed (with or without changes) provided that: - -distributions of this source code include the above copyright notice, this list of conditions and the following disclaimer; - -distributions in binary form include the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other associated materials; - -the copyright holder's name is not used to endorse products built using this software without specific written permission. - -DISCLAIMER - -This software is provided 'as is' with no explcit or implied warranties in respect of any properties, including, but not limited to, correctness and fitness for purpose. University of California at Berkeley, which includes this copyright notice: - -Copyright @copyright{} 1983 Regents of the University of California.@* All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -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. - -All advertising materials mentioning features or use of this software must display the following acknowledgement: - -This product includes software developed by the University of California, Berkeley and its contributors. - -Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/kerberos.yml b/tests/licensedcode/data/licenses/kerberos.yml deleted file mode 100644 index afc3610b2da..00000000000 --- a/tests/licensedcode/data/licenses/kerberos.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - kerberos diff --git a/tests/licensedcode/data/licenses/latex2e.txt b/tests/licensedcode/data/licenses/latex2e.txt deleted file mode 100644 index 7774651179f..00000000000 --- a/tests/licensedcode/data/licenses/latex2e.txt +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (C) 2007, 2008, 2009, 2010 Karl Berry. -Copyright (C) 1988, 1994, 2007 Stephen Gilmore. -Copyright (C) 1994, 1995, 1996 Torsten Martinsen. - -Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. - -Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. - -Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions. diff --git a/tests/licensedcode/data/licenses/latex2e.yml b/tests/licensedcode/data/licenses/latex2e.yml deleted file mode 100644 index da8fa210834..00000000000 --- a/tests/licensedcode/data/licenses/latex2e.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - latex2e diff --git a/tests/licensedcode/data/licenses/leptonica.txt b/tests/licensedcode/data/licenses/leptonica.txt deleted file mode 100644 index 4df5503ec87..00000000000 --- a/tests/licensedcode/data/licenses/leptonica.txt +++ /dev/null @@ -1,8 +0,0 @@ - -This software is distributed in the hope that it will be useful, but with NO WARRANTY OF ANY KIND. - -No author or distributor accepts responsibility to anyone for the consequences of using this software, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. Everyone is granted permission to copy, modify and redistribute this source code, for commercial or non-commercial purposes, with the following restrictions: - -(1) the origin of this source code must not be misrepresented; -(2) modified versions must be plainly marked as such; and -(3) this notice may not be removed or altered from any source or modified source distribution. diff --git a/tests/licensedcode/data/licenses/leptonica.yml b/tests/licensedcode/data/licenses/leptonica.yml deleted file mode 100644 index 7a844eeac19..00000000000 --- a/tests/licensedcode/data/licenses/leptonica.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - leptonica diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus-gcc.txt b/tests/licensedcode/data/licenses/lgpl-2.0-plus-gcc.txt deleted file mode 100644 index 26323a928ae..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus-gcc.txt +++ /dev/null @@ -1,23 +0,0 @@ -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License -as published by the Free Software Foundation; either version 2, or -(at your option) any later version. - -In addition to the permissions in the GNU Library General Public -License, the Free Software Foundation gives you unlimited -permission to link the compiled version of this file into -combinations with other programs, and to distribute those -combinations without any restriction coming from the use of this -file. (The Library Public License restrictions do apply in other -respects; for example, they cover modification of the file, and -distribution when not linked into a combined executable.) - -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -02110-1301, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus-gcc.yml b/tests/licensedcode/data/licenses/lgpl-2.0-plus-gcc.yml deleted file mode 100644 index bdde5072e69..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus-gcc.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - lgpl-2.0-plus WITH gcc-linking-exception-2.0 -notes: From http://www.opensource.apple.com/source/libcppabi/libcppabi-26/include/demangle.h diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_10.txt b/tests/licensedcode/data/licenses/lgpl-2.0-plus_10.txt deleted file mode 100644 index 5aec751e9de..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_10.txt +++ /dev/null @@ -1,15 +0,0 @@ -LGPL 2 OR LATER - -is free software; you can redistribute it and/or modify (it)? -under the terms of the GNU (Library)|(Lesser) General Public License as -published by the Free Software Foundation; either version 2.*, -or \(at your option\) any later version - -.* is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU (Library)|(Lesser) General Public License for more details - -You should have received a copy of the GNU (Library)|(Lesser) General Public License -along with .* if not, write to the Free Software -Foundation .* .*USA \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_10.yml b/tests/licensedcode/data/licenses/lgpl-2.0-plus_10.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_12.txt b/tests/licensedcode/data/licenses/lgpl-2.0-plus_12.txt deleted file mode 100644 index d8e9743cc48..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_12.txt +++ /dev/null @@ -1,14 +0,0 @@ -/* -This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU Lesser General Public License - -*/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_12.yml b/tests/licensedcode/data/licenses/lgpl-2.0-plus_12.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_27.txt b/tests/licensedcode/data/licenses/lgpl-2.0-plus_27.txt deleted file mode 100644 index f61ec012fab..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_27.txt +++ /dev/null @@ -1,9 +0,0 @@ -# This program is free software; you can redistribute it and/or modify it -# under the terms of the GNU Library General Public License as published -# by the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Library General Public License for more details. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_27.yml b/tests/licensedcode/data/licenses/lgpl-2.0-plus_27.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_27.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.txt b/tests/licensedcode/data/licenses/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.txt deleted file mode 100644 index 06221ebb3ef..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.txt +++ /dev/null @@ -1,578 +0,0 @@ - OpenSceneGraph Public License, Version 0.0 - ========================================== - - Copyright (C) 2002 Robert Osfield. - - Everyone is permitted to copy and distribute verbatim copies - of this licence document, but changing it is not allowed. - - OPENSCENEGRAPH PUBLIC LICENCE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - This library is free software; you can redistribute it and/or modify it - under the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 - or later. - - Notes: the OSGPL is based on the LGPL, with the 4 exceptions laid - out in the wxWindows section below. The LGPL is contained in the - final section of this license. - - -------------------------------------------------------------------------------- - - wxWindows Library Licence, Version 3 - ==================================== - - Copyright (C) 1998 Julian Smart, Robert Roebling [, ...] - - Everyone is permitted to copy and distribute verbatim copies - of this licence document, but changing it is not allowed. - - WXWINDOWS LIBRARY LICENCE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public Licence as published by - the Free Software Foundation; either version 2 of the Licence, or (at - your option) any later version. - - This library is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library - General Public Licence for more details. - - You should have received a copy of the GNU Library General Public Licence - along with this software, usually in a file named COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA. - - EXCEPTION NOTICE - - 1. As a special exception, the copyright holders of this library give - permission for additional uses of the text contained in this release of - the library as licenced under the wxWindows Library Licence, applying - either version 3 of the Licence, or (at your option) any later version of - the Licence as published by the copyright holders of version 3 of the - Licence document. - - 2. The exception is that you may use, copy, link, modify and distribute - under the user's own terms, binary object code versions of works based - on the Library. - - 3. If you copy code from files distributed under the terms of the GNU - General Public Licence or the GNU Library General Public Licence into a - copy of this library, as this licence permits, the exception does not - apply to the code that you add in this way. To avoid misleading anyone as - to the status of such modified files, you must delete this exception - notice from such code and/or adjust the licensing conditions notice - accordingly. - - 4. If you write modifications of your own for this library, it is your - choice whether to permit this exception to apply to your modifications. - If you do not wish that, you must delete the exception notice from such - code and/or adjust the licensing conditions notice accordingly. - - ------------------------------------------------------------------------------- - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.yml b/tests/licensedcode/data/licenses/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.yml deleted file mode 100644 index 9c0a2909faa..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus WITH wxwindows-exception-3.1 diff --git a/tests/licensedcode/data/licenses/lgpl-2.0.txt b/tests/licensedcode/data/licenses/lgpl-2.0.txt deleted file mode 100644 index 89315f4701f..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0.txt +++ /dev/null @@ -1,437 +0,0 @@ - GNU LIBRARY GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the library GPL. It is - numbered 2 because it goes with version 2 of the ordinary GPL.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Library General Public License, applies to some -specially designated Free Software Foundation software, and to any -other libraries whose authors decide to use it. You can use it for -your libraries, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if -you distribute copies of the library, or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link a program with the library, you must provide -complete object files to the recipients so that they can relink them -with the library, after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - Our method of protecting your rights has two steps: (1) copyright -the library, and (2) offer you this license which gives you legal -permission to copy, distribute and/or modify the library. - - Also, for each distributor's protection, we want to make certain -that everyone understands that there is no warranty for this free -library. If the library is modified by someone else and passed on, we -want its recipients to know that what they have is not the original -version, so that any problems introduced by others will not reflect on -the original authors' reputations. -. - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that companies distributing free -software will individually obtain patent licenses, thus in effect -transforming the program into proprietary software. To prevent this, -we have made it clear that any patent must be licensed for everyone's -free use or not licensed at all. - - Most GNU software, including some libraries, is covered by the ordinary -GNU General Public License, which was designed for utility programs. This -license, the GNU Library General Public License, applies to certain -designated libraries. This license is quite different from the ordinary -one; be sure to read it in full, and don't assume that anything in it is -the same as in the ordinary license. - - The reason we have a separate public license for some libraries is that -they blur the distinction we usually make between modifying or adding to a -program and simply using it. Linking a program with a library, without -changing the library, is in some sense simply using the library, and is -analogous to running a utility program or application program. However, in -a textual and legal sense, the linked executable is a combined work, a -derivative of the original library, and the ordinary General Public License -treats it as such. - - Because of this blurred distinction, using the ordinary General -Public License for libraries did not effectively promote software -sharing, because most developers did not use the libraries. We -concluded that weaker conditions might promote sharing better. - - However, unrestricted linking of non-free programs would deprive the -users of those programs of all benefit from the free status of the -libraries themselves. This Library General Public License is intended to -permit developers of non-free programs to use free libraries, while -preserving your freedom as a user of such programs to change the free -libraries that are incorporated in them. (We have not seen how to achieve -this as regards changes in header files, but we have achieved it as regards -changes in the actual functions of the Library.) The hope is that this -will lead to faster development of free libraries. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, while the latter only -works together with the library. - - Note that it is possible for a library to be covered by the ordinary -General Public License rather than by this special one. -. - GNU LIBRARY GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library which -contains a notice placed by the copyright holder or other authorized -party saying it may be distributed under the terms of this Library -General Public License (also called "this License"). Each licensee is -addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. -. - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. -. - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. -. - 6. As an exception to the Sections above, you may also compile or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - c) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - d) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the source code distributed need not include anything that is normally -distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. -. - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. -. - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Library General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. -. - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS diff --git a/tests/licensedcode/data/licenses/lgpl-2.0.yml b/tests/licensedcode/data/licenses/lgpl-2.0.yml deleted file mode 100644 index 768efc150b3..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0 diff --git a/tests/licensedcode/data/licenses/lgpl-2.0_not_gpl.txt b/tests/licensedcode/data/licenses/lgpl-2.0_not_gpl.txt deleted file mode 100644 index 05e824bce63..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0_not_gpl.txt +++ /dev/null @@ -1,2 +0,0 @@ -This program can be distributed under the terms of the GNU LGPLv2. -See the file COPYING.LIB \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.0_not_gpl.yml b/tests/licensedcode/data/licenses/lgpl-2.0_not_gpl.yml deleted file mode 100644 index 768efc150b3..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.0_not_gpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0 diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-nokia-qt.txt b/tests/licensedcode/data/licenses/lgpl-2.1-nokia-qt.txt deleted file mode 100644 index f8b914a3745..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-nokia-qt.txt +++ /dev/null @@ -1,22 +0,0 @@ -Nokia Qt LGPL Exception version 1.1 - -As an additional permission to the GNU Lesser General Public License version -2.1, the object code form of a "work that uses the Library" may incorporate -material from a header file that is part of the Library. You may distribute -such object code under terms of your choice, provided that: - (i) the header files of the Library have not been modified; and - (ii) the incorporated material is limited to numerical parameters, data - structure layouts, accessors, macros, inline functions and - templates; and - (iii) you comply with the terms of Section 6 of the GNU Lesser General - Public License version 2.1. - -Moreover, you may apply this exception to a modified version of the Library, -provided that such modification does not involve copying material from the -Library into the modified Library's header files unless such material is -limited to (i) numerical parameters; (ii) data structure layouts; -(iii) accessors; and (iv) small macros, templates and inline functions of -five lines or less in length. - -Furthermore, you are not required to apply this additional permission to a -modified version of the Library. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-nokia-qt.yml b/tests/licensedcode/data/licenses/lgpl-2.1-nokia-qt.yml deleted file mode 100644 index 876bd4a9ffb..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-nokia-qt.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - qt-lgpl-exception-1.1 - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_13.txt b/tests/licensedcode/data/licenses/lgpl-2.1-plus_13.txt deleted file mode 100644 index cbee875ba6d..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_13.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_13.yml b/tests/licensedcode/data/licenses/lgpl-2.1-plus_13.yml deleted file mode 100644 index b07cf802c05..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_17.txt b/tests/licensedcode/data/licenses/lgpl-2.1-plus_17.txt deleted file mode 100644 index b1e3f5a2638..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_17.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_17.yml b/tests/licensedcode/data/licenses/lgpl-2.1-plus_17.yml deleted file mode 100644 index b07cf802c05..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_2.txt b/tests/licensedcode/data/licenses/lgpl-2.1-plus_2.txt deleted file mode 100644 index 6ff6c8d032b..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_2.txt +++ /dev/null @@ -1,12 +0,0 @@ - /* - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. (See .) - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Lesser General Public License for more details. - */ - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_2.yml b/tests/licensedcode/data/licenses/lgpl-2.1-plus_2.yml deleted file mode 100644 index b07cf802c05..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_23.txt b/tests/licensedcode/data/licenses/lgpl-2.1-plus_23.txt deleted file mode 100644 index 03851a33830..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_23.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_23.yml b/tests/licensedcode/data/licenses/lgpl-2.1-plus_23.yml deleted file mode 100644 index b07cf802c05..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_no_version.txt b/tests/licensedcode/data/licenses/lgpl-2.1-plus_no_version.txt deleted file mode 100644 index 5fe36cd733a..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_no_version.txt +++ /dev/null @@ -1,16 +0,0 @@ - * This copyrighted material is made available to anyone wishing to use, modify, - * copy, or redistribute it subject to the terms and conditions of the GNU - * Lesser General Public License, as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License - * for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this distribution; if not, write to: - * Free Software Foundation, Inc. - * 51 Franklin Street, Fifth Floor - * Boston, MA 02110-1301 USA - - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-plus_no_version.yml b/tests/licensedcode/data/licenses/lgpl-2.1-plus_no_version.yml deleted file mode 100644 index b07cf802c05..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-plus_no_version.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-rxtx.txt b/tests/licensedcode/data/licenses/lgpl-2.1-rxtx.txt deleted file mode 100644 index 2e15a8e9a05..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-rxtx.txt +++ /dev/null @@ -1,51 +0,0 @@ -RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. -RXTX is a native interface to serial ports in java. -Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who -actually wrote it. See individual source files for more information. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -An executable that contains no derivative of any portion of RXTX, but -is designed to work with RXTX by being dynamically linked with it, -is considered a "work that uses the Library" subject to the terms and -conditions of the GNU Lesser General Public License. - -The following has been added to the RXTX License to remove -any confusion about linking to RXTX. We want to allow in part what -section 5, paragraph 2 of the LGPL does not permit in the special -case of linking over a controlled interface. The intent is to add a -Java Specification Request or standards body defined interface in the -future as another exception but one is not currently available. - -http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface - -As a special exception, the copyright holders of RXTX give you -permission to link RXTX with independent modules that communicate with -RXTX solely through the Sun Microsytems CommAPI interface version 2, -regardless of the license terms of these independent modules, and to copy -and distribute the resulting combined work under terms of your choice, -provided that every copy of the combined work is accompanied by a complete -copy of the source code of RXTX (the version of RXTX used to produce the -combined work), being distributed under the terms of the GNU Lesser General -Public License plus this exception. An independent module is a -module which is not derived from or based on RXTX. - -Note that people who make modified versions of RXTX are not obligated -to grant this special exception for their modified versions; it is -their choice whether to do so. The GNU Lesser General Public License -gives permission to release a modified version without this exception; this -exception also makes it possible to release a modified version which -carries forward this exception. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -All trademarks belong to their respective owners. diff --git a/tests/licensedcode/data/licenses/lgpl-2.1-rxtx.yml b/tests/licensedcode/data/licenses/lgpl-2.1-rxtx.yml deleted file mode 100644 index 5ebdbb842b4..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1-rxtx.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/lgpl-2.1.txt b/tests/licensedcode/data/licenses/lgpl-2.1.txt deleted file mode 100644 index e0e0afc74bd..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1.txt +++ /dev/null @@ -1,88 +0,0 @@ -GNU Lesser General Public License -Version 2.1, February 1999 -Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1. -Preamble -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. -This license, the Lesser General Public License, applies to some specially designated software packages--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. -When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. -To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. -We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. -To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. -Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. -When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. -We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. -For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. -In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. -Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION -0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. -1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: -a) The modified work must itself be a software library. -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. -6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) -b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. -c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. -d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. -e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. -13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. -NO WARRANTY -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -END OF TERMS AND CONDITIONS -How to Apply These Terms to Your New Libraries -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - Copyright (C) -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Also add information on how to contact you by electronic and paper mail. -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: -Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That's all there is to it! - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1.yml b/tests/licensedcode/data/licenses/lgpl-2.1.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_12.txt b/tests/licensedcode/data/licenses/lgpl-2.1_12.txt deleted file mode 100644 index 8a5cfd25a20..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_12.txt +++ /dev/null @@ -1 +0,0 @@ -Creative Commons GNU LGPL, Version 2.1 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_12.yml b/tests/licensedcode/data/licenses/lgpl-2.1_12.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_3.txt b/tests/licensedcode/data/licenses/lgpl-2.1_3.txt deleted file mode 100644 index 60d6d4c8f51..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_3.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_3.yml b/tests/licensedcode/data/licenses/lgpl-2.1_3.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_4.txt b/tests/licensedcode/data/licenses/lgpl-2.1_4.txt deleted file mode 100644 index f3c040964c1..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_4.txt +++ /dev/null @@ -1,458 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_4.yml b/tests/licensedcode/data/licenses/lgpl-2.1_4.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_5.txt b/tests/licensedcode/data/licenses/lgpl-2.1_5.txt deleted file mode 100644 index 2d2d780e601..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_5.txt +++ /dev/null @@ -1,510 +0,0 @@ - - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations -below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it -becomes a de-facto standard. To achieve this, non-free programs must -be allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control -compilation and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at least - three years, to give the same user the materials specified in - Subsection 6a, above, for a charge no more than the cost of - performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply, and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License -may add an explicit geographical distribution limitation excluding those -countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms -of the ordinary General Public License). - - To apply these terms, attach the following notices to the library. -It is safest to attach them to the start of each source file to most -effectively convey the exclusion of warranty; and each file should -have at least the "copyright" line and a pointer to where the full -notice is found. - - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or -your school, if any, to sign a "copyright disclaimer" for the library, -if necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James - Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_5.yml b/tests/licensedcode/data/licenses/lgpl-2.1_5.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_7.txt b/tests/licensedcode/data/licenses/lgpl-2.1_7.txt deleted file mode 100644 index c0f4d2c2de1..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_7.txt +++ /dev/null @@ -1,298 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: thay of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a wfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two thing -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people havt free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later versi \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-2.1_7.yml b/tests/licensedcode/data/licenses/lgpl-2.1_7.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-2.1_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/lgpl-3.0-plus.txt b/tests/licensedcode/data/licenses/lgpl-3.0-plus.txt deleted file mode 100644 index d392e0e585f..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0-plus.txt +++ /dev/null @@ -1,65 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE - -Version 3, 29 June 2007 - -Copyright (C) 2007 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. -0. Additional Definitions. - -As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the “GNU GPL” refers to version 3 of the GNU General Public License. - -“The Library” refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. - -An “Application” is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. - -A “Combined Work” is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the “Linked Version”. - -The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. - -The “Corresponding Application Code” for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. -1. Exception to Section 3 of the GNU GPL. - -You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. -2. Conveying Modified Versions. - -If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: - - * a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or - * b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. - -3. Object Code Incorporating Material from Library Header Files. - -The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: - - * a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. - * b) Accompany the object code with a copy of the GNU GPL and this license document. - -4. Combined Works. - -You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: - - * a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. - * b) Accompany the Combined Work with a copy of the GNU GPL and this license document. - * c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. - * d) Do one of the following: - o 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. - o 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. - * e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) - -5. Combined Libraries. - -You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: - - * a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. - * b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. - -6. Revised Versions of the GNU Lesser General Public License. - -The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. - -If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-3.0-plus.yml b/tests/licensedcode/data/licenses/lgpl-3.0-plus.yml deleted file mode 100644 index 630e420bd57..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl-3.0-plus_1.txt b/tests/licensedcode/data/licenses/lgpl-3.0-plus_1.txt deleted file mode 100644 index b8e95ad0a48..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0-plus_1.txt +++ /dev/null @@ -1,11 +0,0 @@ -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License as published -* by the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License for more details. -* -* See \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-3.0-plus_1.yml b/tests/licensedcode/data/licenses/lgpl-3.0-plus_1.yml deleted file mode 100644 index 630e420bd57..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl-3.0-plus_notice.txt b/tests/licensedcode/data/licenses/lgpl-3.0-plus_notice.txt deleted file mode 100644 index d680eac5bc1..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0-plus_notice.txt +++ /dev/null @@ -1,12 +0,0 @@ -This program is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by the -Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License -for more details. - -You should have received a copy of the GNU Lesser General Public License -along with this program. If not, see . diff --git a/tests/licensedcode/data/licenses/lgpl-3.0-plus_notice.yml b/tests/licensedcode/data/licenses/lgpl-3.0-plus_notice.yml deleted file mode 100644 index 630e420bd57..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0-plus_notice.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl-3.0.txt b/tests/licensedcode/data/licenses/lgpl-3.0.txt deleted file mode 100644 index 817053c15e6..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0.txt +++ /dev/null @@ -1 +0,0 @@ -Lesser General Public License (LGPL v3) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl-3.0.yml b/tests/licensedcode/data/licenses/lgpl-3.0.yml deleted file mode 100644 index 23c6e85703a..00000000000 --- a/tests/licensedcode/data/licenses/lgpl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0 diff --git a/tests/licensedcode/data/licenses/lgpl.txt b/tests/licensedcode/data/licenses/lgpl.txt deleted file mode 100644 index ebbb3f7fc01..00000000000 --- a/tests/licensedcode/data/licenses/lgpl.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* licensed under http://www.gnu.org/licenses/lgpl.html */ - diff --git a/tests/licensedcode/data/licenses/lgpl.yml b/tests/licensedcode/data/licenses/lgpl.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_14.txt b/tests/licensedcode/data/licenses/lgpl_14.txt deleted file mode 100644 index 4bd1101c7ff..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_14.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* This is GNU LGPL */ - diff --git a/tests/licensedcode/data/licenses/lgpl_14.yml b/tests/licensedcode/data/licenses/lgpl_14.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_2.txt b/tests/licensedcode/data/licenses/lgpl_2.txt deleted file mode 100644 index e37b729d0d6..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_2.txt +++ /dev/null @@ -1,4 +0,0 @@ -LGPL - -Distributable under LGPL license -See terms of license at gnuorg \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lgpl_2.yml b/tests/licensedcode/data/licenses/lgpl_2.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_4.txt b/tests/licensedcode/data/licenses/lgpl_4.txt deleted file mode 100644 index d27df9eddd0..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_4.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* My work is under the GNU LGPL license */ - diff --git a/tests/licensedcode/data/licenses/lgpl_4.yml b/tests/licensedcode/data/licenses/lgpl_4.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_5.txt b/tests/licensedcode/data/licenses/lgpl_5.txt deleted file mode 100644 index 4f9696609b2..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_5.txt +++ /dev/null @@ -1,3 +0,0 @@ -/* This is LGPL */ - - diff --git a/tests/licensedcode/data/licenses/lgpl_5.yml b/tests/licensedcode/data/licenses/lgpl_5.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_6.txt b/tests/licensedcode/data/licenses/lgpl_6.txt deleted file mode 100644 index 89f442fa764..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_6.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* My work is under the LGPL license */ - diff --git a/tests/licensedcode/data/licenses/lgpl_6.yml b/tests/licensedcode/data/licenses/lgpl_6.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_7.txt b/tests/licensedcode/data/licenses/lgpl_7.txt deleted file mode 100644 index b70935b13e0..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_7.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* LGPL is what governs this work */ - diff --git a/tests/licensedcode/data/licenses/lgpl_7.yml b/tests/licensedcode/data/licenses/lgpl_7.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_8.txt b/tests/licensedcode/data/licenses/lgpl_8.txt deleted file mode 100644 index c3e877f6aab..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_8.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* Gnu LGPL is what governs this work */ - diff --git a/tests/licensedcode/data/licenses/lgpl_8.yml b/tests/licensedcode/data/licenses/lgpl_8.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/lgpl_9.txt b/tests/licensedcode/data/licenses/lgpl_9.txt deleted file mode 100644 index 7054de9a812..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_9.txt +++ /dev/null @@ -1,2 +0,0 @@ -/* licensed under http://www.fsf.org/licensing/licenses/lgpl.html */ - diff --git a/tests/licensedcode/data/licenses/lgpl_9.yml b/tests/licensedcode/data/licenses/lgpl_9.yml deleted file mode 100644 index bdc8883ce18..00000000000 --- a/tests/licensedcode/data/licenses/lgpl_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/libpbm.txt b/tests/licensedcode/data/licenses/libpbm.txt deleted file mode 100644 index c6aef778edc..00000000000 --- a/tests/licensedcode/data/licenses/libpbm.txt +++ /dev/null @@ -1,6 +0,0 @@ -** Permission to use, copy, modify, and distribute this software and its -** documentation for any purpose and without fee is hereby granted, provided -** that the above copyright notice appear in all copies and that both that -** copyright notice and this permission notice appear in supporting -** documentation. This software is provided "as is" without express or -** implied warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/libpbm.yml b/tests/licensedcode/data/licenses/libpbm.yml deleted file mode 100644 index 5d51e1b6731..00000000000 --- a/tests/licensedcode/data/licenses/libpbm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - libpbm diff --git a/tests/licensedcode/data/licenses/linux-openib_12.txt b/tests/licensedcode/data/licenses/linux-openib_12.txt deleted file mode 100644 index b3ef6ae9f5d..00000000000 --- a/tests/licensedcode/data/licenses/linux-openib_12.txt +++ /dev/null @@ -1,21 +0,0 @@ - * Redistribution and use in source and binary forms, with or - * without modification, are permitted provided that the following - * conditions are met: - * - * - Redistributions of source code must retain the above - * copyright notice, this list of conditions and the following - * disclaimer. - * - * - 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. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. diff --git a/tests/licensedcode/data/licenses/linux-openib_12.yml b/tests/licensedcode/data/licenses/linux-openib_12.yml deleted file mode 100644 index d077b092cb1..00000000000 --- a/tests/licensedcode/data/licenses/linux-openib_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - linux-openib diff --git a/tests/licensedcode/data/licenses/linuxhowtos.txt b/tests/licensedcode/data/licenses/linuxhowtos.txt deleted file mode 100644 index 646d1c0532b..00000000000 --- a/tests/licensedcode/data/licenses/linuxhowtos.txt +++ /dev/null @@ -1,3 +0,0 @@ -All howtos and documents on this site are provided "AS IS," with no express or implied warranties. Use the information on this site at your own risk. - -Linux is a registered trademark of Linus Torvalds. Other company, product, and service names may be trademarks or service marks of others. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/linuxhowtos.yml b/tests/licensedcode/data/licenses/linuxhowtos.yml deleted file mode 100644 index 580707ae503..00000000000 --- a/tests/licensedcode/data/licenses/linuxhowtos.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - linuxhowtos diff --git a/tests/licensedcode/data/licenses/lucent_notice.txt b/tests/licensedcode/data/licenses/lucent_notice.txt deleted file mode 100644 index 37a11f9cc1c..00000000000 --- a/tests/licensedcode/data/licenses/lucent_notice.txt +++ /dev/null @@ -1,20 +0,0 @@ - -Permission to use, copy, modify, and distribute this software and -its documentation for any purpose and without fee is hereby -granted, provided that the above copyright notice appear in all -copies and that both that the copyright notice and this -permission notice and warranty disclaimer appear in supporting -documentation, and that the name of Lucent or any of its entities -not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. - -LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. -IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY -SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER -IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE. - diff --git a/tests/licensedcode/data/licenses/lucent_notice.yml b/tests/licensedcode/data/licenses/lucent_notice.yml deleted file mode 100644 index ce57b6b86b3..00000000000 --- a/tests/licensedcode/data/licenses/lucent_notice.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - standard-ml-nj diff --git a/tests/licensedcode/data/licenses/lyubinskiy-popup-window.txt b/tests/licensedcode/data/licenses/lyubinskiy-popup-window.txt deleted file mode 100644 index ef3c4257d27..00000000000 --- a/tests/licensedcode/data/licenses/lyubinskiy-popup-window.txt +++ /dev/null @@ -1,16 +0,0 @@ -Copyright (C) 2005-2008 Ilya S. Lyubinskiy. All rights reserved. -Technical support: http://www.php-development.ru/ - -YOU MAY NOT -(1) Remove or modify this copyright notice. -(2) Re-distribute this code or any part of it. -Instead, you may link to the homepage of this code: - http://www.php-development.ru/javascripts/popup-window.php - -YOU MAY -(1) Use this code on your website. -(2) Use this code as part of another product. - -NO WARRANTY -This code is provided "as is" without warranty of any kind. -You expressly acknowledge and agree that use of this code is at your own risk. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lyubinskiy-popup-window.yml b/tests/licensedcode/data/licenses/lyubinskiy-popup-window.yml deleted file mode 100644 index fb9dfcb8f79..00000000000 --- a/tests/licensedcode/data/licenses/lyubinskiy-popup-window.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lyubinskiy-popup-window diff --git a/tests/licensedcode/data/licenses/lzma-cpl-exception.txt b/tests/licensedcode/data/licenses/lzma-cpl-exception.txt deleted file mode 100644 index 2c43804a4a2..00000000000 --- a/tests/licensedcode/data/licenses/lzma-cpl-exception.txt +++ /dev/null @@ -1,3 +0,0 @@ -I.6 Special exception for LZMA compression module - -Igor Pavlov and Amir Szekely, the authors of the LZMA compression module for NSIS, expressly permit you to statically or dynamically link your code (or bind by name) to the files from the LZMA compression module for NSIS without subjecting your linked code to the terms of the Common Public license version 1.0. Any modifications or additions to files from the LZMA compression module for NSIS, however, are subject to the terms of the Common Public License version 1.0. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/lzma-cpl-exception.yml b/tests/licensedcode/data/licenses/lzma-cpl-exception.yml deleted file mode 100644 index d8d8d44b4d1..00000000000 --- a/tests/licensedcode/data/licenses/lzma-cpl-exception.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - lzma-cpl-exception -notes: http://nsis.sourceforge.net/Docs/AppendixI.html#I.6 diff --git a/tests/licensedcode/data/licenses/mattkruse.txt b/tests/licensedcode/data/licenses/mattkruse.txt deleted file mode 100644 index 78e96c479b7..00000000000 --- a/tests/licensedcode/data/licenses/mattkruse.txt +++ /dev/null @@ -1,8 +0,0 @@ -Author: Matt Kruse -WWW: http://www.mattkruse.com/ - -NOTICE: You may use this code for any purpose, commercial or private, without any further permission from the author. You may remove this notice from your final code if you wish, however it is appreciated by the author if at least my web site address is kept. - -You may *NOT* re-distribute this code in any way except through its use. That means, you can include it in your product, or your web site, or any other form where the code is actually being used. You may not put the plain javascript up on your site for download or include it in your javascript libraries for download. -If you wish to share this code with others, please just point them to the URL instead. -Please DO NOT link directly to my .js files from your site. Copy the files to your server and use them there. Thank you. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mattkruse.yml b/tests/licensedcode/data/licenses/mattkruse.yml deleted file mode 100644 index ee09fa469c9..00000000000 --- a/tests/licensedcode/data/licenses/mattkruse.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mattkruse diff --git a/tests/licensedcode/data/licenses/mike95.txt b/tests/licensedcode/data/licenses/mike95.txt deleted file mode 100644 index 94e1bfb32ae..00000000000 --- a/tests/licensedcode/data/licenses/mike95.txt +++ /dev/null @@ -1,23 +0,0 @@ -/* - This library was downloaded from: http://www.mike95.com - - This library is copyright. It may freely be used for personal purposes - if the restriction listed below is adhered to. - Author: Michael Olivero - Email: mike95@mike95.com - - //=============================== - //Start of Restriction Definition - //=============================== - Anyone can have full use of the library provided they keep this complete comment - with the source. Also I would like to ask if any changes are made to the - code for efficiency reasons, please let me know so I may look into your change and - likewise incorporate it into library. If a suggestion makes it into the library, - your credits will be added to this information. - - Authors of Computer related books are welcome to include this source code as part - of their publishing, provided credit the Author and make note of where the source - code was obtained from: http://www.mike95.com - //============================= - //End of Restriction Definition - //============================= diff --git a/tests/licensedcode/data/licenses/mike95.yml b/tests/licensedcode/data/licenses/mike95.yml deleted file mode 100644 index 0155a6d9657..00000000000 --- a/tests/licensedcode/data/licenses/mike95.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mike95 diff --git a/tests/licensedcode/data/licenses/mit-ack.txt b/tests/licensedcode/data/licenses/mit-ack.txt deleted file mode 100644 index eb069f2921e..00000000000 --- a/tests/licensedcode/data/licenses/mit-ack.txt +++ /dev/null @@ -1,5 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies of the Software and its documentation and acknowledgment shall be given in the documentation and software packages that this Software was used. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit-ack.yml b/tests/licensedcode/data/licenses/mit-ack.yml deleted file mode 100644 index a2a32ed1c68..00000000000 --- a/tests/licensedcode/data/licenses/mit-ack.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit-ack diff --git a/tests/licensedcode/data/licenses/mit-export-control.txt b/tests/licensedcode/data/licenses/mit-export-control.txt deleted file mode 100644 index 277e8f2e19c..00000000000 --- a/tests/licensedcode/data/licenses/mit-export-control.txt +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) {{year}} {{copyright-holder}}. All Rights Reserved. - -Use and copying of this software and preparation of derivative works based upon this software are permitted. Any copy of this software or of any derivative work must include the above copyright notice of {{copyright-holder}}, this paragraph and the one after it. Any distribution of this software or derivative works must comply with all applicable United States export control laws. - -This software is made available AS IS, and {{copyright-holder}} DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND NOTWITHSTANDING ANY OTHER PROVISION CONTAINED HEREIN, ANY LIABILITY FOR DAMAGES RESULTING FROM THE SOFTWARE OR ITS USE IS EXPRESSLY DISCLAIMED, WHETHER ARISING IN CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, EVEN IF {{copyright-holder}} IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. diff --git a/tests/licensedcode/data/licenses/mit-export-control.yml b/tests/licensedcode/data/licenses/mit-export-control.yml deleted file mode 100644 index 4dcfded4385..00000000000 --- a/tests/licensedcode/data/licenses/mit-export-control.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit-export-control diff --git a/tests/licensedcode/data/licenses/mit_1.txt b/tests/licensedcode/data/licenses/mit_1.txt deleted file mode 100644 index e2eb47d1135..00000000000 --- a/tests/licensedcode/data/licenses/mit_1.txt +++ /dev/null @@ -1,9 +0,0 @@ -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: - -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_1.yml b/tests/licensedcode/data/licenses/mit_1.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_12.txt b/tests/licensedcode/data/licenses/mit_12.txt deleted file mode 100644 index 136fe560544..00000000000 --- a/tests/licensedcode/data/licenses/mit_12.txt +++ /dev/null @@ -1 +0,0 @@ -This software is released under the MIT license. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_12.yml b/tests/licensedcode/data/licenses/mit_12.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_15.txt b/tests/licensedcode/data/licenses/mit_15.txt deleted file mode 100644 index 63667fc38df..00000000000 --- a/tests/licensedcode/data/licenses/mit_15.txt +++ /dev/null @@ -1,18 +0,0 @@ -MIT - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of the Massachusetts -Institute of Technology \(MIT\) not be used in advertising or publicity -pertaining to distribution of the software without specific, written -prior permission - -MIT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -MIT BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR -ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_15.yml b/tests/licensedcode/data/licenses/mit_15.yml deleted file mode 100644 index b3c466ce312..00000000000 --- a/tests/licensedcode/data/licenses/mit_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - historical -notes: it looks like mit, smells like mit but is an historical notice diff --git a/tests/licensedcode/data/licenses/mit_19.txt b/tests/licensedcode/data/licenses/mit_19.txt deleted file mode 100644 index a8a6c7b5e1a..00000000000 --- a/tests/licensedcode/data/licenses/mit_19.txt +++ /dev/null @@ -1 +0,0 @@ -Licensed under the MIT (http://en.wikipedia.org/wiki/MIT_License) license. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_19.yml b/tests/licensedcode/data/licenses/mit_19.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_23.txt b/tests/licensedcode/data/licenses/mit_23.txt deleted file mode 100644 index 6d87ba154eb..00000000000 --- a/tests/licensedcode/data/licenses/mit_23.txt +++ /dev/null @@ -1,3 +0,0 @@ - * NicEdit is distributed under the terms of the MIT license - * For more information visit http://nicedit.com/ - * Do not remove this copyright message diff --git a/tests/licensedcode/data/licenses/mit_23.yml b/tests/licensedcode/data/licenses/mit_23.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_35.txt b/tests/licensedcode/data/licenses/mit_35.txt deleted file mode 100644 index 1d97302038c..00000000000 --- a/tests/licensedcode/data/licenses/mit_35.txt +++ /dev/null @@ -1 +0,0 @@ -Assert (c) Blake Mizerany and Keith Rarick -- MIT LICENCE \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_35.yml b/tests/licensedcode/data/licenses/mit_35.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_35.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_not_apache-2.0.txt b/tests/licensedcode/data/licenses/mit_not_apache-2.0.txt deleted file mode 100644 index a900d0232e1..00000000000 --- a/tests/licensedcode/data/licenses/mit_not_apache-2.0.txt +++ /dev/null @@ -1,9 +0,0 @@ -Licensed under the MIT License (the "License"); you may not use this file except -in compliance with the License. You may obtain a copy of the License at - -http://opensource.org/licenses/MIT - -Unless required by applicable law or agreed to in writing, software distributed -under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_not_apache-2.0.yml b/tests/licensedcode/data/licenses/mit_not_apache-2.0.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_not_apache-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_trunc.c b/tests/licensedcode/data/licenses/mit_trunc.c deleted file mode 100644 index e2eb47d1135..00000000000 --- a/tests/licensedcode/data/licenses/mit_trunc.c +++ /dev/null @@ -1,9 +0,0 @@ -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: - -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_trunc.yml b/tests/licensedcode/data/licenses/mit_trunc.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_trunc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_url_1.txt b/tests/licensedcode/data/licenses/mit_url_1.txt deleted file mode 100644 index 0d56c111026..00000000000 --- a/tests/licensedcode/data/licenses/mit_url_1.txt +++ /dev/null @@ -1 +0,0 @@ -// https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mit_url_1.yml b/tests/licensedcode/data/licenses/mit_url_1.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_url_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/mit_uses.txt b/tests/licensedcode/data/licenses/mit_uses.txt deleted file mode 100644 index 665acdc5140..00000000000 --- a/tests/licensedcode/data/licenses/mit_uses.txt +++ /dev/null @@ -1 +0,0 @@ -uses the MIT license. Please check the MIT-LICENSE file for more details. diff --git a/tests/licensedcode/data/licenses/mit_uses.yml b/tests/licensedcode/data/licenses/mit_uses.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/mit_uses.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/modified-not-exactly-mpl.txt b/tests/licensedcode/data/licenses/modified-not-exactly-mpl.txt deleted file mode 100644 index 27657665aa2..00000000000 --- a/tests/licensedcode/data/licenses/modified-not-exactly-mpl.txt +++ /dev/null @@ -1,193 +0,0 @@ -Foundation Center Public License v. 1.0 - -1. Definitions - -1.1. "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - -1.2. "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that - particular Contributor's Contribution. - -1.3. "Contribution" means Covered Software of a particular Contributor. - -1.4. "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, - the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - -1.5. "Incompatible With Secondary Licenses" means -1.5.1. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or -1.5.2. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - -1.6. "Executable Form" means any form of the work other than Source Code Form. - -1.7. "Larger Work" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - -1.8. "License" means this document. - -1.9. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial - grant or subsequently, any and all of the rights conveyed by this License. - -1.10. "Modifications" means any of the following: -1.10.1. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or -1.10.2. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent - Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero - General Public License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to - cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding - shares or beneficial ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants. Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: -2.1.1. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, - display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and -2.1.2. under Patent Claims of such Contributor to make, use, have made, import, or transfer either its Contributions or its Contributor Version. - -2.2. Effective Date. The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the - Contributor first distributes such Contribution. - -2.3. Limitations on Grant Scope. The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses - will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is - granted by a Contributor: -2.3.1. for any code that a Contributor has removed from Covered Software; or -2.3.2. for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions - with other software (except as part of its Contributor Version); or -2.3.3. under Patent Claims infringed by Covered Software in the absence of its Contributions. - -This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice -requirements in Section 3.4). - -Additionally, this License does not grant any rights to You for use of the Covered Software in any commercial use , including but not limited to the sale or -offer to sell the Covered Software, without proper properly attribution to Foundation Center or other Contributor. - -2.4. Subsequent Licenses. No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version - of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - -2.5. Representation. Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights - to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use. This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions. Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - -3. Responsibilities - -3.1. Distribution of Source Form. All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You - contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the - terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form. - -3.2. Distribution of Executable Form. If You distribute Covered Software in Executable Form then: -3.2.1. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable - Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the - recipient; and -3.2.2. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the - Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work. You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the - requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more - Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such - Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the - Covered Software under the terms of either this License or such Secondary License(s). - -3.4. Notices. - -3.4.1. You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - - 3.4.2. Furthermore, for any use of the Covered Software by You not used solely for internal use, You must include in a visible and conspicuous manner to - the user, attribution to the Foundation Center. - -3.4.3.5. Application of Additional Terms. You may choose to offer, and to charge a fee only for, warranty, support, indemnity or liability obligations to - one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it - absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every - Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include - additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, -or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they -affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent -prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly - and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means - prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such - Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this - License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and - cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors - for the Covered Software under Section 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to termination shall survive termination. - -6. Disclaimer of Warranty - -Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, -without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as -to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) -assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any -Covered Software is authorized under this License except under this disclaimer. - -7. Limitation of Liability - -Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes -Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, -without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or -losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death -or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion -or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - -Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and -such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a -party's ability to bring cross-claims or counter-claims. - -9. Miscellaneous - -This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such -provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be -construed against the drafter shall not be used to construe this License against a Contributor. - -10. Versions of the License - -10.1. New Versions. Foundation Center is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to - modify or publish new versions of this License. Each version will be given a distinguishing version number. - -10.2. Effect of New Versions. You may distribute the Covered Software under the terms of the version of the License under which You originally received - the Covered Software, or under the terms of any subsequent version published by the license steward. - -10.3. Modified Versions. If you create software not governed by this License, and you want to create a new license for such software, you may create and - use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses. If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - -This Source Code Form is subject to the terms of this License. If a copy of the License was not distributed with this file, You can obtain one at -http://gis.foundationcenter.org/licenses/LICENSE-1.0.html - -Note: If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a notice. - - -Exhibit B - "Incompatible With Secondary Licenses" Notice - -This Source Code Form is "Incompatible With Secondary Licenses", as defined by this License. diff --git a/tests/licensedcode/data/licenses/modified-not-exactly-mpl.yml b/tests/licensedcode/data/licenses/modified-not-exactly-mpl.yml deleted file mode 100644 index c2aeec218b7..00000000000 --- a/tests/licensedcode/data/licenses/modified-not-exactly-mpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-2.0 AND free-unknown diff --git a/tests/licensedcode/data/licenses/modified_apache-2.0_and_palantir_proprietary.txt b/tests/licensedcode/data/licenses/modified_apache-2.0_and_palantir_proprietary.txt deleted file mode 100644 index 483c24bb4de..00000000000 --- a/tests/licensedcode/data/licenses/modified_apache-2.0_and_palantir_proprietary.txt +++ /dev/null @@ -1,217 +0,0 @@ - Apache License (as modified) - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - 10. The name, trade names, trademarks, service marks, or product - names of Palantir Technologies Inc. (“Palantir”) or any of its - Contributors may not be used to endorse or promote products derived - from this Work (including the user interface elements embodied - therein) without specific prior written permission. Nothing in this - License constitutes as permission to (i) use the Work (including - the user interface elements embodied therein) in a way that is - likely or intended to cause confusion about the owner or source of - products derived from this Work (including the user interface - elements therein), or (ii) assert or imply (other than any - attribution notice) that products derived from this Work - (including the user interface elements embodied therein) are - connected or affiliated with Palantir, its products, or its - Contributors or sourced from or sponsored or endorsed by Palantir - or its Contributors. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/licenses/modified_apache-2.0_and_palantir_proprietary.yml b/tests/licensedcode/data/licenses/modified_apache-2.0_and_palantir_proprietary.yml deleted file mode 100644 index d3074c5e51a..00000000000 --- a/tests/licensedcode/data/licenses/modified_apache-2.0_and_palantir_proprietary.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - proprietary-license diff --git a/tests/licensedcode/data/licenses/mpeg-iso.txt b/tests/licensedcode/data/licenses/mpeg-iso.txt deleted file mode 100644 index df26eddf312..00000000000 --- a/tests/licensedcode/data/licenses/mpeg-iso.txt +++ /dev/null @@ -1,23 +0,0 @@ -/************************* MPEG-2 NBC Audio Decoder ************************** - * * -"This software module was originally developed by -AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS in the course of -development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, -14496-1,2 and 3. This software module is an implementation of a part of one or more -MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 -Audio standard. ISO/IEC gives users of the MPEG-2 NBC/MPEG-4 Audio -standards free license to this software module or modifications thereof for use in -hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4 -Audio standards. Those intending to use this software module in hardware or -software products are advised that this use may infringe existing patents. -The original developer of this software module and his/her company, the subsequent -editors and their companies, and ISO/IEC have no liability for use of this software -module or modifications thereof in an implementation. Copyright is not released for -non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer -retains full right to use the code for his/her own purpose, assign or donate the -code to a third party and to inhibit third party from using the code for non -MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must -be included in all copies or derivative works." -Copyright(c)1996. - * * - ****************************************************************************/ diff --git a/tests/licensedcode/data/licenses/mpeg-iso.yml b/tests/licensedcode/data/licenses/mpeg-iso.yml deleted file mode 100644 index c42a6fca78b..00000000000 --- a/tests/licensedcode/data/licenses/mpeg-iso.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpeg-iso diff --git a/tests/licensedcode/data/licenses/mpich.txt b/tests/licensedcode/data/licenses/mpich.txt deleted file mode 100644 index 3b80ff1bcee..00000000000 --- a/tests/licensedcode/data/licenses/mpich.txt +++ /dev/null @@ -1,38 +0,0 @@ -COPYRIGHT - - The following is a notice of limited availability of the code, and disclaimer - which must be included in the prologue of the code and in all source listings - of the code. - - Copyright Notice - + 2002 University of Chicago - - Permission is hereby granted to use, reproduce, prepare derivative works, and - to redistribute to others. This software was authored by: - - Mathematics and Computer Science Division - Argonne National Laboratory, Argonne IL 60439 - - (and) - - Department of Computer Science - University of Illinois at Urbana-Champaign - - -GOVERNMENT LICENSE - - Portions of this material resulted from work developed under a U.S. - Government Contract and are subject to the following license: the Government - is granted for itself and others acting on its behalf a paid-up, nonexclusive, - irrevocable worldwide license in this computer software to reproduce, prepare - derivative works, and perform publicly and display publicly. - - DISCLAIMER - - This computer code material was prepared, in part, as an account of work - sponsored by an agency of the United States Government. Neither the United - States, nor the University of Chicago, nor any of their employees, makes any - warranty express or implied, or assumes any legal liability or responsibility - for the accuracy, completeness, or usefulness of any information, apparatus, - product, or process disclosed, or represents that its use would not infringe - privately owned rights. diff --git a/tests/licensedcode/data/licenses/mpich.yml b/tests/licensedcode/data/licenses/mpich.yml deleted file mode 100644 index e94711b8001..00000000000 --- a/tests/licensedcode/data/licenses/mpich.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpich diff --git a/tests/licensedcode/data/licenses/mpl-1.0.txt b/tests/licensedcode/data/licenses/mpl-1.0.txt deleted file mode 100644 index f8bb8a35ae1..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.0.txt +++ /dev/null @@ -1,98 +0,0 @@ -MOZILLA PUBLIC LICENSE -Version 1.0 - -1. Definitions. - -1.1. ``Contributor'' means each entity that creates or contributes to the creation of Modifications. -1.2. ``Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. ``Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. ``Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. ``Executable'' means Covered Code in any form other than Source Code. - -1.6. ``Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. ``Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. ``License'' means this document. - -1.9. ``Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10. ``Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.11. ``Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. ``You'' means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, ``You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, ``control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (``Utilize'') the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -3. Distribution Obligations. -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled ``LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. -If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. -6. Versions of the License. -6.1. New Versions. -Netscape Communications Corporation (``Netscape'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works. -If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. -8. TERMINATION. -This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -9. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. -10. U.S. GOVERNMENT END USERS. -The Covered Code is a ``commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer software'' and ``commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. -11. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. -12. RESPONSIBILITY FOR CLAIMS. -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mpl-1.0.yml b/tests/licensedcode/data/licenses/mpl-1.0.yml deleted file mode 100644 index 41e548a44a1..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.0 diff --git a/tests/licensedcode/data/licenses/mpl-1.0_3.txt b/tests/licensedcode/data/licenses/mpl-1.0_3.txt deleted file mode 100644 index 2b7a5c3f498..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.0_3.txt +++ /dev/null @@ -1,6 +0,0 @@ -MPL 1.0 - -The contents of this file are subject to the Mozilla Public License -Version 10 \(the "License"\); you may not use this file except in -compliance with the License You may obtain a copy of the License -at http://wwwmozillaorg/MPL/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/mpl-1.0_3.yml b/tests/licensedcode/data/licenses/mpl-1.0_3.yml deleted file mode 100644 index 41e548a44a1..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.0 diff --git a/tests/licensedcode/data/licenses/mpl-1.1.txt b/tests/licensedcode/data/licenses/mpl-1.1.txt deleted file mode 100644 index 7714141d154..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.1.txt +++ /dev/null @@ -1,470 +0,0 @@ - MOZILLA PUBLIC LICENSE - Version 1.1 - - --------------- - -1. Definitions. - - 1.0.1. "Commercial Use" means distribution or otherwise making the - Covered Code available to a third party. - - 1.1. "Contributor" means each entity that creates or contributes to - the creation of Modifications. - - 1.2. "Contributor Version" means the combination of the Original - Code, prior Modifications used by a Contributor, and the Modifications - made by that particular Contributor. - - 1.3. "Covered Code" means the Original Code or Modifications or the - combination of the Original Code and Modifications, in each case - including portions thereof. - - 1.4. "Electronic Distribution Mechanism" means a mechanism generally - accepted in the software development community for the electronic - transfer of data. - - 1.5. "Executable" means Covered Code in any form other than Source - Code. - - 1.6. "Initial Developer" means the individual or entity identified - as the Initial Developer in the Source Code notice required by Exhibit - A. - - 1.7. "Larger Work" means a work which combines Covered Code or - portions thereof with code not governed by the terms of this License. - - 1.8. "License" means this document. - - 1.8.1. "Licensable" means having the right to grant, to the maximum - extent possible, whether at the time of the initial grant or - subsequently acquired, any and all of the rights conveyed herein. - - 1.9. "Modifications" means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, a - Modification is: - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code or - previous Modifications. - - 1.10. "Original Code" means Source Code of computer software code - which is described in the Source Code notice required by Exhibit A as - Original Code, and which, at the time of its release under this - License is not already Covered Code governed by this License. - - 1.10.1. "Patent Claims" means any patent claim(s), now owned or - hereafter acquired, including without limitation, method, process, - and apparatus claims, in any patent Licensable by grantor. - - 1.11. "Source Code" means the preferred form of the Covered Code for - making modifications to it, including all modules it contains, plus - any associated interface definition files, scripts used to control - compilation and installation of an Executable, or source code - differential comparisons against either the Original Code or another - well known, available Covered Code of the Contributor's choice. The - Source Code can be in a compressed or archival form, provided the - appropriate decompression or de-archiving software is widely available - for no charge. - - 1.12. "You" (or "Your") means an individual or a legal entity - exercising rights under, and complying with all of the terms of, this - License or a future version of this License issued under Section 6.1. - For legal entities, "You" includes any entity which controls, is - controlled by, or is under common control with You. For purposes of - this definition, "control" means (a) the power, direct or indirect, - to cause the direction or management of such entity, whether by - contract or otherwise, or (b) ownership of more than fifty percent - (50%) of the outstanding shares or beneficial ownership of such - entity. - -2. Source Code License. - - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - (a) under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer to use, reproduce, - modify, display, perform, sublicense and distribute the Original - Code (or portions thereof) with or without Modifications, and/or - as part of a Larger Work; and - - (b) under Patents Claims infringed by the making, using or - selling of Original Code, to make, have made, use, practice, - sell, and offer for sale, and/or otherwise dispose of the - Original Code (or portions thereof). - - (c) the licenses granted in this Section 2.1(a) and (b) are - effective on the date Initial Developer first distributes - Original Code under the terms of this License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is - granted: 1) for code that You delete from the Original Code; 2) - separate from the Original Code; or 3) for infringements caused - by: i) the modification of the Original Code or ii) the - combination of the Original Code with other software or devices. - - 2.2. Contributor Grant. - Subject to third party intellectual property claims, each Contributor - hereby grants You a world-wide, royalty-free, non-exclusive license - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Contributor, to use, reproduce, modify, - display, perform, sublicense and distribute the Modifications - created by such Contributor (or portions thereof) either on an - unmodified basis, with other Modifications, as Covered Code - and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using, or - selling of Modifications made by that Contributor either alone - and/or in combination with its Contributor Version (or portions - of such combination), to make, use, sell, offer for sale, have - made, and/or otherwise dispose of: 1) Modifications made by that - Contributor (or portions thereof); and 2) the combination of - Modifications made by that Contributor with its Contributor - Version (or portions of such combination). - - (c) the licenses granted in Sections 2.2(a) and 2.2(b) are - effective on the date Contributor first makes Commercial Use of - the Covered Code. - - (d) Notwithstanding Section 2.2(b) above, no patent license is - granted: 1) for any code that Contributor has deleted from the - Contributor Version; 2) separate from the Contributor Version; - 3) for infringements caused by: i) third party modifications of - Contributor Version or ii) the combination of Modifications made - by that Contributor with other software (except as part of the - Contributor Version) or other devices; or 4) under Patent Claims - infringed by Covered Code in the absence of Modifications made by - that Contributor. - -3. Distribution Obligations. - - 3.1. Application of License. - The Modifications which You create or to which You contribute are - governed by the terms of this License, including without limitation - Section 2.2. The Source Code version of Covered Code may be - distributed only under the terms of this License or a future version - of this License released under Section 6.1, and You must include a - copy of this License with every copy of the Source Code You - distribute. You may not offer or impose any terms on any Source Code - version that alters or restricts the applicable version of this - License or the recipients' rights hereunder. However, You may include - an additional document offering the additional rights described in - Section 3.5. - - 3.2. Availability of Source Code. - Any Modification which You create or to which You contribute must be - made available in Source Code form under the terms of this License - either on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve (12) - months after the date it initially became available, or at least six - (6) months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - - 3.3. Description of Modifications. - You must cause all Covered Code to which You contribute to contain a - file documenting the changes You made to create that Covered Code and - the date of any change. You must include a prominent statement that - the Modification is derived, directly or indirectly, from Original - Code provided by the Initial Developer and including the name of the - Initial Developer in (a) the Source Code, and (b) in any notice in an - Executable version or related documentation in which You describe the - origin or ownership of the Covered Code. - - 3.4. Intellectual Property Matters - (a) Third Party Claims. - If Contributor has knowledge that a license under a third party's - intellectual property rights is required to exercise the rights - granted by such Contributor under Sections 2.1 or 2.2, - Contributor must include a text file with the Source Code - distribution titled "LEGAL" which describes the claim and the - party making the claim in sufficient detail that a recipient will - know whom to contact. If Contributor obtains such knowledge after - the Modification is made available as described in Section 3.2, - Contributor shall promptly modify the LEGAL file in all copies - Contributor makes available thereafter and shall take other steps - (such as notifying appropriate mailing lists or newsgroups) - reasonably calculated to inform those who received the Covered - Code that new knowledge has been obtained. - - (b) Contributor APIs. - If Contributor's Modifications include an application programming - interface and Contributor has knowledge of patent licenses which - are reasonably necessary to implement that API, Contributor must - also include this information in the LEGAL file. - - (c) Representations. - Contributor represents that, except as disclosed pursuant to - Section 3.4(a) above, Contributor believes that Contributor's - Modifications are Contributor's original creation(s) and/or - Contributor has sufficient rights to grant the rights conveyed by - this License. - - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file of the Source - Code. If it is not possible to put such notice in a particular Source - Code file due to its structure, then You must include such notice in a - location (such as a relevant directory) where a user would be likely - to look for such a notice. If You created one or more Modification(s) - You may add your name as a Contributor to the notice described in - Exhibit A. You must also duplicate this License in any documentation - for the Source Code where You describe recipients' rights or ownership - rights relating to Covered Code. You may choose to offer, and to - charge a fee for, warranty, support, indemnity or liability - obligations to one or more recipients of Covered Code. However, You - may do so only on Your own behalf, and not on behalf of the Initial - Developer or any Contributor. You must make it absolutely clear than - any such warranty, support, indemnity or liability obligation is - offered by You alone, and You hereby agree to indemnify the Initial - Developer and every Contributor for any liability incurred by the - Initial Developer or such Contributor as a result of warranty, - support, indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only if the - requirements of Section 3.1-3.5 have been met for that Covered Code, - and if You include a notice stating that the Source Code version of - the Covered Code is available under the terms of this License, - including a description of how and where You have fulfilled the - obligations of Section 3.2. The notice must be conspicuously included - in any notice in an Executable version, related documentation or - collateral in which You describe recipients' rights relating to the - Covered Code. You may distribute the Executable version of Covered - Code or ownership rights under a license of Your choice, which may - contain terms different from this License, provided that You are in - compliance with the terms of this License and that the license for the - Executable version does not attempt to limit or alter the recipient's - rights in the Source Code version from the rights set forth in this - License. If You distribute the Executable version under a different - license You must make it absolutely clear that any terms which differ - from this License are offered by You alone, not by the Initial - Developer or any Contributor. You hereby agree to indemnify the - Initial Developer and every Contributor for any liability incurred by - the Initial Developer or such Contributor as a result of any such - terms You offer. - - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code with other code - not governed by the terms of this License and distribute the Larger - Work as a single product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Code due to - statute, judicial order, or regulation then You must: (a) comply with - the terms of this License to the maximum extent possible; and (b) - describe the limitations and the code they affect. Such description - must be included in the LEGAL file described in Section 3.4 and must - be included with all distributions of the Source Code. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - - 6.1. New Versions. - Netscape Communications Corporation ("Netscape") may publish revised - and/or new versions of the License from time to time. Each version - will be given a distinguishing version number. - - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular version of the - License, You may always continue to use it under the terms of that - version. You may also choose to use such Covered Code under the terms - of any subsequent version of the License published by Netscape. No one - other than Netscape has the right to modify the terms applicable to - Covered Code created under this License. - - 6.3. Derivative Works. - If You create or use a modified version of this License (which you may - only do in order to apply it to code which is not already Covered Code - governed by this License), You must (a) rename Your license so that - the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", - "MPL", "NPL" or any confusingly similar phrase do not appear in your - license (except to note that your license differs from this License) - and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and - Netscape Public License. (Filling in the name of the Initial - Developer, Original Code or Contributor in the notice described in - Exhibit A shall not of themselves be deemed to be modifications of - this License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF - DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE - IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE - COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - 8.1. This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure - such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by their - nature, must remain in effect beyond the termination of this License - shall survive. - - 8.2. If You initiate litigation by asserting a patent infringement - claim (excluding declatory judgment actions) against Initial Developer - or a Contributor (the Initial Developer or Contributor against whom - You file such action is referred to as "Participant") alleging that: - - (a) such Participant's Contributor Version directly or indirectly - infringes any patent, then any and all rights granted by such - Participant to You under Sections 2.1 and/or 2.2 of this License - shall, upon 60 days notice from Participant terminate prospectively, - unless if within 60 days after receipt of notice You either: (i) - agree in writing to pay Participant a mutually agreeable reasonable - royalty for Your past and future use of Modifications made by such - Participant, or (ii) withdraw Your litigation claim with respect to - the Contributor Version against such Participant. If within 60 days - of notice, a reasonable royalty and payment arrangement are not - mutually agreed upon in writing by the parties or the litigation claim - is not withdrawn, the rights granted by Participant to You under - Sections 2.1 and/or 2.2 automatically terminate at the expiration of - the 60 day notice period specified above. - - (b) any software, hardware, or device, other than such Participant's - Contributor Version, directly or indirectly infringes any patent, then - any rights granted to You by such Participant under Sections 2.1(b) - and 2.2(b) are revoked effective as of the date You first made, used, - sold, distributed, or had made, Modifications made by that - Participant. - - 8.3. If You assert a patent infringement claim against Participant - alleging that such Participant's Contributor Version directly or - indirectly infringes any patent where such claim is resolved (such as - by license or settlement) prior to the initiation of patent - infringement litigation, then the reasonable value of the licenses - granted by such Participant under Sections 2.1 or 2.2 shall be taken - into account in determining the amount or value of any payment or - license. - - 8.4. In the event of termination under Sections 8.1 or 8.2 above, - all end user license agreements (excluding distributors and resellers) - which have been validly granted by You or any distributor hereunder - prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, - OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR - ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY - CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, - WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER - COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN - INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY - RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW - PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE - EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO - THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a "commercial item," as that term is defined in - 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer - software" and "commercial computer software documentation," as such - terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 - C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), - all U.S. Government End Users acquire Covered Code with only those - rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - California law provisions (except to the extent applicable law, if - any, provides otherwise), excluding its conflict-of-law provisions. - With respect to disputes in which at least one party is a citizen of, - or an entity chartered or registered to do business in the United - States of America, any litigation relating to this License shall be - subject to the jurisdiction of the Federal Courts of the Northern - District of California, with venue lying in Santa Clara County, - California, with the losing party responsible for costs, including - without limitation, court costs and reasonable attorneys' fees and - expenses. The application of the United Nations Convention on - Contracts for the International Sale of Goods is expressly excluded. - Any law or regulation which provides that the language of a contract - shall be construed against the drafter shall not apply to this - License. - -12. RESPONSIBILITY FOR CLAIMS. - - As between Initial Developer and the Contributors, each party is - responsible for claims and damages arising, directly or indirectly, - out of its utilization of rights under this License and You agree to - work with Initial Developer and Contributors to distribute such - responsibility on an equitable basis. Nothing herein is intended or - shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - - Initial Developer may designate portions of the Covered Code as - "Multiple-Licensed". "Multiple-Licensed" means that the Initial - Developer permits you to utilize portions of the Covered Code under - Your choice of the NPL or the alternative licenses, if any, specified - by the Initial Developer in the file described in Exhibit A. - -EXHIBIT A -Mozilla Public License. - - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in - compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/ - - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the - License for the specific language governing rights and limitations - under the License. - - The Original Code is ______________________________________. - - The Initial Developer of the Original Code is ________________________. - Portions created by ______________________ are Copyright (C) ______ - _______________________. All Rights Reserved. - - Contributor(s): ______________________________________. - - Alternatively, the contents of this file may be used under the terms - of the _____ license (the "[___] License"), in which case the - provisions of [______] License are applicable instead of those - above. If you wish to allow use of your version of this file only - under the terms of the [____] License and not to allow others to use - your version of this file under the MPL, indicate your decision by - deleting the provisions above and replace them with the notice and - other provisions required by the [___] License. If you do not delete - the provisions above, a recipient may use your version of this file - under either the MPL or the [___] License." - - [NOTE: The text of this Exhibit A may differ slightly from the text of - the notices in the Source Code files of the Original Code. You should - use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] - diff --git a/tests/licensedcode/data/licenses/mpl-1.1.yml b/tests/licensedcode/data/licenses/mpl-1.1.yml deleted file mode 100644 index 0b434c76457..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.1 diff --git a/tests/licensedcode/data/licenses/mpl-1.1_2.txt b/tests/licensedcode/data/licenses/mpl-1.1_2.txt deleted file mode 100644 index 1bf2b1279dd..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.1_2.txt +++ /dev/null @@ -1,471 +0,0 @@ - MOZILLA PUBLIC LICENSE - Version 1.1 - - --------------- - -1. Definitions. - - 1.0.1. "Commercial Use" means distribution or otherwise making the - Covered Code available to a third party. - - 1.1. "Contributor" means each entity that creates or contributes to - the creation of Modifications. - - 1.2. "Contributor Version" means the combination of the Original - Code, prior Modifications used by a Contributor, and the Modifications - made by that particular Contributor. - - 1.3. "Covered Code" means the Original Code or Modifications or the - combination of the Original Code and Modifications, in each case - including portions thereof. - - 1.4. "Electronic Distribution Mechanism" means a mechanism generally - accepted in the software development community for the electronic - transfer of data. - - 1.5. "Executable" means Covered Code in any form other than Source - Code. - - 1.6. "Initial Developer" means the individual or entity identified - as the Initial Developer in the Source Code notice required by Exhibit - A. - - 1.7. "Larger Work" means a work which combines Covered Code or - portions thereof with code not governed by the terms of this License. - - 1.8. "License" means this document. - - 1.8.1. "Licensable" means having the right to grant, to the maximum - extent possible, whether at the time of the initial grant or - subsequently acquired, any and all of the rights conveyed herein. - - 1.9. "Modifications" means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, a - Modification is: - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code or - previous Modifications. - - 1.10. "Original Code" means Source Code of computer software code - which is described in the Source Code notice required by Exhibit A as - Original Code, and which, at the time of its release under this - License is not already Covered Code governed by this License. - - 1.10.1. "Patent Claims" means any patent claim(s), now owned or - hereafter acquired, including without limitation, method, process, - and apparatus claims, in any patent Licensable by grantor. - - 1.11. "Source Code" means the preferred form of the Covered Code for - making modifications to it, including all modules it contains, plus - any associated interface definition files, scripts used to control - compilation and installation of an Executable, or source code - differential comparisons against either the Original Code or another - well known, available Covered Code of the Contributor's choice. The - Source Code can be in a compressed or archival form, provided the - appropriate decompression or de-archiving software is widely available - for no charge. - - 1.12. "You" (or "Your") means an individual or a legal entity - exercising rights under, and complying with all of the terms of, this - License or a future version of this License issued under Section 6.1. - For legal entities, "You" includes any entity which controls, is - controlled by, or is under common control with You. For purposes of - this definition, "control" means (a) the power, direct or indirect, - to cause the direction or management of such entity, whether by - contract or otherwise, or (b) ownership of more than fifty percent - (50%) of the outstanding shares or beneficial ownership of such - entity. - -2. Source Code License. - - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - (a) under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer to use, reproduce, - modify, display, perform, sublicense and distribute the Original - Code (or portions thereof) with or without Modifications, and/or - as part of a Larger Work; and - - (b) under Patents Claims infringed by the making, using or - selling of Original Code, to make, have made, use, practice, - sell, and offer for sale, and/or otherwise dispose of the - Original Code (or portions thereof). - - (c) the licenses granted in this Section 2.1(a) and (b) are - effective on the date Initial Developer first distributes - Original Code under the terms of this License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is - granted: 1) for code that You delete from the Original Code; 2) - separate from the Original Code; or 3) for infringements caused - by: i) the modification of the Original Code or ii) the - combination of the Original Code with other software or devices. - - 2.2. Contributor Grant. - Subject to third party intellectual property claims, each Contributor - hereby grants You a world-wide, royalty-free, non-exclusive license - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Contributor, to use, reproduce, modify, - display, perform, sublicense and distribute the Modifications - created by such Contributor (or portions thereof) either on an - unmodified basis, with other Modifications, as Covered Code - and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using, or - selling of Modifications made by that Contributor either alone - and/or in combination with its Contributor Version (or portions - of such combination), to make, use, sell, offer for sale, have - made, and/or otherwise dispose of: 1) Modifications made by that - Contributor (or portions thereof); and 2) the combination of - Modifications made by that Contributor with its Contributor - Version (or portions of such combination). - - (c) the licenses granted in Sections 2.2(a) and 2.2(b) are - effective on the date Contributor first makes Commercial Use of - the Covered Code. - - (d) Notwithstanding Section 2.2(b) above, no patent license is - granted: 1) for any code that Contributor has deleted from the - Contributor Version; 2) separate from the Contributor Version; - 3) for infringements caused by: i) third party modifications of - Contributor Version or ii) the combination of Modifications made - by that Contributor with other software (except as part of the - Contributor Version) or other devices; or 4) under Patent Claims - infringed by Covered Code in the absence of Modifications made by - that Contributor. - -3. Distribution Obligations. - - 3.1. Application of License. - The Modifications which You create or to which You contribute are - governed by the terms of this License, including without limitation - Section 2.2. The Source Code version of Covered Code may be - distributed only under the terms of this License or a future version - of this License released under Section 6.1, and You must include a - copy of this License with every copy of the Source Code You - distribute. You may not offer or impose any terms on any Source Code - version that alters or restricts the applicable version of this - License or the recipients' rights hereunder. However, You may include - an additional document offering the additional rights described in - Section 3.5. - - 3.2. Availability of Source Code. - Any Modification which You create or to which You contribute must be - made available in Source Code form under the terms of this License - either on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve (12) - months after the date it initially became available, or at least six - (6) months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - - 3.3. Description of Modifications. - You must cause all Covered Code to which You contribute to contain a - file documenting the changes You made to create that Covered Code and - the date of any change. You must include a prominent statement that - the Modification is derived, directly or indirectly, from Original - Code provided by the Initial Developer and including the name of the - Initial Developer in (a) the Source Code, and (b) in any notice in an - Executable version or related documentation in which You describe the - origin or ownership of the Covered Code. - - 3.4. Intellectual Property Matters - (a) Third Party Claims. - If Contributor has knowledge that a license under a third party's - intellectual property rights is required to exercise the rights - granted by such Contributor under Sections 2.1 or 2.2, - Contributor must include a text file with the Source Code - distribution titled "LEGAL" which describes the claim and the - party making the claim in sufficient detail that a recipient will - know whom to contact. If Contributor obtains such knowledge after - the Modification is made available as described in Section 3.2, - Contributor shall promptly modify the LEGAL file in all copies - Contributor makes available thereafter and shall take other steps - (such as notifying appropriate mailing lists or newsgroups) - reasonably calculated to inform those who received the Covered - Code that new knowledge has been obtained. - - (b) Contributor APIs. - If Contributor's Modifications include an application programming - interface and Contributor has knowledge of patent licenses which - are reasonably necessary to implement that API, Contributor must - also include this information in the LEGAL file. - - (c) Representations. - Contributor represents that, except as disclosed pursuant to - Section 3.4(a) above, Contributor believes that Contributor's - Modifications are Contributor's original creation(s) and/or - Contributor has sufficient rights to grant the rights conveyed by - this License. - - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file of the Source - Code. If it is not possible to put such notice in a particular Source - Code file due to its structure, then You must include such notice in a - location (such as a relevant directory) where a user would be likely - to look for such a notice. If You created one or more Modification(s) - You may add your name as a Contributor to the notice described in - Exhibit A. You must also duplicate this License in any documentation - for the Source Code where You describe recipients' rights or ownership - rights relating to Covered Code. You may choose to offer, and to - charge a fee for, warranty, support, indemnity or liability - obligations to one or more recipients of Covered Code. However, You - may do so only on Your own behalf, and not on behalf of the Initial - Developer or any Contributor. You must make it absolutely clear than - any such warranty, support, indemnity or liability obligation is - offered by You alone, and You hereby agree to indemnify the Initial - Developer and every Contributor for any liability incurred by the - Initial Developer or such Contributor as a result of warranty, - support, indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only if the - requirements of Section 3.1-3.5 have been met for that Covered Code, - and if You include a notice stating that the Source Code version of - the Covered Code is available under the terms of this License, - including a description of how and where You have fulfilled the - obligations of Section 3.2. The notice must be conspicuously included - in any notice in an Executable version, related documentation or - collateral in which You describe recipients' rights relating to the - Covered Code. You may distribute the Executable version of Covered - Code or ownership rights under a license of Your choice, which may - contain terms different from this License, provided that You are in - compliance with the terms of this License and that the license for the - Executable version does not attempt to limit or alter the recipient's - rights in the Source Code version from the rights set forth in this - License. If You distribute the Executable version under a different - license You must make it absolutely clear that any terms which differ - from this License are offered by You alone, not by the Initial - Developer or any Contributor. You hereby agree to indemnify the - Initial Developer and every Contributor for any liability incurred by - the Initial Developer or such Contributor as a result of any such - terms You offer. - - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code with other code - not governed by the terms of this License and distribute the Larger - Work as a single product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Code due to - statute, judicial order, or regulation then You must: (a) comply with - the terms of this License to the maximum extent possible; and (b) - describe the limitations and the code they affect. Such description - must be included in the LEGAL file described in Section 3.4 and must - be included with all distributions of the Source Code. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - - 6.1. New Versions. - Netscape Communications Corporation ("Netscape") may publish revised - and/or new versions of the License from time to time. Each version - will be given a distinguishing version number. - - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular version of the - License, You may always continue to use it under the terms of that - version. You may also choose to use such Covered Code under the terms - of any subsequent version of the License published by Netscape. No one - other than Netscape has the right to modify the terms applicable to - Covered Code created under this License. - - 6.3. Derivative Works. - If You create or use a modified version of this License (which you may - only do in order to apply it to code which is not already Covered Code - governed by this License), You must (a) rename Your license so that - the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", - "MPL", "NPL" or any confusingly similar phrase do not appear in your - license (except to note that your license differs from this License) - and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and - Netscape Public License. (Filling in the name of the Initial - Developer, Original Code or Contributor in the notice described in - Exhibit A shall not of themselves be deemed to be modifications of - this License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF - DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE - IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE - COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - 8.1. This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure - such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by their - nature, must remain in effect beyond the termination of this License - shall survive. - - 8.2. If You initiate litigation by asserting a patent infringement - claim (excluding declatory judgment actions) against Initial Developer - or a Contributor (the Initial Developer or Contributor against whom - You file such action is referred to as "Participant") alleging that: - - (a) such Participant's Contributor Version directly or indirectly - infringes any patent, then any and all rights granted by such - Participant to You under Sections 2.1 and/or 2.2 of this License - shall, upon 60 days notice from Participant terminate prospectively, - unless if within 60 days after receipt of notice You either: (i) - agree in writing to pay Participant a mutually agreeable reasonable - royalty for Your past and future use of Modifications made by such - Participant, or (ii) withdraw Your litigation claim with respect to - the Contributor Version against such Participant. If within 60 days - of notice, a reasonable royalty and payment arrangement are not - mutually agreed upon in writing by the parties or the litigation claim - is not withdrawn, the rights granted by Participant to You under - Sections 2.1 and/or 2.2 automatically terminate at the expiration of - the 60 day notice period specified above. - - (b) any software, hardware, or device, other than such Participant's - Contributor Version, directly or indirectly infringes any patent, then - any rights granted to You by such Participant under Sections 2.1(b) - and 2.2(b) are revoked effective as of the date You first made, used, - sold, distributed, or had made, Modifications made by that - Participant. - - 8.3. If You assert a patent infringement claim against Participant - alleging that such Participant's Contributor Version directly or - indirectly infringes any patent where such claim is resolved (such as - by license or settlement) prior to the initiation of patent - infringement litigation, then the reasonable value of the licenses - granted by such Participant under Sections 2.1 or 2.2 shall be taken - into account in determining the amount or value of any payment or - license. - - 8.4. In the event of termination under Sections 8.1 or 8.2 above, - all end user license agreements (excluding distributors and resellers) - which have been validly granted by You or any distributor hereunder - prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, - OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR - ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY - CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, - WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER - COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN - INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY - RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW - PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE - EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO - THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a "commercial item," as that term is defined in - 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer - software" and "commercial computer software documentation," as such - terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 - C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), - all U.S. Government End Users acquire Covered Code with only those - rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - California law provisions (except to the extent applicable law, if - any, provides otherwise), excluding its conflict-of-law provisions. - With respect to disputes in which at least one party is a citizen of, - or an entity chartered or registered to do business in the United - States of America, any litigation relating to this License shall be - subject to the jurisdiction of the Federal Courts of the Northern - District of California, with venue lying in Santa Clara County, - California, with the losing party responsible for costs, including - without limitation, court costs and reasonable attorneys' fees and - expenses. The application of the United Nations Convention on - Contracts for the International Sale of Goods is expressly excluded. - Any law or regulation which provides that the language of a contract - shall be construed against the drafter shall not apply to this - License. - -12. RESPONSIBILITY FOR CLAIMS. - - As between Initial Developer and the Contributors, each party is - responsible for claims and damages arising, directly or indirectly, - out of its utilization of rights under this License and You agree to - work with Initial Developer and Contributors to distribute such - responsibility on an equitable basis. Nothing herein is intended or - shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - - Initial Developer may designate portions of the Covered Code as - "Multiple-Licensed". "Multiple-Licensed" means that the Initial - Developer permits you to utilize portions of the Covered Code under - Your choice of the NPL or the alternative licenses, if any, specified - by the Initial Developer in the file described in Exhibit A. - -EXHIBIT A -Mozilla Public License. - - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in - compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/ - - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the - License for the specific language governing rights and limitations - under the License. - - The Original Code is ______________________________________. - - The Initial Developer of the Original Code is ________________________. - Portions created by ______________________ are Copyright (C) ______ - _______________________. All Rights Reserved. - - Contributor(s): ______________________________________. - - Alternatively, the contents of this file may be used under the terms - of the _____ license (the "[___] License"), in which case the - provisions of [______] License are applicable instead of those - above. If you wish to allow use of your version of this file only - under the terms of the [____] License and not to allow others to use - your version of this file under the MPL, indicate your decision by - deleting the provisions above and replace them with the notice and - other provisions required by the [___] License. If you do not delete - the provisions above, a recipient may use your version of this file - under either the MPL or the [___] License." - - [NOTE: The text of this Exhibit A may differ slightly from the text of - the notices in the Source Code files of the Original Code. You should - use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] - - diff --git a/tests/licensedcode/data/licenses/mpl-1.1_2.yml b/tests/licensedcode/data/licenses/mpl-1.1_2.yml deleted file mode 100644 index 0b434c76457..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.1 diff --git a/tests/licensedcode/data/licenses/mpl-1.1_5.txt b/tests/licensedcode/data/licenses/mpl-1.1_5.txt deleted file mode 100644 index 2178e76e40a..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.1_5.txt +++ /dev/null @@ -1,123 +0,0 @@ -Mozilla Public License Version 1.1 -1. Definitions. -1.0.1. "Commercial Use" -means distribution or otherwise making the Covered Code available to a third party. -1.1. "Contributor" -means each entity that creates or contributes to the creation of Modifications. -1.2. "Contributor Version" -means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. -1.3. "Covered Code" -means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. -1.4. "Electronic Distribution Mechanism" -means a mechanism generally accepted in the software development community for the electronic transfer of data. -1.5. "Executable" -means Covered Code in any form other than Source Code. -1.6. "Initial Developer" -means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. -1.7. "Larger Work" -means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. -1.8. "License" -means this document. -1.8.1. "Licensable" -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.9. "Modifications" -means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. -Any new file that contains any part of the Original Code or previous Modifications. -1.10. "Original Code" -means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. -1.10.1. "Patent Claims" -means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. -1.11. "Source Code" -means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. -1.12. "You" (or "Your") -means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. -2. Source Code License. -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and -under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). -the licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. -Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. -2.2. Contributor Grant. -Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - -under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and -under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). -the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first makes Commercial Use of the Covered Code. -Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. -3. Distribution Obligations. -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters -(a) Third Party Claims -If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs -If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the legal file. - -(c) Representations. -Contributor represents that, except as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the legal file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. -6.1. New Versions -Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2. Effect of New Versions -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. Disclaimer of warranty -Covered code is provided under this license on an "as is" basis, without warranty of any kind, either expressed or implied, including, without limitation, warranties that the covered code is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the covered code is with you. Should any covered code prove defective in any respect, you (not the initial developer or any other contributor) assume the cost of any necessary servicing, repair or correction. This disclaimer of warranty constitutes an essential part of this license. No use of any covered code is authorized hereunder except under this disclaimer. - -8. Termination -8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: - -such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. -any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. -8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9. Limitation of liability -Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall you, the initial developer, any other contributor, or any distributor of covered code, or any supplier of any of such parties, be liable to any person for any indirect, special, incidental, or consequential damages of any character including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to you. - -10. U.S. government end users -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. Miscellaneous -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. Responsibility for claims -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. Multiple-licensed code -Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. diff --git a/tests/licensedcode/data/licenses/mpl-1.1_5.yml b/tests/licensedcode/data/licenses/mpl-1.1_5.yml deleted file mode 100644 index 0b434c76457..00000000000 --- a/tests/licensedcode/data/licenses/mpl-1.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.1 diff --git a/tests/licensedcode/data/licenses/mpl-2.0_1.txt b/tests/licensedcode/data/licenses/mpl-2.0_1.txt deleted file mode 100644 index 6a07e8befa5..00000000000 --- a/tests/licensedcode/data/licenses/mpl-2.0_1.txt +++ /dev/null @@ -1,4 +0,0 @@ - * This Source Code Form is subject to the terms of the - * Mozilla Public License (MPL), v. 2.0. - * If a copy of the MPL was not distributed with this file, - * You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/tests/licensedcode/data/licenses/mpl-2.0_1.yml b/tests/licensedcode/data/licenses/mpl-2.0_1.yml deleted file mode 100644 index d901f538f28..00000000000 --- a/tests/licensedcode/data/licenses/mpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-2.0 diff --git a/tests/licensedcode/data/licenses/ms-capicom.txt b/tests/licensedcode/data/licenses/ms-capicom.txt deleted file mode 100644 index b120afbf20b..00000000000 --- a/tests/licensedcode/data/licenses/ms-capicom.txt +++ /dev/null @@ -1,43 +0,0 @@ -MICROSOFT SOFTWARE LICENSE TERMS -MICROSOFT CAPICOM -These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft -· updates, -· supplements, -· Internet-based services, and -· support services -for this software, unless other terms accompany those items. If so, those terms apply. -BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. -If you comply with these license terms, you have the rights below. -1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices running validly licensed copies of Windows 2000, Windows XP, Windows Vista, or Windows Server 2003. -2. Scope of License. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -· work around any technical limitations in the software; -· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; -· make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; -· publish the software for others to copy; -· rent, lease or lend the software; or -· use the software for commercial software hosting services. -3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. -4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. -5. TRANSFER TO A THIRD PARTY. The first user of the software may transfer it and this agreement directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring it separately from the device. The first user may not retain any copies. -6. Export Restrictions. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting . -7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. -8. Entire Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9. Applicable Law. -a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. -b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. -10. Legal Effect. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. -11. Disclaimer of Warranty. The software is licensed “as-is.” You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. -12. Limitation on and Exclusion of Remedies and Damages. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. -This limitation applies to -· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and -· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. -Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. -Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. -EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. -LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. -Cette limitation concerne: -· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et -· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. -Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ms-capicom.yml b/tests/licensedcode/data/licenses/ms-capicom.yml deleted file mode 100644 index 0de9097cb58..00000000000 --- a/tests/licensedcode/data/licenses/ms-capicom.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-capicom diff --git a/tests/licensedcode/data/licenses/ms-developer-services-agreement.txt b/tests/licensedcode/data/licenses/ms-developer-services-agreement.txt deleted file mode 100644 index 68dc49e878d..00000000000 --- a/tests/licensedcode/data/licenses/ms-developer-services-agreement.txt +++ /dev/null @@ -1,216 +0,0 @@ -Microsoft Developer Services Agreement -Updated October, 2013 - -This agreement is between you or the entity you represent and the Microsoft entity listed in Exhibit A, and consists of the terms below, Exhibit A, Exhibit B, the SLAs, Offer Details for any Service as published on the date of a Service purchase or renewal, terms incorporated by reference, terms applicable to other Microsoft web sites and services that you use and are necessary to use the Services (for example, your Microsoft Account) and, the Privacy Statement (together, the “Agreement”). If you are entering into this Agreement on behalf of an entity, such as your employer, you represent that you have the legal authority to bind that entity. If you specify a company name in connection with signing up for or ordering a Service, you will be deemed to have placed that order and to have entered into this Agreement on behalf of that organization or company. Key terms are defined in Section 11. In addition, if you are a Windows Azure customer, this Agreement supplements your existing Windows Azure agreement and governs to the extent of any conflict with the Windows Azure terms (except that the Windows Azure billing terms will continue to apply). - -1. Services. -Right to use. We grant you the right to access and use the Services in accordance with this Agreement. -User Plan. Each user of the Visual Studio Online portion of the Developer Services must be allocated an individual User Plan, whether they access the service directly or indirectly. -Manner of use. You may not: -reverse engineer, decompile, disassemble or work around technical limitations in the Services, except to the extent that applicable law permits it despite these limitations; -disable, tamper with or otherwise attempt to circumvent any mechanism that limits your use of the Services; -rent, lease, lend, resell, transfer, or sublicense any Services or portion thereof to or for third parties, except as explicitly permitted herein or in license terms that accompany any Services component; -use the Services for any purpose that is unlawful or prohibited by this Agreement; or -use the Services in any manner that could damage, disable, overburden, or impair any Microsoft service, or the network(s) connected to any Microsoft service, or interfere with any other party’s use and enjoyment of any Services. -Updates. We may make changes to the Services from time to time, including: the availability of features; how long, how much or how often any given feature may be used; and feature dependencies upon other services or software. We will provide you with prior notice before removing any material feature or functionality of the Developer Services (excluding Previews), unless security, legal, or system performance considerations require an expedited removal. -Preview features. We may make features available on a Preview basis. Previews are provided “AS-IS” and are excluded from the SLAs and warranties in Section 7 below. Previews may be subject to reduced or different security, compliance, privacy, availability, reliability, and support commitments, as further explained in the Privacy Statement, and any additional notices provided with the Preview. We may change or discontinue Previews at any time without notice. We also may choose not to release a Preview into “General Availability”, and if we do make Previews “Generally Available” we may charge for any such features. - -2. Software. -Using Microsoft Software outside the Service. Microsoft may provide you with Microsoft Software through or as a part of the Developer Services. Termination of use of or access to the Developer Services or the termination of this Agreement terminates your right to possess or use any such Microsoft Software; and the suspension or termination of a User Plan terminates that user’s right to possess or use any such Microsoft Software that was acquired through, is attached to, or otherwise requires that User Plan. You must delete all copies of such Microsoft Software licensed under this Agreement and destroy any associated media upon the termination of the associated possession or usage rights. Microsoft may provide you with Microsoft Software for use outside the Developer Services and with (1) the Developer Services or (2) programs you develop using the Developer Services. If the Microsoft Software is provided with its own license terms, those terms control as modified by the foregoing. If the Microsoft Software does not have its own license terms, then you may install and use any number of copies of the Microsoft Software to design, develop, and test your programs on devices. This subsection does not apply to Microsoft Software addressed in subsection (b) below. -Software on Documentation Portals.Software accessible on the Documentation Portals is made available by the designated publisher under the associated license terms. If Software is accessible on the Documentation Portals without license terms, then subject subsection (c) below you may use it to design, develop, and test your programs. If any such Software without license terms is marked as “sample” or “example,” then you may use it under the terms of the Microsoft Limited Public License. -Scope of rights. All Microsoft Software are the copyrighted works of Microsoft or its suppliers. All Microsoft Software are licensed not sold and may not be transferred unless specified otherwise in any license terms provided with the Microsoft Software. Rights to access Microsoft Software on any device do not give you any right to implement Microsoft patents or other Microsoft intellectual property in software or devices that access that device. -Third party software. You are solely responsible for any third party software that you install, connect, or use with any Service. We will not run or make any copies of such third party software outside of our relationship with you. You may only install or use any third party software with any Service in a way that does not subject our intellectual property or technology to any terms governing such software. We are not a party to and are not bound by any terms governing your use of any third party software. We do not grant any licenses or rights, express or implied, to such third party software. -Open source software as part of the Service. If the Service uses or distributes any third party software with open source software license terms (“Open Source”), then such Open Source is licensed to you by Microsoft solely to allow you to interact with the Service under terms of this Agreement. Copies of those applicable Open Source licenses and any other notices, if any, are included for your information only. -Application programming interfaces. Microsoft will not assert any of its patent rights on account of your products calling application programming interfaces that it publishes on the Documentation Portals (“APIs”) in order to receive services from the Microsoft product that exposes the APIs. - -3. Microsoft Content. -All Microsoft Content is the copyrighted work of Microsoft or its suppliers, and is governed by the terms of the license agreement that accompanies or is included with the Microsoft Content. If the Microsoft Content does not include a license agreement, then you may make a reasonable number of copies of the Microsoft Content for your internal use in designing, developing, and testing your software, products and services that is made available to you on the Documentation Portals without a license agreement. You must preserve the copyright notice in all copies of the Microsoft Content and ensure that both the copyright notice and this permission notice appear in those copies. Accredited educational institutions, such as K-12 schools, universities, and private or public colleges may download and reproduce Microsoft Content for distribution in the classroom for educational purposes. - -4. Security, privacy, and Customer Data. -Security. We maintain technical and organizational measures, internal controls, and data security routines intended to protect Customer Data against accidental loss or change, unauthorized disclosure or access, or unlawful destruction. -Privacy and data location. We treat Customer Data in accordance with the terms herein and our Privacy Statement. We may transfer to, store, and process Customer Data in the United States or in any country where we or our Affiliates or subcontractors have facilities used for Developer Services. You will obtain any necessary consent or rights from end users or others whose data or personal information or other data you will be hosting in the Services. -Rights to Provide Customer Data. You are solely responsible for your Customer Data. You must have, and you hereby grant us, sufficient rights to use and distribute Customer Data (including Customer Data sourced from third parties) necessary for us to provide you the Developer Services without violating the rights of any third party, or otherwise obligating Microsoft to you or to any third party. We do not assume any additional obligations that may apply to Customer Data except as required by applicable law. -Ownership of Customer Data. Except for software and Content we license to you, as between the parties, you retain all right, title and interest in and to Customer Data. We acquire no rights in Customer Data other than as described in this Section 4. -Use of Customer Data. We will use Customer Data to provide the Services. This use may include troubleshooting to prevent, find and fix problems with the operation of the Services and ensuring compliance with this Agreement. It may also include: providing you with suggestions to help you discover and use functionality within the Services; improving the features of our Services; and otherwise use patterns, trends, and other statistical data derived from Customer Data to provide, operate, maintain, and improve our products and services. We will not use Customer Data or derive information from it for any (1) advertising or (2) other commercial purposes (beyond providing you with the Services) without your consent. -Customer Data return and deletion. You may delete your Customer Data at any time. If you terminate your account we may delete Customer Data immediately without any retention period. We have no additional obligation to continue to hold, export, or return Customer Data and have no liability whatsoever for deletion of Customer Data pursuant to this Agreement. The Developer Services may have features that incur additional charges or are only available at a specific paid-for-service feature tier. If your account is in arrears or is downgraded to a lesser service feature tier your Customer Data will be preserved, but certain features necessary to access that Customer Data may be inaccessible. -Third party requests of Customer Data. We will not disclose Customer Data to a third party (including law enforcement, other government entity, or civil litigant, but excluding our subcontractors) except as you direct or unless required by law. We will ask any third party demanding access to your Customer Data to contact you directly using your basic contact information. We will promptly notify you and provide a copy of the demand unless legally prohibited. You are responsible for responding to requests by a third party regarding your use of Services. -Subcontractors. We may hire other companies to provide limited services on our behalf, such as customer support. Any such subcontractors will be permitted to obtain Customer Data only to deliver the services we have retained them to provide. We remain responsible for our subcontractors’ compliance with the obligations set forth in this Agreement. -Compliance with law. We will comply with all laws applicable to our provision of the Services, including applicable security breach notification laws, but not including any laws applicable to you or your industry that are not generally applicable to information technology services providers. You will comply with all laws applicable to your Customer Data, and use of the Services, including any laws applicable to you or your industry. -Certifications and compliance. The Developer Services shall be subject to any security, privacy, and compliance practices specifically described for the Developer Services at the Developer Services Portal. These obligations do not apply to any other elements of the Services. -Claims of infringement. We will inform you if we receive notice claiming that your usage of the Service infringes a third party’s intellectual property rights, and in such instances we may provide your basic contact information to the third party. You will promptly respond to such complaints. - -5. Customer accounts, customer conduct, identity services, and feedback. -Account creation. If any of the Services requires you to open an account, you must complete the registration process by providing us with current, complete and accurate information. You may not select an account user name or identifier that impersonates someone else, is or may be illegal, or may be protected by trademark or other proprietary rights, is vulgar or offensive or may cause confusion. We reserve the right to reject and/or reassign these user names and Service identifiers in our sole discretion. -Responsibility for your accounts. You are responsible for: any and all activities that occur under your account; maintaining the confidentiality of any non-public authentication credentials associated with your use of the Services; and promptly notifying our customer support team about any possible misuse of your accounts or authentication credentials, or any security incident related to the Services. -Your conduct and the availability of third party content and links to third party content. . For any public, community interaction you undertake on the Services you must follow the Rules of Conduct. We have no obligation to monitor the content and communications of third parties on the Services; however, we reserve the right to review and remove any such materials posted to the Documentation Portals in our sole discretion. Third parties that participate on the Services are not authorized Microsoft spokespersons, and their views do not necessarily reflect those of Microsoft. -Identity usage across Services. We may provide Services that supplement Microsoft Software and rely upon your user account or other identity mechanism. We may use this information to identify you and authorize access to Microsoft Content, Microsoft Software, and other resources across the Services. -Submissions and feedback. We do not claim ownership of any Submission unless otherwise agreed to by the parties. However, by providing a Submission, you are irrevocably granting Microsoft and its Affiliates the right to make, use, modify, distribute and otherwise commercialize the Submission in any way and for any purpose (including by granting the general public the right to use your Submissions in accordance with this Agreement, which may change over time). For Submissions provided to the Documentation Portals you further grant the right to publish specific identifying information detailed in the Privacy Statement in connection with your Submission. These rights are granted under all applicable intellectual property rights you own or control. No compensation will be paid with respect to the use of your Submissions. Microsoft is under no obligation to post or use any Submission, and Microsoft may remove any Submission at any time. By providing a Submission you warrant that you own or otherwise control all of the rights to your Submission and that your Submission is not subject to any rights of a third party (including any personality or publicity rights of any person). -Services accessible only to invited customers. Elements of the Services may be accessible to you on an invitation only basis, for example as part of a program for using pre-release Services and providing feedback to us (e.g., through the Connect portal). Those Services are confidential information of Microsoft. You may not disclose this confidential information to any third party for a period of five years. This restriction does not apply to any information that is or becomes publicly available without a breach of this restriction, was lawfully known to the receiver of the information without an obligation to keep it confidential, is received from another source who can disclose it lawfully and without an obligation to keep it confidential, or is independently developed. You may disclose this confidential information if required to comply with a court order or other government demand that has the force of law. Before doing so, you must seek the highest level of protection available and, when possible, give us enough prior notice to provide a reasonable chance to seek a protective order. - -6. Term, termination, and suspension. -Agreement Term and termination. You may terminate this Agreement at any time. If you have purchased access to Developer Services through Windows Azure then you must pay any amounts due and owing. -Regulatory. In any country where any current or future government regulation or requirement that applies to us, but not generally to businesses operating there, presents a hardship to us operating the Services without change, and/or causes us to believe this Agreement or the Services may be in conflict with any such regulation or requirement, we may change the Services or terminate the Agreement. Your sole remedy for such changes to the Services under this Section is to terminate this Agreement. -Suspension. We may suspend your use of the Services if: (1) reasonably needed to prevent unauthorized access to Customer Data; (2) you fail to respond to a claim of alleged infringement under Sections 4.k or 8 within a reasonable time; or (3) you violate this Agreement. We will attempt to suspend access to the minimum necessary part of the Services while the condition or need exists. We will give notice before we suspend, except where we reasonably believe we need to suspend immediately. If you do not fully address the reasons for the suspension within 60 days after we suspend, we may terminate this Agreement and delete your Customer Data without any retention period. We may also terminate your account if your use of the Developer Services is suspended more than twice in any 12-month period. -Termination for non-usage. We may suspend or terminate a Service account after a prolonged period of inactivity. For Developer Services, if you have a free account we may terminate this Agreement and/or delete any Customer Data automatically generated during the Developer Services sign up process if you fail to upload or create any Customer Data within 90 days of your initial provisioning of the Developer Service. We will provide you with notice prior to any account suspension or termination, or Customer Data deletion. -Termination of Access to Documentation Portals. We reserve the right to terminate your access to the Documentation Portals at any time, without notice, for any reason whatsoever. - -7. Warranties. -Microsoft Services warranty. If you are a Windows Azure customer who has purchased access to the Developer Services, then we warrant that the Developer Services will satisfy the SLA during the Term for the paid for portion of the Developer Services. Your only remedies for breach of this limited warranty are those in the SLA. This warranty is subject to the following limitations: -any implied warranties, guarantees or conditions not able to be disclaimed as a matter of law will last one year from the start of the limited warranty; -this limited warranty does not cover problems caused by accident, abuse or use of the Developer Services in a manner inconsistent with this Agreement or our published documentation or guidance, or resulting from events beyond our reasonable control; -this limited warranty does not apply to problems caused by the failure to meet minimum system requirements; and -this limited warranty does not apply to Previews or free offerings. -OTHER THAN THIS WARRANTY, OR EXCEPT AS WARRANTED IN A SEPARATE AGREEMENT, MICROSOFT AND ITS RESPECTIVE SUPPLIERS PROVIDE THE SERVICES (INCLUDING THE CONTENT AND APIS) “AS IS,” “WITH ALL FAULTS” AND “AS AVAILABLE.” YOU BEAR THE RISK OF USING IT. WE PROVIDE NO WARRANTIES, GUARANTEES OR CONDITIONS, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. YOU MAY HAVE ADDITIONAL RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. THESE DISCLAIMERS WILL APPLY TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, INCLUDING APPLICATION TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. - -Third party content and materials. MICROSOFT DOES NOT CONTROL, REVIEW, REVISE, ENDORSE, OR ACCEPT RESPONSIBILITY FOR ANY THIRD PARTY CONTENT, INFORMATION, MESSAGES, MATERIALS, PROJECTS ACCESSIBLE FROM OR LINKED THROUGH THE SERVICES, AND, EXCEPT AS WARRANTED IN A SEPARATE AGREEMENT, MICROSOFT MAKES NO REPRESENTATIONS OR WARRANTIES WHATSOEVER ABOUT AND SHALL NOT BE RESPONSIBLE FOR ANY OF THE FOREGOING. ANY DEALINGS YOU MAY HAVE WITH SUCH THIRD PARTIES ARE AT YOUR OWN RISK. - -8. Defense of claims. -Defense. We will defend you against any claims made by an unaffiliated third party that the Developer Services or Developer Services Software infringe its patent, copyright or trademark or makes unlawful use of its trade secret. You will defend us against any claims made by an unaffiliated third party that any (1) Non-Microsoft Product that is not made available through the Developer Services or Developer Services Software or (2) Customer Data you provide directly or indirectly in using the Services infringe the third party’s patent, copyright, or trademark or makes unlawful use of its trade secret. -Limitations. Our obligations in Section 8.a will not apply to a claim or award based on: (1) Customer Data, Non-Microsoft Product, modifications you make to the Services, or materials you provide or make available as part of using the Services; (2) your combination of the Services with, or damages based upon the value of, a Non-Microsoft Product, data or business process; (3) your use of a Microsoft trademark without our express written consent, or your use of the Services after we notify you to stop due to a third-party claim; or (4) your redistribution of the Services to, or use for the benefit of, any unaffiliated third party. -Remedies. If we reasonably believe that a claim under Section 8.a may bar your use of the Developer Services or Developer Services Software, we will seek to: (1) obtain the right for you to keep using it; or (2) modify or replace it with a functional equivalent. If these options are not commercially reasonable, we may terminate your rights to use the Developer Services or Developer Services Software. -Obligations. Each party must notify the other promptly of a claim under this Section 8. The party seeking protection must (1) give the other sole control over the defense and settlement of the claim; and (2) give reasonable help in defending the claim. The party providing the protection will (1) reimburse the other for reasonable out-of-pocket expenses that it incurs in giving that help and (2) pay the amount of any resulting adverse final judgment (or settlement that the other consents to). The parties’ respective rights to defense and payment of judgments or settlements under this Section are in lieu of any common law or statutory indemnification rights or analogous rights, and each party waives such common law rights. - -9. Limitation of liability. -Limitation. The aggregate liability of each party under this Agreement is limited to direct damages up to the amount paid under this Agreement for the Developer Services giving rise to that liability during the 12 months before the liability arose, or for Services provided free of charge, Five Hundred United States dollars ($500.00 USD). -EXCLUSION. NEITHER PARTY, NOR ITS SUPPLIERS WILL BE LIABLE FOR LOSS OF REVENUE, LOST PROFITS, OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES, EVEN IF THE PARTY KNEW THEY WERE POSSIBLE. -Exceptions to Limitations. The limits of liability in this Section apply to the fullest extent permitted by applicable law, but do not apply to: (1) the parties’ obligations under Section 8 or Exhibit A; or (2) breach of any confidentiality obligation or violation of the other's intellectual property rights. - -10. Miscellaneous. -No additional rights granted. We reserve all rights not expressly granted under this agreement, and no other rights are granted under this agreement by implication or estoppel or otherwise. -Notices. -You must send notices by mail to the address listed for the Microsoft contracting entity listed in Exhibit A applicable to your primary place of business, with a copy to: -Microsoft Legal and Corporate Affairs (Developer Division) -One Microsoft Way -Redmond, WA 98052 USA -You agree to receive electronic notices from us related to the Services, which will be sent by email to your specified end user or administrator contact information or presented to you in the Service experience. Notices are effective on the date on the return receipt for mail, the date sent for email, and the date presented if within the Service experience. -Assignment. You may not assign this agreement either in whole or in part. -Severability. If any part of this agreement is held unenforceable, the rest remains in full force and effect. -Waiver. Failure to enforce any provision of this agreement will not constitute a waiver. -No agency. We are independent contractors. This agreement does not create an agency, partnership or joint venture. -No third-party beneficiaries. There are no third-party beneficiaries to this agreement. -Applicable law and venue. The choice of law and venue applicable to the geography of your primary place of business is listed in Exhibit A. -Entire agreement. This agreement is the entire agreement concerning its subject matter and supersedes any prior or concurrent communications. Additional terms applicable to this agreement based on the geography of your primary place of business are listed in Exhibit A. -Survival. The following provisions will survive this agreement’s termination: 1.b, 2.a-b, 4, 5.a-d, 5.f-g, 6, 7, 8, 9, 10, 11, Exhibit A and all other definitions. -U.S. export jurisdiction. The Services are subject to U.S. export jurisdiction. You must comply with all applicable laws, including the U.S. Export Administration Regulations, the International Traffic in Arms Regulations, and end-user, end-use and destination restrictions issued by U.S. and other governments. For additional information, see http://www.microsoft.com/exporting/. -International availability. Availability of the Services, including specific features and language versions, varies by country. -Acquired rights. You will defend us against any claim that arises from (1) any aspect of the current or former employment relationship between you and any of your current or former personnel or contractors or under any collective agreements, including, without limitation, claims for wrongful termination, breach of express or implied employment contracts, or payment of benefits or wages, unfair dismissal costs, or redundancy costs, or (2) any obligations or liabilities whatsoever arising under the Acquired Rights Directive (Council Directive 2001/23/EC, formerly Council Directive 77/187/EC as amended by Council Directive 98/50/EC) or any national laws or regulations implementing the same, or similar laws or regulations, (including the Transfer of Undertakings (Protection of Employment) Regulations 2006 in the United Kingdom) including a claim from your current or former personnel or contractors (including a claim in connection with the termination of their employment by us following any transfer of their employment to us pursuant to such laws or regulations). You must pay the amount of any resulting adverse final judgment (or settlement to which you consent). This section provides our exclusive remedy for these claims. We will notify you promptly in writing of a claim subject to this section. We must (1) give you sole control over the defense or settlement of such claim; and (2) provide reasonable assistance in defending the claim. You will reimburse us for reasonable out of pocket expenses that we incur in providing assistance. -Force majeure. Neither party will be liable for any failure in performance due to causes beyond its reasonable control (such as fire, explosion, power blackout, earthquake, flood, severe storms, strike, embargo, labor disputes, acts of civil or military authority, war, terrorism including cyber terrorism), acts of God, acts or omissions of Internet traffic carriers, actions or omissions of regulatory or governmental bodies (including the passage of laws or regulations or other acts of government that impact the delivery of Services). -Modifications. We may modify this agreement at any time with or without individual notice to you by posting a revised version on the legal information section of the Developer Services and Documentation Portals (or an alternate site we identify), or by notifying you in accordance with Section 10.b. Any modifications will be effective upon your continued use of a Service. -Notices and procedure for making claims of copyright infringement. Pursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement should be sent to our designated agent. ALL INQUIRIES NOT RELEVANT TO THE FOLLOWING PROCEDURE WILL NOT RECEIVE A RESPONSE. See Notice and Procedure for Making Claims of Copyright Infringement ( http://www.microsoft.com/info/cpyrtInfrg.htm). - -11. Definitions. -Any reference in this agreement to “day” will be a calendar day. - -“Affiliate” means any legal entity that a party owns or that owns a party, with a 50% or greater interest. - -“Content” means documents, photographs, videos, and other graphical, textual, or audio-visual content that may be subject to copyright protection. - -“Customer Data” means any Content or other data, including all text, sound, software, or image files that are provided to us by, or on behalf of, you through your use of the Developer Services for use by you or your authorized users. Customer Data does not include Submissions or any other Content or data that you submit to the Documentation Portals or otherwise provide via the Developer Services for public access. - -“Developer Services” means Visual Studio Online, the Developer Services Portal, the Visual Studio profile services, and other services we identify as governed by this Agreement. - -“Developer Services Portal” means the Visual Studio Online portal site available at http://www.visualstudio.com. - -“Developer Services Software” means Microsoft software we provide to you as part of the Developer Services for use with the Developer Services. - -“Documentation Portals” means the Microsoft developer network content and marketing site available at http://msdn.microsoft.com" and information technology specialist content and marketing site available at http://technet.microsoft.com, or at alternate sites we identify. - -“Microsoft Content” means Content on the Services provided by Microsoft and its suppliers. - -“Microsoft Limited Public License” means the Microsoft Limited Public License software license, a copy of which is provided in Exhibit B. - -“Microsoft Software” means Microsoft software and computer code, including sample code and Developer Services Software. - -“Non-Microsoft Product” is any software, data, service, website or other product licensed, sold or otherwise provided to you by an entity other than us, whether you obtained it via our Services or elsewhere. - -“Offer Details” means the pricing and related terms applicable to paid for Developer Services. - -“Preview” means preview, beta, or other pre-release versions of the Developer Services or Developer Services Software offered by Microsoft. - -“Privacy Statement” means the Services privacy statement ( http://go.microsoft.com/fwlink/?LinkID=246330). - -“Rules of Conduct” means the Services rules of conduct ( http://go.microsoft.com/fwlink/?LinkId=303819). - -“Services” means the Developer Services, Documentation Portals, the http://connect.microsoft.com site, and Microsoft Software we make available to you under this Agreement. - -“SLA” means the commitments we make regarding delivery or performance of the Developer Services ( http://go.microsoft.com/fwlink/?LinkId=309360). - -“Submissions” means Content, code, comments, feedback, suggestions, information or materials that you provide via the Documentation Portals or any Services for public access (rather than for your personal use or use by your authorized users). Submissions do not include Customer Data. - -“User Plan” means a per-user based subscription, trial, or other Microsoft granted benefit that permits access to and account services for the Developer Services. - -“we” and “us” means the Microsoft entity listed in Exhibit A applicable to your location and its Affiliates, as appropriate. - -“you” and “your” means the person or entity accepting this Agreement to use the Services. - -COPYRIGHT NOTICE - -© 2013 Microsoft Corporation. All rights reserved. - -Exhibit A -Customer Location Agreement Addendum - -The Microsoft entity entering into this agreement, the applicable Microsoft entity contact information, the controlling law and venue, and additional terms governing this agreement with you are indicated in the table below for the country or region of your primary place of business. - -If your primary place of business is in Africa, Europe, or the Middle East then these terms apply to our agreement. -Microsoft Entity and Contact Information Applicable Law and Venue Additional Terms -Microsoft Ireland Operations Limited -The Atrium, Block B, Carmenhall Road -Sandyford Industrial Estate -Dublin 18 -Ireland This agreement is governed by the laws of Ireland, without regard to its conflict of laws principles except that (1) if you are a U.S. Government entity, this agreement is governed by the laws of the United States, and (2) if you are a state or local government entity in the United States, this agreement is governed by the laws of that state. If we bring an action to enforce this agreement, we will bring it in the jurisdiction where you have your headquarters. If you bring an action to enforce this agreement, you will bring it in Ireland. This choice of jurisdiction does not prevent either party from seeking injunctive relief in any appropriate jurisdiction with respect to violation of intellectual property rights. -If your primary place of business is in American Samoa, Australia, Bangladesh, Bhutan, Brunei Darussalam, Cambodia, East Timor, Hong Kong SAR, India, Indonesia, Lao Peoples Democratic Republic, Macau SAR, Malaysia, Maldives, Nepal New Zealand, People’s Republic of China, Philippines; Republic of Korea, Samoa, Singapore, Sri Lanka, Thailand, Vanuatu or Vietnam then these terms apply to our agreement. -Microsoft Entity and Contact Information Applicable Law and Venue Additional Terms -Microsoft Regional Sales Corporation -438B Alexandra Road, #04-09/12, -Block B, Alexandra Technopark -Singapore, 119968 -This agreement is governed by State of Washington law, without regard to its conflict of laws principles. Subject to sections (i) and (ii) below, if we bring an action to enforce this agreement, we will bring it in the jurisdiction where you have your headquarters. If you bring an action to enforce this agreement, you will bring it in the State of Washington, U.S.A. This choice of jurisdiction does not prevent either party from seeking injunctive relief with respect to a violation of intellectual property rights. - -i. If your principal place of business is in Brunei, Malaysia or Singapore, you consent to the non-exclusive jurisdiction of the Singapore courts. - -ii. If your principal place of business is in Bangladesh, Cambodia, India, Indonesia, Macau SAR, the People's Republic of China, Sri Lanka, Thailand, The Philippines or Vietnam, any dispute arising out of or in connection with this agreement, including any question regarding its existence, validity or termination, shall be referred to and finally resolved by arbitration in Singapore in accordance with the Arbitration Rules of the Singapore International Arbitration Centre ("SIAC"), which rules are deemed to be incorporated by reference into this subsection. The Tribunal shall consist of one arbitrator to be appointed by the Chairman of SIAC. The language of the arbitration shall be English. The decision of the arbitrator shall be final, binding and incontestable and may be used as a basis for judgment thereon in the above-named countries or elsewhere. To the maximum extent permitted by applicable law, the parties waive their right to any form of appeal or other similar recourse to a court of law. For the purpose of this agreement only, the People's Republic of China does not include Hong Kong SAR, Macau SAR and Taiwan. - -The parties agree that this Agreement be written and executed in English and that, in the event this Agreement is translated into Bahasa Indonesia to comply with the implementing regulations of Indonesian Law No. 24/2009, the English language version of this Agreement controls. - -If your primary place of business is in North America, South America, or all remaining regions and countries not included in the above and where the Services are lawfully available then these terms apply to our agreement. -Microsoft Entity and Contact Information Applicable Law and Venue Additional Terms -Microsoft Corporation -One Microsoft Way -Redmond, WA 98052 (États-Unis) This agreement is governed by State of Washington law, without regard to its conflict of laws principles. Any action to enforce this agreement must be brought in the State of Washington. This choice of jurisdiction does not prevent either party from seeking injunctive relief in any appropriate jurisdiction with respect to violation of intellectual property rights. - - -Exhibit B -Microsoft Limited Public License - -This license governs use of code marked as “sample” or “example” available on this web site without a license agreement, as provided under the section above titled “NOTICE SPECIFIC TO SOFTWARE AVAILABLE ON THIS WEB SITE.” If you use such code (the “software”), you accept this license. If you do not accept the license, do not use the software. - -1. Definitions - -The terms “reproduce,” “reproduction,” “derivative works,” and “distribution” have the same meaning here as under U.S. copyright law. - -A “contribution” is the original software, or any additions or changes to the software. - -A “contributor” is any person that distributes its contribution under this license. - -“Licensed patents” are a contributor’s patent claims that read directly on its contribution. - -2. Grant of Rights - -(A) Copyright Grant - Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. - -(B) Patent Grant - Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. - -3. Conditions and Limitations - -(A) No Trademark License- This license does not grant you rights to use any contributors’ name, logo, or trademarks. - -(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. - -(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. - -(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. - -(E) The software is licensed “as-is.” You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. - -(F) Platform Limitation - The licenses granted in sections 2(A) and 2(B) extend only to the software or derivative works that you create that run on a Microsoft Windows operating system product. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ms-developer-services-agreement.yml b/tests/licensedcode/data/licenses/ms-developer-services-agreement.yml deleted file mode 100644 index fa10adb49af..00000000000 --- a/tests/licensedcode/data/licenses/ms-developer-services-agreement.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-developer-services-agreement diff --git a/tests/licensedcode/data/licenses/ms-directx-sdk-eula.txt b/tests/licensedcode/data/licenses/ms-directx-sdk-eula.txt deleted file mode 100644 index 6df75beb720..00000000000 --- a/tests/licensedcode/data/licenses/ms-directx-sdk-eula.txt +++ /dev/null @@ -1,64 +0,0 @@ -DirectX Software Development Kit END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE - -IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation ("Microsoft") for the Microsoft software product identified above, which includes computer software and may include associated media and printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT). The SOFTWARE PRODUCT also includes any updates and supplements to the original SOFTWARE PRODUCT that is associated with a separate end-user license agreement is licensed to you under the terms of that license agreement. By installing, copying, downloading, accessing or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. - -SOFTWARE PRODUCT LICENSE - -The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. - -1.GRANT OF LICENSE. - -This EULA grants you the following limited, non-exclusive rights: - -SOFTWARE PRODUCT. You may install and use the SOFTWARE PRODUCT on an unlimited number of computers, including workstations, terminals or other digital electronic devices ("COMPUTERS") to design, develop, and test software application products for use with Microsoft operating system products including Windows NT Workstation 4.0, Windows NT Server 4.0, Windows 95 and subsequent releases thereto ("Application"). You may install copies of the SOFTWARE PRODUCT on up to ten (10) COMPUTERS provided that you are the only individual using the SOFTWARE PRODUCT on each such COMPUTER. If you are an entity, Microsoft grants you the right to designate one individual within your organization to have the right to use the SOFTWARE PRODUCT in the manner provided above. - -SAMPLE CODE. You may modify the sample source code located in the SOFTWARE PRODUCT's "MSSDK\Samples\Multimedia" directory ("Sample Code") to design, develop and test your Application. You may also reproduce and distribute the Sample Code in object code form along with any modifications you make to the Sample Code, provided that you comply with the Distribution Requirements described below. For purposes of this Section, "modifications" shall mean enhancements to the functionality of the Sample Code. - -REDISTRIBUTABLE CODE. Portions of the SOFTWARE PRODUCT are designated as "Redistributable Code". If you choose to distribute the Redistributable Code, you must include all files listed in such "DirectX" redist.txt file located in the directory named \LICENSE. No modifications, additions, or deletions to the Redistributable Code are permitted without written permission from Microsoft Corporation. Your rights to distribute the Redistributable Code are subject to the Distribution Requirements described below. - -DISTRIBUTION REQUIREMENTS. You may reproduce and distribute an unlimited number of copies of the Sample Code and/or Redistributable Code, (collectively "REDISTRIBUTABLE COMPONENTS")as described above, provided that (a) you distribute the REDISTRIBUTABLE COMPONENTS only as part of, or for use in conjunction with your Application; (b) your Application adds significant and primary functionality to the REDISTRIBUTABLE COMPONENTS; (c) the REDISTRIBUTABLE COMPONENTS only operate in conjunction with Microsoft Windows operating system products including Windows NT Workstation 4.0, Windows NT Server 4.0, Windows 95, and subsequent versions thereof, (d) you distribute your Application containing the REDISTRIBUTABLE COMPONENTS pursuant to an End-User License Agreement (which may be "break-the-seal", "click-wrap", or signed), with terms no less protective than those contained herein; (e) you do not permit further redistribution of the REDISTRIBUTABLE COMPONENTS by your end-user customers; (f) you must use the setup utility included with the REDISTRIBUTABLE COMPONENTS to install the Redistributable Code; (g) you do not use Microsoft's name, logo, or trademarks to market your Application; (h) you include all copyright and trademark notices contained in the REDISTRIBUTABLE COMPONENTS; (i) you include a valid copyright notice on your Application; and (j) you agree to indemnify, hold harmless, and defend Microsoft from any against any claims or lawsuits, including attorneys' feeds, that arise or result from the use or distribution of your Application. - -If you distribute the Redistributable Code separately for use with your Application (such as on your web site or as part of an update to your Application), you must include an end user license agreement in the install program for the Redistributable Code in the form of \license\DirectX End User EULA.txt. - -Microsoft reserves all rights not expressly granted to you. - -Contact Microsoft for the applicable royalties due and other licensing terms for all other uses and/or distribution of the REDISTRIBUTABLE COMPONENTS. - -2. COPYRIGHT. - -All right, title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, photographs, animations, video, audio, music, text and "applets," incorporated into the SOFTWARE PRODUCT), any accompanying printed materials, and any copies of the SOFTWARE PRODUCT, are owned by Microsoft or its suppliers. All title and intellectual property rights in and to the content which may by accessed through us of the SOFTWARE PRODUCT is the property of the respective content owner and may be protected by applicable copyright or other intellectual property laws and treaties . This EULA grants you no rights to use such content. All rights not expressly granted are reserved by Microsoft. - -3. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. - -Limitations on Reverse Engineering, Decompilation and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. - -Rental. You may not rent, lease or lend the SOFTWARE PRODUCT. - -Support Services. Microsoft may provide you with support services related to the SOFTWARE PRODUCT ("Support Services"). Use of the Support Services is governed by the Microsoft policies and programs described in the user manual, in "on line" documentation and/or other Microsoft-provided materials. Any supplemental software code provided to you as part of the Support Services shall be considered part of the SOFTWARE PRODUCT and subject to the terms and conditions of this EULA. With respect to technical information you provide to Microsoft as part of the Support Services, Microsoft may use such information for its business purposes, including for product support and development. Microsoft will not utilize such technical information in a form that personally identifies you. - -Software Transfer. You may permanently transfer all of your rights under this EULA, provided you retain no copies, you transfer all of the SOFTWARE PRODUCT (including all component parts, the media and printed materials, any upgrades, this EULA and, if applicable, the Certificate of Authenticity), and the recipient agrees to the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade, any transfer must include all prior versions of the SOFTWARE PRODUCT. - -Termination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must cease all use or distribution and destroy all copies of the SOFTWARE PRODUCT and all of its component parts. - -4. U.S. GOVERNMENT RESTRICTED RIGHTS. - -All SOFTWARE PRODUCT provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995 is provided with the commercial license rights and restrictions described elsewhere herein. All SOFTWARE PRODUCT provided to the U.S. Government pursuant to solicitations issued prior to December 1, 1995 is provided with "Restricted Rights" as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable. - -5. EXPORT RESTRICTIONS. - -Export of the SOFTWARE PRODUCT from the United States is regulated by the Export Administration Regulations (EAR, 15 CFR 730-744) of the U.S. Commerce Department, Bureau of Export Administration (BXA). You agree to comply with the EAR in the export or re-export of the SOFTWARE PRODUCT: (i) to any country to which the U.S. has embargoed or restricted the export of goods or services, which include, but are not necessarily limited to Cuba, Iran, Iraq, Libya, North Korea, Sudan, Syria, and the Federal Republic of Yugoslavia (including Serbia, but not Montenegro), or to any national of any such country, wherever located, who intends to transmit or transport the SOFTWARE PRODUCT back to such country; (ii) to any person or entity who you know or have reason to know will utilize the SOFTWARE PRODUCT or portion thereof in the design, development or production of nuclear, chemical or biological weapons; or (iii) to any person or entity who has been prohibited from participating in the U.S. export transactions by any federal agency of the U.S. government. You warrant and represent that neither the BXA nor any other U.S. federal agency has suspended, revoked or denied your export privileges. - -NO WARRANTIES. -DISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE SOFTWARE PRODUCT, AND ANY (IF ANY) SUPPORT SERVICES RELATED TO THE SOFTWARE PRODUCT ("SUPPORT SERVICES") AS IS AND WITH ALL FAULTS; AND MICROSOFT AND ITS SUPPLIERS HEREBY DISCLAIM WITH RESPECT TO THE SOFTWARE PRODUCT AND SUPPORT SERVICES ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) WARRANTIES OR CONDITIONS OF OR RELATED TO: TITLE, NON-INFRINGMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR COMPLETENESS OF RESPONSES, RESULTS, LACK OF NEGLIGENCE OR LACK OF WORKMANLIKE EFFORT, QUIET ENJOYMENT, QUIET POSSESSION, AND CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE PRODUCT AND ANY SUPPORT SERVICES REMAINS WITH YOU. - -EXCULSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,PERSONAL INJURY, LOSS OF PRIVACY, FAILURE TO MEET ANY DUTY (INCLUDING OF GOOD FAITH OR OF REASONABLE CARE), NEGLIGENCE, AND ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -LIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE PRODUCT OR U.S.$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE. - -If you acquired this product in the United States, this Agreement is governed by the laws of the State of Washington. - -If you acquired this product in Canada, this Agreement is governed by the laws of the Province of Ontario, Canada. Each of the parties hereto irrevocably attorns to the jurisdiction of the courts of the Province of Ontario and further agrees to commence any litigation which may arise hereunder in the courts located in the Judicial District of York, Province of Ontario. - -If this product was acquired outside the United States, then local law may apply. - -Should you have any questions concerning this Agreement, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Customer Sales and Service/One Microsoft Way/Redmond, WA 98052-6399. diff --git a/tests/licensedcode/data/licenses/ms-directx-sdk-eula.yml b/tests/licensedcode/data/licenses/ms-directx-sdk-eula.yml deleted file mode 100644 index e666ea593f3..00000000000 --- a/tests/licensedcode/data/licenses/ms-directx-sdk-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-directx-sdk-eula diff --git a/tests/licensedcode/data/licenses/ms-entity-framework-5.txt b/tests/licensedcode/data/licenses/ms-entity-framework-5.txt deleted file mode 100644 index 757f8caf508..00000000000 --- a/tests/licensedcode/data/licenses/ms-entity-framework-5.txt +++ /dev/null @@ -1,37 +0,0 @@ -Entity Framework 5 License -MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS - -ENTITY FRAMEWORK 5.0 FOR MICROSOFT WINDOWS OPERATING SYSTEM - -Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows Operating System software (the "software"), you may use this supplement. You may not use it if you do not have a license for the software. You may use this supplement with each validly licensed copy of the software. - -The following license terms describe additional use terms for this supplement. These terms and the license terms for the software apply to your use of the supplement. If there is a conflict, these supplemental license terms apply. - -By using this supplement, you accept these terms. If you do not accept them, do not use this supplement. - -If you comply with these license terms, you have the rights below. - -1. DISTRIBUTABLE CODE. The supplement is comprised of Distributable Code. "Distributable Code" is code that you are permitted to distribute in programs you develop if you comply with the terms below. - -a. Right to Use and Distribute. -You may copy and distribute the object code form of the supplement. -Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. - -b. Distribution Requirements. For any Distributable Code you distribute, you must -add significant primary functionality to it in your programs; -for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program; -distribute Distributable Code included in a setup program only as part of that setup program without modification; -require distributors and external end users to agree to terms that protect it at least as much as this agreement; -display your valid copyright notice on your programs; and -indemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your programs. - -c. Distribution Restrictions. You may not -alter any copyright, trademark or patent notice in the Distributable Code; -use Microsoft's trademarks in your programs' names or in a way that suggests your programs come from or are endorsed by Microsoft; -distribute Distributable Code to run on a platform other than the Windows platform; -include Distributable Code in malicious, deceptive or unlawful programs; or -modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that -the code be disclosed or distributed in source code form; or -others have the right to modify it. - -2. SUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described at www.support.microsoft.com/common/international.aspx. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ms-entity-framework-5.yml b/tests/licensedcode/data/licenses/ms-entity-framework-5.yml deleted file mode 100644 index a2ca68dbdd7..00000000000 --- a/tests/licensedcode/data/licenses/ms-entity-framework-5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-entity-framework-5 diff --git a/tests/licensedcode/data/licenses/ms-ilmerge.txt b/tests/licensedcode/data/licenses/ms-ilmerge.txt deleted file mode 100644 index 9d7f0d11935..00000000000 --- a/tests/licensedcode/data/licenses/ms-ilmerge.txt +++ /dev/null @@ -1,38 +0,0 @@ -ILMerge license -MICROSOFT ILMerge - -END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE - -IMPORTANT—READ CAREFULLY: This End-User License Agreement (“EULA”) is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation (“Microsoft”) for the Microsoft software that accompanies this EULA, which includes computer software and may include associated media, printed materials, “online” or electronic documentation, and Internet-based services (“Software”). An amendment or addendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE. IF YOU DO NOT AGREE, DO NOT INSTALL, COPY, OR USE THE SOFTWARE. - -1. GRANTS OF LICENSE. Microsoft grants you the rights described in this EULA provided that you comply with all terms and conditions of this EULA. - -1.1 License Grant. Microsoft grants to you a personal, nonexclusive, nontransferable, limited license to install and use a reasonable number of copies of the Software on computers residing on your premises for the purposes of designing, developing, and testing, your software product(s), provided that you are the only individual using the Software. - -1.2 Documentation. You may make and use a reasonable number of copies of any documentation, provided that such copies shall be used only for your personal purposes and are not to be republished or distributed (either in hard copy or electronic form) beyond your premises. - -2. RESERVATION OF RIGHTS AND OWNERSHIP. The Software is licensed as a single product. Its component parts may not be separated. Microsoft reserves all rights not expressly granted to you in this EULA. The Software is protected by copyright and other intellectual property laws and treaties, and Microsoft (or its suppliers, where applicable) own all right, title, and interest in all intellectual property rights in the Software. The Software is licensed, not sold. - -3. LIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer, decompile, or disassemble the Software, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. - -4. NO RENTAL/COMMERCIAL HOSTING. You may not rent, lease, lend or provide commercial hosting services with the Software. - -5. NO SOFTWARE TRANSFER. You may not assign or otherwise transfer the SOFTWARE or any of your rights hereunder to any third party. - -6. CONSENT TO USE OF DATA. You agree that Microsoft and its affiliates may collect and use technical information gathered as part of the product support services provided to you, if any, related to the Software. Microsoft may use this information solely to improve our products or to provide customized services or technologies to you and will not disclose this information in a form that personally identifies you. - -7. ADDITIONAL SOFTWARE/SERVICES. Microsoft is not obligated to provide maintenance, technical supplements, updates, or other support to you for the Software licensed under this EULA. In the event that Microsoft does provide such supplements or updates, this EULA applies to such updates, supplements, or add-on components of the Software that Microsoft may provide to you or make available to you after the date you obtain your initial copy of the Software, unless we provide other terms along with the update, supplement, or add-on component. Microsoft reserves the right to discontinue any Internet-based services provided to you or made available to you through the use of the Software. - -8. EXPORT RESTRICTIONS. You acknowledge that the Software is subject to U.S. export jurisdiction. You agree to comply with all applicable international and national laws that apply to the Software, including the U.S. Export Administration Regulations, as well as end-user, end-use, and destination restrictions issued by U.S. and other governments. For additional information see http://www.microsoft.com/exporting/. - -9. TERMINATION. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with any term or condition of this EULA. In such event, you must destroy all copies of the Software and all of its component parts. - -10. DISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE THE SOFTWARE AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE SOFTWARE. - -11. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. To the maximum extent permitted by applicable law, in no event shall Microsoft or its suppliers be liable for any special, incidental, punitive, indirect, or consequential damages whatsoever (including, but not limited to, damages for loss of profits, LOSS OF DATA, or confidential or other information, for business interruption, for personal injury, for loss of privacy, for failure to meet any duty including of good faith or of reasonable care, for negligence, and for any other pecuniary or other loss whatsoever) arising out of or in any way related to the use of or inability to use the SOFTWARE, the provision of or failure to provide Support OR OTHER Services, informatIon, software, and related CONTENT through the software or otherwise arising out of the use of the software, or otherwise under or in connection with any provision of this EULA, even in the event of the fault, tort (including negligence), misrepresentation, strict liability, breach of contract or breach of warranty of Microsoft or any supplier, and even if Microsoft or any supplier has been advised of the possibility of such damages. - -12. LIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY HEREUNDER SHALL BE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE. - -13. APPLICABLE LAW. This EULA shall be construed under and governed by the laws of the State of Washington, without regard to conflicts of law principles. - -14. ENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum or amendment to this EULA which is included with the Software) are the entire agreement between you and Microsoft relating to the Software and the support services (if any) and they supersede all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software or any other subject matter covered by this EULA. If any provision of this EULA is held to be void, invalid, unenforceable or illegal, the other provisions shall continue in full force and effect diff --git a/tests/licensedcode/data/licenses/ms-ilmerge.yml b/tests/licensedcode/data/licenses/ms-ilmerge.yml deleted file mode 100644 index 0ae51468e4e..00000000000 --- a/tests/licensedcode/data/licenses/ms-ilmerge.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-ilmerge diff --git a/tests/licensedcode/data/licenses/ms-invisible-eula-1.0.txt b/tests/licensedcode/data/licenses/ms-invisible-eula-1.0.txt deleted file mode 100644 index c73dfc1689d..00000000000 --- a/tests/licensedcode/data/licenses/ms-invisible-eula-1.0.txt +++ /dev/null @@ -1,24 +0,0 @@ -Microsoft Invisible Computing - -MICROSOFT SHARED SOURCE LICENSE Version 1.0 FOR MICROSOFT INVISIBLE COMPUTING -This License governs use of the accompanying Software. -You can use this Software for any non-commercial purpose, including distributing derivatives. Running your business operations would not be considered non-commercial. - -For commercial purposes, you can reference this software solely to assist in developing and testing your own software and hardware for the Microsoft Invisible Computing platform. You may not distribute this software in source or object form for commercial purposes under any circumstances. - -In return, we simply require that you agree: - -Not to remove any copyright notices from the Software. -That if you distribute the Software in source code form you do so only under this License (i.e. you must include a complete copy of this License with your distribution), and if you distribute the Software solely in object form you only do so under any license that complies with this License. - -That the Software comes "as is", with no warranties. None whatsoever. This means no implied warranty of merchantability or fitness for a particular purpose or any warranty of non-infringement. Also, you must pass this disclaimer on whenever you distribute the Software. - -That Microsoft will not be liable for any of those types of damages known as indirect, special, consequential, or incidental related to the Software or this License, to the maximum extent the law permits. Also, you must pass this limitation of liability on whenever you distribute the Software. - -That if you sue anyone over patents that you think may apply to the Software for a person's use of the Software, your license to the Software ends automatically. - -That the patent rights Microsoft is licensing only apply to the Software, not to any derivatives you make. - -That your rights under the License end automatically if you breach it in any way. - -©2004 Microsoft Corporation. All rights reserved. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ms-invisible-eula-1.0.yml b/tests/licensedcode/data/licenses/ms-invisible-eula-1.0.yml deleted file mode 100644 index c538f0ade58..00000000000 --- a/tests/licensedcode/data/licenses/ms-invisible-eula-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ms-invisible-eula-1.0 -notes: From http://research.microsoft.com/en-us/um/redmond/projects/invisible/EULA.htm diff --git a/tests/licensedcode/data/licenses/ms-limited-public.txt b/tests/licensedcode/data/licenses/ms-limited-public.txt deleted file mode 100644 index 3d9e82ab937..00000000000 --- a/tests/licensedcode/data/licenses/ms-limited-public.txt +++ /dev/null @@ -1,42 +0,0 @@ -Microsoft Limited Community License (Ms-LCL) -Published: October 18, 2005 - -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. - -1. Definitions - -The terms "reproduce," "reproduction" and "distribution" have the same meaning here as under U.S. copyright law. - -"You" means the licensee of the software. - -"Larger work" means the combination of the software and any additions or modifications to the software. - -"Licensed patents" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license. - -2. Grant of Rights - -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, the Licensor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce the software, prepare derivative works of the software and distribute the software or any derivative works that you create. - -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, the Licensor grants you a non-exclusive, worldwide, royalty-free patent license under licensed patents to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the software or derivative works of the software. - -3. Conditions and Limitations - -(A) Reciprocal Grants- Your rights to reproduce and distribute the software (or any part of the software), or to create and distribute derivative works of the software, are conditioned on your licensing the software or any larger work you create under the following terms: - - 1. - - If you distribute the larger work as a series of files, you must grant all recipients the copyright and patent licenses in sections 2(A) & 2(B) for any file that contains code from the software. You must also provide recipients the source code to any such files that contain code from the software along with a copy of this license. Any other files which are entirely your own work and which do not contain any code from the software may be licensed under any terms you choose. - - 2. - - If you distribute the larger work as a single file, then you must grant all recipients the rights set out in sections 2(A) & 2(B) for the entire larger work. You must also provide recipients the source code to the larger work along with a copy of this license. - -(B) No Trademark License- This license does not grant you any rights to use the Licensor’s name, logo, or trademarks. - -(C) If you distribute the software in source code form you may do so only under this license (i.e., you must include a complete copy of this license with your distribution), and if you distribute the software solely in compiled or object code form you may only do so under a license that complies with this license. - -(D) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. - -(E) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. - -(F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend only to the software or larger works that you create that run on a Microsoft Windows operating system product. diff --git a/tests/licensedcode/data/licenses/ms-limited-public.yml b/tests/licensedcode/data/licenses/ms-limited-public.yml deleted file mode 100644 index d4a2beb05d1..00000000000 --- a/tests/licensedcode/data/licenses/ms-limited-public.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-limited-community diff --git a/tests/licensedcode/data/licenses/ms-net-library_1.txt b/tests/licensedcode/data/licenses/ms-net-library_1.txt deleted file mode 100644 index c48e49c0fb7..00000000000 --- a/tests/licensedcode/data/licenses/ms-net-library_1.txt +++ /dev/null @@ -1,118 +0,0 @@ -MICROSOFT SOFTWARE LICENSE TERMS -MICROSOFT .NET LIBRARY -These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft - -· updates, - -· supplements, - -· Internet-based services, and - -· support services - -for this software, unless other terms accompany those items. If so, those terms apply. - -BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. - -IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW. - -1. INSTALLATION AND USE RIGHTS. - -a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs. You may modify, copy, distribute or deploy any .js files contained in the software as part of your programs. - -b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only. - -2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. - -a. DISTRIBUTABLE CODE. In addition to the .js files described above, the software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below. - -i. Right to Use and Distribute. - -· You may copy and distribute the object code form of the software. - -· Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. - -ii. Distribution Requirements. For any Distributable Code you distribute, you must - -· use the Distributable Code in your programs and not as a standalone distribution; - -· require distributors and external end users to agree to terms that protect it at least as much as this agreement; - -· display your valid copyright notice on your programs; and - -· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. - -iii. Distribution Restrictions. You may not - -· alter any copyright, trademark or patent notice in the Distributable Code; - -· use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; - -· include Distributable Code in malicious, deceptive or unlawful programs; or - -· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that - -· the code be disclosed or distributed in source code form; or - -· others have the right to modify it. - -3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not - -· work around any technical limitations in the software; - -· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; - -· publish the software for others to copy; - -· rent, lease or lend the software; or - -· transfer the software or this agreement to any third party. - -4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. - -5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. - -6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. - -7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. - -8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. - -9. APPLICABLE LAW. - -a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. - -b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. - -10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. - -11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. - -FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. - -12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. - -This limitation applies to - -· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and - -· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. - -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. - -Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. - -Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. - -EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. - -LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. - -Cette limitation concerne : - -· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et -· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. - -Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. - -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. diff --git a/tests/licensedcode/data/licenses/ms-net-library_1.yml b/tests/licensedcode/data/licenses/ms-net-library_1.yml deleted file mode 100644 index 15387f17819..00000000000 --- a/tests/licensedcode/data/licenses/ms-net-library_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-net-library diff --git a/tests/licensedcode/data/licenses/ms-pl_1.txt b/tests/licensedcode/data/licenses/ms-pl_1.txt deleted file mode 100644 index c25f1eba7b8..00000000000 --- a/tests/licensedcode/data/licenses/ms-pl_1.txt +++ /dev/null @@ -1,28 +0,0 @@ -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. -1. Definitions - -The terms “reproduce,” “reproduction,” “derivative works,” and “distribution” have the same meaning here as under U.S. copyright law. - -A “contribution” is the original software, or any additions or changes to the software. - -A “contributor” is any person that distributes its contribution under this license. - -“Licensed patents” are a contributor’s patent claims that read directly on its contribution. - -2. Grant of Rights - -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. - -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. - -3. Conditions and Limitations - -(A) No Trademark License- This license does not grant you rights to use any contributors’ name, logo, or trademarks. - -(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. - -(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. - -(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. - -(E) The software is licensed “as-is.” You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/tests/licensedcode/data/licenses/ms-pl_1.yml b/tests/licensedcode/data/licenses/ms-pl_1.yml deleted file mode 100644 index ea0f5f16126..00000000000 --- a/tests/licensedcode/data/licenses/ms-pl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-pl diff --git a/tests/licensedcode/data/licenses/ms-rl.txt b/tests/licensedcode/data/licenses/ms-rl.txt deleted file mode 100644 index f5e35d59f1f..00000000000 --- a/tests/licensedcode/data/licenses/ms-rl.txt +++ /dev/null @@ -1,30 +0,0 @@ -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. -1. Definitions - -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. - -A "contribution" is the original software, or any additions or changes to the software. - -A "contributor" is any person that distributes its contribution under this license. - -"Licensed patents" are a contributor’s patent claims that read directly on its contribution. - -2. Grant of Rights - -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. - -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. - -3. Conditions and Limitations - -(A) Reciprocal Grants- For any file you distribute that contains code from the software (in source code or binary format), you must provide recipients the source code to that file along with a copy of this license, which license will govern that file. You may license other files that are entirely your own work and do not contain code from the software under any terms you choose. - -(B) No Trademark License- This license does not grant you rights to use any contributors’ name, logo, or trademarks. - -(C) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. - -(D) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. - -(E) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. - -(F) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/tests/licensedcode/data/licenses/ms-rl.yml b/tests/licensedcode/data/licenses/ms-rl.yml deleted file mode 100644 index 56505c7e7fe..00000000000 --- a/tests/licensedcode/data/licenses/ms-rl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-rl diff --git a/tests/licensedcode/data/licenses/ms-rsl.txt b/tests/licensedcode/data/licenses/ms-rsl.txt deleted file mode 100644 index 21c8acde334..00000000000 --- a/tests/licensedcode/data/licenses/ms-rsl.txt +++ /dev/null @@ -1,32 +0,0 @@ -Microsoft Reference License (Ms-RL) -Published: October 18, 2005 - -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. - -1. Definitions - -The terms "reproduce," "reproduction" and "distribution" have the same meaning here as under U.S. copyright law. - -"You" means the licensee of the software. - -"Your company" means the company you worked for when you downloaded the software. - -"Internal use" means use within your company and specifically excludes the right to distribute the software outside of your company. - -"Licensed patents" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license. - -2. Grant of Rights - -(A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software and reference it for internal use. - -(B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents to use the software within your company. -Top of pageTop of page -3. Limitations - -(A) No Trademark License- This license does not grant you any rights to use the Licensor’s name, logo, or trademarks. - -(B) Platform Limitation- The licenses granted in section 2 extend only to the software or larger works that you create that run on a Microsoft Windows operating system product. - -(C) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. - -(D) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/tests/licensedcode/data/licenses/ms-rsl.yml b/tests/licensedcode/data/licenses/ms-rsl.yml deleted file mode 100644 index 5e944b33a8d..00000000000 --- a/tests/licensedcode/data/licenses/ms-rsl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-rsl diff --git a/tests/licensedcode/data/licenses/ms-ttf-eula.txt b/tests/licensedcode/data/licenses/ms-ttf-eula.txt deleted file mode 100644 index cd8ae234030..00000000000 --- a/tests/licensedcode/data/licenses/ms-ttf-eula.txt +++ /dev/null @@ -1,24 +0,0 @@ -Microsoft TrueType Fonts -END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE -__________________________________________________ - -IMPORTANT - READ CAREFULLY: This Microsoft End-User License Agreement ('EULA') is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software accompanying this EULA, which includes computer software and may include associated media, printed materials, and 'on-line' or electronic documentation ('SOFTWARE PRODUCT' or 'SOFTWARE'). By exercising your rights to make and use copies of the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, you may not use the SOFTWARE PRODUCT. -SOFTWARE PRODUCT LICENSE -The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. -1. GRANT OF LICENSE. This EULA grants you the following rights: -· Installation and Use. You may install and use an unlimited number of copies of the SOFTWARE PRODUCT. -· Reproduction and Distribution. You may reproduce and distribute an unlimited number of copies of the SOFTWARE PRODUCT; provided that each copy shall be a true and complete copy, including all copyright and trademark notices, and shall be accompanied by a copy of this EULA. Copies of the SOFTWARE PRODUCT may be distributed as a standalone product or included with your own product. Copies of the SOFTWARE PRODUCT may not be sold or distributed for any kind of fee. -2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. -· Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. -· Restrictions on Alteration. You may not rename, edit or create any derivative works from the SOFTWARE PRODUCT, other than subsetting when embedding them in documents. -· Software Transfer. You may permanently transfer all of your rights under this EULA, provided the recipient agrees to the terms of this EULA. -· Termination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE PRODUCT and all of its component parts. -3. COPYRIGHT. All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, text, and 'applets' incorporated into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by Microsoft or its suppliers. The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted material. -4. U.S. GOVERNMENT RESTRICTED RIGHTS. The SOFTWARE PRODUCT and documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software-Restricted Rights at 48 CFR 52.227-19, as applicable. Manufacturer is Microsoft Corporation/One Microsoft Way/Redmond, WA 98052-6399. -LIMITED WARRANTY -NO WARRANTIES. Microsoft expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT and any related documentation is provided 'as is' without warranty of any kind, either express or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular purpose, or noninfringement. The entire risk arising out of use or performance of the SOFTWARE PRODUCT remains with you. -NO LIABILITY FOR CONSEQUENTIAL DAMAGES. In no event shall Microsoft or its suppliers be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use this Microsoft product, even if Microsoft has been advised of the possibility of such damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you. -MISCELLANEOUS -If you acquired this product in the United States, this EULA is governed by the laws of the State of Washington. -If this product was acquired outside the United States, then local laws may apply. -Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ms-ttf-eula.yml b/tests/licensedcode/data/licenses/ms-ttf-eula.yml deleted file mode 100644 index 0b88ce04fe2..00000000000 --- a/tests/licensedcode/data/licenses/ms-ttf-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-ttf-eula diff --git a/tests/licensedcode/data/licenses/ms-visual-2008-runtime.txt b/tests/licensedcode/data/licenses/ms-visual-2008-runtime.txt deleted file mode 100644 index a6b6bd78b50..00000000000 --- a/tests/licensedcode/data/licenses/ms-visual-2008-runtime.txt +++ /dev/null @@ -1,66 +0,0 @@ -MICROSOFT SOFTWARE LICENSE TERMS - -MICROSOFT VISUAL C++ 2008 RUNTIME LIBRARIES (X86, IA64 AND X64) - -These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft - -¥ updates, - -¥ supplements, - -¥ Internet-based services, and - -¥ support services - -for this software, unless other terms accompany those items. If so, those terms apply. -BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. - -If you comply with these license terms, you have the rights below. - -1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. - -2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not - -¥ disclose the results of any benchmark tests of the software to any third party without Microsoft’s prior written approval; - -¥ work around any technical limitations in the software; - -¥ reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; - -¥ make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; - -¥ publish the software for others to copy; - -¥ rent, lease or lend the software; - -¥ transfer the software or this agreement to any third party; or - -¥ use the software for commercial software hosting services. - -3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. - -4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. - -5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. - -6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. - -7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. - -8. APPLICABLE LAW. - -a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. - -b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. - -9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. - -10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. - -11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to - -¥ anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and - -¥ claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. diff --git a/tests/licensedcode/data/licenses/ms-visual-2008-runtime.yml b/tests/licensedcode/data/licenses/ms-visual-2008-runtime.yml deleted file mode 100644 index bc0c7fec136..00000000000 --- a/tests/licensedcode/data/licenses/ms-visual-2008-runtime.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-visual-2008-runtime diff --git a/tests/licensedcode/data/licenses/msppl.txt b/tests/licensedcode/data/licenses/msppl.txt deleted file mode 100644 index 8c8da4abe85..00000000000 --- a/tests/licensedcode/data/licenses/msppl.txt +++ /dev/null @@ -1,61 +0,0 @@ -Microsoft patterns & practices License -patterns & practices Developer Center -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. -1. Definitions -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. -A "contribution" is the original software, or any additions or changes to the software. -A "contributor" is any person that distributes its contribution under this license. -"Licensed patents" are a contributor's patent claims that read directly on its contribution. -2. Grant of Rights -(A) Code -* Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of any contribution for which source code is provided, and distribute its contribution or any permitted derivative works that you create. -* Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or permitted derivative works of the contribution in the software. -(B) Documentation -* Documentation is governed by the Creative Commons Attribution License 3.0, a copy of which is attached below, and not by the other terms of this Microsoft patterns & practices license. -3. Conditions and Limitations -(A) No Trademark License - This license does not grant you rights to use any contributors' name, logo, or trademarks. -(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. -(F) Platform Limitation - The licenses granted in section 2(A) extend only to the software or permitted derivative works that you create that run directly on a Microsoft Windows operating system product, Microsoft run-time technology (such as the .NET Framework or Silverlight), or Microsoft application platform (such as Microsoft Office or Microsoft Dynamics). -(G) Binary Code Files - The software may include certain binary code files for which its source code is not included as part of the software, or that are packaged without the source code in an installable or executable package. As to these binary code files, unless applicable law gives you more rights despite this limitation, you must comply with all technical limitations in those files that only allow you to use it in certain ways. You may not modify, work around any technical limitations in, or reverse engineer, decompile or disassemble these binary code files, except and only to the extent that applicable law expressly permits, despite this limitation. -(H) Feedback - If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement. -* * * * * -Creative Commons Attribution License 3.0 Unported -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. -1. Definitions -a. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. -b. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. -c. "Licensor" means the individual, individuals, entity or entities that offers the Work under the terms of this License. -d. "Original Author" means the individual, individuals, entity or entities who created the Work. -e. "Work" means the copyrightable work of authorship offered under the terms of this License. -f. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. -2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; -b. to create and reproduce Derivative Works provided that any such Derivative Work, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; -c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; -d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. -e. For the avoidance of doubt, where the Work is a musical composition: -i. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or, in the event that Licensor is a member of a performance rights society (e.g. ASCAP, BMI, SESAC), via that society, royalties for the public performance or public digital performance (e.g. webcast) of the Work. -ii. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). -f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. -4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -a. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(b), as requested. -b. If You distribute, publicly display, publicly perform, or publicly digitally perform the Work (as defined in Section 1 above) or any Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above), You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, consistent with Section 3(b) in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear, if a credit for all contributing authors of the Derivative Work or Collective Work appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. -5. Representations, Warranties and Disclaimer -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND ONLY TO THE EXTENT OF ANY RIGHTS HELD IN THE LICENSED WORK BY THE LICENSOR. THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -7. Termination -a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above) from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. -b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -8. Miscellaneous -a. Each time You distribute or publicly digitally perform the Work (as defined in Section 1 above) or a Collective Work (as defined in Section 1 above), the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. -b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. -c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. -e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. -201011 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/msppl.yml b/tests/licensedcode/data/licenses/msppl.yml deleted file mode 100644 index c03c684b0fc..00000000000 --- a/tests/licensedcode/data/licenses/msppl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - msppl diff --git a/tests/licensedcode/data/licenses/mx4j.txt b/tests/licensedcode/data/licenses/mx4j.txt deleted file mode 100644 index 1d08838785b..00000000000 --- a/tests/licensedcode/data/licenses/mx4j.txt +++ /dev/null @@ -1,52 +0,0 @@ -/* ==================================================================== - * The MX4J License, Version 1.0 - * - * Copyright (c) 2001-2004 by the MX4J contributors. 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. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * MX4J project (http://mx4j.sourceforge.net)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The name "MX4J" must not be used to endorse or promote - * products derived from this software without prior written - * permission. - * For written permission, please contact biorn_steedom@users.sourceforge.net - * - * 5. Products derived from this software may not be called "MX4J", - * nor may "MX4J" appear in their name, without prior written - * permission of Simone Bordet. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 MX4J 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. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the MX4J project. For more information on - * MX4J, please see - * . - */ diff --git a/tests/licensedcode/data/licenses/mx4j.yml b/tests/licensedcode/data/licenses/mx4j.yml deleted file mode 100644 index cd381c50602..00000000000 --- a/tests/licensedcode/data/licenses/mx4j.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mx4j diff --git a/tests/licensedcode/data/licenses/mx4j_1.txt b/tests/licensedcode/data/licenses/mx4j_1.txt deleted file mode 100644 index 206d276725d..00000000000 --- a/tests/licensedcode/data/licenses/mx4j_1.txt +++ /dev/null @@ -1,51 +0,0 @@ - The MX4J License, Version 1.0 - - Copyright (c) 2001-2004 by the MX4J contributors. 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. The end-user documentation included with the redistribution, - if any, must include the following acknowledgment: - "This product includes software developed by the - MX4J project (http://mx4j.sourceforge.net)." - Alternately, this acknowledgment may appear in the software itself, - if and wherever such third-party acknowledgments normally appear. - - 4. The name "MX4J" must not be used to endorse or promote - products derived from this software without prior written - permission. - For written permission, please contact - biorn_steedom [at] users [dot] sourceforge [dot] net - - 5. Products derived from this software may not be called "MX4J", - nor may "MX4J" appear in their name, without prior written - permission of Simone Bordet. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 MX4J 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. - ==================================================================== - - This software consists of voluntary contributions made by many - individuals on behalf of the MX4J project. For more information on - MX4J, please see - the MX4J website. diff --git a/tests/licensedcode/data/licenses/mx4j_1.yml b/tests/licensedcode/data/licenses/mx4j_1.yml deleted file mode 100644 index cd381c50602..00000000000 --- a/tests/licensedcode/data/licenses/mx4j_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mx4j diff --git a/tests/licensedcode/data/licenses/naughter.txt b/tests/licensedcode/data/licenses/naughter.txt deleted file mode 100644 index 65d76c49eb0..00000000000 --- a/tests/licensedcode/data/licenses/naughter.txt +++ /dev/null @@ -1,11 +0,0 @@ -Naughter Software License - -Copyright (c) 1999 - 2008 by PJ Naughter - -You are allowed to include the source code in any product (commercial, shareware, freeware or otherwise) when your product is released in binary form. - -You are allowed to modify the source code in any way you want except you cannot modify the copyright details at the top of each module. - -If you want to distribute source code with your application, then you are only allowed to distribute versions released by the author. This is to maintain a single distribution point for the source code. - -The executable file itself, namely "ShelExec.exe" can be freely redistributed by anyone. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/naughter.yml b/tests/licensedcode/data/licenses/naughter.yml deleted file mode 100644 index d1518bbe7c4..00000000000 --- a/tests/licensedcode/data/licenses/naughter.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - naughter diff --git a/tests/licensedcode/data/licenses/naumen.txt b/tests/licensedcode/data/licenses/naumen.txt deleted file mode 100644 index 4a5ad934f16..00000000000 --- a/tests/licensedcode/data/licenses/naumen.txt +++ /dev/null @@ -1,21 +0,0 @@ -NAUMEN Public License - -This software is Copyright (c) NAUMEN (tm) and Contributors. 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 in 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. The name NAUMEN (tm) must not be used to endorse or promote products derived from this software without prior written permission from NAUMEN. - -4. The right to distribute this software or to use it for any purpose does not give you the right to use Servicemarks (sm) or Trademarks (tm) of NAUMEN. - -5. If any files originating from NAUMEN or Contributors are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. - -Disclaimer: - - THIS SOFTWARE IS PROVIDED BY NAUMEN "AS IS" AND ANY EXPRESSED 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 NAUMEN OR ITS 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. - -This software consists of contributions made by NAUMEN and Contributors. Specific attributions are listed in the accompanying credits file. diff --git a/tests/licensedcode/data/licenses/naumen.yml b/tests/licensedcode/data/licenses/naumen.yml deleted file mode 100644 index 3ce6d8dfe54..00000000000 --- a/tests/licensedcode/data/licenses/naumen.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - naumen diff --git a/tests/licensedcode/data/licenses/netcat.txt b/tests/licensedcode/data/licenses/netcat.txt deleted file mode 100644 index 9e1e16c4406..00000000000 --- a/tests/licensedcode/data/licenses/netcat.txt +++ /dev/null @@ -1,8 +0,0 @@ -Netcat is entirely my own creation, although plenty of other code was used as -examples. It is freely given away to the Internet community in the hope that -it will be useful, with no restrictions except giving credit where it is due. -No GPLs, Berkeley copyrights or any of that nonsense. The author assumes NO -responsibility for how anyone uses it. If netcat makes you rich somehow and -you're feeling generous, mail me a check. If you are affiliated in any way -with Microsoft Network, get a life. Always ski in control. Comments, -questions, and patches to nc110-devel@lists.sourceforge.net. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/netcat.yml b/tests/licensedcode/data/licenses/netcat.yml deleted file mode 100644 index 58655fd757a..00000000000 --- a/tests/licensedcode/data/licenses/netcat.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - netcat diff --git a/tests/licensedcode/data/licenses/netron.txt b/tests/licensedcode/data/licenses/netron.txt deleted file mode 100644 index 80c2e9af72d..00000000000 --- a/tests/licensedcode/data/licenses/netron.txt +++ /dev/null @@ -1,52 +0,0 @@ -END USER LICENSE AGREEMENT (∞2006); FRANCOIS VANDERSEYPEN "THE NETRON PROJECT". - -IMPORTANT PLEASE READ CAREFULLY - -Before reading the articles below, please take good notice of the following preliminary terms and definitions: - -DEFINITIONS - -"Agreement": this End User License Agreement, as may be renewed, modified and/or amended from time to time. - -"Documentation": any online or otherwise enclosed documentation provided by THE NETRON PROJECT. - -"IP Rights": any and all intellectual property rights, including but not limited to copyrights, trademarks and patents, as well as know how and trade secrets contained in or relating to the THE NETRON PROJECT Software, the Documentation, the THE NETRON PROJECT Website or the THE NETRON PROJECT Promotional Materials. - -THE NETRON PROJECT: refers to the open source project, hosted on Sourceforge.Net, owned by Dr.F.M.Vanderseypen, Belgium. - -"Netron Graph Library": also called "Netron graph control", refers to the software this license agreement applies to, the API, UI and Documentation, as well as any future programming fixes, updates and upgrade thereof. - -"Terms of Service": means the agreement between THE NETRON PROJECT and You for the use of the software. - -"UI": the user interface of the software. - -"You": you, the end user of the THE NETRON PROJECT software, also used in the form ìYourî where applicable. - -"THE NETRON PROJECT website": the webspace located at http://www.netronproject.com. - -ENTERING INTO THIS AGREEMENT - -This End User License Agreement constitutes a valid and binding agreement between THE NETRON PROJECTand You, as a user, for the use of the THE NETRON PROJECT software. You must enter into this Agreement by clicking on the ACCEPT button in order to be able to install and use the THE NETRON PROJECTsoftware. You hereby agree and acknowledge that this Agreement covers all Your use of THE NETRON PROJECT software, whether it be from this installation or from any other terminals where THE NETRON PROJECT software has been installed, by You or by third parties. Furthermore, by installing and (continuously) using the THE NETRON PROJECT software You agree to be bound by the terms of this Agreement and any new versions hereof. - - -NO WARRANTY - -Because the program is licensed free of charge, there is no warranty for the program, to the extent permitted by applicable law. except when otherwise stated in writing the copyright holders and/or other parties provide the program "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. the entire risk as to the quality and performance of the program is with you. should the program prove defective, you assume the cost of all necessary servicing, repair or correction. -In no event unless required by applicable law or agreed to in writing will any copyright holder, or any other party who may modify and/or redistribute the program as permitted above, be liable to you for damages, including any general, special, incidental or consequential damages arising out of the use or inability to use the program (including but not limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of the program to operate with any other programs), even if such holder or other party has been advised of the possibility of such damages. - - -LICENSE AND RESTRICTIONS - -Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source distribution. - -4. Exclusive Ownership. You acknowledge and agree that any and all IP Rights to or arising from the THE NETRON PROJECT software are and shall remain the exclusive property of THE NETRON PROJECT and/or its licensors. Nothing in this Agreement intends to transfer any such IP Rights to, or to vest any such IP Rights in, You. You are only entitled to the limited use of the IP Rights granted to You in this Agreement. You will not take any action to jeopardize, limit or interfere with the IP Rights. You acknowledge and agree that any unauthorized use of the IP Rights is a violation of this Agreement as well as a violation of intellectual property laws, including without limitation copyright laws and trademark laws. - -5.Paid Services. This Agreement applies to downloading, installing and using the THE NETRON PROJECT software, free of charge. The use of any paid services which may be offered by THE NETRON PROJECT or its Affiliates, is subject to the additional Terms of Service that are published on the THE NETRON PROJECT Website. - -YOU EXPRESSLY ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT AND UNDERSTAND THE RIGHTS, OBLIGATIONS, TERMS AND CONDITIONS SET FORTH HEREIN. BY CLICKING ON THE ACCEPT BUTTON AND/OR CONTINUING TO INSTALL THE THE NETRON PROJECT SOFTWARE, YOU EXPRESSLY CONSENT TO BE BOUND BY ITS TERMS AND CONDITIONS AND GRANT TO THE NETRON PROJECT THE RIGHTS SET FORTH HEREIN. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/netron.yml b/tests/licensedcode/data/licenses/netron.yml deleted file mode 100644 index 3ee40cddadb..00000000000 --- a/tests/licensedcode/data/licenses/netron.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - netron diff --git a/tests/licensedcode/data/licenses/new-relic.txt b/tests/licensedcode/data/licenses/new-relic.txt deleted file mode 100644 index 46c5222172d..00000000000 --- a/tests/licensedcode/data/licenses/new-relic.txt +++ /dev/null @@ -1,35 +0,0 @@ -Certain inventions disclosed in this file may be claimed within -patents owned or patent applications filed by New Relic, Inc. or third -parties. - -Subject to the terms of this notice, New Relic grants you a -nonexclusive, nontransferable license, without the right to -sublicense, to (a) install and execute one copy of these files on any -number of workstations owned or controlled by you and (b) distribute -verbatim copies of these files to third parties. As a condition to the -foregoing grant, you must provide this notice along with each copy you -distribute and you must not remove, alter, or obscure this notice. All -other use, reproduction, modification, distribution, or other -exploitation of these files is strictly prohibited, except as may be set -forth in a separate written license agreement between you and New -Relic. The terms of any such license agreement will control over this -notice. The license stated above will be automatically terminated and -revoked if you exceed its scope or violate any of the terms of this -notice. - -This License does not grant permission to use the trade names, -trademarks, service marks, or product names of New Relic, except as -required for reasonable and customary use in describing the origin of -this file and reproducing the content of this notice. You may not -mark or brand this file with any trade name, trademarks, service -marks, or product names other than the original brand (if any) -provided by New Relic. - -Unless otherwise expressly agreed by New Relic in a separate written -license agreement, these files are provided AS IS, WITHOUT WARRANTY OF -ANY KIND, including without any implied warranties of MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE, or NON-INFRINGEMENT. As a -condition to your use of these files, you are solely responsible for -such use. New Relic will have no liability to you for direct, -indirect, consequential, incidental, special, or punitive damages or -for lost profits or data. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/new-relic.yml b/tests/licensedcode/data/licenses/new-relic.yml deleted file mode 100644 index 945302f8fb3..00000000000 --- a/tests/licensedcode/data/licenses/new-relic.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - new-relic diff --git a/tests/licensedcode/data/licenses/newran.txt b/tests/licensedcode/data/licenses/newran.txt deleted file mode 100644 index f194bb4dd42..00000000000 --- a/tests/licensedcode/data/licenses/newran.txt +++ /dev/null @@ -1,5 +0,0 @@ -There are no restrictions on the use of newran except that I take no liability for any problems that may arise from its use. - -I welcome its distribution as part of low cost CD-ROM collections. - -You can use it in your commercial projects. However, if you distribute the source, please make it clear which parts are mine and that they are available essentially for free over the Internet. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/newran.yml b/tests/licensedcode/data/licenses/newran.yml deleted file mode 100644 index 3ce4dd94844..00000000000 --- a/tests/licensedcode/data/licenses/newran.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - newran diff --git a/tests/licensedcode/data/licenses/newsletr.txt b/tests/licensedcode/data/licenses/newsletr.txt deleted file mode 100644 index a0575902e8b..00000000000 --- a/tests/licensedcode/data/licenses/newsletr.txt +++ /dev/null @@ -1,5 +0,0 @@ -Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: - -1. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -2. Altered versions must be plainly marked as such, and must not be misrepresented as being the original software. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/newsletr.yml b/tests/licensedcode/data/licenses/newsletr.yml deleted file mode 100644 index b9b4646c268..00000000000 --- a/tests/licensedcode/data/licenses/newsletr.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - newsletr diff --git a/tests/licensedcode/data/licenses/nicta-psl.txt b/tests/licensedcode/data/licenses/nicta-psl.txt deleted file mode 100644 index 4af3bcf8dbd..00000000000 --- a/tests/licensedcode/data/licenses/nicta-psl.txt +++ /dev/null @@ -1,61 +0,0 @@ -NICTA Public Software Licence -Version 1.0 - -Copyright © 2004 National ICT Australia Ltd - -All rights reserved. - -By this licence, National ICT Australia Ltd (NICTA) grants permission, -free of charge, to any person who obtains a copy of this software -and any associated documentation files ("the Software") to use and -deal with the Software in source code and binary forms without -restriction, with or without modification, and to permit persons -to whom the Software is furnished to do so, provided that the -following conditions are met: - -- Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimers. -- Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimers in - the documentation and/or other materials provided with the - distribution. -- The name of NICTA may not be used to endorse or promote products - derived from this Software without specific prior written permission. - -EXCEPT AS EXPRESSLY STATED IN THIS LICENCE AND TO THE FULL EXTENT -PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS-IS" AND -NICTA MAKES NO REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY -REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS -OR ACCURACY OF THE SOFTWARE, OR OF TITLE, MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT -OR OTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR -NOT DISCOVERABLE. - -TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL -NICTA BE LIABLE ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, -NEGLIGENCE) FOR ANY LOSS OR DAMAGE WHATSOEVER, INCLUDING (WITHOUT -LIMITATION) LOSS OF PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR -CORRUPTION OF DATA OR RECORDS; OR LOSS OF ANTICIPATED SAVINGS, -OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER ECONOMIC LOSS; -OR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE, -THE SOFTWARE OR THE USE OF THE SOFTWARE, EVEN IF NICTA HAS BEEN -ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -If applicable legislation implies warranties or conditions, or -imposes obligations or liability on NICTA in respect of the Software -that cannot be wholly or partly excluded, restricted or modified, -NICTA's liability is limited, to the full extent permitted by the -applicable legislation, at its option, to: - -a. in the case of goods, any one or more of the following: - i. the replacement of the goods or the supply of equivalent goods; - ii. the repair of the goods; - iii. the payment of the cost of replacing the goods or of acquiring - equivalent goods; - iv. the payment of the cost of having the goods repaired; or -b. in the case of services: - i. the supplying of the services again; or - ii. the payment of the cost of having the services supplied - again. diff --git a/tests/licensedcode/data/licenses/nicta-psl.yml b/tests/licensedcode/data/licenses/nicta-psl.yml deleted file mode 100644 index 25eeec108b0..00000000000 --- a/tests/licensedcode/data/licenses/nicta-psl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nicta-psl diff --git a/tests/licensedcode/data/licenses/niels-ferguson.txt b/tests/licensedcode/data/licenses/niels-ferguson.txt deleted file mode 100644 index e58abeac85f..00000000000 --- a/tests/licensedcode/data/licenses/niels-ferguson.txt +++ /dev/null @@ -1,25 +0,0 @@ -/*************************************************************************** -# Copyright (c) 2002 by Niels Ferguson. -# -# The author hereby grants a perpetual license to everybody to use this -# code for any purpose as long as the copyright message is included in the -# source code of this or any derived work. -# -# Yes, this means that you, your company, your club, and anyone else can -# use this code anywhere you want. You can change it and distribute it -# under the GPL, include it in your commercial product without releasing -# the source code, put it on the web, etc. The only thing you cannot do is -# remove my copyright message, or distribute any source code based on this -# implementation that does not include my copyright message. -# -# I appreciate a mention in the documentation or credits, but I understand -# if that is difficult to do. I also appreciate it if you tell me where -# and why you used my code. -# -# DISCLAIMER: As I'm giving away my work for free, I'm of course not going -# to accept any liability of any form. This code, or the Twofish cipher, -# might very well be flawed; you have been warned. This software is -# provided as-is, without any kind of warrenty or guarantee. And that is -# really all you can expect when you download code for free from the -# Internet. -# ***************************************************************************/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/niels-ferguson.yml b/tests/licensedcode/data/licenses/niels-ferguson.yml deleted file mode 100644 index e6ae0065e38..00000000000 --- a/tests/licensedcode/data/licenses/niels-ferguson.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - niels-ferguson diff --git a/tests/licensedcode/data/licenses/nlpl.txt b/tests/licensedcode/data/licenses/nlpl.txt deleted file mode 100644 index f197aca4977..00000000000 --- a/tests/licensedcode/data/licenses/nlpl.txt +++ /dev/null @@ -1,13 +0,0 @@ -NO LIMIT PUBLIC LICENSE - Version 0, June 2012 - -Gilles LAMIRAL -La Billais -35580 Baulon -France - - NO LIMIT PUBLIC LICENSE -Terms and conditions for copying, distribution, modification -or anything else. - - 0. No limit to do anything with this work and this license. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nlpl.yml b/tests/licensedcode/data/licenses/nlpl.yml deleted file mode 100644 index 70207cb154b..00000000000 --- a/tests/licensedcode/data/licenses/nlpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nlpl diff --git a/tests/licensedcode/data/licenses/no_license_74.txt b/tests/licensedcode/data/licenses/no_license_74.txt deleted file mode 100644 index 3b8b4a6d380..00000000000 --- a/tests/licensedcode/data/licenses/no_license_74.txt +++ /dev/null @@ -1 +0,0 @@ -shareware diff --git a/tests/licensedcode/data/licenses/no_license_74.yml b/tests/licensedcode/data/licenses/no_license_74.yml deleted file mode 100644 index d3074c5e51a..00000000000 --- a/tests/licensedcode/data/licenses/no_license_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - proprietary-license diff --git a/tests/licensedcode/data/licenses/nokos-1.0a_1.txt b/tests/licensedcode/data/licenses/nokos-1.0a_1.txt deleted file mode 100644 index 9aa391e47e7..00000000000 --- a/tests/licensedcode/data/licenses/nokos-1.0a_1.txt +++ /dev/null @@ -1,8 +0,0 @@ -The contents of this file are subject to the NOKOS License Version 1.0 -(the "License"); you may not use this file except in compliance with the -License. - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the -License. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nokos-1.0a_1.yml b/tests/licensedcode/data/licenses/nokos-1.0a_1.yml deleted file mode 100644 index d1f6ad18abc..00000000000 --- a/tests/licensedcode/data/licenses/nokos-1.0a_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nokos-1.0a diff --git a/tests/licensedcode/data/licenses/non-commercial.txt b/tests/licensedcode/data/licenses/non-commercial.txt deleted file mode 100644 index 78aac0d171c..00000000000 --- a/tests/licensedcode/data/licenses/non-commercial.txt +++ /dev/null @@ -1 +0,0 @@ -not for commercial use diff --git a/tests/licensedcode/data/licenses/non-commercial.yml b/tests/licensedcode/data/licenses/non-commercial.yml deleted file mode 100644 index d3074c5e51a..00000000000 --- a/tests/licensedcode/data/licenses/non-commercial.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - proprietary-license diff --git a/tests/licensedcode/data/licenses/non-pd.txt b/tests/licensedcode/data/licenses/non-pd.txt deleted file mode 100644 index 2b077b04b15..00000000000 --- a/tests/licensedcode/data/licenses/non-pd.txt +++ /dev/null @@ -1 +0,0 @@ -"public [IEditorInput] [createInputWithEditingDomain]([IEditorInput] [editorInput],\n\t\t\t[TransactionalEditingDomain] domain" \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/non-pd.yml b/tests/licensedcode/data/licenses/non-pd.yml deleted file mode 100644 index 0bddd84f8f3..00000000000 --- a/tests/licensedcode/data/licenses/non-pd.yml +++ /dev/null @@ -1,3 +0,0 @@ -notes: this should not detect anything, especially since the words in between are not known in the index. -expected_failure: yes - diff --git a/tests/licensedcode/data/licenses/notre-dame.txt b/tests/licensedcode/data/licenses/notre-dame.txt deleted file mode 100644 index 9c0dc802fa9..00000000000 --- a/tests/licensedcode/data/licenses/notre-dame.txt +++ /dev/null @@ -1,49 +0,0 @@ -COPYRIGHT NOTICE: -Copyright 1997-2000, University of Notre Dame. -Authors: Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and - Andrew Lumsdaine - -LICENSE AGREEMENT: -In consideration of being allowed to copy and/or use this software, -user agrees to be bound by the terms and conditions of this License -Agreement as "Licensee." This Agreement gives you, the LICENSEE, -certain rights and obligations. By using the software, you indicate -that you have read, understood, and will comply with the following -terms and conditions. - -Permission is hereby granted to use or copy this program for any -purpose, provided the text of this NOTICE (to include COPYRIGHT -NOTICE, LICENSE AGREEMENT, and DISCLAIMER) is retained with all -copies. Permission to modify the code and to distribute modified code -is granted, provided the text of this NOTICE is retained, a notice -that the code was modified is included with the above COPYRIGHT NOTICE -and with the COPYRIGHT NOTICE in any modified files, and that this -file ("LICENSE") is distributed with the modified code. - -Title to copyright to this software and its derivatives and to any -associated documentation shall at all times remain with Licensor and -LICENSEE agrees to preserve the same. Nothing in this Agreement shall -be construed as conferring rights to use in advertising, publicity or -otherwise any trademark or the name of the University of Notre Dame du -Lac. - -DISCLAIMER: - -LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. -By way of example, but not limitation, Licensor MAKES NO -REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY -PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS -OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS -OR OTHER RIGHTS. - -The Authors and the University of Notre Dame du Lac shall not be held -liable for any liability nor for any direct, indirect or consequential -damages with respect to any claim by LICENSEE or any third party on -account of or arising from this Agreement or use of this software. - -Any disputes arising out of this Agreement or LICENSEE'S use of the -software at any time shall be resolved by the courts of the state of -Indiana. LICENSEE hereby consents to the jurisdiction of the Indiana -courts and waives the right to challenge the jurisdiction thereof in -any dispute arising out of this Agreement or Licensee's use of the -software. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/notre-dame.yml b/tests/licensedcode/data/licenses/notre-dame.yml deleted file mode 100644 index 2e1107d5417..00000000000 --- a/tests/licensedcode/data/licenses/notre-dame.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - notre-dame diff --git a/tests/licensedcode/data/licenses/noweb.txt b/tests/licensedcode/data/licenses/noweb.txt deleted file mode 100644 index 1fbbc1b4f61..00000000000 --- a/tests/licensedcode/data/licenses/noweb.txt +++ /dev/null @@ -1,22 +0,0 @@ -Noweb is copyright 1989-2000 by Norman Ramsey. All rights reserved. - -Noweb is protected by copyright. It is not public-domain -software or shareware, and it is not protected by a ``copyleft'' -agreement like the one used by the Free Software Foundation. - -Noweb is available free for any use in any field of endeavor. You may -redistribute noweb in whole or in part provided you acknowledge its -source and include this COPYRIGHT file. You may modify noweb and -create derived works, provided you retain this copyright notice, but -the result may not be called noweb without my written consent. - -You may sell noweb if you wish. For example, you may sell a CD-ROM -including noweb. - -You may sell a derived work, provided that all source code for your -derived work is available, at no additional charge, to anyone who buys -your derived work in any form. You must give permisson for said -source code to be used and modified under the terms of this license. -You must state clearly that your work uses or is based on noweb and -that noweb is available free of change. You must also request that -bug reports on your work be reported to you. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/noweb.yml b/tests/licensedcode/data/licenses/noweb.yml deleted file mode 100644 index ec8dcf55af5..00000000000 --- a/tests/licensedcode/data/licenses/noweb.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - noweb diff --git a/tests/licensedcode/data/licenses/npl-1.0_1.txt b/tests/licensedcode/data/licenses/npl-1.0_1.txt deleted file mode 100644 index 7803a5d1253..00000000000 --- a/tests/licensedcode/data/licenses/npl-1.0_1.txt +++ /dev/null @@ -1,6 +0,0 @@ -NPL 1.0 - -The contents of this file are subject to the Netscape Public License -Version 10 \(the "License"\); you may not use this file except in -compliance with the License You may obtain a copy of the License at -http://wwwmozillaorg/NPL/ diff --git a/tests/licensedcode/data/licenses/npl-1.0_1.yml b/tests/licensedcode/data/licenses/npl-1.0_1.yml deleted file mode 100644 index fc595866ba8..00000000000 --- a/tests/licensedcode/data/licenses/npl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - npl-1.0 diff --git a/tests/licensedcode/data/licenses/npl-1.1_1.txt b/tests/licensedcode/data/licenses/npl-1.1_1.txt deleted file mode 100644 index a061be0fed2..00000000000 --- a/tests/licensedcode/data/licenses/npl-1.1_1.txt +++ /dev/null @@ -1,6 +0,0 @@ -NPL 1.1 - -The contents of this file are subject to the Netscape Public License -Version 11 \(the ("License")|("NPL")\); you may not use this file except in -compliance with the (License)|(NPL) You may obtain a copy of the (License)|(NPL) at -http://wwwmozillaorg/NPL/ diff --git a/tests/licensedcode/data/licenses/npl-1.1_1.yml b/tests/licensedcode/data/licenses/npl-1.1_1.yml deleted file mode 100644 index 49a88c851cf..00000000000 --- a/tests/licensedcode/data/licenses/npl-1.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - npl-1.1 diff --git a/tests/licensedcode/data/licenses/nrl.txt b/tests/licensedcode/data/licenses/nrl.txt deleted file mode 100644 index df61e50208b..00000000000 --- a/tests/licensedcode/data/licenses/nrl.txt +++ /dev/null @@ -1,27 +0,0 @@ -NRL License -COPYRIGHT NOTICE - -All of the documentation and software included in this software distribution from the US Naval Research Laboratory (NRL) are copyrighted by their respective developers. - -Portions of the software are derived from the Net/2 and 4.4-Lite Berkeley Software Distributions (BSD) of the University of California at Berkeley and those portions are copyright by The Regents of the University of California. All Rights Reserved. The UC Berkeley Copyright and License agreement is binding on those portions of the software. In all cases, the NRL developers have retained the original UC Berkeley copyright and license notices in the respective files in accordance with the UC Berkeley copyrights and license. - -Portions of this software and documentation were developed at NRL by various people. Those developers have each copyrighted the portions that they developed at NRL and have assigned All Rights for those portions to NRL. Outside the USA, NRL has copyright on some of the software developed at NRL. The affected files all contain specific copyright notices and those notices must be retained in any derived work. - -NRL LICENSE - -NRL grants permission for redistribution and use in source and binary forms, with or without modification, of the software and documentation created at NRL provided that the following conditions are met: - -1. All terms of the UC Berkeley copyright and license must be followed. -2. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -3. 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. -4. All advertising materials mentioning features or use of this software must display the following acknowledgements: - -This product includes software developed by the University of California, Berkeley and its contributors. - -This product includes software developed at the Information Technology Division, US Naval Research Laboratory. - -5. Neither the name of the NRL nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THE SOFTWARE PROVIDED BY NRL IS PROVIDED BY NRL 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 NRL 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. - -The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the US Naval Research Laboratory (NRL). diff --git a/tests/licensedcode/data/licenses/nrl.yml b/tests/licensedcode/data/licenses/nrl.yml deleted file mode 100644 index b2cd12795aa..00000000000 --- a/tests/licensedcode/data/licenses/nrl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nrl diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_262.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_262.txt deleted file mode 100644 index e78e4ea14ce..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_262.txt +++ /dev/null @@ -1 +0,0 @@ -https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_262.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_262.yml deleted file mode 100644 index eafc2fe00a1..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_262.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_263.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_263.txt deleted file mode 100644 index e78e4ea14ce..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_263.txt +++ /dev/null @@ -1 +0,0 @@ -https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_263.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_263.yml deleted file mode 100644 index c9c5e2f5b54..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_263.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_343.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_343.txt deleted file mode 100644 index f54e3f8ebcc..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_343.txt +++ /dev/null @@ -1 +0,0 @@ -https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_343.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_343.yml deleted file mode 100644 index a9e02b1a85a..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_343.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_35.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_35.txt deleted file mode 100644 index 9df4ca68718..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_35.txt +++ /dev/null @@ -1 +0,0 @@ -http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_35.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_35.yml deleted file mode 100644 index 651f92bb369..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_35.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_351.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_351.txt deleted file mode 100644 index 98a092cf60b..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_351.txt +++ /dev/null @@ -1 +0,0 @@ -https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_351.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_351.yml deleted file mode 100644 index 773b71c23f9..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_351.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - unknown -expected_failure: yes diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_352.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_352.txt deleted file mode 100644 index 5083d70f23e..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_352.txt +++ /dev/null @@ -1 +0,0 @@ -https://www.mozilla.org/en-US/MPL/2.0/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_352.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_352.yml deleted file mode 100644 index afdd345305e..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_352.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-2.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_36.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_36.txt deleted file mode 100644 index 634c5282da4..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_36.txt +++ /dev/null @@ -1 +0,0 @@ -http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_36.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_36.yml deleted file mode 100644 index 651f92bb369..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_373.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_373.txt deleted file mode 100644 index 0f3335224e0..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_373.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_373.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_373.yml deleted file mode 100644 index d7045474ad3..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_373.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - mit -expected_failure: yes diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_374.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_374.txt deleted file mode 100644 index 0f3335224e0..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_374.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_374.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_374.yml deleted file mode 100644 index a9e02b1a85a..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_374.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_375.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_375.txt deleted file mode 100644 index 5b5e45b3670..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_375.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_375.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_375.yml deleted file mode 100644 index a9e02b1a85a..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_375.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_376.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_376.txt deleted file mode 100644 index 5456b5aa739..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_376.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_376.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_376.yml deleted file mode 100644 index d7045474ad3..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - mit -expected_failure: yes diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_377.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_377.txt deleted file mode 100644 index 5456b5aa739..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_377.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_377.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_377.yml deleted file mode 100644 index a9e02b1a85a..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_377.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_382.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_382.txt deleted file mode 100644 index 8857fc3029b..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_382.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.codeproject.com/info/cpol10.aspx \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_382.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_382.yml deleted file mode 100644 index 773b71c23f9..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - unknown -expected_failure: yes diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_387.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_387.txt deleted file mode 100644 index ce2e71038e4..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_387.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_387.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_387.yml deleted file mode 100644 index a18f6b5ec97..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_387.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-1.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_39.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_39.txt deleted file mode 100644 index d6b97bfe2e2..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_39.txt +++ /dev/null @@ -1 +0,0 @@ -http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_39.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_39.yml deleted file mode 100644 index c9c5e2f5b54..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_391.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_391.txt deleted file mode 100644 index 5de3c76da46..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_391.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_391.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_391.yml deleted file mode 100644 index a118efcc9c6..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_391.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_392.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_392.txt deleted file mode 100644 index dd446335e80..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_392.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_392.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_392.yml deleted file mode 100644 index 6370d665e1d..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_392.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0-plus diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_393.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_393.txt deleted file mode 100644 index c8dddc71340..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_393.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_393.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_393.yml deleted file mode 100644 index 830b0c374c9..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_393.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_394.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_394.txt deleted file mode 100644 index 26e4f884033..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_394.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_394.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_394.yml deleted file mode 100644 index 4c6edc704c2..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_394.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_395.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_395.txt deleted file mode 100644 index b7ef89e6ce1..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_395.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_395.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_395.yml deleted file mode 100644 index b13409a5d0e..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_395.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_396.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_396.txt deleted file mode 100644 index 7bda127d6b0..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_396.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_396.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_396.yml deleted file mode 100644 index ee408b32ab6..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_396.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_40.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_40.txt deleted file mode 100644 index 348b25b1b89..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_40.txt +++ /dev/null @@ -1 +0,0 @@ -http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_40.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_40.yml deleted file mode 100644 index c9c5e2f5b54..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_411.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_411.txt deleted file mode 100644 index 8499d3d5d05..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_411.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_411.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_411.yml deleted file mode 100644 index 651f92bb369..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_411.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_412.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_412.txt deleted file mode 100644 index 72003bbbeda..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_412.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.opensource.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_412.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_412.yml deleted file mode 100644 index 4c6edc704c2..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_412.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0 diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_413.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_413.txt deleted file mode 100644 index a09fcefc393..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_413.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.opensource.org/licenses/MIT \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_413.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_413.yml deleted file mode 100644 index c9c5e2f5b54..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_413.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_42.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_42.txt deleted file mode 100644 index be43fcbf453..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_42.txt +++ /dev/null @@ -1 +0,0 @@ -http://opensource.org/licenses/ms-pl.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_42.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_42.yml deleted file mode 100644 index 7a03ba33723..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ms-pl-1.1 -expected_failure: yes diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_43.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_43.txt deleted file mode 100644 index e9cc6449946..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_43.txt +++ /dev/null @@ -1 +0,0 @@ -http://opensource.org/licenses/Ms-PL.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_43.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_43.yml deleted file mode 100644 index 7a03ba33723..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ms-pl-1.1 -expected_failure: yes diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_5.txt b/tests/licensedcode/data/licenses/nuget/nuget_test_url_5.txt deleted file mode 100644 index cc0d7fde9c0..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_5.txt +++ /dev/null @@ -1 +0,0 @@ -http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/nuget/nuget_test_url_5.yml b/tests/licensedcode/data/licenses/nuget/nuget_test_url_5.yml deleted file mode 100644 index 7085a623ca7..00000000000 --- a/tests/licensedcode/data/licenses/nuget/nuget_test_url_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-3.0 diff --git a/tests/licensedcode/data/licenses/nunit-zlib.txt b/tests/licensedcode/data/licenses/nunit-zlib.txt deleted file mode 100644 index 040bd6197e2..00000000000 --- a/tests/licensedcode/data/licenses/nunit-zlib.txt +++ /dev/null @@ -1,20 +0,0 @@ -This software is provided 'as-is', without any express or implied warranty. In -no event will the authors be held liable for any damages arising from the use of -this software. - -Permission is granted to anyone to use this software for any purpose, including -commercial applications, and to alter it and redistribute it freely, subject to -the following restrictions: - -1. The origin of this software must not be misrepresented; you must not claim -that you wrote the original software. If you use this software in a product, an -acknowledgment (see the following) in the product documentation is required. - -Portions Copyright © 2002-2012 Charlie Poole or Copyright © 2002-2004 James W. -Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. -Craig - -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. - -3. This notice may not be removed or altered from any source distribution. diff --git a/tests/licensedcode/data/licenses/nunit-zlib.yml b/tests/licensedcode/data/licenses/nunit-zlib.yml deleted file mode 100644 index 0b2ec1b0b25..00000000000 --- a/tests/licensedcode/data/licenses/nunit-zlib.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zlib-acknowledgement diff --git a/tests/licensedcode/data/licenses/nvidia-gov.txt b/tests/licensedcode/data/licenses/nvidia-gov.txt deleted file mode 100644 index 633a5f227e7..00000000000 --- a/tests/licensedcode/data/licenses/nvidia-gov.txt +++ /dev/null @@ -1,32 +0,0 @@ -Copyright 1993-2012 NVIDIA Corporation. All rights reserved. - -NOTICE TO USER: - -This source code is subject to NVIDIA ownership rights under U.S. and -international Copyright laws. Users and possessors of this source code -are hereby granted a nonexclusive, royalty-free license to use this code -in individual and commercial software. - -NVIDIA MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE -CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR -IMPLIED WARRANTY OF ANY KIND. NVIDIA DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE. -IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, -OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE -OR PERFORMANCE OF THIS SOURCE CODE. - -U.S. Government End Users. This source code is a "commercial item" as -that term is defined at 48 C.F.R. 2.101 (OCT 1995), consisting of -"commercial computer software" and "commercial computer software -documentation" as such terms are used in 48 C.F.R. 12.212 (SEPT 1995) -and is provided to the U.S. Government only as a commercial end item. -Consistent with 48 C.F.R.12.212 and 48 C.F.R. 227.7202-1 through -227.7202-4 (JUNE 1995), all U.S. Government End Users acquire the -source code with only those rights set forth herein. - -Any use of this source code in individual and commercial software must -include, in the user documentation and internal comments to the code, -the above Disclaimer and U.S. Government End Users Notice. diff --git a/tests/licensedcode/data/licenses/nvidia-gov.yml b/tests/licensedcode/data/licenses/nvidia-gov.yml deleted file mode 100644 index 164347a6315..00000000000 --- a/tests/licensedcode/data/licenses/nvidia-gov.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - nvidia-gov -notes: From https://enterprise.dejacode.com/license_library/nexB/nvidia-gov/ diff --git a/tests/licensedcode/data/licenses/nysl-0.9982_en.txt b/tests/licensedcode/data/licenses/nysl-0.9982_en.txt deleted file mode 100644 index adf20378507..00000000000 --- a/tests/licensedcode/data/licenses/nysl-0.9982_en.txt +++ /dev/null @@ -1,22 +0,0 @@ -NYSL Version 0.9982 (en) (Unofficial) ----------------------------------------- -A. This software is "Everyone'sWare". It means: - Anybody who has this software can use it as if he/she is - the author. - - A-1. Freeware. No fee is required. - A-2. You can freely redistribute this software. - A-3. You can freely modify this software. And the source - may be used in any software with no limitation. - A-4. When you release a modified version to public, you - must publish it with your name. - -B. The author is not responsible for any kind of damages or loss - while using or misusing this software, which is distributed - "AS IS". No warranty of any kind is expressed or implied. - You use AT YOUR OWN RISK. - -C. Copyrighted to - -D. Above three clauses are applied both to source and binary - form of this software. diff --git a/tests/licensedcode/data/licenses/nysl-0.9982_en.yml b/tests/licensedcode/data/licenses/nysl-0.9982_en.yml deleted file mode 100644 index d60326572da..00000000000 --- a/tests/licensedcode/data/licenses/nysl-0.9982_en.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nysl-0.9982 diff --git a/tests/licensedcode/data/licenses/ofl-1.0.txt b/tests/licensedcode/data/licenses/ofl-1.0.txt deleted file mode 100644 index 5b85fe60e42..00000000000 --- a/tests/licensedcode/data/licenses/ofl-1.0.txt +++ /dev/null @@ -1,87 +0,0 @@ -SIL OPEN FONT LICENSE - -Version 1.0 - 22 November 2005 - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of cooperative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide an open -framework in which fonts may be shared and improved in partnership with -others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and sold with any software provided that the font -names of derivative works are changed. The fonts and derivatives, -however, cannot be released under any other type of license. - -DEFINITIONS -"Font Software" refers to any and all of the following: - -font files -data files -source code -build scripts -documentation -"Reserved Font Name" refers to the Font Software name as seen by -users and any other names as specified after the copyright statement. - -"Standard Version" refers to the collection of Font Software -components as distributed by the Copyright Holder. - -"Modified Version" refers to any derivative font software made by -adding to, deleting, or substituting — in part or in whole -- -any of the components of the Standard Version, by changing formats -or by porting the Font Software to a new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Standard or Modified Versions, may be sold by itself. - -2) Standard or Modified Versions of the Font Software may be bundled, -redistributed and sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s), in part or in whole, unless explicit written permission is -granted by the Copyright Holder. This restriction applies to all -references stored in the Font Software, such as the font menu name and -other font description fields, which are used to differentiate the -font from others. - -4) The name(s) of the Copyright Holder or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed using this license, and may not be distributed -under any other license. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ofl-1.0.yml b/tests/licensedcode/data/licenses/ofl-1.0.yml deleted file mode 100644 index afc6d8b0dc3..00000000000 --- a/tests/licensedcode/data/licenses/ofl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ofl-1.0 diff --git a/tests/licensedcode/data/licenses/open-group.txt b/tests/licensedcode/data/licenses/open-group.txt deleted file mode 100644 index 5a083b1f74c..00000000000 --- a/tests/licensedcode/data/licenses/open-group.txt +++ /dev/null @@ -1,7 +0,0 @@ -OPEN GROUP LICENSE - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/open-group.yml b/tests/licensedcode/data/licenses/open-group.yml deleted file mode 100644 index f3e2d052dbe..00000000000 --- a/tests/licensedcode/data/licenses/open-group.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - open-group diff --git a/tests/licensedcode/data/licenses/openbsd_notice.txt b/tests/licensedcode/data/licenses/openbsd_notice.txt deleted file mode 100644 index 68085aafc46..00000000000 --- a/tests/licensedcode/data/licenses/openbsd_notice.txt +++ /dev/null @@ -1,16 +0,0 @@ - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - Modification and redistribution in source and binary forms is - permitted provided that due credit is given to the author and the - OpenBSD project (for instance by leaving this copyright notice - intact). - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tests/licensedcode/data/licenses/openbsd_notice.yml b/tests/licensedcode/data/licenses/openbsd_notice.yml deleted file mode 100644 index 761186dd19c..00000000000 --- a/tests/licensedcode/data/licenses/openbsd_notice.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-credit diff --git a/tests/licensedcode/data/licenses/opengroup_notice.txt b/tests/licensedcode/data/licenses/opengroup_notice.txt deleted file mode 100644 index 6d6e3a7a26c..00000000000 --- a/tests/licensedcode/data/licenses/opengroup_notice.txt +++ /dev/null @@ -1,21 +0,0 @@ - Permission to use, copy, modify, distribute, and sell this software and its - documentation for any purpose is hereby granted without fee, provided that - the above copyright notice appear in all copies and that both that - copyright notice and this permission notice appear in supporting - documentation. - . - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - . - Except as contained in this notice, the name of the copyright holders shall - not be used in advertising or otherwise to promote the sale, use or - other dealings in this Software without prior written authorization - from the copyright holders. diff --git a/tests/licensedcode/data/licenses/opengroup_notice.yml b/tests/licensedcode/data/licenses/opengroup_notice.yml deleted file mode 100644 index 7409c9c145a..00000000000 --- a/tests/licensedcode/data/licenses/opengroup_notice.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - x11-opengroup diff --git a/tests/licensedcode/data/licenses/openldap-2.3.txt b/tests/licensedcode/data/licenses/openldap-2.3.txt deleted file mode 100644 index 5ebc9f33889..00000000000 --- a/tests/licensedcode/data/licenses/openldap-2.3.txt +++ /dev/null @@ -1,51 +0,0 @@ -The OpenLDAP Public License - Version 2.3, 28 July 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written permission -of the OpenLDAP Foundation. - -5. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. - -6. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -7. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/openldap-2.3.yml b/tests/licensedcode/data/licenses/openldap-2.3.yml deleted file mode 100644 index d03aa2eced8..00000000000 --- a/tests/licensedcode/data/licenses/openldap-2.3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openldap-2.3 diff --git a/tests/licensedcode/data/licenses/openmarket-fastcgi.txt b/tests/licensedcode/data/licenses/openmarket-fastcgi.txt deleted file mode 100644 index 09aec1fae9e..00000000000 --- a/tests/licensedcode/data/licenses/openmarket-fastcgi.txt +++ /dev/null @@ -1,11 +0,0 @@ -OpenMarket FastCGI - -This FastCGI application library source and object code (the "Software") and its documentation (the "Documentation") are copyrighted by Open Market, Inc ("Open Market"). The following terms apply to all files associated with the Software and Documentation unless explicitly disclaimed in individual files. - -Open Market permits you to use, copy, modify, distribute, and license this Software and the Documentation solely for the purpose of implementing the FastCGI specification defined by Open Market or derivative specifications publicly endorsed by Open Market and promulgated by an open standards organization and for no other purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions. - -No written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this Software and Documentation may be copyrighted by their authors and need not follow the licensing terms described here, but the modified Software and Documentation must be used for the sole purpose of implementing the FastCGI specification defined by Open Market or derivative specifications publicly endorsed by Open Market and promulgated by an open standards organization and for no other purpose. If modifications to this Software and Documentation have new licensing terms, the new terms must protect Open Market's proprietary rights in the Software and Documentation to the same extent as these licensing terms and must be clearly indicated on the first page of each file where they apply. - -Open Market shall retain all right, title and interest in and to the Software and Documentation, including without limitation all patent, copyright, trade secret and other proprietary rights. - -OPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE SOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR LOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS". OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR OTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/openmarket-fastcgi.yml b/tests/licensedcode/data/licenses/openmarket-fastcgi.yml deleted file mode 100644 index b8c222b7953..00000000000 --- a/tests/licensedcode/data/licenses/openmarket-fastcgi.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openmarket-fastcgi diff --git a/tests/licensedcode/data/licenses/opennetcf-shared-source.txt b/tests/licensedcode/data/licenses/opennetcf-shared-source.txt deleted file mode 100644 index 36d585bbdad..00000000000 --- a/tests/licensedcode/data/licenses/opennetcf-shared-source.txt +++ /dev/null @@ -1,38 +0,0 @@ -NOTICE -This license governs use of the accompanying software ("Software"), and your use of the Software constitutes acceptance of this license. -Subject to the restrictions below, you may use the Software for any commercial or noncommercial purpose, including distributing derivative works. - -SECTION 1: DEFINITIONS -A. "OpenNETCF" refers to OpenNETCF Consulting, LLC, a limited liability corporation organized and operating under the laws of the state of Maryland. - -B. "SDF" refers to the OpenNETCF Smart Device Framework, which is an OpenNETCF software product - -C. "SOFTWARE" refers to the source code, compiled binaries, installation files documentation and any other materials provided by OpenNETCF. - -SECTION 2: LICENSE -You agree that: -A. You are NOT allowed to combine or distribute the SOFTWARE with other software that is licensed under terms that seek to require that the SOFTWARE (or any intellectual property in it) be provided in source code form, licensed to others to allow the creation or distribution of derivative works, or distributed without charge. - -B. You may NOT distribute the SOFTWARE in source code form to any other person, company, government, group or entity. - -C. You may NOT decompile, disassemble, reverse engineer or otherwise attempt to extract, generate or retrieve source code from any compiled binary provided in the SOFTWARE. - -D. You will (a) NOT use OpenNETCF's name, logo, or trademarks in association with distribution of the SOFTWARE or derivative works unless otherwise permitted in writing; and (b) you WILL indemnify, hold harmless, and defend OpenNETCF from and against any claims or lawsuits, including attorneys fees, that arise or result from the use or distribution of your modifications to the SOFTWARE and any additional software you distribute along with the SOFTWARE. - -E. The SOFTWARE comes "as is", with no warranties. None whatsoever. This means no express, implied or statutory warranty, including without limitation, warranties of merchantability or fitness for a particular purpose or any warranty of title or non-infringement. - -F. Neither OpenNETCF nor its suppliers will be liable for any of those types of damages known as indirect, special, consequential, or incidental related to the SOFTWARE or this license, to the maximum extent the law permits, no matter what legal theory its based on. Also, you must pass this limitation of liability on whenever you distribute the SOFTWARE or derivative works. - -G. If you sue anyone over patents that you think may apply to the SOFTWARE for a person's use of the SOFTWARE, your license to the SOFTWARE ends automatically. - -H. The patent rights, if any, granted in this license only apply to the SOFTWARE, not to any derivative works you make. - -I. The SOFTWARE is subject to U.S. export jurisdiction at the time it is licensed to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the SOFTWARE after delivery of the SOFTWARE to you. - -J. If you are an agency of the U.S. Government, (i) the SOFTWARE is provided pursuant to a solicitation issued on or after December 1, 1995, is provided with the commercial license rights set forth in this license, and (ii) the SOFTWARE is provided pursuant to a solicitation issued prior to December 1, 1995, is provided with Restricted Rights as set forth in FAR, 48 C.F.R. 52.227-14 (June 1987) or DFAR, 48 C.F.R. 252.227-7013 (Oct 1988), as applicable. - -K. Your rights under this license end automatically if you breach it in any way. - -L. This license contains the only rights associated with the SOFTWARE and OpenNETCF reserves all rights not expressly granted to you in this license. - -© 2006-2012 OpenNETCF Consulting, LLC. All rights reserved. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/opennetcf-shared-source.yml b/tests/licensedcode/data/licenses/opennetcf-shared-source.yml deleted file mode 100644 index 89c1138a200..00000000000 --- a/tests/licensedcode/data/licenses/opennetcf-shared-source.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - opennetcf-shared-source diff --git a/tests/licensedcode/data/licenses/opensaml-1.0.txt b/tests/licensedcode/data/licenses/opensaml-1.0.txt deleted file mode 100644 index 70b37b5e6b6..00000000000 --- a/tests/licensedcode/data/licenses/opensaml-1.0.txt +++ /dev/null @@ -1,48 +0,0 @@ -The OpenSAML License, Version 1. -Copyright (c) 2002 -University Corporation for Advanced Internet Development, Inc. -All rights reserved - - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -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, if any, must include -the following acknowledgment: "This product includes software developed by -the University Corporation for Advanced Internet Development -Internet2 Project. Alternately, this acknowledegement -may appear in the software itself, if and wherever such third-party -acknowledgments normally appear. - -Neither the name of OpenSAML nor the names of its contributors, nor -Internet2, nor the University Corporation for Advanced Internet Development, -Inc., nor UCAID may be used to endorse or promote products derived from this -software without specific prior written permission. For written permission, -please contact opensaml@opensaml.org - -Products derived from this software may not be called OpenSAML, Internet2, -UCAID, or the University Corporation for Advanced Internet Development, nor -may OpenSAML appear in their name, without prior written permission of the -University Corporation for Advanced Internet Development. - - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK -OF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE. -IN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY -CORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. 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/tests/licensedcode/data/licenses/opensaml-1.0.yml b/tests/licensedcode/data/licenses/opensaml-1.0.yml deleted file mode 100644 index 587ee683911..00000000000 --- a/tests/licensedcode/data/licenses/opensaml-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - opensaml-1.0 diff --git a/tests/licensedcode/data/licenses/opensaml-1.0_1.txt b/tests/licensedcode/data/licenses/opensaml-1.0_1.txt deleted file mode 100644 index 26474ae4933..00000000000 --- a/tests/licensedcode/data/licenses/opensaml-1.0_1.txt +++ /dev/null @@ -1,46 +0,0 @@ -The OpenSAML License, Version 1. -Copyright (c) 2002 -University Corporation for Advanced Internet Development, Inc. -All rights reserved - - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -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, if any, must include -the following acknowledgment: "This product includes software developed by -the University Corporation for Advanced Internet Development -Internet2 Project. Alternately, this acknowledegement -may appear in the software itself, if and wherever such third-party -acknowledgments normally appear. - -Neither the name of OpenSAML nor the names of its contributors, nor -Internet2, nor the University Corporation for Advanced Internet Development, -Inc., nor UCAID may be used to endorse or promote products derived from this -software without specific prior written permission. For written permission, -please contact opensaml@opensaml.org - -Products derived from this software may not be called OpenSAML, Internet2, -UCAID, or the University Corporation for Advanced Internet Development, nor -may OpenSAML appear in their name, without prior written permission of the -University Corporation for Advanced Internet Development. - - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK -OF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE. -IN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY -CORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. 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/tests/licensedcode/data/licenses/opensaml-1.0_1.yml b/tests/licensedcode/data/licenses/opensaml-1.0_1.yml deleted file mode 100644 index 587ee683911..00000000000 --- a/tests/licensedcode/data/licenses/opensaml-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - opensaml-1.0 diff --git a/tests/licensedcode/data/licenses/openvpn-as-eula.txt b/tests/licensedcode/data/licenses/openvpn-as-eula.txt deleted file mode 100644 index f34b38ec737..00000000000 --- a/tests/licensedcode/data/licenses/openvpn-as-eula.txt +++ /dev/null @@ -1,23 +0,0 @@ -OpenVPN Access Server End User License Agreement (OpenVPN-AS EULA) - - 1. Copyright Notice: OpenVPN Access Server License;
Copyright (c) 2009-2013 OpenVPN Technologies, Inc.. All rights reserved.
“OpenVPN” is a trademark of OpenVPN Technologies, Inc. - - 2. Redistribution of OpenVPN Access Server binary forms and related documents, are permitted provided that redistributions of OpenVPN Access Server binary forms and related documents reproduce the above copyright notice as well as a complete copy of this EULA. - - 3. You agree not to reverse engineer, decompile, disassemble, modify, translate, make any attempt to discover the source code of this software, or create derivative works from this software. - - 4. The OpenVPN Access Server is bundled with other open source software components, some of which fall under different licenses. By using OpenVPN or any of the bundled components, you agree to be bound by the conditions of the license for each respective component. For more information, you can find our complete EULA (End-User License Agreement) on our website (http://openvpn.net), and a copy of the EULA is also distributed with the Access Server in the file /usr/local/openvpn_as/license.txt. - - 5. This software is provided “as is” and any expressed 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 OpenVPN Technologies, Inc. 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. - - 6. OpenVPN Technologies, Inc. is the sole distributor of OpenVPN Access Server licenses. This agreement and licenses granted by it may not be assigned, sublicensed, or otherwise transferred by licensee without prior written consent of OpenVPN Technologies Inc. Any licenses violating this provision will be subject to revocation and deactivation, and will not be eligible for refunds. - - 7. A purchased license entitles you to use this software for the duration of time denoted on your license key on any one (1) particular device, up to the concurrent user limit specified by your license. Multiple license keys may be activated to achieve a desired concurrency limit on this given device. Unless otherwise prearranged with OpenVPN Technologies, Inc., concurrency counts on license keys are not to be divided for use amongst multiple devices. Upon activation of the first purchased license key in this software, you agree to forego any free licenses or keys that were given to you for demonstration purposes, and as such, the free licenses will not appear after the activation of a purchased key. You are responsible for the timely activation of these licenses on your desired server of choice. Refunds on purchased license keys are only possible within 30 days of purchase of license key, and then only if the license key has not already been activated on a system. To request a refund, contact us through our support ticket system using the account you have used to purchase the license key. Exceptions to this policy may be given for machines under failover mode, and when the feature is used as directed in the OpenVPN Access Server user manual. In these circumstances, a user is granted one (1) license key (per original license key) for use solely on failover purposes free of charge. Other failover and/or load balancing use cases will not be eligible for this exception, and a separate license key would have to be acquired to satisfy the licensing requirements. To request a license exception, please file a support ticket in the OpenVPN Access Server ticketing system. A staff member will be responsible for determining exception eligibility, and we reserve the right to decline any requests not meeting our eligibility criteria, or requests which we believe may be fraudulent in nature. - - 8. Activating a license key ties it to the specific hardware/software combination that it was activated on, and activated license keys are nontransferable. Substantial software and/or hardware changes may invalidate an activated license. In case of substantial software and/or hardware changes, caused by for example, but not limited to failure and subsequent repair or alterations of (virtualized) hardware/software, our software product will automatically attempt to contact our online licensing systems to renegotiate the licensing state. On any given license key, you are limited to three (3) automatic renegotiations within the license key lifetime. After these renegotiations are exhausted, the license key is considered invalid, and the activation state will be locked to the last valid system configuration it was activated on. OpenVPN Technologies, Inc. reserves the right to grant exceptions to this policy for license holders under extenuating circumstances, and such exceptions can be requested through a ticket via the OpenVPN Access Server ticketing system. - - 9. Once an activated license key expires or becomes invalid, the concurrency limit on our software product will decrease by the amount of concurrent connections previously granted by the license key. If all of your purchased license key(s) have expired, the product will revert to demonstration mode, which allows a maximum of two (2) concurrent users to be connected to your server. Prior to your license expiration date(s), OpenVPN Technologies, Inc. will attempt to remind you to renew your license(s) by sending periodic email messages to the licensee email address on record. You are solely responsible for the timely renewal of your license key(s) prior to their expiration if continued operation is expected after the license expiration date(s). OpenVPN Technologies, Inc. will not be responsible for any misdirected and/or undeliverable email messages, nor does it have an obligation to contact you regarding your expiring license keys. - - 10. Any valid license key holder is entitled to use our ticketing system for support questions or issues specifically related to the OpenVPN Access Server product. To file a ticket, go to our website at http://openvpn.net/ and sign in using the account that was registered and used to purchase the license key(s). You can then access the support ticket system through our website and submit a support ticket. Tickets filed in the ticketing system are answered on a best-effort basis. OpenVPN Technologies, Inc. staff reserve the right to limit responses to users of our demo / expired licenses, as well as requests that substantively deviate from the OpenVPN Access Server product line. Tickets related to the open source version of OpenVPN will not be handled here. - - 11. Purchasing a license key does not entitle you to any special rights or privileges, except the ones explicitly outlined in this user agreement. Unless otherwise arranged prior to your purchase with OpenVPN Technologies, Inc., software maintenance costs and terms are subject to change after your initial purchase without notice. In case of price decreases or special promotions, OpenVPN Technologies, Inc. will not retrospectively apply credits or price adjustments toward any licenses that have already been issued. Furthermore, no discounts will be given for license maintenance renewals unless this is specified in your contract with OpenVPN Technologies, Inc. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/openvpn-as-eula.yml b/tests/licensedcode/data/licenses/openvpn-as-eula.yml deleted file mode 100644 index 12cf268038b..00000000000 --- a/tests/licensedcode/data/licenses/openvpn-as-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openvpn-as-eula diff --git a/tests/licensedcode/data/licenses/opera-widget-1.0.txt b/tests/licensedcode/data/licenses/opera-widget-1.0.txt deleted file mode 100644 index 26d1f78da4d..00000000000 --- a/tests/licensedcode/data/licenses/opera-widget-1.0.txt +++ /dev/null @@ -1,162 +0,0 @@ -OPERA Widget License Version 1. 0 -© Copyright 2006 Opera Software ASA. All rights reserved. - -OPERA SOFTWARE ASA (OPERA) IS WILLING TO PERMIT USE OF THIS SOFTWARE BY -YOU, ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED -IN THIS DOCUMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT -CAREFULLY. IF YOU ARE NOT WILLING TO BE BOUND, YOU ARE NOT ALLOWED TO -ACCESS THE CONTENTS OF, STUDY OR MAKE USE OF THE SOFTWARE IN ANY WAY. - - -Terms of Agreement - - -1. Definitions - a) "Original Code" means: -The original version of the program accompanying this Agreement as -released by Opera Software ASA ("OPERA") , including source code, object -code and documentation, if any. - b) "Covered Code" means: -The Original Source Code, Contributions, the combination of the Original -Code and Contributions, and/or any respective portions thereof. - c) "Contribution" means: -in the case of OPERA, the Original Code, and -in the case of each Contributor, changes to the Original code, and -additions to the Original Code; where such changes and/or additions to -the Original Code originate from and are distributed by that particular -Contributor. A Contribution 'originates' from a Contributor if it was -added to the Original Code by such Contributor itself or anyone acting -on such Contributor's behalf. -Contributions do not include additions to the Original Code which: (i) -are separate modules of software distributed in conjunction with the -Original Code under their own license agreement, and (ii) are not -derivative works of the Original Code. - d) "Contributor" means: -OPERA and any other entity that distributes the Covered Code. - e) "Recipient" means: -Anyone who receives the Covered Code under this Agreement, including all -Contributors. - f) "Larger Work" means: -A work which combines Covered Code or portions thereof with code not -governed by the terms of this Agreement, specifically additions to the -Original Code which: (i) are separate modules of software distributed in -conjunction with the Original Code under their own license agreement, -and (ii) are not derivative works of the Original Code. - - -2. Grant of Rights - 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. -The limited license granted in this Section is only for the integration -of the Contribution with or for the use of the Contribution in -connection with other proprietary software of OPERA, including but not -limited to OPERA’s browser software. - b) Recipient understands that although each Contributor grants the -licenses to its Contributions set forth herein, no assurances are -provided by any Contributor that the Covered Code 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. - c) 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. - - -3. Requirements - a) A Contributor may choose to distribute the Larger Work under its own -license agreement, provided that: - i. it complies with the terms and conditions of this Agreement; - ii. and its license agreement: - 1. 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; - 2. effectively excludes on behalf of all Contributors all liability for -damages, including direct, indirect, special, incidental and -consequential damages, such as lost profits; - 3. states that any provisions which differ from this Agreement are -offered by that Contributor alone and not by any other party; - 4. states that the Contribution only may be integrated with or used with -other proprietary software of OPERA, including but not limited to -OPERA’s browser software. - 5. and states that source code for the Covered Code 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. - b) When the Covered Code is made available: - i. it must be made available under this Agreement; and a copy of this -Agreement must be included with each copy of the Covered Code. - ii. Each Contributor must duplicate, to the extent it does not already -exist, the notice in Exhibit A in each file of the Covered Code of all -Contributions, and cause the modified files to carry prominent notices -stating that the contributor changed the files and the date of any -change. - iii. In addition, 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. - - -4. No Warranty -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE COVERED CODE 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 -Covered Code for commercial and non-commercial purposes and assumes all -risks associated with its exercise of rights under this Agreement, -including but not limited to the risks and costs of Covered Code errors, -compliance with applicable laws, damage to or loss of data, code or -equipment, and unavailability or interruption of operations. - - -5. Disclaimer of Liability -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 COVERED CODE OR THE EXERCISE OF ANY RIGHTS GRANTED -HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - - -6. General -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. - -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 Covered Code as soon as reasonably practicable. However, -Recipient's obligations under this Agreement and any licenses granted by -Recipient relating to the Covered Code shall continue and survive. - -OPERA may publish new versions (including revisions) of this Agreement -from time to time. Each new version of the Agreement will be given a -distinguishing version number. The Covered Code (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 -Covered Code (including its Contributions) under the new version. No one -other than OPERA has the right to modify this Agreement. Except as -expressly stated in Section 2(a) , 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 Covered Code not expressly granted under this Agreement -are reserved. - -This Agreement is governed by the laws of Norway. Any and all disputes -arising out of the rights and obligations in this Agreement shall be -submitted to ordinary court proceedings. You accept the Oslo City Court -as legal venue under this Agreement. diff --git a/tests/licensedcode/data/licenses/opera-widget-1.0.yml b/tests/licensedcode/data/licenses/opera-widget-1.0.yml deleted file mode 100644 index 3ddf27d0379..00000000000 --- a/tests/licensedcode/data/licenses/opera-widget-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - opera-widget-1.0 diff --git a/tests/licensedcode/data/licenses/oracle-bcl-javaee.txt b/tests/licensedcode/data/licenses/oracle-bcl-javaee.txt deleted file mode 100644 index c3852e1a944..00000000000 --- a/tests/licensedcode/data/licenses/oracle-bcl-javaee.txt +++ /dev/null @@ -1,74 +0,0 @@ -Oracle Binary Code License Agreement for Java EE Technologies - -ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. - -1. DEFINITIONS. "Software" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. "Programs" means Java technology applets and applications intended to run on the Java Platform, Enterprise Edition platform. “README File” means the README file for the Software set forth in the Software or otherwise available from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javaee/documentation/index.html. - -2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. - -3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers are set forth in the Supplemental License Terms. - -4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. - -5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). - -6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software. - -7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation. - -8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations ("Oracle Marks"), and you agree to comply with the Third Party Usage Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you make of the Oracle Marks inures to Oracle's benefit. - -9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement. - -10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement. - -11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -B. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Oracle's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section B does not extend to the Software identified in Section D. - -C. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the README File ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README File), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Oracle's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section D. - -D. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "javafx", “javaee”, "sun", “oracle” or similar convention as specified by Oracle in any naming convention designation. You shall not redistribute the Software listed on Schedule 1. - -E. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -F. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file set forth in the Software or otherwise available from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javaee/documentation/index.html . In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution. - -G. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -H. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javaee/documentation/index.html. - -For inquiries please contact: Oracle America, Inc., 500 Oracle Parkway, -Redwood Shores, California 94065, USA. - -License for Archived Java EE Technologies; Last updated 30 January 2012 -Schedule 1 to Supplemental Terms -Non-redistributable Java Technologies - -Java Platform, Enterprise Edition, Software Development Kit (except those files specifically identified as redistributable in the README File) - -Java Platform, Standard Edition, Software Development Kit - -Java Application Verification Kit (AVK) for Enterprise - -Java Message Service API Demo - -Java Message Service - -Java Platform, Enterprise Edition Deployment API - -Java Database Connectivity (JDBC) API Test Suite - -Java Web Services Developer Pack and Documentation - -Java Web Services Tutorial - -Java Platform, Enterprise Edition Client Provisioning \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/oracle-bcl-javaee.yml b/tests/licensedcode/data/licenses/oracle-bcl-javaee.yml deleted file mode 100644 index b5f7eb06772..00000000000 --- a/tests/licensedcode/data/licenses/oracle-bcl-javaee.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - oracle-bcl-javaee diff --git a/tests/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.txt b/tests/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.txt deleted file mode 100644 index b04fe865125..00000000000 --- a/tests/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.txt +++ /dev/null @@ -1,129 +0,0 @@ -Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX - - - -ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. - - - -1. DEFINITIONS. "Software" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. "General Purpose Desktop Computers and Servers" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, netbooks, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. “Commercial Features” means those features identified in Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. “README File” means the README file for the Software accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. - - - -2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS. - - - -3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - - - -4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. - - - -5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). - - - -6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software. - - - -7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation. - - - -8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you -and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand -designations ("Oracle Marks"), and you agree to comply with the Third -Party Usage Guidelines for Oracle Trademarks currently located at -http://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you make of the Oracle Marks inures to Oracle's benefit. - - - -9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement. - - - -10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement. - - - -11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - - - -12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - - - -SUPPLEMENTAL LICENSE TERMS - - - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - - - -A. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs, Java applets or applications in your internal business operations or for any commercial or production purpose, or for any purpose other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You want to use the Commercial Features for any purpose other than as permitted in this Agreement, You must obtain a separate license from Oracle. - - - -B. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - - - -C. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including, but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in this Agreement and that includes the notice set forth in Section H, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section G. - - - -D. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the README File ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README File), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section D does not extend to the Software identified in Section G. - - - -E. DISTRIBUTION BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development Kit Software (“JDK”) with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the JDK on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The JDK must be reproduced in its entirety and without any modification whatsoever (including with respect to all proprietary notices) and distributed with your Publication subject to a license agreement that is a complete, unmodified reproduction of this Agreement; (v) The Media label shall include the following information: “Copyright [YEAR], Oracle America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations are trademarks or registered trademarks of Oracle in the U.S. and other countries.” [YEAR] is the year of Oracle's release of the Software; the year information can typically be found in the Software’s “About” box or screen. This information must be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify the JDK as Oracle's product on the Media holder or Media label, and you may not state or imply that Oracle is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California 94065 U.S.A , Attention: General Counsel. - - - -F. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun", “oracle” or similar convention as specified by Oracle in any naming convention designation. - - - -G. LIMITATIONS ON REDISTRIBUTION. You may not redistribute or otherwise transfer: (a) JavaFX Runtime prior to version 2.0.2, (b) JavaFX Development Kit prior to version 2.0.2, or (c) any and all patches, bug fixes and updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program. - - - -H. COMMERCIAL FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include the following notice, where the notice is displayed in a manner that anyone using the Software will see the notice: - - - -Use of the Commercial Features for any commercial or production purpose requires a separate license from Oracle. “Commercial Features” means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html - - - -I. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - - - -J. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution. - - - -K. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - - - -L. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html. - - - - - -For inquiries please contact: Oracle America, Inc., 500 Oracle Parkway, - -Redwood Shores, California 94065, USA. - - - -Last updated 25 April 2012 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.yml b/tests/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.yml deleted file mode 100644 index 91ab9f4745b..00000000000 --- a/tests/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - oracle-bcl-javase-javafx-2012 diff --git a/tests/licensedcode/data/licenses/osetpl-2.1.txt b/tests/licensedcode/data/licenses/osetpl-2.1.txt deleted file mode 100644 index 80dfc4a517b..00000000000 --- a/tests/licensedcode/data/licenses/osetpl-2.1.txt +++ /dev/null @@ -1,70 +0,0 @@ - -OSET Public License
© 2015 ALL RIGHTS RESERVED -VERSION 2.1 - -THIS LICENSE DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION, AND REDISTRIBUTION OF CERTAIN COVERED SOFTWARE (AS DEFINED BELOW) ORIGINALLY RELEASED BY THE OPEN SOURCE ELECTION TECHNOLOGY FOUNDATION (FORMERLY “THE OSDV FOUNDATION”). ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES, OR REDISTRIBUTES
THE COVERED SOFTWARE, OR ANY PART THEREOF, IS BY THAT ACTION,
ACCEPTING IN FULL THE TERMS CONTAINED IN THIS AGREEMENT. IF YOU DO
NOT AGREE TO SUCH TERMS, YOU ARE NOT PERMITTED TO USE THE COVERED
SOFTWARE. -This license was prepared based on the Mozilla Public License (“MPL”), version 2.0. For annotation of the differences between this license and MPL 2.0, please see the OSET Foundation web site at www.OSETFoundation.org/public-license. -The text of the license begins here: - • Definitions - • “Contributor” means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - • “Contributor Version” means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. - • “Contribution” means Covered Software of a particular Contributor. - • “Covered Software” means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - • “Incompatible With Secondary Licenses” means:
a. That the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or

b. that the Covered Software was made available under the terms of version 1.x or earlier of the License, but not also under the terms of a Secondary License. - • “Executable Form” means any form of the work other than Source Code Form. - • “Larger Work” means a work that combines Covered Software with other material, in a separate file (or files) that is not Covered Software. - • “License” means this document. - • “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - • “Modifications” means any of the following:
a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or

b. any new file in Source Code Form that contains any Covered Software. - • “Patent Claims” of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. - • “Secondary License” means one of: the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - • “Source Code Form” means the form of the work preferred for making modifications. - • “You” (or “Your”) means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means: (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - • License Grants and Conditions - • Grants
Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:

a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and

b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. - • Effective Date
The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. - • Limitations on Grant Scope
The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:

a. for any code that a Contributor has removed from Covered Software; or

b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or

c. under Patent Claims infringed by Covered Software in the absence of its Contributions.

This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). - • Subsequent Licenses
No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - • Representation
Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. - • Fair Use
This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. - • Conditions
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - • Responsibilities - • Distribution of Source Form
All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You must cause any of Your Modifications to carry prominent notices stating that You changed the files. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. - • Distribution of Executable Form
If You distribute Covered Software in Executable Form then:
a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and

b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. - • Distribution of a Larger Work
You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). - • Notices
You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. - • Application of Additional Terms - • You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - • You may place additional conditions upon the rights granted in this License to the extent necessary due to statute, judicial order, regulation (including without limitation state and federal procurement regulation), national security, or public interest. Any such additional conditions must be clearly described in the notice provisions required under Section 3.4. Any alteration of the terms of this License will apply to all copies of the Covered Software distributed by You or by any downstream recipients that receive the Covered Software from You. - • Inability to Comply Due to Statute or Regulation
If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation, then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the notices required under Section 3.4. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - • Termination - • Failure to Comply
The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60-days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30-days after Your receipt of the notice. - • Patent Infringement Claims
If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - • Additional Compliance Terms
Notwithstanding the foregoing in this Section 5, for purposes of this Section, if You breach Section 3.1 (Distribution of Source Form), Section 3.2 (Distribution of Executable Form), Section 3.3 (Distribution of a Larger Work), or Section 3.4 (Notices), then becoming compliant as described in Section 5.1 must also include, no later than 30 days after receipt by You of notice of such violation by a Contributor, making the Covered Software available in Source Code Form as required by this License on a publicly available computer network for a period of no less than three (3) years. - • Contributor Remedies
If You fail to comply with the terms of this License and do not thereafter become
compliant in accordance with Section 5.1 and, if applicable, Section 5.3, then each Contributor reserves its right, in addition to any other rights it may have in law or in equity, to bring an action seeking injunctive relief, or damages for willful copyright or patent infringement (including without limitation damages for unjust enrichment, where available under law), for all actions in violation of rights that would otherwise have been granted under the terms of this License. - • End User License Agreements
In the event of termination under this Section 5, all end user license agreements
(excluding distributors and resellers), which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - • Disclaimer of Warranty
Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an
essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - • Limitation of Liability
Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - • Litigation
Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. - • Government Terms - • Commercial Item
The Covered Software is a “commercial item,” as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of “commercial computer software” and “commercial computer software documentation,” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. - • No Sovereign Immunity
The U.S. federal government and states that use or distribute Covered Software hereby waive their sovereign immunity with respect to enforcement of the provisions of this License. - • Choice of Law and Venue - • If You are a government of a state of the United States, or Your use of the Covered Software is pursuant to a procurement contract with such a state government, this License shall be governed by the law of such state, excluding its conflict-of-law provisions, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the state and federal courts located in such state. - • If You are an agency of the United States federal government, or Your use of the Covered Software is pursuant to a procurement contract with such an agency, this License shall be governed by federal law for all purposes, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the federal courts located in Washington,
D.C. - • You may alter the terms of this Section 9.3 for this License as described in Section 3.5.2. - • Supremacy
This Section 9 is in lieu of, and supersedes, any other Federal Acquisition Regulation, Defense Federal Acquisition Regulation, or other clause or provision that addresses government rights in computer software under this License. - • Miscellaneous
This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not be used to construe this License against a Contributor. - • Versions of the License - • New Versions
The Open Source Election Technology Foundation (“OSET”) (formerly known as the Open Source Digital Voting Foundation) is the steward of this License. Except as provided in Section 11.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. - • Effects of New Versions
You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - • Modified Versions
If You create software not governed by this License, and You want to create a new license for such software, You may create and use a modified version of this License if You rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). - • Distributing Source Code Form That is Incompatible With Secondary Licenses
If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. - -EXHIBIT A – Source Code Form License Notice -This Source Code Form is subject to the terms of the OSET Public License, v.2.1
(“OPL”). If a copy of the OPL was not distributed with this file, You can obtain one at:
www.OSETFoundation.org/public-license. -If it is not possible or desirable to put the Notice in a particular file, then You may include the Notice in a location (e.g., such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership. - -EXHIBIT B - “Incompatible With Secondary License” Notice -This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the
OSET Public License, v.2.1. - diff --git a/tests/licensedcode/data/licenses/osetpl-2.1.yml b/tests/licensedcode/data/licenses/osetpl-2.1.yml deleted file mode 100644 index e622802e1be..00000000000 --- a/tests/licensedcode/data/licenses/osetpl-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - oset-pl-2.1 diff --git a/tests/licensedcode/data/licenses/osl-1.1.txt b/tests/licensedcode/data/licenses/osl-1.1.txt deleted file mode 100644 index 05ae3d23a72..00000000000 --- a/tests/licensedcode/data/licenses/osl-1.1.txt +++ /dev/null @@ -1,46 +0,0 @@ -The Open Software License v. 1.1 -This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: - -Licensed under the Open Software License version 1.1 - -1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license to do the following: - -a) to reproduce the Original Work in copies; - -b) to prepare derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor ("Licensed Claims") to make, use, sell and offer for sale the Original Work. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license under the Licensed Claims to make, use, sell and offer for sale Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the Licensed Claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work is owned by the Licensor or that the Original Work is distributed by Licensor under a valid current license from the copyright owner. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express and volitional assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Sections 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Sections 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein. - -10) Mutual Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License if You file a lawsuit in any court alleging that any OSI Certified open source software that is licensed under any license containing this "Mutual Termination for Patent Action" clause infringes any patent claims that are essential to use that software. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. å¤ 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/osl-1.1.yml b/tests/licensedcode/data/licenses/osl-1.1.yml deleted file mode 100644 index c7329c8cd40..00000000000 --- a/tests/licensedcode/data/licenses/osl-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - osl-1.1 diff --git a/tests/licensedcode/data/licenses/osl-3.0.txt b/tests/licensedcode/data/licenses/osl-3.0.txt deleted file mode 100644 index 25f77b55881..00000000000 --- a/tests/licensedcode/data/licenses/osl-3.0.txt +++ /dev/null @@ -1,47 +0,0 @@ -Open Software License ("OSL") v. 3.0 - -This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: - -Licensed under the Open Software License version 3.0 - - 1. Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: - - 1. to reproduce the Original Work in copies, either alone or as part of a collective work; - - 2. to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; - - 3. to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Open Software License; - - 4. to perform the Original Work publicly; and - - 5. to display the Original Work publicly. - - 2. Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. - - 3. Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. - - 4. Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. - - 5. External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). - - 6. Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - - 7. Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. - - 8. Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. - - 9. Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including 'fair use' or 'fair dealing'). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). - - 10. Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - - 11. Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. - - 12. Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - - 13. Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - - 14. Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - - 15. Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - - 16. Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Open Software License" or "OSL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/osl-3.0.yml b/tests/licensedcode/data/licenses/osl-3.0.yml deleted file mode 100644 index 49417c535eb..00000000000 --- a/tests/licensedcode/data/licenses/osl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - osl-3.0 diff --git a/tests/licensedcode/data/licenses/otn-early-adopter-development.txt b/tests/licensedcode/data/licenses/otn-early-adopter-development.txt deleted file mode 100644 index 8e778123b8f..00000000000 --- a/tests/licensedcode/data/licenses/otn-early-adopter-development.txt +++ /dev/null @@ -1,100 +0,0 @@ -Oracle Technology Network Early Adopter Development License Agreement - -EXPORT CONTROLS -Export laws and regulations of the United States and any other relevant local export laws and regulations apply to the Oracle Technology. You agree that such export control laws govern your use of the Oracle Technology (including technical data) and any services deliverables provided under this agreement, and you agree to comply with all such export laws and regulations (including “deemed export” and “deemed re-export” regulations). You agree that no data, information, program and/or materials resulting from services (or direct product thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. - -Accordingly, you confirm: - --You will not download, provide, make available or otherwise export or re-export the Oracle Technology, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries. - --You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders. - -- You will not download or otherwise export or re-export the Oracle Technology, directly or indirectly, to persons on the above mentioned lists. - -- You will not use the Oracle Technology for, and will not allow the Oracle Technology to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction. - -Oracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination. - - - -Note: You are bound by the Oracle Technology Network ("OTN") Early Adopter Development License Agreement (“OTN License Agreement”) terms. The OTN License Agreement terms also apply to all updates You receive under Your Technology Track subscription. - -The OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate). - -PLEASE READ THE FOLLOWING LICENSE AGREEMENT TERMS AND CONDITIONS CAREFULLY BEFORE ACCESSING, DOWNLOADING, INSTALLING OR USING THE ORACLE TECHNOLOGY. THESE TERMS AND CONDITIONS CONSTITUTE A LEGAL AGREEMENT BETWEEN YOU AND ORACLE . - -Oracle Technology Network Early Adopter Development License Agreement - -"Oracle,” We," "Us," and "Our" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. "You" and "Your" refers to the individual or entity, for which you are an authorized representative with full authority to enter into this agreement on behalf of, that wishes to use the Programs. "Programs" refers to the pre-production version of the Oracle software product You wish to access and use or download and use, including program documentation, if any. “Supplemental Programs” refer to any supplemental Oracle production software as may be provided by Oracle for operation of the Programs. If included, Supplemental Programs are listed in Exhibit A to this Agreement. Programs and any Supplemental Programs are collectively “Oracle Technology”. "License" refers to Your right to use the Oracle Technology under the terms of this license agreement. “Oracle Confidential Information” includes the Software, any information related to the Software and Feedback. Oracle Confidential Information shall not include information which: (a) is or becomes a part of the public domain through no act or omission of the other party; or (b) was in the other party’s lawful possession prior to the disclosure and had not been obtained by the other party either directly or indirectly from the disclosing party; or (c) is lawfully disclosed to the other party by a third party without restriction on disclosure; or (d) except for Feedback, is independently developed by You. You agree, both during the term of this Agreement and for a period of three years after termination of this Agreement and of all licenses granted hereunder, to hold Oracle’s Confidential Information in confidence. You agree not to make Oracle’s Confidential Information available in any form to any unauthorized third parties. Company agrees to take all reasonable steps to ensure that Confidential Information is not disclosed or distributed by its employees or agents in violation of the provisions of this Agreement. - -This agreement is governed by California law, except for that body of laws related to the conflict of laws. You agree to submit to the exclusive jurisdiction of, and venue in, the courts located in San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this agreement or the Oracle Technology. - -In order to use the Oracle Technology, You must first agree to the license terms below by selecting the "Accept License Agreement" (or the equivalent) button below. If You do not or cannot agree to these license terms, You are not permitted to access, download or use the Oracle Technology. - -License Rights -We grant You a revocable, nonexclusive, nontransferable, royalty-free and limited right to (a) use one (1) copy of the binary portions of the Programs and any Supplemental Programs for the sole purpose of internal non-production and non-commercial evaluation and testing of the Programs, including, developing no more than a single prototype of each of Your applications; and (b) if provided by Us at our sole discretion, view the source code portions of the Programs internally for the purposes of evaluation and testing only (collectively, “Authorized Use”). - -All rights not expressly granted above are hereby reserved. If You want to use the Oracle Technology for any purpose other than as permitted under this agreement, including but not limited to distribution of the Oracle Technology or the application You develop or any use of the Oracle Technology or the application You develop for Your internal business purposes (other than the Authorized Use), You must obtain a valid Oracle license permitting such use. - -You acknowledge that (1) the Programs are not generally available and may have defects, security vulnerabilities, or other deficiencies that may not and/or cannot be corrected by Us and are subject to change at Our sole discretion; and (2) We may not produce a production release version of the Programs and any development efforts undertaken by You are at Your own risk. We may audit Your use of the Oracle Technology. - -The Oracle Technology will either be hosted by Oracle or provided to You. In the event that the Oracle Technology are provided to You in a hosted environment, Oracle may provide certain passwords and/or other access information to enable You to access the Oracle Technology. These passwords and/or access information shall be and are Oracle Confidential Information under the terms of this agreement and shall be used solely for the purpose of accessing the Oracle Technology for the evaluation and testing purposes described above. Any hosted instance of the Oracle Technology is provided as is and without warranty. Oracle makes no assurances that any data loaded into the hosted instance will be secured or that such data will remain confidential. Further, Oracle, at its discretion, (a) may access, monitor, and/or review Your activity and data in the hosted instance, and (b) may delete Your files within the hosted instance. Accordingly, Oracle advises You not to place any personal information or other production data into the hosted instance. You agree to take all reasonable steps to prevent improper or unauthorized access to or use of the Oracle Technology. - -Collection of Information - -The Oracle Technology may collect certain technical information regarding Your use of the Oracle Technology for the purpose of improving the functionality of the Oracle Technology. Except as set forth above with respect to Oracle-hosted instances of the Oracle Technology, Oracle will comply with its Privacy Policy in effect as data collection services are performed, which is available at http://www.oracle.com/us/legal/privacy/index.html. - -Ownership and Restrictions -We retain all ownership and intellectual property rights in the Oracle Technology. The Oracle Technology may be accessed from the hosted environment or if the Oracle Technology are provided to You, the Oracle Technology may be installed on one computer only, and used by Your employees in the operating environment identified by Us. You may make one copy of the Oracle Technology for backup purposes. - -The license grant set forth above is subject to the following additional specific agreements and covenants: - -(i) You shall not use the Oracle Technology for training, commercial time-sharing or service bureau use; - -(ii) You agree that it will not make copies of the Oracle Technology except for backup purposes; - -(iii) You agree not to cause or permit the disassembly, reverse compilation, or reverse engineering of the Oracle Technology, except as otherwise specified by law; and - -(iv) You shall not remove any product identification, copyright notices, or other notices or proprietary restrictions from the Oracle Technology. - -Feedback - -”Feedback” shall mean any input provided to Us, in any manner, regarding Oracle’s products, documentation and/or services, including changes or suggested changes to Oracle’s current or future products, documentation, and/or services, and benchmark test results. You grant to Oracle a worldwide, royalty-free, non-exclusive, perpetual, and irrevocable right to use Feedback for any purpose, including but not limited to, incorporation of such Feedback into the Software or other software products without compensation to You. Any Feedback shall be Oracle Confidential Information. Company shall not be identified with Feedback if Oracle provides it to a third party. - -Export -You agree to comply fully with export laws and regulations of the United States and any other applicable export laws ("Export Laws") to assure that neither the Software, Confidential Information nor any direct product thereof are: (1) exported, directly or indirectly, in violation of this Agreement or Export Laws; or (2) used for any purposes prohibited by the Export Laws, including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. - -Disclaimer of Warranty and Exclusive Remedies -THE ORACLE TECHNOLOGY IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, TIMELINESS OR NONINFRINGEMENT. - -IN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). - -Additional Trial Programs -We may include additional trial programs with the Programs licensed under this agreement which You download or access in the hosted environment. You will have 30 days from the delivery date or hosted environment access date to evaluate these additional trial programs. Any use of these trial programs after the 30 day trial period requires You to obtain the applicable license. Any additional trial programs are provided "as is" and We do not provide technical support or any warranties for these programs. - -No Technical Support -Our technical support organization will not provide technical support, phone support, or updates to You for the Oracle Technology licensed under this agreement. - -End of Agreement -This agreement, and Your right to use the Programs, will be terminated: (i) automatically upon the general commercial availability of the Programs, or six months from the date You download the Programs, whichever is first to occur, in which case You shall cease using and destroy all copies of the Oracle Technology in Your possession or control; (ii) by You, by ceasing to use and destroying all copies of the Oracle Technology in Your possession or control; or, (iii) by Us if You fail to comply with any of the terms of this agreement, in which case You shall cease using and destroy all copies of the Oracle Technology in Your possession or control. - -Relationship Between the Parties -The relationship between You and Us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software. - -Third-Party Technology - -The Oracle Technology may be distributed to You with third party technology or derivatives of third party technology (“Third Party Technology”). Oracle may provide certain notices to You in Oracle Technology documentation, readmes or otherwise in connection with such Third Party Technology. - -Third Party Technology will be licensed to You either under the terms of this agreement, or, if specified in the Oracle Technology documentation, readme files or otherwise, under separate license terms (“Separate Terms”) and not under the terms of this agreement (“Separately Licensed Third Party Technology”). Your rights to use such Separately Licensed Third Party Technology under the Separate Terms are not restricted or modified in any way by this agreement. - -Entire Agreement -You agree that this agreement is the complete agreement for the Oracle Technology and licenses, and, except as may be expressly set forth in Exhibit A, this agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective. - -Last updated: 19 April 2013 - -Should You have any questions concerning this License Agreement, or if You desire to contact Oracle for any reason, please write: -Oracle America, Inc. -500 Oracle Parkway, -Redwood City, CA 94065 - -Oracle may contact You to ask if You had a satisfactory experience installing and using this software download and/or accessing and using the hosted environment. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/otn-early-adopter-development.yml b/tests/licensedcode/data/licenses/otn-early-adopter-development.yml deleted file mode 100644 index 47f080ca340..00000000000 --- a/tests/licensedcode/data/licenses/otn-early-adopter-development.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - otn-early-adopter-development diff --git a/tests/licensedcode/data/licenses/owal-1.0.txt b/tests/licensedcode/data/licenses/owal-1.0.txt deleted file mode 100644 index 42f621f1486..00000000000 --- a/tests/licensedcode/data/licenses/owal-1.0.txt +++ /dev/null @@ -1,156 +0,0 @@ -OPERA Web Applications License Version 1.0 -© Copyright 2006 Opera Software ASA. All rights reserved. -OPERA SOFTWARE ASA ("OPERA") IS WILLING TO PERMIT USE OF THIS SOFTWARE -BY YOU, ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS -CONTAINED IN THIS DOCUMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS -AGREEMENT CAREFULLY. IF YOU ARE NOT WILLING TO BE BOUND, YOU ARE NOT -ALLOWED TO ACCESS THE CONTENTS OF, STUDY OR MAKE USE OF THE SOFTWARE IN -ANY WAY. - -Terms of Agreement - -1.Definitions - a)"Original Code" means: - The original version of the program accompanying this Agreement as - released by Opera Software ASA ("OPERA"), including source code, object - code and documentation, if any. - b)"Covered Code" means: - The Original Source Code, Contributions, the combination of the Original - Code and Contributions, and/or any respective portions thereof. - c)"Contribution" means: - in the case of OPERA, the Original Code, and - in the case of each Contributor, changes to the Original code, and - additions to the Original Code; where such changes and/or additions to - the Original Code originate from and are distributed by that particular - Contributor. A Contribution 'originates' from a Contributor if it was - added to the Original Code by such Contributor itself or anyone acting - on such Contributor's behalf. - Contributions do not include additions to the Original Code which: (i) - are separate modules of software distributed in conjunction with the - Original Code under their own license agreement, and (ii) are not - derivative works of the Original Code. - d)"Contributor" means: - OPERA and any other entity that distributes the Covered Code. - e)"Recipient" means: - Anyone who receives the Covered Code under this Agreement, including all - Contributors. - f)"Larger Work" means: - A work which combines Covered Code or portions thereof with code not - governed by the terms of this Agreement, specifically additions to the - Original Code which: (i) are separate modules of software distributed in - conjunction with the Original Code under their own license agreement, - and (ii) are not derivative works of the Original Code. -2.Grant of Rights - 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. - The limited license granted in this Section is only for the integration - of the Contribution with or for the use of the Contribution in - connection with other proprietary software of OPERA, including but not - limited to OPERA’s browser software. - b)Recipient understands that although each Contributor grants the - licenses to its Contributions set forth herein, no assurances are - provided by any Contributor that the Covered Code 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. - c)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. - d)Except as expressly stated in this Agreement, no other rights or - licenses, express or implied, are granted by OPERA herein, including but - not limited to any rights to trademarks, service marks or logos - belonging to OPERA, OPERA’s suppliers or to any Contributor. - -3.Requirements - a)A Contributor may choose to distribute the Larger Work under its own - license agreement, provided that: - 1.it complies with the terms and conditions of this Agreement; - 2.and its license agreement: - 1.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; - 2.effectively excludes on behalf of all Contributors all liability for - damages, including direct, indirect, special, incidental and - consequential damages, such as lost profits; - 3.states that any provisions which differ from this Agreement are - offered by that Contributor alone and not by any other party; - 4.states that the Contribution only may be integrated with or used with - other proprietary software of OPERA, including but not limited to - OPERA’s browser software. - 5.and states that source code for the Covered Code 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. - b)When the Covered Code is made available: - 1. it must be made available under this Agreement; and a copy of this - Agreement must be included with each copy of the Covered Code. - 2.Each Contributor must duplicate, to the extent it does not already - exist, the notice in Exhibit A in each file of the Covered Code of all - Contributions, and cause the modified files to carry prominent notices - stating that the contributor changed the files and the date of any - change. - 3.In addition, 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. - -4.No Warranty - EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE COVERED CODE 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 - Covered Code for commercial and non-commercial purposes and assumes all - risks associated with its exercise of rights under this Agreement, - including but not limited to the risks and costs of Covered Code errors, - compliance with applicable laws, damage to or loss of data, code or - equipment, and unavailability or interruption of operations. -5.Disclaimer of Liability - 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 COVERED CODE OR THE EXERCISE OF ANY RIGHTS GRANTED - HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -6. General - 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. - - 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 Covered Code as soon as reasonably practicable. However, - Recipient's obligations under this Agreement and any licenses granted by - Recipient relating to the Covered Code shall continue and survive. - - OPERA may publish new versions (including revisions) of this Agreement - from time to time. Each new version of the Agreement will be given a - distinguishing version number. The Covered Code (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 - Covered Code (including its Contributions) under the new version. No one - other than OPERA has the right to modify this Agreement. Except as - expressly stated in Section 2(a), 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 Covered Code not expressly granted under this Agreement - are reserved. - - This Agreement is governed by the laws of Norway. Any and all disputes - arising out of the rights and obligations in this Agreement shall be - submitted to ordinary court proceedings. You accept the Oslo City Court - as legal venue under this Agreement. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/owal-1.0.yml b/tests/licensedcode/data/licenses/owal-1.0.yml deleted file mode 100644 index 9cafa777a8e..00000000000 --- a/tests/licensedcode/data/licenses/owal-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - owal-1.0 diff --git a/tests/licensedcode/data/licenses/patent_pending.txt b/tests/licensedcode/data/licenses/patent_pending.txt deleted file mode 100644 index 6fc89f2cdad..00000000000 --- a/tests/licensedcode/data/licenses/patent_pending.txt +++ /dev/null @@ -1 +0,0 @@ -patent pending diff --git a/tests/licensedcode/data/licenses/patent_pending.yml b/tests/licensedcode/data/licenses/patent_pending.yml deleted file mode 100644 index d3074c5e51a..00000000000 --- a/tests/licensedcode/data/licenses/patent_pending.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - proprietary-license diff --git a/tests/licensedcode/data/licenses/paul-hsieh-exposition.txt b/tests/licensedcode/data/licenses/paul-hsieh-exposition.txt deleted file mode 100644 index d5929763a66..00000000000 --- a/tests/licensedcode/data/licenses/paul-hsieh-exposition.txt +++ /dev/null @@ -1,2 +0,0 @@ -The Author allows commercial use as long as authorship is fully attributed to Paul Hsieh. -See License here: http://www.azillionmonkeys.com/qed/weblicense.html \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/paul-hsieh-exposition.yml b/tests/licensedcode/data/licenses/paul-hsieh-exposition.yml deleted file mode 100644 index 13322a2b5bd..00000000000 --- a/tests/licensedcode/data/licenses/paul-hsieh-exposition.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - paul-hsieh-exposition -notes: | - actual text of the license is at the URL indicated in the notice. diff --git a/tests/licensedcode/data/licenses/paul-hsieh-exposition_1.txt b/tests/licensedcode/data/licenses/paul-hsieh-exposition_1.txt deleted file mode 100644 index cdcc875296c..00000000000 --- a/tests/licensedcode/data/licenses/paul-hsieh-exposition_1.txt +++ /dev/null @@ -1,10 +0,0 @@ -Paul Hsieh exposition license -The content of all text, figures, tables and displayed layout is copyrighted by its author and owner Paul Hsieh unless specifically denoted otherwise. Redistribution is limited to the following conditions: - -The redistributor must fully attribute the content's authorship and make a good faith effort to cite the original location of the original content. - -The content may not be modified via excerpt or otherwise with the exception of additional citations such as described above without prior consent of Paul Hsieh. - -The content may not be subject to a change in license without prior consent of Paul Hsieh. - -The content may be used for commercial purposes. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/paul-hsieh-exposition_1.yml b/tests/licensedcode/data/licenses/paul-hsieh-exposition_1.yml deleted file mode 100644 index d18749d1ac4..00000000000 --- a/tests/licensedcode/data/licenses/paul-hsieh-exposition_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - paul-hsieh-exposition diff --git a/tests/licensedcode/data/licenses/paul-mackerras.txt b/tests/licensedcode/data/licenses/paul-mackerras.txt deleted file mode 100644 index dfb91db8fb3..00000000000 --- a/tests/licensedcode/data/licenses/paul-mackerras.txt +++ /dev/null @@ -1,23 +0,0 @@ -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. The name(s) of the authors of this software must not be used to - endorse or promote products derived from this software without - prior written permission. - -3. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by Paul Mackerras - ". - -THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY -SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN -AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING -OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/paul-mackerras.yml b/tests/licensedcode/data/licenses/paul-mackerras.yml deleted file mode 100644 index 685e4c551f6..00000000000 --- a/tests/licensedcode/data/licenses/paul-mackerras.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - paul-mackerras diff --git a/tests/licensedcode/data/licenses/peter-deutsch-document.txt b/tests/licensedcode/data/licenses/peter-deutsch-document.txt deleted file mode 100644 index f36974a4794..00000000000 --- a/tests/licensedcode/data/licenses/peter-deutsch-document.txt +++ /dev/null @@ -1,5 +0,0 @@ - Copyright (c) 1996 L. Peter Deutsch - - Permission is granted to copy and distribute this document for any purpose and without charge, including translations into other languages and incorporation into compilations, provided that the copyright notice and this notice are preserved, and that any substantive changes or deletions from the original are clearly marked. - - A pointer to the latest version of this and related documentation in HTML format can be found at the URL < ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html >. diff --git a/tests/licensedcode/data/licenses/peter-deutsch-document.yml b/tests/licensedcode/data/licenses/peter-deutsch-document.yml deleted file mode 100644 index 9956d832d86..00000000000 --- a/tests/licensedcode/data/licenses/peter-deutsch-document.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - peter-deutsch-document diff --git a/tests/licensedcode/data/licenses/phorum-2.0.txt b/tests/licensedcode/data/licenses/phorum-2.0.txt deleted file mode 100644 index 3e19eb310c2..00000000000 --- a/tests/licensedcode/data/licenses/phorum-2.0.txt +++ /dev/null @@ -1,45 +0,0 @@ -The Phorum License 2.0. - -Copyright (c) 2001 The Phorum Development Team. 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. The end-user documentation included with the redistribution, - if any, must include the following acknowledgment: - "This product includes software developed by the - Phorum Development Team (http://phorum.org/)." - Alternately, this acknowledgment may appear in the software itself, - if and wherever such third-party acknowledgments normally appear. - -4. The names "Phorum" and "Phorum Development Team" must - not be used to endorse or promote products derived from this - software without prior written permission. For written - permission, please contact core@phorum.org. - -5. Products derived from this software may not be called "Phorum", - nor may "Phorum" appear in their name, without prior written - permission of the Phorum Development Team. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 PHORUM DEVELOPMENT TEAM OR -ITS 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/tests/licensedcode/data/licenses/phorum-2.0.yml b/tests/licensedcode/data/licenses/phorum-2.0.yml deleted file mode 100644 index 7aee6077d8e..00000000000 --- a/tests/licensedcode/data/licenses/phorum-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - phorum-2.0 diff --git a/tests/licensedcode/data/licenses/php-3.0.txt b/tests/licensedcode/data/licenses/php-3.0.txt deleted file mode 100644 index 5ed1a346454..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0.txt +++ /dev/null @@ -1,10 +0,0 @@ -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -This product includes the Zend Engine, freely available at -. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/php-3.0.yml b/tests/licensedcode/data/licenses/php-3.0.yml deleted file mode 100644 index 0b7deecf80b..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.0 diff --git a/tests/licensedcode/data/licenses/php-3.01.txt b/tests/licensedcode/data/licenses/php-3.01.txt deleted file mode 100644 index bc13cc8824a..00000000000 --- a/tests/licensedcode/data/licenses/php-3.01.txt +++ /dev/null @@ -1,68 +0,0 @@ -The PHP License, version 3.01 - -Copyright (c) 1999 - 2012 The PHP Group. All rights reserved. - - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products -derived from this software without prior written permission. For -written permission, please contact group@php.net. - -4. Products derived from this software may not be called "PHP", nor -may "PHP" appear in their name, without prior written permission -from group@php.net. You may indicate that your software works in -conjunction with PHP by saying "Foo for PHP" instead of calling -it "PHP Foo" or "phpfoo" - -5. The PHP Group may publish revised and/or new versions of the -license from time to time. Each version will be given a -distinguishing version number. -Once covered code has been published under a particular version -of the license, you may always continue to use it under the terms -of that version. You may also choose to use such covered code -under the terms of any subsequent version of the license -published by the PHP Group. No one other than the PHP Group has -the right to modify the terms applicable to covered code created -under this License. - -6. Redistributions of any form whatsoever must retain the following -acknowledgment: -"This product includes PHP software, freely available from -". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -PHP includes the Zend Engine, freely available at -. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/php-3.01.yml b/tests/licensedcode/data/licenses/php-3.01.yml deleted file mode 100644 index 30d50a93d56..00000000000 --- a/tests/licensedcode/data/licenses/php-3.01.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.01 diff --git a/tests/licensedcode/data/licenses/php-3.01_1.txt b/tests/licensedcode/data/licenses/php-3.01_1.txt deleted file mode 100644 index a601faaba39..00000000000 --- a/tests/licensedcode/data/licenses/php-3.01_1.txt +++ /dev/null @@ -1,68 +0,0 @@ --------------------------------------------------------------------- - The PHP License, version 3.01 -Copyright (c) 1999 - 2010 The PHP Group. All rights reserved. --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP software, freely available from - ". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -PHP includes the Zend Engine, freely available at -. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/php-3.01_1.yml b/tests/licensedcode/data/licenses/php-3.01_1.yml deleted file mode 100644 index 30d50a93d56..00000000000 --- a/tests/licensedcode/data/licenses/php-3.01_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.01 diff --git a/tests/licensedcode/data/licenses/php-3.0_1.txt b/tests/licensedcode/data/licenses/php-3.0_1.txt deleted file mode 100644 index 113bb547799..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0_1.txt +++ /dev/null @@ -1,52 +0,0 @@ -The PHP License -version 3.0 - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP, freely available from - ". -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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/tests/licensedcode/data/licenses/php-3.0_1.yml b/tests/licensedcode/data/licenses/php-3.0_1.yml deleted file mode 100644 index 0b7deecf80b..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.0 diff --git a/tests/licensedcode/data/licenses/php-3.0_2.txt b/tests/licensedcode/data/licenses/php-3.0_2.txt deleted file mode 100644 index 0e3e6e081de..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0_2.txt +++ /dev/null @@ -1,54 +0,0 @@ -The PHP License -version 3.0 - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP, freely available from - ". - - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/php-3.0_2.yml b/tests/licensedcode/data/licenses/php-3.0_2.yml deleted file mode 100644 index 0b7deecf80b..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.0 diff --git a/tests/licensedcode/data/licenses/php-3.0_3.txt b/tests/licensedcode/data/licenses/php-3.0_3.txt deleted file mode 100644 index 6fc5fc7ae1f..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0_3.txt +++ /dev/null @@ -1,68 +0,0 @@ --------------------------------------------------------------------- - The PHP License, version 3.0 -Copyright (c) 1999 - 2006 The PHP Group. All rights reserved. --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP, freely available from - ". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -This product includes the Zend Engine, freely available at -. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/php-3.0_3.yml b/tests/licensedcode/data/licenses/php-3.0_3.yml deleted file mode 100644 index 0b7deecf80b..00000000000 --- a/tests/licensedcode/data/licenses/php-3.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.0 diff --git a/tests/licensedcode/data/licenses/planet-source-code.txt b/tests/licensedcode/data/licenses/planet-source-code.txt deleted file mode 100644 index bdfa20fef86..00000000000 --- a/tests/licensedcode/data/licenses/planet-source-code.txt +++ /dev/null @@ -1,10 +0,0 @@ -Terms of Agreement: -By using this code, you agree to the following terms... - -You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge. - -You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws. - -You may link to this code from another website, but ONLY if it is not wrapped in a frame. - -You will abide by any additional copyright restrictions which the author may have placed in the code or code's description. diff --git a/tests/licensedcode/data/licenses/planet-source-code.yml b/tests/licensedcode/data/licenses/planet-source-code.yml deleted file mode 100644 index f7307daa199..00000000000 --- a/tests/licensedcode/data/licenses/planet-source-code.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - planet-source-code diff --git a/tests/licensedcode/data/licenses/postgresql_1.txt b/tests/licensedcode/data/licenses/postgresql_1.txt deleted file mode 100644 index d7324000ead..00000000000 --- a/tests/licensedcode/data/licenses/postgresql_1.txt +++ /dev/null @@ -1,2 +0,0 @@ -# This program is open source, licensed under the PostgreSQL Licence. -# For license terms, see the LICENSE file. diff --git a/tests/licensedcode/data/licenses/postgresql_1.yml b/tests/licensedcode/data/licenses/postgresql_1.yml deleted file mode 100644 index 71063d4890d..00000000000 --- a/tests/licensedcode/data/licenses/postgresql_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - postgresql diff --git a/tests/licensedcode/data/licenses/proprietary_8.txt b/tests/licensedcode/data/licenses/proprietary_8.txt deleted file mode 100644 index 2ce74491dfe..00000000000 --- a/tests/licensedcode/data/licenses/proprietary_8.txt +++ /dev/null @@ -1 +0,0 @@ -"All rights reserved. No part of this software, either material or conceptual may be copied or distributed, transmitted, transcribed, stored in a retrieval system or translated into any human or computer language in any form by any means, electronic, mechanical, manual or otherwise, or disclosed to third parties without the express written permission of some company" \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/proprietary_8.yml b/tests/licensedcode/data/licenses/proprietary_8.yml deleted file mode 100644 index d3074c5e51a..00000000000 --- a/tests/licensedcode/data/licenses/proprietary_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - proprietary-license diff --git a/tests/licensedcode/data/licenses/proprietary_intel-security-disclaimer.txt b/tests/licensedcode/data/licenses/proprietary_intel-security-disclaimer.txt deleted file mode 100644 index 625aec9e1a0..00000000000 --- a/tests/licensedcode/data/licenses/proprietary_intel-security-disclaimer.txt +++ /dev/null @@ -1,11 +0,0 @@ -INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL ® PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR -OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED BY THIS DOCUMENT. EXCEPT AS PROVIDED IN INTEL’S TERMS AND -CONDITIONS OF SALE FOR SUCH PRODUCTS, INTEL ASSUMES NO LIABILITY WHATSOEVER, AND INTEL DISCLAIMS ANY EXPRESS OR IMPLIED -WARRANTY, RELATING TO SALE AND/OR USE OF INTEL PRODUCTS INCLUDING LIABILITY OR WARRANTIES RELATING TO FITNESS FOR A -PARTICULAR PURPOSE, MERCHANTABILITY, OR INFRINGEMENT OF ANY PATENT, -COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT. UNLESS OTHERWISE AGREED IN WRITING BY INTEL, THE INTEL PRODUCTS ARE NOT -DESIGNED NOR INTENDED FOR ANY APPLICATION IN WHICH THE FAILURE OF THE INTEL PRODUCT COULD CREATE A SITUATION WHERE -PERSONAL INJURY OR DEATH MAY OCCUR. -Intel technologies’ features and benefits depend on system configuration and may require enabled hardware, software or service activation. -Performance varies depending on system configuration. No computer system can be absolutely secure. Check with your system manufacturer or -retailer or learn more at intel.com. diff --git a/tests/licensedcode/data/licenses/proprietary_intel-security-disclaimer.yml b/tests/licensedcode/data/licenses/proprietary_intel-security-disclaimer.yml deleted file mode 100644 index d3074c5e51a..00000000000 --- a/tests/licensedcode/data/licenses/proprietary_intel-security-disclaimer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - proprietary-license diff --git a/tests/licensedcode/data/licenses/psytec-freesoft.txt b/tests/licensedcode/data/licenses/psytec-freesoft.txt deleted file mode 100644 index 4bb3d7cf076..00000000000 --- a/tests/licensedcode/data/licenses/psytec-freesoft.txt +++ /dev/null @@ -1,5 +0,0 @@ -(translated from the Japanese) -About the license - · Distribution of this software is free. - · Recognize the use of part or all of the source code, the use of it and modify. - · It is not necessary according to the name of our need to ask permission to us when you use the source code, nor. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/psytec-freesoft.yml b/tests/licensedcode/data/licenses/psytec-freesoft.yml deleted file mode 100644 index 325c66ff108..00000000000 --- a/tests/licensedcode/data/licenses/psytec-freesoft.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - psytec-freesoft diff --git a/tests/licensedcode/data/licenses/psytec-freesoft_1.txt b/tests/licensedcode/data/licenses/psytec-freesoft_1.txt deleted file mode 100644 index 7109c8126e6..00000000000 --- a/tests/licensedcode/data/licenses/psytec-freesoft_1.txt +++ /dev/null @@ -1,6 +0,0 @@ -ライセンスについて - - - ・本ソフトウェアの配布は自由です。 - ・ソースコードの一部または全部の使用、及び改変しての使用を認めます。 - ・ソースコードを使用する際に弊社に許可を求める必要はなく、また弊社名の記載も不要です。 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/psytec-freesoft_1.yml b/tests/licensedcode/data/licenses/psytec-freesoft_1.yml deleted file mode 100644 index 325c66ff108..00000000000 --- a/tests/licensedcode/data/licenses/psytec-freesoft_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - psytec-freesoft diff --git a/tests/licensedcode/data/licenses/public-domain_10.txt b/tests/licensedcode/data/licenses/public-domain_10.txt deleted file mode 100644 index b3b7b69d318..00000000000 --- a/tests/licensedcode/data/licenses/public-domain_10.txt +++ /dev/null @@ -1,3 +0,0 @@ -PUBLIC DOMAIN - -This source code is public domain \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/public-domain_10.yml b/tests/licensedcode/data/licenses/public-domain_10.yml deleted file mode 100644 index a16e6101eb1..00000000000 --- a/tests/licensedcode/data/licenses/public-domain_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - public-domain diff --git a/tests/licensedcode/data/licenses/public-domain_5.txt b/tests/licensedcode/data/licenses/public-domain_5.txt deleted file mode 100644 index 8883210e28a..00000000000 --- a/tests/licensedcode/data/licenses/public-domain_5.txt +++ /dev/null @@ -1 +0,0 @@ -This code is free to use, copy, modify, and redistribute. You can use it in any code to do anything you want, but there is no warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/public-domain_5.yml b/tests/licensedcode/data/licenses/public-domain_5.yml deleted file mode 100644 index afec927d861..00000000000 --- a/tests/licensedcode/data/licenses/public-domain_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - other-permissive diff --git a/tests/licensedcode/data/licenses/python.txt b/tests/licensedcode/data/licenses/python.txt deleted file mode 100644 index c3195863726..00000000000 --- a/tests/licensedcode/data/licenses/python.txt +++ /dev/null @@ -1,192 +0,0 @@ -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 --------------------------------------------- - -1. This LICENSE AGREEMENT is between the Python Software Foundation -("PSF"), and the Individual or Organization ("Licensee") accessing and -otherwise using this software ("Python") in source or binary form and -its associated documentation. - -2. Subject to the terms and conditions of this License Agreement, PSF -hereby grants Licensee a nonexclusive, royalty-free, world-wide -license to reproduce, analyze, test, perform and/or display publicly, -prepare derivative works, distribute, and otherwise use Python -alone or in any derivative version, provided, however, that PSF's -License Agreement and PSF's notice of copyright, i.e., "Copyright (c) -2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights -Reserved" are retained in Python alone or in any derivative version -prepared by Licensee. - -3. In the event Licensee prepares a derivative work that is based on -or incorporates Python or any part thereof, and wants to make -the derivative work available to others as provided herein, then -Licensee hereby agrees to include in any such work a brief summary of -the changes made to Python. - -4. PSF is making Python available to Licensee on an "AS IS" -basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS -FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT -INFRINGE ANY THIRD PARTY RIGHTS. - -5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON -FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS -A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, -OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -7. Nothing in this License Agreement shall be deemed to create any -relationship of agency, partnership, or joint venture between PSF and -Licensee. This License Agreement does not grant permission to use PSF -trademarks or trade name in a trademark sense to endorse or promote -products or services of Licensee, or any third party. - -8. By copying, installing or otherwise using Python, Licensee -agrees to be bound by the terms and conditions of this License -Agreement. - -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 -------------------------------------------- - -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 - -1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an -office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the -Individual or Organization ("Licensee") accessing and otherwise using -this software in source or binary form and its associated -documentation ("the Software"). - -2. Subject to the terms and conditions of this BeOpen Python License -Agreement, BeOpen hereby grants Licensee a non-exclusive, -royalty-free, world-wide license to reproduce, analyze, test, perform -and/or display publicly, prepare derivative works, distribute, and -otherwise use the Software alone or in any derivative version, -provided, however, that the BeOpen Python License is retained in the -Software, alone or in any derivative version prepared by Licensee. - -3. BeOpen is making the Software available to Licensee on an "AS IS" -basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS -FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT -INFRINGE ANY THIRD PARTY RIGHTS. - -4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE -SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS -AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY -DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -5. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -6. This License Agreement shall be governed by and interpreted in all -respects by the law of the State of California, excluding conflict of -law provisions. Nothing in this License Agreement shall be deemed to -create any relationship of agency, partnership, or joint venture -between BeOpen and Licensee. This License Agreement does not grant -permission to use BeOpen trademarks or trade names in a trademark -sense to endorse or promote products or services of Licensee, or any -third party. As an exception, the "BeOpen Python" logos available at -http://www.pythonlabs.com/logos.html may be used according to the -permissions granted on that web page. - -7. By copying, installing or otherwise using the software, Licensee -agrees to be bound by the terms and conditions of this License -Agreement. - -CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) --------------------------------------------------- - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, -INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE -DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE -AGREEMENT. - -1. This LICENSE AGREEMENT is between the Corporation for National -Research Initiatives, having an office at 1895 Preston White Drive, -Reston, VA 20191 ("CNRI"), and the Individual or Organization -("Licensee") accessing and otherwise using Python 1.6, beta 1 -software in source or binary form and its associated documentation, -as released at the www.python.org Internet site on August 4, 2000 -("Python 1.6b1"). - -2. Subject to the terms and conditions of this License Agreement, CNRI -hereby grants Licensee a non-exclusive, royalty-free, world-wide -license to reproduce, analyze, test, perform and/or display -publicly, prepare derivative works, distribute, and otherwise use -Python 1.6b1 alone or in any derivative version, provided, however, -that CNRIs License Agreement is retained in Python 1.6b1, alone or -in any derivative version prepared by Licensee. - -Alternately, in lieu of CNRIs License Agreement, Licensee may -substitute the following text (omitting the quotes): "Python 1.6, -beta 1, is made available subject to the terms and conditions in -CNRIs License Agreement. This Agreement may be located on the -Internet using the following unique, persistent identifier (known -as a handle): 1895.22/1011. This Agreement may also be obtained -from a proxy server on the Internet using the -URL:http://hdl.handle.net/1895.22/1011". - -3. In the event Licensee prepares a derivative work that is based on -or incorporates Python 1.6b1 or any part thereof, and wants to make -the derivative work available to the public as provided herein, -then Licensee hereby agrees to indicate in any such work the nature -of the modifications made to Python 1.6b1. - -4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" -basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR -FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 -WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE -SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR -LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, -OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY -THEREOF. - -6. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -7. This License Agreement shall be governed by and interpreted in all -respects by the law of the State of Virginia, excluding conflict of -law provisions. Nothing in this License Agreement shall be deemed -to create any relationship of agency, partnership, or joint venture -between CNRI and Licensee. This License Agreement does not grant -permission to use CNRI trademarks or trade name in a trademark -sense to endorse or promote products or services of Licensee, or -any third party. - -8. By clicking on the "ACCEPT" button where indicated, or by copying, -installing or otherwise using Python 1.6b1, Licensee agrees to be -bound by the terms and conditions of this License Agreement. - -ACCEPT - -CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 --------------------------------------------------- - -Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, -The Netherlands. All rights reserved. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Stichting Mathematisch -Centrum or CWI not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. - -STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/python.yml b/tests/licensedcode/data/licenses/python.yml deleted file mode 100644 index d73ebb4f6dc..00000000000 --- a/tests/licensedcode/data/licenses/python.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - python diff --git a/tests/licensedcode/data/licenses/qt-excep.txt b/tests/licensedcode/data/licenses/qt-excep.txt deleted file mode 100644 index 7e2e30ff9b8..00000000000 --- a/tests/licensedcode/data/licenses/qt-excep.txt +++ /dev/null @@ -1,22 +0,0 @@ -Digia Qt LGPL Exception version 1.1 - -As an additional permission to the GNU Lesser General Public License version -2.1, the object code form of a "work that uses the Library" may incorporate -material from a header file that is part of the Library. You may distribute -such object code under terms of your choice, provided that: - (i) the header files of the Library have not been modified; and - (ii) the incorporated material is limited to numerical parameters, data - structure layouts, accessors, macros, inline functions and - templates; and - (iii) you comply with the terms of Section 6 of the GNU Lesser General - Public License version 2.1. - -Moreover, you may apply this exception to a modified version of the Library, -provided that such modification does not involve copying material from the -Library into the modified Library's header files unless such material is -limited to (i) numerical parameters; (ii) data structure layouts; -(iii) accessors; and (iv) small macros, templates and inline functions of -five lines or less in length. - -Furthermore, you are not required to apply this additional permission to a -modified version of the Library. diff --git a/tests/licensedcode/data/licenses/qt-excep.yml b/tests/licensedcode/data/licenses/qt-excep.yml deleted file mode 100644 index a608932727f..00000000000 --- a/tests/licensedcode/data/licenses/qt-excep.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qt-lgpl-exception-1.1 diff --git a/tests/licensedcode/data/licenses/qualcomm-turing.txt b/tests/licensedcode/data/licenses/qualcomm-turing.txt deleted file mode 100644 index ef7fef4623f..00000000000 --- a/tests/licensedcode/data/licenses/qualcomm-turing.txt +++ /dev/null @@ -1,51 +0,0 @@ -This software is free for commercial and non-commercial use subject to -the following conditions: - -1. Copyright remains vested in QUALCOMM Incorporated, and Copyright -notices in the code are not to be removed. If this package is used in -a product, QUALCOMM should be given attribution as the author of the -Turing encryption algorithm. This can be in the form of a textual -message at program startup or in documentation (online or textual) -provided with the package. - -2. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -a. Redistributions of source code must retain the copyright notice, - this list of conditions and the following disclaimer. - -b. 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. - -c. All advertising materials mentioning features or use of this - software must display the following acknowledgement: This product - includes software developed by QUALCOMM Incorporated. - -3. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND AGAINST -INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR 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. - -4. The license and distribution terms for any publically available version -or derivative of this code cannot be changed, that is, this code cannot -simply be copied and put under another distribution license including -the GNU Public License. - -5. The Turing family of encryption algorithms are covered by patents in -the United States of America and other countries. A free and -irrevocable license is hereby granted for the use of such patents to -the extent required to utilize the Turing family of encryption -algorithms for any purpose, subject to the condition that any -commercial product utilising any of the Turing family of encryption -algorithms should show the words "Encryption by QUALCOMM" either on the -product or in the associated documentation. diff --git a/tests/licensedcode/data/licenses/qualcomm-turing.yml b/tests/licensedcode/data/licenses/qualcomm-turing.yml deleted file mode 100644 index 531c0290675..00000000000 --- a/tests/licensedcode/data/licenses/qualcomm-turing.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qualcomm-turing diff --git a/tests/licensedcode/data/licenses/quin-street.txt b/tests/licensedcode/data/licenses/quin-street.txt deleted file mode 100644 index 994747c6b60..00000000000 --- a/tests/licensedcode/data/licenses/quin-street.txt +++ /dev/null @@ -1,31 +0,0 @@ -Content Licensing - -Linking to Our Content -You may post direct text hyperlinks to this website. This is not permission to host our articles or other content on your website or elsewhere. You may not use any of our logos or trademarks as hyperlinks. We reserve the right to request the removal of any such hyperlinks. - -Reprints and ePrints -Our copyrighted content may be customized to your specifications for limited distribution. For example, traditional hardcopy article reprints, electronic reprints (Eprints), corporate newsletters, wide format posters, or corporate office plaques. Please contact our reprint partners, Wright's Media, for further information. Request reprint information >> - -Single Use Non-Commercial -You may use one of our articles for a non-commercial project (for example, a school project) provided that QuinStreet's copyright clause accompanies the article: - -Reproduced with permission. -Copyright 1999-2014 QuinStreet, Inc. All rights reserved. - -On Your Website -Please contact us if you would like to syndicate our content, incorporate a feed or host on your website. - -Other Uses -Please contact us if you would like to license or reproduce content from this website in any other way; for example, in a book. - -Contact Details - -QuinStreet, Inc. -Attn: Copyright Agent -950 Tower Lane, 6th Floor -Foster City, CA 94404 - -Tel: (650) 578-7700 -Fax: (650) 578-7604 - -Email: copyrightagent@quinstreet.com diff --git a/tests/licensedcode/data/licenses/quin-street.yml b/tests/licensedcode/data/licenses/quin-street.yml deleted file mode 100644 index f4fd3a29636..00000000000 --- a/tests/licensedcode/data/licenses/quin-street.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - quin-street -notes: | - This license text is used both by CodeGuru (Andre Sebastien) and the FreeVBcode project, both of which are associated with QuinStreet. diff --git a/tests/licensedcode/data/licenses/radvd.txt b/tests/licensedcode/data/licenses/radvd.txt deleted file mode 100644 index 6b09bd88669..00000000000 --- a/tests/licensedcode/data/licenses/radvd.txt +++ /dev/null @@ -1,37 +0,0 @@ - The author(s) grant permission for redistribution and use in source and -binary forms, with or without modification, of the software and documentation -provided that the following conditions are met: - -0. If you receive a version of the software that is specifically labelled - as not being for redistribution (check the version message and/or README), - you are not permitted to redistribute that version of the software in any - way or form. -1. All terms of all other applicable copyrights and licenses must be - followed. -2. Redistributions of source code must retain the authors' copyright - notice(s), this list of conditions, and the following disclaimer. -3. Redistributions in binary form must reproduce the authors' copyright - notice(s), this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. -4. All advertising materials mentioning features or use of this software - must display the following acknowledgement with the name(s) of the - authors as specified in the copyright notice(s) substituted where - indicated: - - This product includes software developed by the authors which are -mentioned at the start of the source files and other contributors. - -5. Neither the name(s) of the author(s) 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 ITS AUTHORS 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 AUTHORS 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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/radvd.yml b/tests/licensedcode/data/licenses/radvd.yml deleted file mode 100644 index 36b72fae04f..00000000000 --- a/tests/licensedcode/data/licenses/radvd.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - radvd diff --git a/tests/licensedcode/data/licenses/rcsl-3.0.txt b/tests/licensedcode/data/licenses/rcsl-3.0.txt deleted file mode 100644 index df99561ec4b..00000000000 --- a/tests/licensedcode/data/licenses/rcsl-3.0.txt +++ /dev/null @@ -1,610 +0,0 @@ -REALNETWORKS COMMUNITY SOURCE LICENSE -RESEARCH AND DEVELOPMENT USE - -(RCSL R&D) - -Version 3.0 (Rev. Date: May 29, 2007) - - -RECITALS - - - -RealNetworks, Inc. (“RN”) has developed Specifications, Source Code implementations and Executables of the Helix DNA Code, and an associated TCK; and - - - -RN desires to license the Helix DNA Code to a large community to facilitate research, innovation and product development while maintaining compatibility of such products with the Helix DNA Code as delivered by RN; - - - -Therefore, RN makes available the Helix DNA Code, the Specifications, and the TCK available for Research and Development Use only under the following terms: - - -LICENSE - - - -1. Introduction. - - - -The RealNetworks Community Source License – Research and Development Use (“RCSL R&D” or “License”) is a license to use the Source Code of certain portions of the Helix DNA Code, Specifications, and the TCK for research and development use only. You (“Licensee,” as more specifically defined below) accept the terms of this License by downloading or using the Helix DNA Code, the Specifications, or the TCK, unless Licensee and RN have signed a license agreement that expressly supersedes this RCSL R&D. - - - -This License does not include a license to access or modify the Source Code of the Real Format Client Code. If Licensee desires the right to receive access to the Source Code of the Real Format Client Code for the purposes of porting and optimization, Licensee and RN may elect to execute a Real Format Source Code Porting and Optimization Agreement. - - - -This License does not include a license to make Commercial Use of the Helix DNA Code or Real Format Client Code. If Licensee desires a license for Commercial Use of the Helix DNA Code or Real Format Client Code, Licensee and RN may desire to execute the RealNetworks Community Source License - Commercial Use (“RCSL Commercial”) for the version of the Helix DNA Code or Real Format Client Code of which Licensee would like to make Commercial Use. Once executed by Licensee and RN, the RCSL Commercial would supersede the terms of this License. - - - -Capitalized terms used in this License are defined in the Glossary attached to the end of this License. - - - - 2. License Grants. - - - - 2.1 RN Grant to use Covered Code, Specifications, and TCK. - - - -Subject to Licensee’s compliance with the terms of this License, RN grants to Licensee a worldwide, royalty-free, non-exclusive license, to the extent of RN's Intellectual Property Rights covering the Covered Code, Specifications, and the TCK to do the following: - - - -(a) Research Use License. - - - -(i) use, reproduce and modify the Covered Code and Specifications to create Modifications and Reformatted Specifications for Research Use by Licensee; - - - -(ii) publish and display Covered Code and Specifications with, or as part of Modifications, as permitted under Section 3.1(b) below; - - - -(iii) reproduce and distribute copies of Covered Code to Licensees and students for Research Use by Licensee; - - - -(iv) compile, reproduce and distribute Covered Code in Executable form, and Reformatted Specifications to anyone for Research Use by Licensee; and - - - -(v) use the TCK to develop and test Covered Code. - - - -(b) Reservation of Rights. - - - -Other than the licenses expressly granted in this License, RN retains all right, title, and interest in Covered Code, Specifications and the TCK. - - - -(c) TCK Use Restrictions. - - - - Licensee may not create derivative works of the TCK or use the TCK to test any implementation of the Specifications except for the purpose of creating Compliant Covered Code. Licensee may not publish Licensee’s test results or make claims of comparative compatibility with respect to other implementations of the Specification. - - - -2.2 Licensee’s Grants. - - - -(a) To Other Helix Licensees. Licensee hereby grants to each other Helix Licensee a license to Licensee’s Error Corrections and Shared Modifications, of the same scope and extent as RN's licenses under Section 2.1 (a) above relative to Research Use. - - - -(b) To RN. Licensee hereby grant to RN a worldwide, royalty-free, non-exclusive, perpetual and irrevocable license, to the extent of Licensee’s Intellectual Property Rights covering Licensee’s Error Corrections, Shared Modifications and Reformatted Specifications, to use, reproduce, modify, display and distribute Licensee’s Error Corrections, Shared Modifications and Reformatted Specifications, in any form, including the right to sublicense such rights through multiple tiers of distribution. - - - -(c) Other than the licenses expressly granted in Sections 2.2(a) and (b) above, and the restrictions set forth in Section 3.1 below, Licensee retains all right, title, and interest in Licensee’s Error Corrections, Shared Modifications and Reformatted Specifications. - - - -2.3 Modifications by Helix Licensees. - - - -Licensee may use, reproduce, modify, display and distribute Error Corrections, Shared Modifications and Reformatted Specifications, obtained by Licensee under this License from any other Helix Licensee, to the same scope and extent as with Original Code, Upgraded Code and Specifications. - - - -2.4 Subcontracting. - - - - Licensee may deliver the Source Code of Covered Code to other Helix Licensees for the sole purpose of furnishing development services to Licensee in connection with Licensee’s rights granted in this License, provided that Licensee does not enter a separate agreement with such Licensee that contains provisions inconsistent with the ownership and licensing requirements set forth in this License. - - - -3. Requirements and Responsibilities. - - - -3.1 Research Use License. - - - -As a condition of exercising the rights granted under Section 2.1(a) above, Licensee must comply with the following: - - - -(a) Licensee’s Contributions. All Error Corrections and Shared Modifications which Licensee creates are automatically subject to the licenses granted under Section 2.2 above. Licensee is encouraged to license all of Licensee’s other Modifications under Section 2.2 as Shared Modifications, but is not required to do so. Licensee must notify RN of any errors in the Specifications. - - - -(b) Source Code Availability. Licensee must provide all of Licensee’s Error Corrections to RN as soon as reasonably practicable and, in any event, no later than when Licensee shares such Error Corrections with any other Helix Licensee. RN may, at its discretion, post Source Code for Licensee’s Error Corrections and Shared Modifications at the Helix Community Website. - - - -(c) Notices. All Error Corrections and Shared Modifications that Licensee creates or contributes to must include a file documenting the additions and changes Licensee made and the date of such additions and changes. Licensee must also include the notice set forth in Attachment A-1 in the file header of any Error Correction or Shared Modification. If it is not possible to put the notice in a particular Source Code file due to its structure, then Licensee must include the notice in a location (such as a relevant directory file), where a recipient would be most likely to look for such a notice. - - - -(d) Redistribution. - - - -(i) Source. Covered Code may be distributed in Source Code form only to another Helix Licensee (except for students as provided below). Licensee may not offer or impose any terms on any Covered Code that alter the rights, requirements, or responsibilities of such Helix Licensee. Licensee may distribute Covered Code to students for use in connection with their course work and research projects undertaken at accredited educational institutions. Such students need not be Helix Licensees, but must be given a copy of the notice set forth in Attachment A-3 and such notice must also be included in a file header or prominent location in the Source Code made available to such students. - - - -(ii) Executable. Licensee may distribute Executable version(s) of Covered Code to Helix Licensees and other third parties only for the purpose of evaluation and comment in connection with Research Use by Licensee and under a license of Licensee’s choice, but that limits use of such Executable version(s) of Covered Code only to that purpose. - - - -(iii) Modified Class, Interface and Package Naming. In connection with Research Use by Licensee only, Licensee may use RN's class, Interface and package names only to accurately reference or invoke the Source Code files that Licensee modifies. RN grants to Licensee a limited license to the extent necessary for such purposes. - - - -(e) Extensions. - - - -(i) Licensee may not include any Source Code of Community Code in any Extensions. Licensee may include the compiled Header Files of Community Code in an Extension provided that Licensee’s use of the Covered Code, including Header Files, complies with the TCK and all other terms of this License. - - - -(ii) Open. Licensee must refrain from enforcing any Intellectual Property Rights Licensee may have covering any Interface(s) of Licensee’s Extension, which would prevent the implementation of such Interface(s) by RN or any Helix Licensee. This obligation does not prevent Licensee from enforcing any Intellectual Property Right Licensee has that would otherwise be infringed by an implementation of Licensee’s Extension. - - - -(iii) Interface Modifications and Naming. Licensee may not modify or add to the GUID space "xxxxxxxx-0901-11d1-8B06-00A024406D59" or any other GUID space designated by RN. Licensee may not modify any Interface prefix provided with the Covered Code or any other prefix designated by RN. - - - -(f) Any Specifications provided to Licensee by RN are confidential and proprietary information of RN. Licensee must maintain the confidentiality of the Specifications and may not disclose them to any third party without RN’s prior written consent. Licensee may only use the Specifications under the terms of this License and only for the purpose of implementing the terms of this License with respect to Community Code. Licensee may not use, copy or distribute any such Specifications except as provided in writing by RN. - - - -No Commercial Use. - - - -Licensee may not make Commercial Use of any Covered Code unless Licensee and RN have executed a copy of the RCSL - Commercial available at the Helix Community Website, or another license agreement expressly granting commercial use rights. - - - -4. Versions of the License. - - - -4.1 License Versions. - - - -RN may publish revised versions of this License from time to time. Each version will be given a distinguishing version number. No one other than RN has the right to promulgate versions of this License. - - - -4.2 Effect of New License Versions. - - - -(a) Once a particular version of Covered Code has been provided under a version of this License, Licensee may always continue to use such Covered Code under the terms of that version of the License. Licensee may also choose to use such Covered Code under the terms of any subsequent version of the License, but not under a prior version of the License. (For example, if a version of Covered Code has been provided under RCSL R&D 2.1, Licensee may not use such Covered Code under RCSL R&D 2.0.) - - - -(b) Version 3.0 of this License (and all subsequent versions) supercedes versions 1.0, 1.1, 1.2, and 2.0 of RCSL R&D plus Attachments A-C. - - - -4.3 Multiple-Licensed Code. - - - -RN may designate portions of the Covered Code as “Multiple-Licensed.” “Multiple-Licensed” means that the RN permits Licensee to utilize those designated portions of the Covered Code under Licensee’s choice of this License or the alternative license(s), if any, specified by the RN at the Helix Community Website or in Header Files for the applicable Covered Code. - - - -5. Disclaimer of Warranty. - - - -COVERED CODE IS PROVIDED UNDER THIS LICENSE "AS IS," WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF COVERED CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. - - - -6. Termination. - - - -6.1 By Licensee. - - - -Licensee may terminate this License at anytime by providing written notice to RN. - - - -6.2 By RN. - - - -This License and the rights granted hereunder will terminate: - - - -(a) automatically if Licensee fails to comply with the terms of this License and fails to cure such breach within 30 days of receipt of written notice of the breach; - - - -(b) immediately in the event of circumstances specified in Sections 7.1 and 8.4; or - - - -(c) at RN's discretion upon any action initiated by Licensee (including by cross-claim or counter claim) alleging that use or distribution by RN or any Licensee, of any Covered Code, the TCK or Specifications infringe a patent owned or controlled by Licensee. - - - -6.3 Effect of Termination. - - - -Upon termination, Licensee must discontinue use of and destroy all copies of Covered Code in Licensee’s possession. All sublicenses to the Covered Code that Licensee has properly granted shall survive any termination of this License. Provisions that, by their nature, should remain in effect beyond the termination of this License shall survive including, without limitation, Sections 2.2, 3, 5, 7, 8, and the Glossary. - - - -6.4 No Compensation. - - - -Each party waives and releases the other from any claim to compensation or indemnity for permitted or lawful termination of the business relationship established by this License. - - - -7. Liability. - - - -7.1 Infringement. - - - -Should any of the Covered Code, TCK or Specifications (“Materials”) become the subject of a claim of infringement, RN may, at its sole option, (i) attempt to procure the rights necessary for Licensee to continue using the Materials, (ii) modify the Materials so that they are no longer infringing, or (iii) terminate Licensee’s right to use the Materials, immediately upon written notice. - - - - 7.2 LIMITATION OF LIABILITY. - - - - TO THE FULL EXTENT ALLOWED BY APPLICABLE LAW, RN'S LIABILITY TO LICENSEE FOR CLAIMS RELATING TO THIS LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY LICENSEE TO RN FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR ITEMS GIVING RISE TO SUCH CLAIM, IF ANY, DURING THE TWELVE MONTHS PRECEDING THE CLAIMED BREACH. IN NO EVENT WILL EITHER PARTY BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY, WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT LICENSEE OR RN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. - - - -8. Miscellaneous. - - - -8.1 No Trademark License. - - - -Licensee is granted no right, title or license to, or any interest in, any trademarks of RN hereunder. - - - -8.2 Integration. - - - -This License represents the complete agreement concerning the subject matter hereof. - - - -8.3 Assignment. - - - -RN may assign this License, and its rights and obligations hereunder, in its sole discretion. Licensee may assign Licensee’s rights and obligations under this the License to a third party upon prior written notice to RN. - - - -8.4 Severability. - - - -If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Notwithstanding the foregoing, if Licensee is prohibited by law from fully and specifically complying with Sections 2.2 or 3, this License will immediately terminate and Licensee must immediately discontinue any use of the Materials. - - - -8.5 Governing Law. - - - -This License shall be governed by the laws of the United States and the State of Washington, as applied to contracts entered into and to be performed in Washington between Washington residents. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. The state and federal courts located in Seattle, Washington have exclusive jurisdiction over any claim relating to the License, including contract and tort claims. - - - -8.6 Construction. - - - -Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not apply to this License. - - - -8.7 U.S. Government End Users. - - - -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - - - - Press Announcements. - - - -Licensee may make press announcements or other public statements regarding this License without the prior written consent of the RN, if Licensee’s statement is limited to announcing the licensing of the Covered Code. All other public announcements regarding this License require the prior written consent of the RN. Consent requests are welcome at press@helixcommunity.org. - - - -8.9 International Use. - - - -(a) Export/Import laws. Covered Code is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee must comply strictly with all such laws and regulations and must obtain any necessary licenses to export, re-export, or import as may be permitted under this Agreement. - - - -(b) Intellectual Property Protection. Due to limited intellectual property protection and enforcement in certain countries, this License does not permit the redistribution of the Covered Code, TCK and Specifications to any country on the list of restricted countries at the Helix Community Website. - - - -8.10 Language. - - - -This License is in the English language only, which language shall be controlling in all respects, and all versions of this License in any other language shall be for accommodation only and shall not be binding on the parties to this License. All communications and notices made or given pursuant to this License, and all documentation and support to be provided, unless otherwise noted, shall be in the English language. - - -GLOSSARY - - - -“Applicable Patent Claims” means: (a) in the case where RN is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to RN and (ii) are necessarily infringed by using or making the Original Code or Upgraded Code, including Modifications provided by RN, alone and not in combination with other software or hardware; and (b) in the case where Licensee is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to Licensee and (ii) are infringed (directly or indirectly) by using or making Licensee Modifications, taken alone or in combination with Covered Code. - - - -“Application Programming Interfaces (APIs)” means the interfaces, associated header files, service provider interfaces, and protocols that enable a device, application, operating system, or other program to obtain services from or make requests of (or provide services in response to requests from) other programs, and to use, benefit from, or rely on the resources, facilities, and capabilities of the relevant programs using the APIs. APIs includes the technical documentation describing the APIs, the Source Code constituting the API, and any Header Files used with the APIs. - - - -“Commercial Use” means any use (internal or external), copying, sublicensing or distribution (internal or external), directly or indirectly of Covered Code by Licensee other than Licensee’s Research Use of Covered Code within Licensee’s business or organization or in conjunction with other Helix Licensees with equivalent Research Use rights. Commercial Use includes any use of the Covered Code for direct or indirect commercial or strategic gain, advantage or other business purpose. Any Commercial Use requires execution of the RCSL - Commercial Use by Licensee and RN. - - - -“Community Code” means the Original Code, Upgraded Code, Error Corrections, Shared Modifications, or any combination thereof. - - - -“Compliant Covered Code” means Covered Code that complies with the requirements of the TCK. - - - -“Covered Code” means the Original Code, Upgraded Code, Modifications, or any combination thereof. - - - -“Error Correction” means any change made to Community Code which conforms to the Specification and corrects the adverse effect of a failure of Community Code to perform any function set forth in or required by the Specifications. - - - -“Executable” means Covered Code that has been converted from Source Code to the preferred form for execution by a computer or digital processor (e.g. binary form). - - - -“Extension(s)” means any additional Interfaces developed by or for Licensee which: (i) are designed for use with the Helix DNA Code; (ii) constitute an API for a library of computing functions or services; and (iii) are disclosed or otherwise made available to third party software developers for the purpose of developing software which invokes such additional Interfaces. The foregoing shall not apply to software developed by Licensee’s subcontractors to be exclusively used by Licensee. - - - -“Helix Community Website” means the website located at www.helixcommunity.org designated by RN for access to the Helix DNA Code, TCK and Specifications, and for posting Modifications. - - - -“Header File(s)” means that portion of the Source Code that provides the names and types of member functions, data members, class definitions, and interface definitions necessary to implement the APIs for the Covered Code. Header Files include, files specifically designated by RN as Header Files. Header Files do not include the code necessary to implement the functionality underlying the Interface. - - - -“Helix DNA Client” means the software identified on the Helix Community Website as the “Helix DNA Client” and which implements audio and video playback and rendering as defined in the Specifications. - - - -“Helix DNA Code” means the Helix DNA Server, the Helix DNA Client, the Helix DNA Producer, and any other Helix technologies that may be designated by RN from time to time. - - - -“Helix DNA Producer” means the portion of the Covered Code that implements the Helix Producer engine as defined in the Specification. - - - -“Helix DNA Server” means the portion of the Covered Code that implement the Helix Server streaming engine as defined in the Specification. - - - -“Helix Licensee” means any person or entity who has entered into a license agreement with RN providing for both source code development rights to and Commercial Use of the Helix DNA Client. - - - -“Intellectual Property Rights” means worldwide statutory and common law rights associated solely with (i) Applicable Patent Claims; (ii) works of authorship including copyrights, copyright applications, copyright registrations and “moral rights”; (iii) the protection of trade and industrial secrets and confidential information; and (iv) divisions, continuations, renewals, and re-issuances of the foregoing now existing or acquired in the future. - - - -“Licensee” means the individual, or a legal entity acting by and through an individual or individuals, exercising rights either under this License or under a future version of this License issued pursuant to Section 4.1. For legal entities, “Licensee” includes any entity that by majority voting interest controls, is controlled by, or is under common control with Licensee. - - - -“Interface” means interfaces, functions, properties, class definitions, APIs, Header Files, GUIDs, V-Tables, or protocols allowing one piece of software, firmware or hardware to communicate or interoperate with another piece of software, firmware or hardware. - - - - - -“Modification(s)” means (i) any addition to, deletion from or change to the substance or structure of the Covered Code, including Interfaces; (ii) any new file or other representation of computer program statements that contains any portion of Covered Code; or (iii) any new Source Code implementing any portion of the Specifications. - - - -“Original Code” means the Source Code for the Helix DNA Code as described on the Helix Community Website. - - - -“RN” means RealNetworks, Inc., its affiliates and its successors and assigns. - - - -“Personal Use” means use of Covered Code by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Covered Code in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. - - - -“Real Format Client Code” means the software identified on the Helix Community Website as “Real Format Client Code” and which enables the playing back of content in RealMedia File Formats. - - - -“RealMedia File Format" means the file format designed and developed by RN for storing multimedia data and used to store RealAudio and RealVideo encoded streams. Valid RealMedia File Format extensions include: .rm, .rmj, .rmc, .rmvb, .rms, .ra, .rv, .rax .rvx. - - - -“Reformatted Specifications” means any revision to the Specifications which translates or reformats the Specifications (as for example in connection with Licensee’s documentation) but which does not alter, subset or superset the functional or operational aspects of the Specifications. - - - -“Research Use” means use and distribution of Covered Code only for Licensee’s Personal Use, research or development use and expressly excludes Commercial Use. Research Use also includes use of Covered Code to teach individuals how to use Covered Code. - - - -“Shared Modifications” means Modifications that Licensee distributes or uses for a Commercial Use, in addition to any Modifications provided by Licensee, at Licensee’s option, pursuant to Section 2.2, or received by Licensee from another Helix Licensee pursuant to Section 2.3. - - - -“Source Code” means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable. - - - -“Specifications” means the specifications for the Helix DNA Code and other documentation, as published by RN from time to time on the Helix Community Website. - - - -“Technology Compatibility Kit” or “TCK” means the interoperability testing specification, documentation and related testing tools made available to Licensee by RN from time to time for the purpose of testing Licensee’s implementations of the Covered Code. RN may, in its sole discretion and from time to time, revise a TCK to correct errors or omissions and in connection with Upgrades. - - - - “Upgrade(s)” means new versions of Helix DNA Code designated exclusively by RN as an "Upgrade" and released by RN from time to time under the terms of this License. - - - -“Upgraded Code” means the Source Code or Executables for Upgrades, possibly including Modifications made by other Helix Licensees. - - - - - - - -ATTACHMENT A - - - -REQUIRED NOTICES - - - - -ATTACHMENT A-1 - - - -REQUIRED IN ALL CASES - - - -Notice to be included in header file of all Error Corrections and Shared Modifications: - - - -Portions Copyright 1994-2007 © RealNetworks, Inc. All rights reserved. - -The contents of this file, and the files included with this file, are subject to the current version of RealNetworks Community Source License Version 3.0 (the "License"). You may not use this file except in compliance with the License executed by both you and RealNetworks. You may obtain a copy of the License at https://www.helixcommunity.org/content/rcsl. You may also obtain a copy of the License by contacting RealNetworks directly. Please see the License for the rights, obligations and limitations governing use of the contents of the file. - -This file is part of the Helix DNA Code. RealNetworks, Inc., is the developer of the Original Code and owns the copyrights in the portions it created. - -This file, and the files included with this file, are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. - - - -Contributor(s): - -_______________________________________________ - -Technology Compatibility Kit Test Suite(s) Location: - -________________________________ - - - -ATTACHMENT A-2 - - - -SAMPLE LICENSEE CERTIFICATION - - - -"By clicking the `Agree' button below, you certify that you are a Licensee in good standing under the RealNetworks Community Source License – Research and Development or the RealNetworks Community Source License – Commercial, (each, a "License") and that your access, use and distribution of code and information you may obtain at this site is subject to the License. If you are not a Licensee under the RealNetworks Community Source License you may not download, copy or use the Helix DNA Code. - - - - - - - -ATTACHMENT A-3 - - - -REQUIRED STUDENT NOTIFICATION - - - -"This software and related documentation has been obtained by your educational institution subject to the RealNetworks Community Source License. You have been provided access to the software and related documentation for use only in connection with your course work and research activities as a matriculated student of your educational institution. Any other use is expressly prohibited. - - - -THIS SOFTWARE AND RELATED DOCUMENTATION CONTAINS PROPRIETARY MATERIAL OF REALNETWORKS, INC, WHICH ARE PROTECTED BY VARIOUS INTELLECTUAL PROPERTY RIGHTS. - - - -You may not use this file except in compliance with the License. You may obtain a copy of the License on the web at https://www.helixcommunity.org/content/rcsl. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/rcsl-3.0.yml b/tests/licensedcode/data/licenses/rcsl-3.0.yml deleted file mode 100644 index d2fb69f036b..00000000000 --- a/tests/licensedcode/data/licenses/rcsl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - rcsl-3.0 diff --git a/tests/licensedcode/data/licenses/rcsl-3.0_1.txt b/tests/licensedcode/data/licenses/rcsl-3.0_1.txt deleted file mode 100644 index 81f4418f8af..00000000000 --- a/tests/licensedcode/data/licenses/rcsl-3.0_1.txt +++ /dev/null @@ -1,610 +0,0 @@ -REALNETWORKS COMMUNITY SOURCE LICENSE -RESEARCH AND DEVELOPMENT USE - -(RCSL R&D) - -Version 3.0 (Rev. Date: May 29, 2007) - - -RECITALS - - - -RealNetworks, Inc. (RN) has developed Specifications, Source Code implementations and Executables of the Helix DNA Code, and an associated TCK; and - - - -RN desires to license the Helix DNA Code to a large community to facilitate research, innovation and product development while maintaining compatibility of such products with the Helix DNA Code as delivered by RN; - - - -Therefore, RN makes available the Helix DNA Code, the Specifications, and the TCK available for Research and Development Use only under the following terms: - - -LICENSE - - - -1. Introduction. - - - -The RealNetworks Community Source License Research and Development Use (RCSL R&D or License) is a license to use the Source Code of certain portions of the Helix DNA Code, Specifications, and the TCK for research and development use only. You (Licensee, as more specifically defined below) accept the terms of this License by downloading or using the Helix DNA Code, the Specifications, or the TCK, unless Licensee and RN have signed a license agreement that expressly supersedes this RCSL R&D. - - - -This License does not include a license to access or modify the Source Code of the Real Format Client Code. If Licensee desires the right to receive access to the Source Code of the Real Format Client Code for the purposes of porting and optimization, Licensee and RN may elect to execute a Real Format Source Code Porting and Optimization Agreement. - - - -This License does not include a license to make Commercial Use of the Helix DNA Code or Real Format Client Code. If Licensee desires a license for Commercial Use of the Helix DNA Code or Real Format Client Code, Licensee and RN may desire to execute the RealNetworks Community Source License - Commercial Use (RCSL Commercial) for the version of the Helix DNA Code or Real Format Client Code of which Licensee would like to make Commercial Use. Once executed by Licensee and RN, the RCSL Commercial would supersede the terms of this License. - - - -Capitalized terms used in this License are defined in the Glossary attached to the end of this License. - - - - 2. License Grants. - - - - 2.1 RN Grant to use Covered Code, Specifications, and TCK. - - - -Subject to Licensees compliance with the terms of this License, RN grants to Licensee a worldwide, royalty-free, non-exclusive license, to the extent of RN's Intellectual Property Rights covering the Covered Code, Specifications, and the TCK to do the following: - - - -(a) Research Use License. - - - -(i) use, reproduce and modify the Covered Code and Specifications to create Modifications and Reformatted Specifications for Research Use by Licensee; - - - -(ii) publish and display Covered Code and Specifications with, or as part of Modifications, as permitted under Section 3.1(b) below; - - - -(iii) reproduce and distribute copies of Covered Code to Licensees and students for Research Use by Licensee; - - - -(iv) compile, reproduce and distribute Covered Code in Executable form, and Reformatted Specifications to anyone for Research Use by Licensee; and - - - -(v) use the TCK to develop and test Covered Code. - - - -(b) Reservation of Rights. - - - -Other than the licenses expressly granted in this License, RN retains all right, title, and interest in Covered Code, Specifications and the TCK. - - - -(c) TCK Use Restrictions. - - - - Licensee may not create derivative works of the TCK or use the TCK to test any implementation of the Specifications except for the purpose of creating Compliant Covered Code. Licensee may not publish Licensees test results or make claims of comparative compatibility with respect to other implementations of the Specification. - - - -2.2 Licensees Grants. - - - -(a) To Other Helix Licensees. Licensee hereby grants to each other Helix Licensee a license to Licensees Error Corrections and Shared Modifications, of the same scope and extent as RN's licenses under Section 2.1 (a) above relative to Research Use. - - - -(b) To RN. Licensee hereby grant to RN a worldwide, royalty-free, non-exclusive, perpetual and irrevocable license, to the extent of Licensees Intellectual Property Rights covering Licensees Error Corrections, Shared Modifications and Reformatted Specifications, to use, reproduce, modify, display and distribute Licensees Error Corrections, Shared Modifications and Reformatted Specifications, in any form, including the right to sublicense such rights through multiple tiers of distribution. - - - -(c) Other than the licenses expressly granted in Sections 2.2(a) and (b) above, and the restrictions set forth in Section 3.1 below, Licensee retains all right, title, and interest in Licensees Error Corrections, Shared Modifications and Reformatted Specifications. - - - -2.3 Modifications by Helix Licensees. - - - -Licensee may use, reproduce, modify, display and distribute Error Corrections, Shared Modifications and Reformatted Specifications, obtained by Licensee under this License from any other Helix Licensee, to the same scope and extent as with Original Code, Upgraded Code and Specifications. - - - -2.4 Subcontracting. - - - - Licensee may deliver the Source Code of Covered Code to other Helix Licensees for the sole purpose of furnishing development services to Licensee in connection with Licensees rights granted in this License, provided that Licensee does not enter a separate agreement with such Licensee that contains provisions inconsistent with the ownership and licensing requirements set forth in this License. - - - -3. Requirements and Responsibilities. - - - -3.1 Research Use License. - - - -As a condition of exercising the rights granted under Section 2.1(a) above, Licensee must comply with the following: - - - -(a) Licensees Contributions. All Error Corrections and Shared Modifications which Licensee creates are automatically subject to the licenses granted under Section 2.2 above. Licensee is encouraged to license all of Licensees other Modifications under Section 2.2 as Shared Modifications, but is not required to do so. Licensee must notify RN of any errors in the Specifications. - - - -(b) Source Code Availability. Licensee must provide all of Licensees Error Corrections to RN as soon as reasonably practicable and, in any event, no later than when Licensee shares such Error Corrections with any other Helix Licensee. RN may, at its discretion, post Source Code for Licensees Error Corrections and Shared Modifications at the Helix Community Website. - - - -(c) Notices. All Error Corrections and Shared Modifications that Licensee creates or contributes to must include a file documenting the additions and changes Licensee made and the date of such additions and changes. Licensee must also include the notice set forth in Attachment A-1 in the file header of any Error Correction or Shared Modification. If it is not possible to put the notice in a particular Source Code file due to its structure, then Licensee must include the notice in a location (such as a relevant directory file), where a recipient would be most likely to look for such a notice. - - - -(d) Redistribution. - - - -(i) Source. Covered Code may be distributed in Source Code form only to another Helix Licensee (except for students as provided below). Licensee may not offer or impose any terms on any Covered Code that alter the rights, requirements, or responsibilities of such Helix Licensee. Licensee may distribute Covered Code to students for use in connection with their course work and research projects undertaken at accredited educational institutions. Such students need not be Helix Licensees, but must be given a copy of the notice set forth in Attachment A-3 and such notice must also be included in a file header or prominent location in the Source Code made available to such students. - - - -(ii) Executable. Licensee may distribute Executable version(s) of Covered Code to Helix Licensees and other third parties only for the purpose of evaluation and comment in connection with Research Use by Licensee and under a license of Licensees choice, but that limits use of such Executable version(s) of Covered Code only to that purpose. - - - -(iii) Modified Class, Interface and Package Naming. In connection with Research Use by Licensee only, Licensee may use RN's class, Interface and package names only to accurately reference or invoke the Source Code files that Licensee modifies. RN grants to Licensee a limited license to the extent necessary for such purposes. - - - -(e) Extensions. - - - -(i) Licensee may not include any Source Code of Community Code in any Extensions. Licensee may include the compiled Header Files of Community Code in an Extension provided that Licensees use of the Covered Code, including Header Files, complies with the TCK and all other terms of this License. - - - -(ii) Open. Licensee must refrain from enforcing any Intellectual Property Rights Licensee may have covering any Interface(s) of Licensees Extension, which would prevent the implementation of such Interface(s) by RN or any Helix Licensee. This obligation does not prevent Licensee from enforcing any Intellectual Property Right Licensee has that would otherwise be infringed by an implementation of Licensees Extension. - - - -(iii) Interface Modifications and Naming. Licensee may not modify or add to the GUID space "xxxxxxxx-0901-11d1-8B06-00A024406D59" or any other GUID space designated by RN. Licensee may not modify any Interface prefix provided with the Covered Code or any other prefix designated by RN. - - - -(f) Any Specifications provided to Licensee by RN are confidential and proprietary information of RN. Licensee must maintain the confidentiality of the Specifications and may not disclose them to any third party without RNs prior written consent. Licensee may only use the Specifications under the terms of this License and only for the purpose of implementing the terms of this License with respect to Community Code. Licensee may not use, copy or distribute any such Specifications except as provided in writing by RN. - - - -No Commercial Use. - - - -Licensee may not make Commercial Use of any Covered Code unless Licensee and RN have executed a copy of the RCSL - Commercial available at the Helix Community Website, or another license agreement expressly granting commercial use rights. - - - -4. Versions of the License. - - - -4.1 License Versions. - - - -RN may publish revised versions of this License from time to time. Each version will be given a distinguishing version number. No one other than RN has the right to promulgate versions of this License. - - - -4.2 Effect of New License Versions. - - - -(a) Once a particular version of Covered Code has been provided under a version of this License, Licensee may always continue to use such Covered Code under the terms of that version of the License. Licensee may also choose to use such Covered Code under the terms of any subsequent version of the License, but not under a prior version of the License. (For example, if a version of Covered Code has been provided under RCSL R&D 2.1, Licensee may not use such Covered Code under RCSL R&D 2.0.) - - - -(b) Version 3.0 of this License (and all subsequent versions) supercedes versions 1.0, 1.1, 1.2, and 2.0 of RCSL R&D plus Attachments A-C. - - - -4.3 Multiple-Licensed Code. - - - -RN may designate portions of the Covered Code as Multiple-Licensed. Multiple-Licensed means that the RN permits Licensee to utilize those designated portions of the Covered Code under Licensees choice of this License or the alternative license(s), if any, specified by the RN at the Helix Community Website or in Header Files for the applicable Covered Code. - - - -5. Disclaimer of Warranty. - - - -COVERED CODE IS PROVIDED UNDER THIS LICENSE "AS IS," WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF COVERED CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. - - - -6. Termination. - - - -6.1 By Licensee. - - - -Licensee may terminate this License at anytime by providing written notice to RN. - - - -6.2 By RN. - - - -This License and the rights granted hereunder will terminate: - - - -(a) automatically if Licensee fails to comply with the terms of this License and fails to cure such breach within 30 days of receipt of written notice of the breach; - - - -(b) immediately in the event of circumstances specified in Sections 7.1 and 8.4; or - - - -(c) at RN's discretion upon any action initiated by Licensee (including by cross-claim or counter claim) alleging that use or distribution by RN or any Licensee, of any Covered Code, the TCK or Specifications infringe a patent owned or controlled by Licensee. - - - -6.3 Effect of Termination. - - - -Upon termination, Licensee must discontinue use of and destroy all copies of Covered Code in Licensees possession. All sublicenses to the Covered Code that Licensee has properly granted shall survive any termination of this License. Provisions that, by their nature, should remain in effect beyond the termination of this License shall survive including, without limitation, Sections 2.2, 3, 5, 7, 8, and the Glossary. - - - -6.4 No Compensation. - - - -Each party waives and releases the other from any claim to compensation or indemnity for permitted or lawful termination of the business relationship established by this License. - - - -7. Liability. - - - -7.1 Infringement. - - - -Should any of the Covered Code, TCK or Specifications (Materials) become the subject of a claim of infringement, RN may, at its sole option, (i) attempt to procure the rights necessary for Licensee to continue using the Materials, (ii) modify the Materials so that they are no longer infringing, or (iii) terminate Licensees right to use the Materials, immediately upon written notice. - - - - 7.2 LIMITATION OF LIABILITY. - - - - TO THE FULL EXTENT ALLOWED BY APPLICABLE LAW, RN'S LIABILITY TO LICENSEE FOR CLAIMS RELATING TO THIS LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY LICENSEE TO RN FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR ITEMS GIVING RISE TO SUCH CLAIM, IF ANY, DURING THE TWELVE MONTHS PRECEDING THE CLAIMED BREACH. IN NO EVENT WILL EITHER PARTY BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY, WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT LICENSEE OR RN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. - - - -8. Miscellaneous. - - - -8.1 No Trademark License. - - - -Licensee is granted no right, title or license to, or any interest in, any trademarks of RN hereunder. - - - -8.2 Integration. - - - -This License represents the complete agreement concerning the subject matter hereof. - - - -8.3 Assignment. - - - -RN may assign this License, and its rights and obligations hereunder, in its sole discretion. Licensee may assign Licensees rights and obligations under this the License to a third party upon prior written notice to RN. - - - -8.4 Severability. - - - -If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Notwithstanding the foregoing, if Licensee is prohibited by law from fully and specifically complying with Sections 2.2 or 3, this License will immediately terminate and Licensee must immediately discontinue any use of the Materials. - - - -8.5 Governing Law. - - - -This License shall be governed by the laws of the United States and the State of Washington, as applied to contracts entered into and to be performed in Washington between Washington residents. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. The state and federal courts located in Seattle, Washington have exclusive jurisdiction over any claim relating to the License, including contract and tort claims. - - - -8.6 Construction. - - - -Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not apply to this License. - - - -8.7 U.S. Government End Users. - - - -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - - - - Press Announcements. - - - -Licensee may make press announcements or other public statements regarding this License without the prior written consent of the RN, if Licensees statement is limited to announcing the licensing of the Covered Code. All other public announcements regarding this License require the prior written consent of the RN. Consent requests are welcome at press@helixcommunity.org. - - - -8.9 International Use. - - - -(a) Export/Import laws. Covered Code is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee must comply strictly with all such laws and regulations and must obtain any necessary licenses to export, re-export, or import as may be permitted under this Agreement. - - - -(b) Intellectual Property Protection. Due to limited intellectual property protection and enforcement in certain countries, this License does not permit the redistribution of the Covered Code, TCK and Specifications to any country on the list of restricted countries at the Helix Community Website. - - - -8.10 Language. - - - -This License is in the English language only, which language shall be controlling in all respects, and all versions of this License in any other language shall be for accommodation only and shall not be binding on the parties to this License. All communications and notices made or given pursuant to this License, and all documentation and support to be provided, unless otherwise noted, shall be in the English language. - - -GLOSSARY - - - -Applicable Patent Claims means: (a) in the case where RN is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to RN and (ii) are necessarily infringed by using or making the Original Code or Upgraded Code, including Modifications provided by RN, alone and not in combination with other software or hardware; and (b) in the case where Licensee is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to Licensee and (ii) are infringed (directly or indirectly) by using or making Licensee Modifications, taken alone or in combination with Covered Code. - - - -Application Programming Interfaces (APIs) means the interfaces, associated header files, service provider interfaces, and protocols that enable a device, application, operating system, or other program to obtain services from or make requests of (or provide services in response to requests from) other programs, and to use, benefit from, or rely on the resources, facilities, and capabilities of the relevant programs using the APIs. APIs includes the technical documentation describing the APIs, the Source Code constituting the API, and any Header Files used with the APIs. - - - -Commercial Use means any use (internal or external), copying, sublicensing or distribution (internal or external), directly or indirectly of Covered Code by Licensee other than Licensees Research Use of Covered Code within Licensees business or organization or in conjunction with other Helix Licensees with equivalent Research Use rights. Commercial Use includes any use of the Covered Code for direct or indirect commercial or strategic gain, advantage or other business purpose. Any Commercial Use requires execution of the RCSL - Commercial Use by Licensee and RN. - - - -Community Code means the Original Code, Upgraded Code, Error Corrections, Shared Modifications, or any combination thereof. - - - -Compliant Covered Code means Covered Code that complies with the requirements of the TCK. - - - -Covered Code means the Original Code, Upgraded Code, Modifications, or any combination thereof. - - - -Error Correction means any change made to Community Code which conforms to the Specification and corrects the adverse effect of a failure of Community Code to perform any function set forth in or required by the Specifications. - - - -Executable means Covered Code that has been converted from Source Code to the preferred form for execution by a computer or digital processor (e.g. binary form). - - - -Extension(s) means any additional Interfaces developed by or for Licensee which: (i) are designed for use with the Helix DNA Code; (ii) constitute an API for a library of computing functions or services; and (iii) are disclosed or otherwise made available to third party software developers for the purpose of developing software which invokes such additional Interfaces. The foregoing shall not apply to software developed by Licensees subcontractors to be exclusively used by Licensee. - - - -Helix Community Website means the website located at www.helixcommunity.org designated by RN for access to the Helix DNA Code, TCK and Specifications, and for posting Modifications. - - - -Header File(s) means that portion of the Source Code that provides the names and types of member functions, data members, class definitions, and interface definitions necessary to implement the APIs for the Covered Code. Header Files include, files specifically designated by RN as Header Files. Header Files do not include the code necessary to implement the functionality underlying the Interface. - - - -Helix DNA Client means the software identified on the Helix Community Website as the Helix DNA Client and which implements audio and video playback and rendering as defined in the Specifications. - - - -Helix DNA Code means the Helix DNA Server, the Helix DNA Client, the Helix DNA Producer, and any other Helix technologies that may be designated by RN from time to time. - - - -Helix DNA Producer means the portion of the Covered Code that implements the Helix Producer engine as defined in the Specification. - - - -Helix DNA Server means the portion of the Covered Code that implement the Helix Server streaming engine as defined in the Specification. - - - -Helix Licensee means any person or entity who has entered into a license agreement with RN providing for both source code development rights to and Commercial Use of the Helix DNA Client. - - - -Intellectual Property Rights means worldwide statutory and common law rights associated solely with (i) Applicable Patent Claims; (ii) works of authorship including copyrights, copyright applications, copyright registrations and moral rights; (iii) the protection of trade and industrial secrets and confidential information; and (iv) divisions, continuations, renewals, and re-issuances of the foregoing now existing or acquired in the future. - - - -Licensee means the individual, or a legal entity acting by and through an individual or individuals, exercising rights either under this License or under a future version of this License issued pursuant to Section 4.1. For legal entities, Licensee includes any entity that by majority voting interest controls, is controlled by, or is under common control with Licensee. - - - -Interface means interfaces, functions, properties, class definitions, APIs, Header Files, GUIDs, V-Tables, or protocols allowing one piece of software, firmware or hardware to communicate or interoperate with another piece of software, firmware or hardware. - - - - - -Modification(s) means (i) any addition to, deletion from or change to the substance or structure of the Covered Code, including Interfaces; (ii) any new file or other representation of computer program statements that contains any portion of Covered Code; or (iii) any new Source Code implementing any portion of the Specifications. - - - -Original Code means the Source Code for the Helix DNA Code as described on the Helix Community Website. - - - -RN means RealNetworks, Inc., its affiliates and its successors and assigns. - - - -Personal Use means use of Covered Code by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Covered Code in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. - - - -Real Format Client Code means the software identified on the Helix Community Website as Real Format Client Code and which enables the playing back of content in RealMedia File Formats. - - - -RealMedia File Format" means the file format designed and developed by RN for storing multimedia data and used to store RealAudio and RealVideo encoded streams. Valid RealMedia File Format extensions include: .rm, .rmj, .rmc, .rmvb, .rms, .ra, .rv, .rax .rvx. - - - -Reformatted Specifications means any revision to the Specifications which translates or reformats the Specifications (as for example in connection with Licensees documentation) but which does not alter, subset or superset the functional or operational aspects of the Specifications. - - - -Research Use means use and distribution of Covered Code only for Licensees Personal Use, research or development use and expressly excludes Commercial Use. Research Use also includes use of Covered Code to teach individuals how to use Covered Code. - - - -Shared Modifications means Modifications that Licensee distributes or uses for a Commercial Use, in addition to any Modifications provided by Licensee, at Licensees option, pursuant to Section 2.2, or received by Licensee from another Helix Licensee pursuant to Section 2.3. - - - -Source Code means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable. - - - -Specifications means the specifications for the Helix DNA Code and other documentation, as published by RN from time to time on the Helix Community Website. - - - -Technology Compatibility Kit or TCK means the interoperability testing specification, documentation and related testing tools made available to Licensee by RN from time to time for the purpose of testing Licensees implementations of the Covered Code. RN may, in its sole discretion and from time to time, revise a TCK to correct errors or omissions and in connection with Upgrades. - - - - Upgrade(s) means new versions of Helix DNA Code designated exclusively by RN as an "Upgrade" and released by RN from time to time under the terms of this License. - - - -Upgraded Code means the Source Code or Executables for Upgrades, possibly including Modifications made by other Helix Licensees. - - - - - - - -ATTACHMENT A - - - -REQUIRED NOTICES - - - - -ATTACHMENT A-1 - - - -REQUIRED IN ALL CASES - - - -Notice to be included in header file of all Error Corrections and Shared Modifications: - - - -Portions Copyright 1994-2007 RealNetworks, Inc. All rights reserved. - -The contents of this file, and the files included with this file, are subject to the current version of RealNetworks Community Source License Version 3.0 (the "License"). You may not use this file except in compliance with the License executed by both you and RealNetworks. You may obtain a copy of the License at https://www.helixcommunity.org/content/rcsl. You may also obtain a copy of the License by contacting RealNetworks directly. Please see the License for the rights, obligations and limitations governing use of the contents of the file. - -This file is part of the Helix DNA Code. RealNetworks, Inc., is the developer of the Original Code and owns the copyrights in the portions it created. - -This file, and the files included with this file, are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. - - - -Contributor(s): - -_______________________________________________ - -Technology Compatibility Kit Test Suite(s) Location: - -________________________________ - - - -ATTACHMENT A-2 - - - -SAMPLE LICENSEE CERTIFICATION - - - -"By clicking the `Agree' button below, you certify that you are a Licensee in good standing under the RealNetworks Community Source License Research and Development or the RealNetworks Community Source License Commercial, (each, a "License") and that your access, use and distribution of code and information you may obtain at this site is subject to the License. If you are not a Licensee under the RealNetworks Community Source License you may not download, copy or use the Helix DNA Code. - - - - - - - -ATTACHMENT A-3 - - - -REQUIRED STUDENT NOTIFICATION - - - -"This software and related documentation has been obtained by your educational institution subject to the RealNetworks Community Source License. You have been provided access to the software and related documentation for use only in connection with your course work and research activities as a matriculated student of your educational institution. Any other use is expressly prohibited. - - - -THIS SOFTWARE AND RELATED DOCUMENTATION CONTAINS PROPRIETARY MATERIAL OF REALNETWORKS, INC, WHICH ARE PROTECTED BY VARIOUS INTELLECTUAL PROPERTY RIGHTS. - - - -You may not use this file except in compliance with the License. You may obtain a copy of the License on the web at https://www.helixcommunity.org/content/rcsl. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/rcsl-3.0_1.yml b/tests/licensedcode/data/licenses/rcsl-3.0_1.yml deleted file mode 100644 index f218dd90cc4..00000000000 --- a/tests/licensedcode/data/licenses/rcsl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - rcsl-3.0 -notes: file with weird encoding diff --git a/tests/licensedcode/data/licenses/redhat_logos.txt b/tests/licensedcode/data/licenses/redhat_logos.txt deleted file mode 100644 index 4ceaa153d58..00000000000 --- a/tests/licensedcode/data/licenses/redhat_logos.txt +++ /dev/null @@ -1,35 +0,0 @@ -The redhat-logos package (the "Package") contains image files which -incorporate the CentOS trademark, and CentOS logo (the "Marks"). - -The CentOS Project grants you the right to use the Package during the -normal operation of other software programs that call upon the -Package. The CentOS Project grants to you the right and license to copy -and redistribute the unaltered Package for both commerical and non- -commercial purposes. - -If you are rebranding or modifying the underlying distribution, or the Package, -you must remove "the Marks" and rename the distribution something other than -CentOS. - -When redistributing using this license, the following applies: - -1. The above copyright notice and this license are included with each -copy you make, and they remain intact and are not altered, deleted, or -modified in any way; -2. You do not modify the appearance of any or all of -the Logos in any manner; and -3. You do not use any or all of the Logos as, or as part of, a -trademark, trade name, or trade identifier; or in any other fashion -except as set forth in this license. - -NO WARRANTY. THIS PACKAGE IS PROVIDED "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 CENTOS PROJECT. 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 PACKAGE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. diff --git a/tests/licensedcode/data/licenses/redhat_logos.yml b/tests/licensedcode/data/licenses/redhat_logos.yml deleted file mode 100644 index e2819032a80..00000000000 --- a/tests/licensedcode/data/licenses/redhat_logos.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - red-hat-logos diff --git a/tests/licensedcode/data/licenses/robert-hubley-mit-like.txt b/tests/licensedcode/data/licenses/robert-hubley-mit-like.txt deleted file mode 100644 index 21cee22688a..00000000000 --- a/tests/licensedcode/data/licenses/robert-hubley-mit-like.txt +++ /dev/null @@ -1,11 +0,0 @@ -This software is provided ``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 authors 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/tests/licensedcode/data/licenses/robert-hubley-mit-like.yml b/tests/licensedcode/data/licenses/robert-hubley-mit-like.yml deleted file mode 100644 index e8470b570d1..00000000000 --- a/tests/licensedcode/data/licenses/robert-hubley-mit-like.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - robert-hubley diff --git a/tests/licensedcode/data/licenses/rpsl-1.0.txt b/tests/licensedcode/data/licenses/rpsl-1.0.txt deleted file mode 100644 index d150f341e04..00000000000 --- a/tests/licensedcode/data/licenses/rpsl-1.0.txt +++ /dev/null @@ -1 +0,0 @@ -RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) 1. General Definitions. This License applies to any program or other work which RealNetworks, Inc., or any other entity that elects to use this license, ("Licensor") makes publicly available and which contains a notice placed by Licensor identifying such program or work as "Original Code" and stating that it is subject to the terms of this RealNetworks Public Source License version 1.0 (or subsequent version thereof) ("License"). You are not required to accept this License. However, nothing else grants You permission to use, copy, modify or distribute the software or its derivative works. These actions are prohibited by law if You do not accept this License. Therefore, by modifying, copying or distributing the software (or any work based on the software), You indicate your acceptance of this License to do so, and all its terms and conditions. In addition, you agree to the terms of this License by clicking the Accept button or downloading the software. As used in this License: 1.1 "Applicable Patent Rights" mean: (a) in the case where Licensor is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to Licensor and (ii) are necessarily infringed by using or making the Original Code alone and not in combination with other software or hardware; and (b) in the case where You are the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to You and (ii) are infringed (directly or indirectly) by using or making Your Modifications, taken alone or in combination with Original Code. 1.2 "Compatible Source License" means any one of the licenses listed on Exhibit B or at https://www.helixcommunity.org/content/complicense or other licenses specifically identified by Licensor in writing. Notwithstanding any term to the contrary in any Compatible Source License, any code covered by any Compatible Source License that is used with Covered Code must be made readily available in Source Code format for royalty-free use under the terms of the Compatible Source License or this License. 1.3 "Contributor" means any person or entity that creates or contributes to the creation of Modifications. 1.4 "Covered Code" means the Original Code, Modifications, the combination of Original Code and any Modifications, and/or any respective portions thereof. 1.5 "Deploy" means to use, sublicense or distribute Covered Code other than for Your internal research and development (R&D) and/or Personal Use, and includes without limitation, any and all internal use or distribution of Covered Code within Your business or organization except for R&D use and/or Personal Use, as well as direct or indirect sublicensing or distribution of Covered Code by You to any third party in any form or manner. 1.6 "Derivative Work" means either the Covered Code or any derivative work under United States copyright law, and including any work containing or including any portion of the Covered Code or Modifications, either verbatim or with modifications and/or translated into another language. Derivative Work also includes any work which combines any portion of Covered Code or Modifications with code not otherwise governed by the terms of this License. 1.7 "Externally Deploy" means to Deploy the Covered Code in any way that may be accessed or used by anyone other than You, used to provide any services to anyone other than You, or used in any way to deliver any content to anyone other than You, whether the Covered Code is distributed to those parties, made available as an application intended for use over a computer network, or used to provide services or otherwise deliver content to anyone other than You. 1.8. "Interface" means interfaces, functions, properties, class definitions, APIs, header files, GUIDs, V-Tables, and/or protocols allowing one piece of software, firmware or hardware to communicate or interoperate with another piece of software, firmware or hardware. 1.9 "Modifications" mean any addition to, deletion from, and/or change to, the substance and/or structure of the Original Code, any previous Modifications, the combination of Original Code and any previous Modifications, and/or any respective portions thereof. When code is released as a series of files, a Modification is: (a) any addition to or deletion from the contents of a file containing Covered Code; and/or (b) any new file or other representation of computer program statements that contains any part of Covered Code. 1.10 "Original Code" means (a) the Source Code of a program or other work as originally made available by Licensor under this License, including the Source Code of any updates or upgrades to such programs or works made available by Licensor under this License, and that has been expressly identified by Licensor as such in the header file(s) of such work; and (b) the object code compiled from such Source Code and originally made available by Licensor under this License. 1.11 "Personal Use" means use of Covered Code by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Covered Code in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. 1.12 "Source Code" means the human readable form of a program or other work that is suitable for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an executable (object code). 1.13 "You" or "Your" means an individual or a legal entity exercising rights under this License. For legal entities, "You" or "Your" includes any entity which controls, is controlled by, or is under common control with, You, where "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. 2. Permitted Uses; Conditions & Restrictions. Subject to the terms and conditions of this License, Licensor hereby grants You, effective on the date You accept this License (via downloading or using Covered Code or otherwise indicating your acceptance of this License), a worldwide, royalty-free, non-exclusive copyright license, to the extent of Licensor's copyrights cover the Original Code, to do the following: 2.1 You may reproduce, display, perform, modify and Deploy Covered Code, provided that in each instance: (a) You must retain and reproduce in all copies of Original Code the copyright and other proprietary notices and disclaimers of Licensor as they appear in the Original Code, and keep intact all notices in the Original Code that refer to this License; (b) You must include a copy of this License with every copy of Source Code of Covered Code and documentation You distribute, and You may not offer or impose any terms on such Source Code that alter or restrict this License or the recipients' rights hereunder, except as permitted under Section 6; (c) You must duplicate, to the extent it does not already exist, the notice in Exhibit A in each file of the Source Code of all Your Modifications, and cause the modified files to carry prominent notices stating that You changed the files and the date of any change; (d) You must make Source Code of all Your Externally Deployed Modifications publicly available under the terms of this License, including the license grants set forth in Section 3 below, for as long as you Deploy the Covered Code or twelve (12) months from the date of initial Deployment, whichever is longer. You should preferably distribute the Source Code of Your Deployed Modifications electronically (e.g. download from a web site); and (e) if You Deploy Covered Code in object code, executable form only, You must include a prominent notice, in the code itself as well as in related documentation, stating that Source Code of the Covered Code is available under the terms of this License with information on how and where to obtain such Source Code. You must also include the Object Code Notice set forth in Exhibit A in the "about" box or other appropriate place where other copyright notices are placed, including any packaging materials. 2.2 You expressly acknowledge and agree that although Licensor and each Contributor grants the licenses to their respective portions of the Covered Code set forth herein, no assurances are provided by Licensor or any Contributor that the Covered Code does not infringe the patent or other intellectual property rights of any other entity. Licensor and each Contributor disclaim any liability to You 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, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to make, use, sell, import or offer for sale the Covered Code, it is Your responsibility to acquire such license(s). 2.3 Subject to the terms and conditions of this License, Licensor hereby grants You, effective on the date You accept this License (via downloading or using Covered Code or otherwise indicating your acceptance of this License), a worldwide, royalty-free, perpetual, non-exclusive patent license under Licensor's Applicable Patent Rights to make, use, sell, offer for sale and import the Covered Code, provided that in each instance you comply with the terms of this License. 3. Your Grants. In consideration of, and as a condition to, the licenses granted to You under this License: (a) You grant to Licensor and all third parties a non-exclusive, perpetual, irrevocable, royalty free license under Your Applicable Patent Rights and other intellectual property rights owned or controlled by You, to make, sell, offer for sale, use, import, reproduce, display, perform, modify, distribute and Deploy Your Modifications of the same scope and extent as Licensor's licenses under Sections 2.1 and 2.2; and (b) You grant to Licensor and its subsidiaries a non-exclusive, worldwide, royalty-free, perpetual and irrevocable license, under Your Applicable Patent Rights and other intellectual property rights owned or controlled by You, to make, use, sell, offer for sale, import, reproduce, display, perform, distribute, modify or have modified (for Licensor and/or its subsidiaries), sublicense and distribute Your Modifications, in any form and for any purpose, through multiple tiers of distribution. (c) You agree not use any information derived from Your use and review of the Covered Code, including but not limited to any algorithms or inventions that may be contained in the Covered Code, for the purpose of asserting any of Your patent rights, or assisting a third party to assert any of its patent rights, against Licensor or any Contributor. 4. Derivative Works. You may create a Derivative Work by combining Covered Code with other code not otherwise governed by the terms of this License and distribute the Derivative Work as an integrated product. In each such instance, You must make sure the requirements of this License are fulfilled for the Covered Code or any portion thereof, including all Modifications. 4.1 You must cause any Derivative Work that you distribute, publish or Externally Deploy, that in whole or in part contains or is derived from the Covered Code or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License and no other license except as provided in Section 4.2. You also must make Source Code available for the Derivative Work under the same terms as Modifications, described in Sections 2 and 3, above. 4.2 Compatible Source Licenses. Software modules that have been independently developed without any use of Covered Code and which contain no portion of the Covered Code, Modifications or other Derivative Works, but are used or combined in any way wtih the Covered Code or any Derivative Work to form a larger Derivative Work, are exempt from the conditions described in Section 4.1 but only to the extent that: the software module, including any software that is linked to, integrated with, or part of the same applications as, the software module by any method must be wholly subject to one of the Compatible Source Licenses. Notwithstanding the foregoing, all Covered Code must be subject to the terms of this License. Thus, the entire Derivative Work must be licensed under a combination of the RPSL (for Covered Code) and a Compatible Source License for any independently developed software modules within the Derivative Work. The foregoing requirement applies even if the Compatible Source License would ordinarily allow the software module to link with, or form larger works with, other software that is not subject to the Compatible Source License. For example, although the Mozilla Public License v1.1 allows Mozilla code to be combined with proprietary software that is not subject to the MPL, if MPL-licensed code is used with Covered Code the MPL-licensed code could not be combined or linked with any code not governed by the MPL. The general intent of this section 4.2 is to enable use of Covered Code with applications that are wholly subject to an acceptable open source license. You are responsible for determining whether your use of software with Covered Code is allowed under Your license to such software. 4.3 Mere aggregation of another work not based on the Covered Code with the Covered Code (or with a work based on the Covered Code) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. If You deliver the Covered Code for combination and/or integration with an application previously provided by You (for example, via automatic updating technology), such combination and/or integration constitutes a Derivative Work subject to the terms of this License. 5. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Covered Code. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. Modifications, Derivative Works and/or any use or combination of Covered Code with other technology provided by Licensor or third parties may require additional patent licenses from Licensor which Licensor may grant in its sole discretion. No patent license is granted separate from the Original Code or combinations of the Original Code with other software or hardware. 5.1. Trademarks. This License does not grant any rights to use the trademarks or trade names owned by Licensor ("Licensor Marks" defined in Exhibit C) or to any trademark or trade name belonging to any Contributor. No Licensor Marks may be used to endorse or promote products derived from the Original Code other than as permitted by the Licensor Trademark Policy defined in Exhibit C. 6. Additional Terms. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations and/or other rights consistent with the scope of the license granted herein ("Additional Terms") to one or more recipients of Covered Code. However, You may do so only on Your own behalf and as Your sole responsibility, and not on behalf of Licensor or any Contributor. You must obtain the recipient's agreement that any such Additional Terms are offered by You alone, and You hereby agree to indemnify, defend and hold Licensor and every Contributor harmless for any liability incurred by or claims asserted against Licensor or such Contributor by reason of any such Additional Terms. 7. Versions of the License. Licensor may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Once Original Code has been published under a particular version of this License, You may continue to use it under the terms of that version. You may also choose to use such Original Code under the terms of any subsequent version of this License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Covered Code created under this License. 8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in part pre-release, untested, or not fully tested works. The Covered Code may contain errors that could cause failures or loss of data, and may be incomplete or contain inaccuracies. You expressly acknowledge and agree that use of the Covered Code, or any portion thereof, is at Your sole and entire risk. THE COVERED CODE IS PROVIDED "AS IS" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND LICENSOR AND LICENSOR'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "LICENSOR" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. LICENSOR AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR WRITTEN DOCUMENTATION, INFORMATION OR ADVICE GIVEN BY LICENSOR, A LICENSOR AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. You acknowledge that the Covered Code is not intended for use in high risk activities, including, but not limited to, the design, construction, operation or maintenance of nuclear facilities, aircraft navigation, aircraft communication systems, or air traffic control machines in which case the failure of the Covered Code could lead to death, personal injury, or severe physical or environmental damage. Licensor disclaims any express or implied warranty of fitness for such uses. 9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL LICENSOR OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF LICENSOR OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Licensor's total liability to You for all damages (other than as may be required by applicable law) under this License exceed the amount of ten dollars ($10.00). 10. Ownership. Subject to the licenses granted under this License, each Contributor retains all rights, title and interest in and to any Modifications made by such Contributor. Licensor retains all rights, title and interest in and to the Original Code and any Modifications made by or on behalf of Licensor ("Licensor Modifications"), and such Licensor Modifications will not be automatically subject to this License. Licensor may, at its sole discretion, choose to license such Licensor Modifications under this License, or on different terms from those contained in this License or may choose not to license them at all. 11. Termination. 11.1 Term and Termination. The term of this License is perpetual unless terminated as provided below. This License and the rights granted hereunder will terminate: (a) automatically without notice from Licensor if You fail to comply with any term(s) of this License and fail to cure such breach within 30 days of becoming aware of such breach; (b) immediately in the event of the circumstances described in Section 12.5(b); or (c) automatically without notice from Licensor if You, at any time during the term of this License, commence an action for patent infringement against Licensor (including by cross-claim or counter claim in a lawsuit); (d) upon written notice from Licensor if You, at any time during the term of this License, commence an action for patent infringement against any third party alleging that the Covered Code itself (excluding combinations with other software or hardware) infringes any patent (including by cross-claim or counter claim in a lawsuit). 11.2 Effect of Termination. Upon termination, You agree to immediately stop any further use, reproduction, modification, sublicensing and distribution of the Covered Code and to destroy all copies of the Covered Code that are in your possession or control. All sublicenses to the Covered Code which have been properly granted prior to termination shall survive any termination of this License. Provisions which, by their nature, should remain in effect beyond the termination of this License shall survive, including but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other for compensation, indemnity or damages of any sort solely as a result of terminating this License in accordance with its terms, and termination of this License will be without prejudice to any other right or remedy of any party. 12. Miscellaneous. 12.1 Government End Users. The Covered Code is a "commercial item" as defined in FAR 2.101. Government software and technical data rights in the Covered Code include only those rights customarily provided to the public as defined in this License. This customary commercial license in technical data and software is provided in accordance with FAR 12.211 (Technical Data) and 12.212 (Computer Software) and, for Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- Commercial Items) and 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). Accordingly, all U.S. Government End Users acquire Covered Code with only those rights set forth herein. 12.2 Relationship of Parties. This License will not be construed as creating an agency, partnership, joint venture or any other form of legal association between or among You, Licensor or any Contributor, and You will not represent to the contrary, whether expressly, by implication, appearance or otherwise. 12.3 Independent Development. Nothing in this License will impair Licensor's right to acquire, license, develop, have others develop for it, market and/or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Modifications, Derivative Works, technology or products that You may develop, produce, market or distribute. 12.4 Waiver; Construction. Failure by Licensor or any Contributor to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. Any law or regulation which provides that the language of a contract shall be construed against the drafter will not apply to this License. 12.5 Severability. (a) If for any reason a court of competent jurisdiction finds any provision of this License, or portion thereof, to be unenforceable, that provision of the License will be enforced to the maximum extent permissible so as to effect the economic benefits and intent of the parties, and the remainder of this License will continue in full force and effect. (b) Notwithstanding the foregoing, if applicable law prohibits or restricts You from fully and/or specifically complying with Sections 2 and/or 3 or prevents the enforceability of either of those Sections, this License will immediately terminate and You must immediately discontinue any use of the Covered Code and destroy all copies of it that are in your possession or control. 12.6 Dispute Resolution. Any litigation or other dispute resolution between You and Licensor relating to this License shall take place in the Seattle, Washington, and You and Licensor hereby consent to the personal jurisdiction of, and venue in, the state and federal courts within that District with respect to this License. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. 12.7 Export/Import Laws. This software is subject to all export and import laws and restrictions and regulations of the country in which you receive the Covered Code and You are solely responsible for ensuring that You do not export, re-export or import the Covered Code or any direct product thereof in violation of any such restrictions, laws or regulations, or without all necessary authorizations. 12.8 Entire Agreement; Governing Law. This License constitutes the entire agreement between the parties with respect to the subject matter hereof. This License shall be governed by the laws of the United States and the State of Washington. Where You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exig que le prsent contrat et tous les documents connexes soient rdigs en anglais. EXHIBIT A. "Copyright 1995-2002 RealNetworks, Inc. and/or its licensors. All Rights Reserved. The contents of this file, and the files included with this file, are subject to the current version of the RealNetworks Public Source License Version 1.0 (the "RPSL") available at https://www.helixcommunity.org/content/rpsl unless you have licensed the file under the RealNetworks Community Source License Version 1.0 (the "RCSL") available at https://www.helixcommunity.org/content/rcsl, in which case the RCSL will apply. You may also obtain the license terms directly from RealNetworks. You may not use this file except in compliance with the RPSL or, if you have a valid RCSL with RealNetworks applicable to this file, the RCSL. Please see the applicable RPSL or RCSL for the rights, obligations and limitations governing use of the contents of the file. This file is part of the Helix DNA Technology. RealNetworks is the developer of the Original code and owns the copyrights in the portions it created. This file, and the files included with this file, is distributed and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Contributor(s): ____________________________________ Technology Compatibility Kit Test Suite(s) Location (if licensed under the RCSL): ______________________________ Object Code Notice: Helix DNA Client technology included. Copyright (c) RealNetworks, Inc., 1995-2002. All rights reserved. EXHIBIT B Compatible Source Licenses for the RealNetworks Public Source License. The following list applies to the most recent version of the license as of October 25, 2002, unless otherwise indicated. * Academic Free License * Apache Software License * Apple Public Source License * Artistic license * Attribution Assurance Licenses * BSD license * Common Public License (1) * Eiffel Forum License * GNU General Public License (GPL) (1) * GNU Library or "Lesser" General Public License (LGPL) (1) * IBM Public License * Intel Open Source License * Jabber Open Source License * MIT license * MITRE Collaborative Virtual Workspace License (CVW License) * Motosoto License * Mozilla Public License 1.0 (MPL) * Mozilla Public License 1.1 (MPL) * Nokia Open Source License * Open Group Test Suite License * Python Software Foundation License * Ricoh Source Code Public License * Sun Industry Standards Source License (SISSL) * Sun Public License * University of Illinois/NCSA Open Source License * Vovida Software License v. 1.0 * W3C License * X.Net License * Zope Public License * zlib/libpng license (1) Note: because this license contains certain reciprocal licensing terms that purport to extend to independently developed code, You may be prohibited under the terms of this otherwise compatible license from using code licensed under its terms with Covered Code because Covered Code may only be licensed under the RealNetworks Public Source License. Any attempt to apply non RPSL license terms, including without limitation the GPL, to Covered Code is expressly forbidden. You are responsible for ensuring that Your use of Compatible Source Licensed code does not violate either the RPSL or the Compatible Source License. The latest version of this list can be found at: https://www.helixcommunity.org/content/complicense EXHIBIT C RealNetworks' Trademark policy. RealNetworks defines the following trademarks collectively as "Licensor Trademarks": "RealNetworks", "RealPlayer", "RealJukebox", "RealSystem", "RealAudio", "RealVideo", "RealOne Player", "RealMedia", "Helix" or any other trademarks or trade names belonging to RealNetworks. RealNetworks "Licensor Trademark Policy" forbids any use of Licensor Trademarks except as permitted by and in strict compliance at all times with RealNetworks' third party trademark usage guidelines which are posted at http://www.realnetworks.com/info/helixlogo.html. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/rpsl-1.0.yml b/tests/licensedcode/data/licenses/rpsl-1.0.yml deleted file mode 100644 index 7f24c244ef5..00000000000 --- a/tests/licensedcode/data/licenses/rpsl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - rpsl-1.0 diff --git a/tests/licensedcode/data/licenses/rpsl-1.0_1.txt b/tests/licensedcode/data/licenses/rpsl-1.0_1.txt deleted file mode 100644 index 831e01cb67d..00000000000 --- a/tests/licensedcode/data/licenses/rpsl-1.0_1.txt +++ /dev/null @@ -1,176 +0,0 @@ - RealNetworks Public Source License Version 1.0 - -(Rev. Date October 28, 2002) - - -1. General Definitions. This License applies to any program or other work which RealNetworks, Inc., or any other entity that elects to use this license, ("Licensor") makes publicly available and which contains a notice placed by Licensor identifying such program or work as "Original Code" and stating that it is subject to the terms of this RealNetworks Public Source License version 1.0 (or subsequent version thereof) ("License"). You are not required to accept this License. However, nothing else grants You permission to use, copy, modify or distribute the software or its derivative works. These actions are prohibited by law if You do not accept this License. Therefore, by modifying, copying or distributing the software (or any work based on the software), You indicate your acceptance of this License to do so, and all its terms and conditions. In addition, you agree to the terms of this License by clicking the Accept button or downloading the software. As used in this License: - -1.1 "Applicable Patent Rights" mean: (a) in the case where Licensor is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to Licensor and (ii) are necessarily infringed by using or making the Original Code alone and not in combination with other software or hardware; and (b) in the case where You are the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to You and (ii) are infringed (directly or indirectly) by using or making Your Modifications, taken alone or in combination with Original Code. - -1.2 "Compatible Source License" means any one of the licenses listed on Exhibit B or at https://www.helixcommunity.org/content/complicense or other licenses specifically identified by Licensor in writing. Notwithstanding any term to the contrary in any Compatible Source License, any code covered by any Compatible Source License that is used with Covered Code must be made readily available in Source Code format for royalty-free use under the terms of the Compatible Source License or this License. - -1.3 "Contributor" means any person or entity that creates or contributes to the creation of Modifications. - -1.4 "Covered Code" means the Original Code, Modifications, the combination of Original Code and any Modifications, and/or any respective portions thereof. - -1.5 "Deploy" means to use, sublicense or distribute Covered Code other than for Your internal research and development (R&D) and/or Personal Use, and includes without limitation, any and all internal use or distribution of Covered Code within Your business or organization except for R&D use and/or Personal Use, as well as direct or indirect sublicensing or distribution of Covered Code by You to any third party in any form or manner. - -1.6 "Derivative Work" means either the Covered Code or any derivative work under United States copyright law, and including any work containing or including any portion of the Covered Code or Modifications, either verbatim or with modifications and/or translated into another language. Derivative Work also includes any work which combines any portion of Covered Code or Modifications with code not otherwise governed by the terms of this License. - -1.7 "Externally Deploy" means to Deploy the Covered Code in any way that may be accessed or used by anyone other than You, used to provide any services to anyone other than You, or used in any way to deliver any content to anyone other than You, whether the Covered Code is distributed to those parties, made available as an application intended for use over a computer network, or used to provide services or otherwise deliver content to anyone other than You. - -1.8. "Interface" means interfaces, functions, properties, class definitions, APIs, header files, GUIDs, V-Tables, and/or protocols allowing one piece of software, firmware or hardware to communicate or interoperate with another piece of software, firmware or hardware. - -1.9 "Modifications" mean any addition to, deletion from, and/or change to, the substance and/or structure of the Original Code, any previous Modifications, the combination of Original Code and any previous Modifications, and/or any respective portions thereof. When code is released as a series of files, a Modification is: (a) any addition to or deletion from the contents of a file containing Covered Code; and/or (b) any new file or other representation of computer program statements that contains any part of Covered Code. - -1.10 "Original Code" means (a) the Source Code of a program or other work as originally made available by Licensor under this License, including the Source Code of any updates or upgrades to such programs or works made available by Licensor under this License, and that has been expressly identified by Licensor as such in the header file(s) of such work; and (b) the object code compiled from such Source Code and originally made available by Licensor under this License. - -1.11 "Personal Use" means use of Covered Code by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Covered Code in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. - -1.12 "Source Code" means the human readable form of a program or other work that is suitable for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an executable (object code). - -1.13 "You" or "Your" means an individual or a legal entity exercising rights under this License. For legal entities, "You" or "Your" includes any entity which controls, is controlled by, or is under common control with, You, where "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -2. Permitted Uses;Conditions & Restrictions. Subject to the terms and conditions of this License, Licensor hereby grants You, effective on the date You accept this License (via downloading or using Covered Code or otherwise indicating your acceptance of this License), a worldwide, royalty-free, non-exclusive copyright license, to the extent of Licensor's copyrights cover the Original Code, to do the following: - -2.1 You may reproduce, display, perform, modify and Deploy Covered Code, provided that in each instance: - -(a) You must retain and reproduce in all copies of Original Code the copyright and other proprietary notices and disclaimers of Licensor as they appear in the Original Code, and keep intact all notices in the Original Code that refer to this License; - -(b) You must include a copy of this License with every copy of Source Code of Covered Code and documentation You distribute, and You may not offer or impose any terms on such Source Code that alter or restrict this License or the recipients' rights hereunder, except as permitted under Section 6; - -(c) You must duplicate, to the extent it does not already exist, the notice in Exhibit A in each file of the Source Code of all Your Modifications, and cause the modified files to carry prominent notices stating that You changed the files and the date of any change; - -(d) You must make Source Code of all Your Externally Deployed Modifications publicly available under the terms of this License, including the license grants set forth in Section 3 below, for as long as you Deploy the Covered Code or twelve (12) months from the date of initial Deployment, whichever is longer. You should preferably distribute the Source Code of Your Deployed Modifications electronically (e.g. download from a web site); and - -(e) if You Deploy Covered Code in object code, executable form only, You must include a prominent notice, in the code itself as well as in related documentation, stating that Source Code of the Covered Code is available under the terms of this License with information on how and where to obtain such Source Code. You must also include the Object Code Notice set forth in Exhibit A in the "about" box or other appropriate place where other copyright notices are placed, including any packaging materials. - -2.2 You expressly acknowledge and agree that although Licensor and each Contributor grants the licenses to their respective portions of the Covered Code set forth herein, no assurances are provided by Licensor or any Contributor that the Covered Code does not infringe the patent or other intellectual property rights of any other entity. Licensor and each Contributor disclaim any liability to You 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, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to make, use, sell, import or offer for sale the Covered Code, it is Your responsibility to acquire such license(s). - -2.3 Subject to the terms and conditions of this License, Licensor hereby grants You, effective on the date You accept this License (via downloading or using Covered Code or otherwise indicating your acceptance of this License), a worldwide, royalty-free, perpetual, non-exclusive patent license under Licensor's Applicable Patent Rights to make, use, sell, offer for sale and import the Covered Code, provided that in each instance you comply with the terms of this License. - -3. Your Grants. In consideration of, and as a condition to, the licenses granted to You under this License: - -(a) You grant to Licensor and all third parties a non-exclusive, perpetual, irrevocable, royalty free license under Your Applicable Patent Rights and other intellectual property rights owned or controlled by You, to make, sell, offer for sale, use, import, reproduce, display, perform, modify, distribute and Deploy Your Modifications of the same scope and extent as Licensor's licenses under Sections 2.1 and 2.2; and - -(b) You grant to Licensor and its subsidiaries a non-exclusive, worldwide, royalty-free, perpetual and irrevocable license, under Your Applicable Patent Rights and other intellectual property rights owned or controlled by You, to make, use, sell, offer for sale, import, reproduce, display, perform, distribute, modify or have modified (for Licensor and/or its subsidiaries), sublicense and distribute Your Modifications, in any form and for any purpose, through multiple tiers of distribution. - -(c) You agree not use any information derived from Your use and review of the Covered Code, including but not limited to any algorithms or inventions that may be contained in the Covered Code, for the purpose of asserting any of Your patent rights, or assisting a third party to assert any of its patent rights, against Licensor or any Contributor. - -4. Derivative Works. You may create a Derivative Work by combining Covered Code with other code not otherwise governed by the terms of this License and distribute the Derivative Work as an integrated product. In each such instance, You must make sure the requirements of this License are fulfilled for the Covered Code or any portion thereof, including all Modifications. - -4.1 You must cause any Derivative Work that you distribute, publish or Externally Deploy, that in whole or in part contains or is derived from the Covered Code or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License and no other license except as provided in Section 4.2. You also must make Source Code available for the Derivative Work under the same terms as Modifications, described in Sections 2 and 3, above. - -4.2 Compatible Source Licenses. Software modules that have been independently developed without any use of Covered Code and which contain no portion of the Covered Code, Modifications or other Derivative Works, but are used or combined in any way with the Covered Code or any Derivative Work to form a larger Derivative Work, are exempt from the conditions described in Section 4.1 but only to the extent that: the software module, including any software that is linked to, integrated with, or part of the same applications as, the software module by any method must be wholly subject to one of the Compatible Source Licenses. Notwithstanding the foregoing, all Covered Code must be subject to the terms of this License. Thus, the entire Derivative Work must be licensed under a combination of the RPSL (for Covered Code) and a Compatible Source License for any independently developed software modules within the Derivative Work. The foregoing requirement applies even if the Compatible Source License would ordinarily allow the software module to link with, or form larger works with, other software that is not subject to the Compatible Source License. For example, although the Mozilla Public License v1.1 allows Mozilla code to be combined with proprietary software that is not subject to the MPL, if MPL-licensed code is used with Covered Code the MPL-licensed code could not be combined or linked with any code not governed by the MPL. The general intent of this section 4.2 is to enable use of Covered Code with applications that are wholly subject to an acceptable open source license. You are responsible for determining whether your use of software with Covered Code is allowed under Your license to such software. - -4.3 Mere aggregation of another work not based on the Covered Code with the Covered Code (or with a work based on the Covered Code) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. If You deliver the Covered Code for combination and/or integration with an application previously provided by You (for example, via automatic updating technology), such combination and/or integration constitutes a Derivative Work subject to the terms of this License. - -5. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Covered Code. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. Modifications, Derivative Works and/or any use or combination of Covered Code with other technology provided by Licensor or third parties may require additional patent licenses from Licensor which Licensor may grant in its sole discretion. No patent license is granted separate from the Original Code or combinations of the Original Code with other software or hardware. - -5.1. Trademarks. This License does not grant any rights to use the trademarks or trade names owned by Licensor ("Licensor Marks" defined in Exhibit C) or to any trademark or trade name belonging to any Contributor. No Licensor Marks may be used to endorse or promote products derived from the Original Code other than as permitted by the Licensor Trademark Policy defined in Exhibit C. - -6. Additional Terms. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations and/or other rights consistent with the scope of the license granted herein ("Additional Terms") to one or more recipients of Covered Code. However, You may do so only on Your own behalf and as Your sole responsibility, and not on behalf of Licensor or any Contributor. You must obtain the recipient's agreement that any such Additional Terms are offered by You alone, and You hereby agree to indemnify, defend and hold Licensor and every Contributor harmless for any liability incurred by or claims asserted against Licensor or such Contributor by reason of any such Additional Terms. - -7. Versions of the License. Licensor may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Once Original Code has been published under a particular version of this License, You may continue to use it under the terms of that version. You may also choose to use such Original Code under the terms of any subsequent version of this License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Covered Code created under this License. - -8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in part pre-release, untested, or not fully tested works. The Covered Code may contain errors that could cause failures or loss of data, and may be incomplete or contain inaccuracies. You expressly acknowledge and agree that use of the Covered Code, or any portion thereof, is at Your sole and entire risk. THE COVERED CODE IS PROVIDED "AS IS" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND LICENSOR AND LICENSOR'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "LICENSOR" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. LICENSOR AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR WRITTEN DOCUMENTATION, INFORMATION OR ADVICE GIVEN BY LICENSOR, A LICENSOR AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. You acknowledge that the Covered Code is not intended for use in high risk activities, including, but not limited to, the design, construction, operation or maintenance of nuclear facilities, aircraft navigation, aircraft communication systems, or air traffic control machines in which case the failure of the Covered Code could lead to death, personal injury, or severe physical or environmental damage. Licensor disclaims any express or implied warranty of fitness for such uses. - -9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL LICENSOR OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF LICENSOR OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Licensor's total liability to You for all damages (other than as may be required by applicable law) under this License exceed the amount of ten dollars ($10.00). - -10. Ownership. Subject to the licenses granted under this License, each Contributor retains all rights, title and interest in and to any Modifications made by such Contributor. Licensor retains all rights, title and interest in and to the Original Code and any Modifications made by or on behalf of Licensor ("Licensor Modifications"), and such Licensor Modifications will not be automatically subject to this License. Licensor may, at its sole discretion, choose to license such Licensor Modifications under this License, or on different terms from those contained in this License or may choose not to license them at all. - -11. Termination. - -11.1 Term and Termination. The term of this License is perpetual unless terminated as provided below. This License and the rights granted hereunder will terminate: - -(a) automatically without notice from Licensor if You fail to comply with any term(s) of this License and fail to cure such breach within 30 days of becoming aware of such breach; - -(b) immediately in the event of the circumstances described in Section 12.5(b); or - -(c) automatically without notice from Licensor if You, at any time during the term of this License, commence an action for patent infringement against Licensor (including by cross-claim or counter claim in a lawsuit); - -(d) upon written notice from Licensor if You, at any time during the term of this License, commence an action for patent infringement against any third party alleging that the Covered Code itself (excluding combinations with other software or hardware) infringes any patent (including by cross-claim or counter claim in a lawsuit). - -11.2 Effect of Termination. Upon termination, You agree to immediately stop any further use, reproduction, modification, sublicensing and distribution of the Covered Code and to destroy all copies of the Covered Code that are in your possession or control. All sublicenses to the Covered Code which have been properly granted prior to termination shall survive any termination of this License. Provisions which, by their nature, should remain in effect beyond the termination of this License shall survive, including but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other for compensation, indemnity or damages of any sort solely as a result of terminating this License in accordance with its terms, and termination of this License will be without prejudice to any other right or remedy of any party. - -12. Miscellaneous. - -12.1 Government End Users. The Covered Code is a "commercial item" as defined in FAR 2.101. Government software and technical data rights in the Covered Code include only those rights customarily provided to the public as defined in this License. This customary commercial license in technical data and software is provided in accordance with FAR 12.211 (Technical Data) and 12.212 (Computer Software) and, for Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- Commercial Items) and 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). Accordingly, all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -12.2 Relationship of Parties. This License will not be construed as creating an agency, partnership, joint venture or any other form of legal association between or among You, Licensor or any Contributor, and You will not represent to the contrary, whether expressly, by implication, appearance or otherwise. - -12.3 Independent Development. Nothing in this License will impair Licensor's right to acquire, license, develop, have others develop for it, market and/or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Modifications, Derivative Works, technology or products that You may develop, produce, market or distribute. - -12.4 Waiver; Construction. Failure by Licensor or any Contributor to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. Any law or regulation which provides that the language of a contract shall be construed against the drafter will not apply to this License. - -12.5 Severability. (a) If for any reason a court of competent jurisdiction finds any provision of this License, or portion thereof, to be unenforceable, that provision of the License will be enforced to the maximum extent permissible so as to effect the economic benefits and intent of the parties, and the remainder of this License will continue in full force and effect. (b) Notwithstanding the foregoing, if applicable law prohibits or restricts You from fully and/or specifically complying with Sections 2 and/or 3 or prevents the enforceability of either of those Sections, this License will immediately terminate and You must immediately discontinue any use of the Covered Code and destroy all copies of it that are in your possession or control. - -12.6 Dispute Resolution. Any litigation or other dispute resolution between You and Licensor relating to this License shall take place in the Seattle, Washington, and You and Licensor hereby consent to the personal jurisdiction of, and venue in, the state and federal courts within that District with respect to this License. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. - -12.7 Export/Import Laws. This software is subject to all export and import laws and restrictions and regulations of the country in which you receive the Covered Code and You are solely responsible for ensuring that You do not export, re-export or import the Covered Code or any direct product thereof in violation of any such restrictions, laws or regulations, or without all necessary authorizations. - -12.8 Entire Agreement; Governing Law. This License constitutes the entire agreement between the parties with respect to the subject matter hereof. This License shall be governed by the laws of the United States and the State of Washington. - -Where You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exig que le prsent contrat et tous les documents connexes soient rdigs en anglais. -EXHIBIT A. - -"Copyright 1995-2002 RealNetworks, Inc. and/or its licensors. All Rights Reserved. - -The contents of this file, and the files included with this file, are subject to the current version of the RealNetworks Public Source License Version 1.0 (the "RPSL") available at https://www.helixcommunity.org/content/rpsl unless you have licensed the file under the RealNetworks Community Source License Version 1.0 (the "RCSL") available at https://www.helixcommunity.org/content/rcsl, in which case the RCSL will apply. You may also obtain the license terms directly from RealNetworks. You may not use this file except in compliance with the RPSL or, if you have a valid RCSL with RealNetworks applicable to this file, the RCSL. Please see the applicable RPSL or RCSL for the rights, obligations and limitations governing use of the contents of the file. - -This file is part of the Helix DNA Technology. RealNetworks is the developer of the Original code and owns the copyrights in the portions it created. - -This file, and the files included with this file, is distributed and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. - -Contributor(s): ____________________________________ - -Technology Compatibility Kit Test Suite(s) Location (if licensed under the RCSL): - -________________________________" - -Object Code Notice: Helix DNA Client technology included. Copyright RealNetworks, Inc., 1995-2002. All rights reserved. -EXHIBIT B - -Compatible Source Licenses for the RealNetworks Public Source License. The following list applies to the most recent version of the license as of October 25, 2002, unless otherwise indicated. - - * Academic Free License - * Apache Software License - * Apple Public Source License - * Artistic license - * Attribution Assurance Licenses - * BSD license - * Common Public License1 - * Eiffel Forum License - * GNU General Public License (GPL)1 - * GNU Library or "Lesser" General Public License (LGPL)1 - * IBM Public License - * Intel Open Source License - * Jabber Open Source License - * MIT license - * MITRE Collaborative Virtual Workspace License (CVW License) - * Motosoto License - * Mozilla Public License 1.0 (MPL) - * Mozilla Public License 1.1 (MPL) - * Nokia Open Source License - * Open Group Test Suite License - * Python Software Foundation License - * Ricoh Source Code Public License - * Sun Industry Standards Source License (SISSL) - * Sun Public License - * University of Illinois/NCSA Open Source License - * Vovida Software License v. 1.0 - * W3C License - * X.Net License - * Zope Public License - * zlib/libpng license - -1Note: because this license contains certain reciprocal licensing terms that purport to extend to independently developed code, You may be prohibited under the terms of this otherwise compatible license from using code licensed under its terms with Covered Code because Covered Code may only be licensed under the RealNetworks Public Source License. Any attempt to apply non RPSL license terms, including without limitation the GPL, to Covered Code is expressly forbidden. You are responsible for ensuring that Your use of Compatible Source Licensed code does not violate either the RPSL or the Compatible Source License. - -The latest version of this list can be found at: https://www.helixcommunity.org/content/complicense -EXHIBIT C - -RealNetworks' Trademark policy. - -RealNetworks defines the following trademarks collectively as "Licensor Trademarks": "RealNetworks", "RealPlayer", "RealJukebox", "RealSystem", "RealAudio", "RealVideo", "RealOne Player", "RealMedia", "Helix" or any other trademarks or trade names belonging to RealNetworks. - -RealNetworks "Licensor Trademark Policy" forbids any use of Licensor Trademarks except as permitted by and in strict compliance at all times with RealNetworks' third party trademark usage guidelines which are posted at www.realnetworks.com/info/helixlogo.html. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/rpsl-1.0_1.yml b/tests/licensedcode/data/licenses/rpsl-1.0_1.yml deleted file mode 100644 index 0d3036d70df..00000000000 --- a/tests/licensedcode/data/licenses/rpsl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - rpsl-1.0 -notes: file with weird encoding diff --git a/tests/licensedcode/data/licenses/rsa-md2.txt b/tests/licensedcode/data/licenses/rsa-md2.txt deleted file mode 100644 index 2c97f1ff259..00000000000 --- a/tests/licensedcode/data/licenses/rsa-md2.txt +++ /dev/null @@ -1,7 +0,0 @@ -Copyright © 1990-2, RSA Data Security, Inc. Created 1990. All rights reserved. - -License to copy and use this software is granted for non-commercial Internet Privacy-Enhanced Mail provided that it is identified as the "RSA Data Security, Inc. MD2 Message Digest Algorithm" in all material mentioning or referencing this software or this function. - -RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. - -These notices must be retained in any copies of any part of this documentation and/or software. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/rsa-md2.yml b/tests/licensedcode/data/licenses/rsa-md2.yml deleted file mode 100644 index 07b033a6018..00000000000 --- a/tests/licensedcode/data/licenses/rsa-md2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - rsa-md2 diff --git a/tests/licensedcode/data/licenses/ruby-2001-07-11.copying b/tests/licensedcode/data/licenses/ruby-2001-07-11.copying deleted file mode 100644 index b70bca126e8..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2001-07-11.copying +++ /dev/null @@ -1,57 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see the file GPL), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or executable - form, provided that you do at least ONE of the following: - - a) distribute the executables and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard executables non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under this terms. - - They are utils.c(partly), regex.[ch], st.[ch] and some - files under the ./missing directory. See each file for the copying - condition. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby-2001-07-11.yml b/tests/licensedcode/data/licenses/ruby-2001-07-11.yml deleted file mode 100644 index fc8d0034d1d..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2001-07-11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: This replaced the GPL COPYING file with the ruby dual licensing terms https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING - Before this the ruby license was in the README https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README - and the bottom of section 4. was changed on a regular bassis to update the list of files - and minor typos. The Ruby license was first introduced there in early 1998 https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README diff --git a/tests/licensedcode/data/licenses/ruby-2001-07-13.copying b/tests/licensedcode/data/licenses/ruby-2001-07-13.copying deleted file mode 100644 index ae19048b358..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2001-07-13.copying +++ /dev/null @@ -1,56 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see the file GPL), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or executable - form, provided that you do at least ONE of the following: - - a) distribute the executables and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard executables non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under these terms. - - For the list of those files and their copying conditions, see the - file LEGAL. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby-2001-07-13.yml b/tests/licensedcode/data/licenses/ruby-2001-07-13.yml deleted file mode 100644 index f1ab283cd0e..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2001-07-13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: |- - https://raw.githubusercontent.com/ruby/ruby/c5a7e3570690f1a6570cc3cb1876f5f77a20fe3c/COPYING - This replaced the GPL COPYING file with the ruby dual licensing terms This came just after a short lived modification that lived only for 2 days https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING Before this the ruby license was in the README https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README and the bottom of section 4. was changed on a regular bassis to update the list of files and minor typos. The Ruby license was first introduced there in early 1998 https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README diff --git a/tests/licensedcode/data/licenses/ruby-2001-09-08.copying b/tests/licensedcode/data/licenses/ruby-2001-09-08.copying deleted file mode 100644 index 719cbd0fd4f..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2001-09-08.copying +++ /dev/null @@ -1,56 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see the file GPL), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or executable - form, provided that you do at least ONE of the following: - - a) distribute the executables and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard executables non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under these terms. - - For the list of those files and their copying conditions, see the - file LEGAL. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby-2001-09-08.yml b/tests/licensedcode/data/licenses/ruby-2001-09-08.yml deleted file mode 100644 index a82c4f3decf..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2001-09-08.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: the change is only the email of the author https://raw.githubusercontent.com/ruby/ruby/67245eec7192abdc1dd0dc2510c1f6c77df89bd0/COPYING diff --git a/tests/licensedcode/data/licenses/ruby-2002-02-21.copying b/tests/licensedcode/data/licenses/ruby-2002-02-21.copying deleted file mode 100644 index 68836b6cfcb..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2002-02-21.copying +++ /dev/null @@ -1,56 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see the file GPL), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) rename any non-standard binaries so the names do not conflict - with standard binaries, which must also be provided. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or binary form, - provided that you do at least ONE of the following: - - a) distribute the binaries and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard binaries non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under these terms. - - For the list of those files and their copying conditions, see the - file LEGAL. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby-2002-02-21.yml b/tests/licensedcode/data/licenses/ruby-2002-02-21.yml deleted file mode 100644 index c2873d677c8..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2002-02-21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: the change is "executables" to "binaries" This is a short-lived changes for only 5 days - https://raw.githubusercontent.com/ruby/ruby/a08cea360d69e6a7c42154f2032590ea3e77a386/COPYING diff --git a/tests/licensedcode/data/licenses/ruby-2002-02-25.copying b/tests/licensedcode/data/licenses/ruby-2002-02-25.copying deleted file mode 100644 index b1c69b4b7a3..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2002-02-25.copying +++ /dev/null @@ -1,56 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see the file GPL), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) give non-standard binaries non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or binary form, - provided that you do at least ONE of the following: - - a) distribute the binaries and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard binaries non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under these terms. - - For the list of those files and their copying conditions, see the - file LEGAL. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby-2002-02-25.yml b/tests/licensedcode/data/licenses/ruby-2002-02-25.yml deleted file mode 100644 index c0a637cbcc0..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2002-02-25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: minor changes to section 3.c https://raw.githubusercontent.com/ruby/ruby/6d47b8a9cc988bb210fc44ce991a0212d97296e4/COPYING diff --git a/tests/licensedcode/data/licenses/ruby-2006-06-09.copying b/tests/licensedcode/data/licenses/ruby-2006-06-09.copying deleted file mode 100644 index 103da69d626..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2006-06-09.copying +++ /dev/null @@ -1,56 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -version 2 (see the file GPL), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) give non-standard binaries non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or binary form, - provided that you do at least ONE of the following: - - a) distribute the binaries and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard binaries non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under these terms. - - For the list of those files and their copying conditions, see the - file LEGAL. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby-2006-06-09.yml b/tests/licensedcode/data/licenses/ruby-2006-06-09.yml deleted file mode 100644 index cffdec03200..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2006-06-09.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: specificied that the GPL version is V2 for dual licensing https://raw.githubusercontent.com/ruby/ruby/9b383bd6cf96e1fe21c41528dec1f3ed508f335b/COPYING diff --git a/tests/licensedcode/data/licenses/ruby-2010-09-15_or_bsd-simplified.copying b/tests/licensedcode/data/licenses/ruby-2010-09-15_or_bsd-simplified.copying deleted file mode 100644 index dd72fa69e69..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2010-09-15_or_bsd-simplified.copying +++ /dev/null @@ -1,56 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the -2-clause BSDL (see the file BSDL), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) give non-standard binaries non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or binary form, - provided that you do at least ONE of the following: - - a) distribute the binaries and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard binaries non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under these terms. - - For the list of those files and their copying conditions, see the - file LEGAL. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby-2010-09-15_or_bsd-simplified.yml b/tests/licensedcode/data/licenses/ruby-2010-09-15_or_bsd-simplified.yml deleted file mode 100644 index c1242b78610..00000000000 --- a/tests/licensedcode/data/licenses/ruby-2010-09-15_or_bsd-simplified.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ruby OR bsd-simplified -notes: Changed dual license terms to ruby or gpl v2 to ruby or bsd https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING diff --git a/tests/licensedcode/data/licenses/ruby_1.txt b/tests/licensedcode/data/licenses/ruby_1.txt deleted file mode 100644 index 3e001858434..00000000000 --- a/tests/licensedcode/data/licenses/ruby_1.txt +++ /dev/null @@ -1,57 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see COPYING.txt file), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or executable - form, provided that you do at least ONE of the following: - - a) distribute the executables and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard executables non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under this terms. - - They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some - files under the ./missing directory. See each file for the copying - condition. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. diff --git a/tests/licensedcode/data/licenses/ruby_1.yml b/tests/licensedcode/data/licenses/ruby_1.yml deleted file mode 100644 index c223148f16b..00000000000 --- a/tests/licensedcode/data/licenses/ruby_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: this is an old ruby license circa 1999. diff --git a/tests/licensedcode/data/licenses/ruby_2.txt b/tests/licensedcode/data/licenses/ruby_2.txt deleted file mode 100644 index e6fa8f4e253..00000000000 --- a/tests/licensedcode/data/licenses/ruby_2.txt +++ /dev/null @@ -1,2 +0,0 @@ -This is a free software. -You can distribute/modify this under the terms of the same as Ruby. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ruby_2.yml b/tests/licensedcode/data/licenses/ruby_2.yml deleted file mode 100644 index 2b2c3298dc5..00000000000 --- a/tests/licensedcode/data/licenses/ruby_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ruby diff --git a/tests/licensedcode/data/licenses/saxpath.txt b/tests/licensedcode/data/licenses/saxpath.txt deleted file mode 100644 index dadf289a5a7..00000000000 --- a/tests/licensedcode/data/licenses/saxpath.txt +++ /dev/null @@ -1,54 +0,0 @@ -* ==================================================================== - * - * Copyright (C) 2000-2002 werken digital. - * 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 disclaimer that follows - * these conditions in the documentation and/or other materials - * provided with the distribution. - * - * 3. The name "SAXPath" must not be used to endorse or promote products - * derived from this software without prior written permission. For - * written permission, please contact license@saxpath.org. - * - * 4. Products derived from this software may not be called "SAXPath", nor - * may "SAXPath" appear in their name, without prior written permission - * from the SAXPath Project Management (pm@saxpath.org). - * - * In addition, we request (but do not require) that you include in the - * end-user documentation provided with the redistribution and/or in the - * software itself an acknowledgement equivalent to the following: - * "This product includes software developed by the - * SAXPath Project (http://www.saxpath.org/)." - * Alternatively, the acknowledgment may be graphical using the logos - * available at http://www.saxpath.org/ - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 SAXPath AUTHORS OR THE PROJECT - * 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. - * - * ==================================================================== - * This software consists of voluntary contributions made by many - * individuals on behalf of the SAXPath Project and was originally - * created by bob mcwhirter and - * James Strachan . For more information on the - * SAXPath Project, please see . - * - diff --git a/tests/licensedcode/data/licenses/saxpath.yml b/tests/licensedcode/data/licenses/saxpath.yml deleted file mode 100644 index 7b5bfdf76c0..00000000000 --- a/tests/licensedcode/data/licenses/saxpath.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - saxpath diff --git a/tests/licensedcode/data/licenses/saxpath_1.txt b/tests/licensedcode/data/licenses/saxpath_1.txt deleted file mode 100644 index e7ef944aa45..00000000000 --- a/tests/licensedcode/data/licenses/saxpath_1.txt +++ /dev/null @@ -1,53 +0,0 @@ -* ==================================================================== - * - * Copyright (C) 2000-2002 werken digital. - * 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 disclaimer that follows - * these conditions in the documentation and/or other materials - * provided with the distribution. - * - * 3. The name "SAXPath" must not be used to endorse or promote products - * derived from this software without prior written permission. For - * written permission, please contact license@saxpath.org. - * - * 4. Products derived from this software may not be called "SAXPath", nor - * may "SAXPath" appear in their name, without prior written permission - * from the SAXPath Project Management (pm@saxpath.org). - * - * In addition, we request (but do not require) that you include in the - * end-user documentation provided with the redistribution and/or in the - * software itself an acknowledgement equivalent to the following: - * "This product includes software developed by the - * SAXPath Project (http://www.saxpath.org/)." - * Alternatively, the acknowledgment may be graphical using the logos - * available at http://www.saxpath.org/ - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 SAXPath AUTHORS OR THE PROJECT - * 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. - * - * ==================================================================== - * This software consists of voluntary contributions made by many - * individuals on behalf of the SAXPath Project and was originally - * created by bob mcwhirter and - * James Strachan . For more information on the - * SAXPath Project, please see . - * \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/saxpath_1.yml b/tests/licensedcode/data/licenses/saxpath_1.yml deleted file mode 100644 index 7b5bfdf76c0..00000000000 --- a/tests/licensedcode/data/licenses/saxpath_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - saxpath diff --git a/tests/licensedcode/data/licenses/scrub.txt b/tests/licensedcode/data/licenses/scrub.txt deleted file mode 100644 index 739aba8d336..00000000000 --- a/tests/licensedcode/data/licenses/scrub.txt +++ /dev/null @@ -1,9 +0,0 @@ -SCRUB - Simple Character String Replacer Documentation - -First Release: December 1988 - -Copyright 1988-1993 Duxbury Systems, Inc. - -This program and its documentation, that is specifically the files SCRUB.EXE, SCRUB.ERM, SCRUB.EHL and SCRUB.DOC, may be distributed freely and used for any legal purpose, provided it is not altered in any way nor its notices, including this notice, obscured from view. - -Duxbury Systems, Inc. of Westford, Massachusetts, USA designs and manufactures software related to braille. We can be reached at 978-692-3000. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/scrub.yml b/tests/licensedcode/data/licenses/scrub.yml deleted file mode 100644 index 5df9c55a67d..00000000000 --- a/tests/licensedcode/data/licenses/scrub.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - scrub diff --git a/tests/licensedcode/data/licenses/sendmail.txt b/tests/licensedcode/data/licenses/sendmail.txt deleted file mode 100644 index 7c93634a602..00000000000 --- a/tests/licensedcode/data/licenses/sendmail.txt +++ /dev/null @@ -1,79 +0,0 @@ -SENDMAIL LICENSE - -The following license terms and conditions apply, unless a different -license is obtained from Sendmail, Inc., 6425 Christie Ave, Fourth Floor, -Emeryville, CA 94608, USA, or by electronic mail at license@sendmail.com. - -License Terms: - -Use, Modification and Redistribution (including distribution of any -modified or derived work) in source and binary forms is permitted only if -each of the following conditions is met: - -1. Redistributions qualify as "freeware" or "Open Source Software" under - one of the following terms: - - (a) Redistributions are made at no charge beyond the reasonable cost of - materials and delivery. - - (b) Redistributions are accompanied by a copy of the Source Code or by an - irrevocable offer to provide a copy of the Source Code for up to three - years at the cost of materials and delivery. Such redistributions - must allow further use, modification, and redistribution of the Source - Code under substantially the same terms as this license. For the - purposes of redistribution "Source Code" means the complete compilable - and linkable source code of sendmail including all modifications. - -2. Redistributions of source code must retain the copyright notices as they - appear in each source code file, these license terms, and the - disclaimer/limitation of liability set forth as paragraph 6 below. - -3. Redistributions in binary form must reproduce the Copyright Notice, - these license terms, and the disclaimer/limitation of liability set - forth as paragraph 6 below, in the documentation and/or other materials - provided with the distribution. For the purposes of binary distribution - the "Copyright Notice" refers to the following language: - "Copyright (c) 1998-2004 Sendmail, Inc. All rights reserved." - -4. Neither the name of Sendmail, Inc. nor the University of California nor - the names of their contributors may be used to endorse or promote - products derived from this software without specific prior written - permission. The name "sendmail" is a trademark of Sendmail, Inc. - -5. All redistributions must comply with the conditions imposed by the - University of California on certain embedded code, whose copyright - notice and conditions for redistribution are as follows: - - (a) Copyright (c) 1988, 1993 The Regents of the University of - California. All rights reserved. - - (b) Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - (i) Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - (ii) 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. - - (iii) Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY - SENDMAIL, INC. 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 SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF - CALIFORNIA 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 DAMAGES. - -$Revision: 8.13 $, Last updated $Date: 2004/05/11 23:57:57 $ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sendmail.yml b/tests/licensedcode/data/licenses/sendmail.yml deleted file mode 100644 index eb632998645..00000000000 --- a/tests/licensedcode/data/licenses/sendmail.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sendmail diff --git a/tests/licensedcode/data/licenses/shital-shah.txt b/tests/licensedcode/data/licenses/shital-shah.txt deleted file mode 100644 index 42e8f201038..00000000000 --- a/tests/licensedcode/data/licenses/shital-shah.txt +++ /dev/null @@ -1,8 +0,0 @@ -Copyright -Copyright, Shital Shah, 1997-2007.You may freely copy, store, distribute and use any material published on this site free of charge and without my explicit permission, provided anyone else doesn't owns copyright for it or no notice has been put explicitly stating otherwise. All programs available on this website, unless stated otherwise, can be freely copied, stored or redistributed with or without your own custom alterations. You are not required to take my explicit permission or retain original copyright notice. If you are redistributing any other material except programs available on this website, you may not alter or distort the content and you must acknowledge the original copyright notice in your redistribution. - -Terms of Use -You use any information, facts, opinions, views, material or programs available on this website at completely your risks. There are no explicit or implicit warrenties of any kind for any information, facts, opinions, views, material or programs that are expressed or available on or through this website. You completely assume any and all risks and associated liabilities that might result by usage of any information, facts, opinions, views, material or programs available on this website. - -Disclaimer -The views expressed on this website are solely mine and does not represent that of my employer or my clients.This is my official personaebsite. Most content and programs available on this website are original and authored by myself, unless otherwise noted. If you feel credit due to someone is not given or if any copyright laws are violated or object to certain content on this website, please feel free to write to me and let me know. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/shital-shah.yml b/tests/licensedcode/data/licenses/shital-shah.yml deleted file mode 100644 index 508e4fac3bd..00000000000 --- a/tests/licensedcode/data/licenses/shital-shah.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - shital-shah diff --git a/tests/licensedcode/data/licenses/should_detect_something_1.pdf b/tests/licensedcode/data/licenses/should_detect_something_1.pdf deleted file mode 100644 index 157f7bea0da..00000000000 Binary files a/tests/licensedcode/data/licenses/should_detect_something_1.pdf and /dev/null differ diff --git a/tests/licensedcode/data/licenses/should_detect_something_1.yml b/tests/licensedcode/data/licenses/should_detect_something_1.yml deleted file mode 100644 index 5197476e050..00000000000 --- a/tests/licensedcode/data/licenses/should_detect_something_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - generic-cla diff --git a/tests/licensedcode/data/licenses/should_detect_something_2.pdf b/tests/licensedcode/data/licenses/should_detect_something_2.pdf deleted file mode 100644 index 964bd49a4a8..00000000000 Binary files a/tests/licensedcode/data/licenses/should_detect_something_2.pdf and /dev/null differ diff --git a/tests/licensedcode/data/licenses/should_detect_something_2.yml b/tests/licensedcode/data/licenses/should_detect_something_2.yml deleted file mode 100644 index 5197476e050..00000000000 --- a/tests/licensedcode/data/licenses/should_detect_something_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - generic-cla diff --git a/tests/licensedcode/data/licenses/should_detect_something_3.pdf b/tests/licensedcode/data/licenses/should_detect_something_3.pdf deleted file mode 100644 index fb2d3d7da4e..00000000000 Binary files a/tests/licensedcode/data/licenses/should_detect_something_3.pdf and /dev/null differ diff --git a/tests/licensedcode/data/licenses/should_detect_something_3.yml b/tests/licensedcode/data/licenses/should_detect_something_3.yml deleted file mode 100644 index e9c27552837..00000000000 --- a/tests/licensedcode/data/licenses/should_detect_something_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - pdl-1.0 diff --git a/tests/licensedcode/data/licenses/smail-gpl.txt b/tests/licensedcode/data/licenses/smail-gpl.txt deleted file mode 100644 index ac94de5d4a9..00000000000 --- a/tests/licensedcode/data/licenses/smail-gpl.txt +++ /dev/null @@ -1,144 +0,0 @@ - SMAIL GENERAL PUBLIC LICENSE - (Clarified 11 Feb 1988) - - Copyright (C) 1988 Landon Curt Noll & Ronald S. Karr - Copyright (C) 1992 Ronald S. Karr - Copyleft (GNU) 1988 Landon Curt Noll & Ronald S. Karr - - Everyone is permitted to copy and distribute verbatim copies - of this license, but changing it is not allowed. You can also - use this wording to make the terms for other programs. - - The license agreements of most software companies keep you at the -mercy of those companies. By contrast, our general public license is -intended to give everyone the right to share SMAIL. To make sure that -you get the rights we want you to have, we need to make restrictions -that forbid anyone to deny you these rights or to ask you to surrender -the rights. Hence this license agreement. - - Specifically, we want to make sure that you have the right to give -away copies of SMAIL, that you receive source code or else can get it -if you want it, that you can change SMAIL or use pieces of it in new -free programs, and that you know you can do these things. - - To make sure that everyone has such rights, we have to forbid you to -deprive anyone else of these rights. For example, if you distribute -copies of SMAIL, you must give the recipients all the rights that you -have. You must make sure that they, too, receive or can get the -source code. And you must tell them their rights. - - Also, for our own protection, we must make certain that everyone -finds out that there is no warranty for SMAIL. If SMAIL is modified by -someone else and passed on, we want its recipients to know that what -they have is not what we distributed, so that any problems introduced -by others will not reflect on our reputation. - - Therefore we (Landon Curt Noll and Ronald S. Karr) make the following -terms which say what you must do to be allowed to distribute or change -SMAIL. - - - COPYING POLICIES - - 1. You may copy and distribute verbatim copies of SMAIL source code -as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy a valid copyright notice "Copyright -(C) 1988 Landon Curt Noll & Ronald S. Karr" (or with whatever year is -appropriate); keep intact the notices on all files that refer to this -License Agreement and to the absence of any warranty; and give any -other recipients of the SMAIL program a copy of this License -Agreement along with the program. You may charge a distribution fee -for the physical act of transferring a copy. - - 2. You may modify your copy or copies of SMAIL or any portion of it, -and copy and distribute such modifications under the terms of -Paragraph 1 above, provided that you also do the following: - - a) cause the modified files to carry prominent notices stating - that you changed the files and the date of any change; and - - b) cause the whole of any work that you distribute or publish, - that in whole or in part contains or is a derivative of SMAIL or - any part thereof, to be licensed at no charge to all third - parties on terms identical to those contained in this License - Agreement (except that you may choose to grant more extensive - warranty protection to some or all third parties, at your option). - - c) You may charge a distribution fee for the physical act of - transferring a copy, and you may at your option offer warranty - protection in exchange for a fee. - -Mere aggregation of another unrelated program with this program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other program under the scope of these terms. - - 3. You may copy and distribute SMAIL (or a portion or derivative of it, -under Paragraph 2) in object code or executable form under the terms of -Paragraphs 1 and 2 above provided that you also do one of the following: - - a) accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of - Paragraphs 1 and 2 above; or, - - b) accompany it with a written offer, valid for at least three - years, to give any third party free (except for a nominal - shipping charge) a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of - Paragraphs 1 and 2 above; or, - - c) accompany it with the information you received as to where the - corresponding source code may be obtained. (This alternative is - allowed only for non-commercial distribution and only if you - received the program in object code or executable form alone.) - -For an executable file, complete source code means all the source code for -all modules it contains; but, as a special exception, it need not include -source code for modules which are standard libraries that accompany the -operating system on which the executable file runs. - - 4. You may not copy, sublicense, distribute or transfer SMAIL -except as expressly provided under this License Agreement. Any attempt -otherwise to copy, sublicense, distribute or transfer SMAIL is void and -your rights to use the program under this License agreement shall be -automatically terminated. However, parties who have received computer -software programs from you with this License Agreement will not have -their licenses terminated so long as such parties remain in full compliance. - - 5. If you wish to incorporate parts of SMAIL into other free -programs whose distribution conditions are different, write to Landon -Curt Noll & Ronald S. Karr via the Free Software Foundation at 51 -Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. We have not yet -worked out a simple rule that can be stated here, but we will often -permit this. We will be guided by the two goals of preserving the -free status of all derivatives of our free software and of promoting -the sharing and reuse of software. - -Your comments and suggestions about our licensing policies and our -software are welcome! This contract was based on the contract made by -the Free Software Foundation. Please contact the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, -USA, or call (617) 542-5942 for details on copylefted material in -general. - - NO WARRANTY - - BECAUSE SMAIL IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO -WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING, LANDON CURT NOLL & RONALD S. KARR AND/OR -OTHER PARTIES PROVIDE SMAIL "AS IS" WITHOUT WARRANTY OF ANY KIND, -EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF SMAIL IS WITH -YOU. SHOULD SMAIL PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL -NECESSARY SERVICING, REPAIR OR CORRECTION. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL LANDON CURT NOLL & -RONALD S. KARR AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE -SMAIL AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE -(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED -INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE -PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY -ANY OTHER PARTY. diff --git a/tests/licensedcode/data/licenses/smail-gpl.yml b/tests/licensedcode/data/licenses/smail-gpl.yml deleted file mode 100644 index 70bd2c26ccd..00000000000 --- a/tests/licensedcode/data/licenses/smail-gpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - smail-gpl diff --git a/tests/licensedcode/data/licenses/smartlabs-freeware.txt b/tests/licensedcode/data/licenses/smartlabs-freeware.txt deleted file mode 100644 index 57642abc8f4..00000000000 --- a/tests/licensedcode/data/licenses/smartlabs-freeware.txt +++ /dev/null @@ -1,42 +0,0 @@ -(c) SmartLabs LLC, 2008-2009 - -Freeware Licence Agreement -This licence agreement only applies to the free version of this software. - -Terms and Conditions -BY DOWNLOADING, INSTALLING, USING, TRANSMITTING, DISTRIBUTING OR COPYING THIS SOFTWARE ("THE SOFTWARE"), YOU AGREE TO THE TERMS OF THIS AGREEMENT (INCLUDING THE SOFTWARE LICENCE AND DISCLAIMER OF WARRANTY) WITH SmartLabs LLC (with the business address at 72, Oktyabrskata str., 127521 Moscow, Russia) THE OWNER OF ALL RIGHTS IN RESPECT OF THE SOFTWARE. - -PLEASE READ THIS DOCUMENT CAREFULLY BEFORE USING THE SOFTWARE. - -IF YOU DO NOT AGREE TO ANY OF THE TERMS OF THIS LICENCE THEN DO NOT DOWNLOAD, INSTALL, USE, TRANSMIT, DISTRIBUTE OR COPY THE SOFTWARE. - -THIS DOCUMENT CONSTITUES A LICENCE TO USE THE SOFTWARE ON THE TERMS AND CONDITIONS APPEARING BELOW. - -The Software is licensed to you without charge for use only upon the terms of this licence, and SmartLabs LLC reserves all rights not expressly granted to you. SmartLabs LLC retains ownership of all copies of the Software. - -1. Licence -You may use the Software without charge. - -You may distribute exact copies of the Software to anyone. - -2. Restrictions -SmartLabs LLC reserves the right to revoke the above distribution right at any time, for any or no reason. - -YOU MAY NOT MODIFY, ADAPT, TRANSLATE, RENT, LEASE, LOAN, SELL, REQUEST DONATIONS OR CREATE DERIVATE WORKS BASED UPON THE SOFTWARE OR ANY PART THEREOF. - -The Software contains trade secrets and to protect them you may not decompile, reverse engineer, disassemble or otherwise reduce the Software to a humanly perceivable form. You agree not to divulge, directly or indirectly, until such trade secrets cease to be confidential, for any reason not your own fault. - -3. Termination -This licence is effective until terminated. The Licence will terminate automatically without notice from SmartLabs LLC if you fail to comply with any provision of this Licence. Upon termination you must destroy the Software and all copies thereof. You may terminate this Licence at any time by destroying the Software and all copies thereof. Upon termination of this licence for any reason you shall continue to be bound by the provisions of Section 2 above. Termination will be without prejudice to any rights SmartLabs LLC may have as a result of this agreement. - -4. Disclaimer of Warranty, Limitation of Remedies -TO THE FULL EXTENT PERMITTED BY LAW, SmartLabs LLC HEREBY EXCLUDES ALL CONDITIONS AND WARRANTIES, WHETHER IMPOSED BY STATUTE OR BY OPERATION OF LAW OR OTHERWISE, NOT EXPRESSLY SET OUT HEREIN. THE SOFTWARE, AND ALL ACCOMPANYING FILES, DATA AND MATERIALS ARE DISTRIBUTED "AS IS" AND WITH NO WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED. SmartLabs LLC DOES NOT WARRANT, GUARANTEE OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE, OF THE SOFTWARE WITH RESPECT TO ITS CORRECTNESS, ACCURACY, RELIABILITY, CURRENTNESS OR OTHERWISE. THE ENTIRE RISK OF USING THE SOFTWARE IS ASSUMED BY YOU. SmartLabs LLC MAKES NO EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS INCLUDING, WITHOUT LIMITATION, THE WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE WITH RESPECT TO THE SOFTWARE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY SmartLabs LLC, IT'S DISTRIBUTORS, AGENTS OR EMPLOYEES SHALL CREATE A WARRANTY, AND YOU MAY NOT RELY ON ANY SUCH INFORMATION OR ADVICE. - -IMPORTANT NOTE: Nothing in this Agreement is intended or shall be construed as excluding or modifying any statutory rights, warranties or conditions which by virtue of any national or state Fair Trading, Trade Practices or other such consumer legislation may not be modified or excluded. If permitted by such legislation, however, SmartLabs LLC' liability for any breach of any such warranty or condition shall be and is hereby limited to the supply of the Software licensed hereunder again as SmartLabs LLC at its sole discretion may determine to be necessary to correct the said breach. - -IN NO EVENT SHALL SmartLabs LLC BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, AND THE LOSS OF BUSINESS INFORMATION OR COMPUTER PROGRAMS), EVEN IF SmartLabs LLC OR ANY SmartLabs LLC REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ADDITION, IN NO EVENT DOES SmartLabs LLC AUTHORISE YOU TO USE THE SOFTWARE IN SITUATIONS WHERE FAILURE OF THE SOFTWARE TO PERFORM CAN REASONABLY BE EXPECTED TO RESULT IN A PHYSICAL INJURY, OR IN LOSS OF LIFE. ANY SUCH USE BY YOU IS ENTIRELY AT YOUR OWN RISK, AND YOU AGREE TO HOLD SmartLabs LLC HARMLESS FROM ANY CLAIMS OR LOSSES RELATING TO SUCH UNAUTHORISED USE. - -5. General -All rights of any kind in the Software which are not expressly granted in this Agreement are entirely and exclusively reserved to and by SmartLabs LLC. - -This agreement contains the entire Agreement between the parties hereto with respect to the subject matter hereof, and supersedes all prior agreements and/or understandings (oral or written). Failure or delay by SmartLabs LLC in enforcing any right or provision hereof shall not be deemed a waiver of such provision or right with respect to the instant or any subsequent breach. If any provision of this Agreement shall be held by a court of competent jurisdiction to be contrary to law, that provision will be enforced to the maximum extent permissible, and the remaining provisions of this Agreement will remain in force and effect. diff --git a/tests/licensedcode/data/licenses/smartlabs-freeware.yml b/tests/licensedcode/data/licenses/smartlabs-freeware.yml deleted file mode 100644 index aafb683c87f..00000000000 --- a/tests/licensedcode/data/licenses/smartlabs-freeware.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - smartlabs-freeware -notes: From http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/SmartLabs diff --git a/tests/licensedcode/data/licenses/softsurfer.txt b/tests/licensedcode/data/licenses/softsurfer.txt deleted file mode 100644 index 7a3988dcf64..00000000000 --- a/tests/licensedcode/data/licenses/softsurfer.txt +++ /dev/null @@ -1,5 +0,0 @@ -This code may be freely used and modified for any purpose -providing that this copyright notice is included with it. -{{copyright-holder}} makes no warranty for this code, and cannot be held -liable for any real or imagined damage resulting from its use. -Users of this code must verify correctness for their application. diff --git a/tests/licensedcode/data/licenses/softsurfer.yml b/tests/licensedcode/data/licenses/softsurfer.yml deleted file mode 100644 index 422147fb590..00000000000 --- a/tests/licensedcode/data/licenses/softsurfer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - softsurfer diff --git a/tests/licensedcode/data/licenses/srgb.txt b/tests/licensedcode/data/licenses/srgb.txt deleted file mode 100644 index 63222f90ec9..00000000000 --- a/tests/licensedcode/data/licenses/srgb.txt +++ /dev/null @@ -1,8 +0,0 @@ -To anyone who acknowledges that the file "sRGB Color Space Profile.icm" -is provided "AS IS" WITH NO EXPRESS OR IMPLIED WARRANTY: -permission to use, copy and distribute this file for any purpose is hereby -granted without fee, provided that the file is not changed including the HP -copyright notice tag, and that the name of Hewlett-Packard Company not be -used in advertising or publicity pertaining to distribution of the software -without specific, written prior permission. Hewlett-Packard Company makes -no representations about the suitability of this software for any purpose. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/srgb.yml b/tests/licensedcode/data/licenses/srgb.yml deleted file mode 100644 index 3638a6b7da1..00000000000 --- a/tests/licensedcode/data/licenses/srgb.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expressions: - - srgb -notes: | - Very similar to OSF 1990 License except for this line: - provided that the file is not changed including the HP copyright notice tag diff --git a/tests/licensedcode/data/licenses/stlport-2000.yml b/tests/licensedcode/data/licenses/stlport-2000.yml index 27c844862ee..30ebdeb02bc 100644 --- a/tests/licensedcode/data/licenses/stlport-2000.yml +++ b/tests/licensedcode/data/licenses/stlport-2000.yml @@ -1,5 +1,3 @@ license_expressions: - - stlport-4.5 - - historical - - historical - - historical + - stlport-2000 + diff --git a/tests/licensedcode/data/licenses/stu-nicholls.txt b/tests/licensedcode/data/licenses/stu-nicholls.txt deleted file mode 100644 index 7c7f3623d6d..00000000000 --- a/tests/licensedcode/data/licenses/stu-nicholls.txt +++ /dev/null @@ -1,8 +0,0 @@ -This copyright notice must be kept untouched in the stylesheet at all times. - -The original version of this stylesheet and the associated (x)html is available at -http://www.stunicholls.com/menu/pro_drop_2.html - -Copyright (c) 2005-2007 Stu Nicholls. All rights reserved. - -This stylesheet and the associated (x)html may be modified in any way to fit your requirements. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/stu-nicholls.yml b/tests/licensedcode/data/licenses/stu-nicholls.yml deleted file mode 100644 index 13f68645e18..00000000000 --- a/tests/licensedcode/data/licenses/stu-nicholls.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - stu-nicholls diff --git a/tests/licensedcode/data/licenses/sun-bcl-11-06.txt b/tests/licensedcode/data/licenses/sun-bcl-11-06.txt deleted file mode 100644 index 6e9d8a5bb47..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-11-06.txt +++ /dev/null @@ -1,135 +0,0 @@ -Sun Microsystems, Inc. - Binary Code License Agreement - - READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED - SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY - "AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE - MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA - PACKAGE, YOU AGREE TO THE TERMS OF THIS - AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE - ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE - TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END - OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL - THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE - TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE - SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE - "DECLINE" BUTTON AT THE END OF THIS AGREEMENT. - - 1. LICENSE TO USE. Sun grants you a - non-exclusive and non-transferable license for the - internal use only of the accompanying software and - documentation and any error corrections provided - by Sun (collectively "Software"), by the number of - users and the class of computer hardware for which - the corresponding fee has been paid. - - 2. RESTRICTIONS. Software is confidential and - copyrighted. Title to Software and all associated - intellectual property rights is retained by Sun - and/or its licensors. Except as specifically - authorized in any Supplemental License Terms, you - may not make copies of Software, other than a - single copy of Software for archival purposes. - Unless enforcement is prohibited by applicable - law, you may not modify, decompile, or reverse - engineer Software. Licensee acknowledges that - Licensed Software is not designed or intended for - use in the design, construction, operation or - maintenance of any nuclear facility. Sun - Microsystems, Inc. disclaims any express or - implied warranty of fitness for such uses. No - right, title or interest in or to any trademark, - service mark, logo or trade name of Sun or its - licensors is granted under this Agreement. - - 3. LIMITED WARRANTY. Sun warrants to you that for - a period of ninety (90) days from the date of - purchase, as evidenced by a copy of the receipt, - the media on which Software is furnished (if any) - will be free of defects in materials and - workmanship under normal use. Except for the - foregoing, Software is provided "AS IS". Your - exclusive remedy and Sun's entire liability under - this limited warranty will be at Sun's option to - replace Software media or refund the fee paid for - Software. - - 4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN - THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, - REPRESENTATIONS AND WARRANTIES, INCLUDING ANY - IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE - DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE - DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - - 5. LIMITATION OF LIABILITY. TO THE EXTENT NOT - PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS - LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT - OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, - INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED - REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT - OF OR RELATED TO THE USE OF OR INABILITY TO USE - SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - POSSIBILITY OF SUCH DAMAGES. In no event will - Sun's liability to you, whether in contract, tort - (including negligence), or otherwise, exceed the - amount paid by you for Software under this - Agreement. The foregoing limitations will apply - even if the above stated warranty fails of its - essential purpose. - - 6. Termination. This Agreement is effective - until terminated. You may terminate this - Agreement at any time by destroying all copies of - Software. This Agreement will terminate - immediately without notice from Sun if you fail to - comply with any provision of this Agreement. Upon - Termination, you must destroy all copies of - Software. - - 7. Export Regulations. All Software and technical - data delivered under this Agreement are subject to - US export control laws and may be subject to - export or import regulations in other countries. - You agree to comply strictly with all such laws - and regulations and acknowledge that you have the - responsibility to obtain such licenses to export, - re-export, or import as may be required after - delivery to you. - - 8. U.S. Government Restricted Rights. If - Software is being acquired by or on behalf of the - U.S. Government or by a U.S. Government prime - contractor or subcontractor (at any tier), then - the Government's rights in Software and - accompanying documentation will be only as set - forth in this Agreement; this is in accordance - with 48 CFR 227.7201 through 227.7202-4 (for - Department of Defense (DOD) acquisitions) and with - 48 CFR 2.101 and 12.212 (for non-DOD - acquisitions). - - 9. Governing Law. Any action related to this - Agreement will be governed by California law and - controlling U.S. federal law. No choice of law - rules of any jurisdiction will apply. - - 10. Severability. If any provision of this - Agreement is held to be unenforceable, this - Agreement will remain in effect with the provision - omitted, unless omission would frustrate the - intent of the parties, in which case this - Agreement will immediately terminate. - - 11. Integration. This Agreement is the entire - agreement between you and Sun relating to its - subject matter. It supersedes all prior or - contemporaneous oral or written communications, - proposals, representations and warranties and - prevails over any conflicting or additional terms - of any quote, order, acknowledgment, or other - communication between the parties relating to its - subject matter during the term of this Agreement. - No modification of this Agreement will be binding, - unless in writing and signed by an authorized - representative of each party. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-11-06.yml b/tests/licensedcode/data/licenses/sun-bcl-11-06.yml deleted file mode 100644 index b4ab7766753..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-11-06.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-11-06 diff --git a/tests/licensedcode/data/licenses/sun-bcl-11-08.txt b/tests/licensedcode/data/licenses/sun-bcl-11-08.txt deleted file mode 100644 index 31cdc63c4ec..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-11-08.txt +++ /dev/null @@ -1,55 +0,0 @@ -Sun Microsystems, Inc. -Binary Code License Agreement - -{{ProductName}} - -READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE "DECLINE" BUTTON AT THE END OF THIS AGREEMENT. - -1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively "Software"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. - -2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. - -3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. - -4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. - -6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software. - -7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - - - {{ProductName}} - - SUPPLEMENTAL LICENSE TERMS - -These supplemental license terms ("Supplemental Terms") add to or modify the terms of the Binary Code License Agreement (collectively, the "Agreement"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software. - -1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software, complete and unmodified, for the sole purpose of designing, developing and testing your Java applets and applications ("Programs"). - -2. License to Distribute Software. In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to, Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the Software in binary code form only, provided that you (i) distribute the Software complete and unmodified and only bundled as part of your Programs, (ii) do not distribute additional software intended to replace any component(s) of the Software, (iii) do not remove or alter any proprietary legends or notices contained in the Software, (iv) only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (v) agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -3. Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -4. Java Runtime Availability. Refer to the appropriate version of the Java Runtime Environment binary code license (currently located at http://www.java.sun.com/jdk/index.html) for the availability of runtime code which may be distributed with Java applets and applications. - -5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -6. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -7. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -8. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME. In addition to any terms and conditions of any third party open source/freeware license identified in the THIRDPARTYLICENSEREADME, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A - -(LFI#143342/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-11-08.yml b/tests/licensedcode/data/licenses/sun-bcl-11-08.yml deleted file mode 100644 index 94754762cd6..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-11-08.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-11-08 diff --git a/tests/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.txt b/tests/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.txt deleted file mode 100644 index 61f08019015..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.txt +++ /dev/null @@ -1,51 +0,0 @@ -Sun Microsystems, Inc. Binary Code License Agreement for the JAVATM 2 RUNTIME ENVIRONMENT (J2RE), STANDARD EDITION, VERSION 1.4.2_X - -SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. - -1.DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java 2 Platform, Standard Edition (J2SETM platform) platform on Java-enabled general purpose desktop computers and servers. - -2.LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. - -3.RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - -4.LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. - -5.DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -6.LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -7.SOFTWARE UPDATES FROM SUN. You acknowledge that at your request or consent optional features of the Software may download, install, and execute applets, applications, software extensions, and updated versions of the Software from Sun ("Software Updates"), which may require you to accept updated terms and conditions for installation. If additional terms and conditions are not presented on installation, the Software Updates will be considered part of the Software and subject to the terms and conditions of the Agreement. - -8.SOFTWARE FROM SOURCES OTHER THAN SUN. You acknowledge that, by your use of optional features of the Software and/or by requesting services that require use of the optional features of the Software, the Software may automatically download, install, and execute software applications from sources other than Sun ("Other Software"). Sun makes no representations of a relationship of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -9.TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. - -10.EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -11.TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -12.U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -13.GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -14. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -15. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A.Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -B.License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -C.License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -D.Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -E.Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -F.Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#129530/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.yml b/tests/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.yml deleted file mode 100644 index a955f815acc..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-j2re-1.4.2 diff --git a/tests/licensedcode/data/licenses/sun-bcl-j2re-5.0.txt b/tests/licensedcode/data/licenses/sun-bcl-j2re-5.0.txt deleted file mode 100644 index 079c64ef8dd..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-j2re-5.0.txt +++ /dev/null @@ -1,47 +0,0 @@ -Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 PLATFORM STANDARD EDITION RUNTIME ENVIRONMENT 5.0 - -SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. - -1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE platform) platform on Java-enabled general purpose desktop computers and servers. - -2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. - -3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - -4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. - -5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. - -8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -C. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -D. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -E. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -F. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -G. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#143333/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-j2re-5.0.yml b/tests/licensedcode/data/licenses/sun-bcl-j2re-5.0.yml deleted file mode 100644 index 637dd00be40..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-j2re-5.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-j2re-5.0 diff --git a/tests/licensedcode/data/licenses/sun-bcl-jre6.txt b/tests/licensedcode/data/licenses/sun-bcl-jre6.txt deleted file mode 100644 index 338253bd8d8..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-jre6.txt +++ /dev/null @@ -1,49 +0,0 @@ -Sun Microsystems, Inc. Binary Code License Agreement for the JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6 - -SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. - -1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "General Purpose Desktop Computers and Servers" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means Java technology applets and applications intended to run on the Java Platform Standard Edition (Java SE) platform on Java-enabled General Purpose Desktop Computers and Servers. - -2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. - -3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - -4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. - -5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. - -8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -C. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -D. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -E. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -F. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -G. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-jre6.yml b/tests/licensedcode/data/licenses/sun-bcl-jre6.yml deleted file mode 100644 index e4d1ed0d5c8..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-jre6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-jre6 diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.3.txt b/tests/licensedcode/data/licenses/sun-bcl-sdk-1.3.txt deleted file mode 100644 index 73f8b264d62..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.3.txt +++ /dev/null @@ -1,46 +0,0 @@ -Java 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x -Sun Microsystems, Inc. Binary Code License Agreement - -1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively "Software"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. "General Purpose Desktop Computers and Servers" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means Java technology applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE) platform on Java-enabled General Purpose Desktop Computers and Servers. - -2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. - -3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. - -4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. - -6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software. - -7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -Java 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x SUPPLEMENTAL LICENSE TERMS - -These supplemental license terms ("Supplemental Terms") add to or modify the terms of the Binary Code License Agreement (collectively, the "Agreement"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the binary form of the Software complete and unmodified (unless otherwise specified in the applicable README file) for the sole purpose of designing, developing, testing, and running your Java applets and applications intended to run on Programs. - -2. License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that: (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -3. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables, (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, and (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -4. Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -6. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -7. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -8. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME. In addition to any terms and conditions of any third party open source/freeware license identified in the THIRDPARTYLICENSEREADME, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#143968/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.3.yml b/tests/licensedcode/data/licenses/sun-bcl-sdk-1.3.yml deleted file mode 100644 index 6fa54ddd8aa..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-sdk-1.3 diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.txt b/tests/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.txt deleted file mode 100644 index d2c180945f2..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.txt +++ /dev/null @@ -1,57 +0,0 @@ -Sun Microsystems, Inc. Binary Code License Agreement -for the JAVA 2 SOFTWARE DEVELOPMENT KIT (J2SDK), STANDARD EDITION, -VERSION 1.4.2_X - -SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. - -1.DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "General Purpose Desktop Computers and Servers" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems is excluded from this definition and not licensed under this Agreement. "Programs" means Java technology applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE) platform on Java-enabled General Purpose Desktop Computers and Servers. - -2.LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. - -3.RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - -4.LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. - -5.DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -6.LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -7.SOFTWARE UPDATES FROM SUN. You acknowledge that at your request or consent optional features of the Software may download, install, and execute applets, applications, software extensions, and updated versions of the Software from Sun ("Software Updates"), which may require you to accept updated terms and conditions for installation. If additional terms and conditions are not presented on installation, the Software Updates will be considered part of the Software and subject to the terms and conditions of the Agreement. - -8.SOFTWARE FROM SOURCES OTHER THAN SUN. You acknowledge that, by your use of optional features of the Software and/or by requesting services that require use of the optional features of the Software, the Software may automatically download, install, and execute software applications from sources other than Sun ("Other Software"). Sun makes no representations of a relationship of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -9.TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. - -10.EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -11.TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -12.U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -13.GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -14. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -15. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A.Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -B.License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -C.License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -D.Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -E.Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM 2 Software Development Kit, Standard Edition, Version 1.4.2; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2003, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE , and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (i) provides you prompt notice of the claim; (ii) gives you sole control of the defense and settlement of the claim; (iii) provides you, at your expense, with all available information, assistance and authority to defend; and (iv) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration. - -F.Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -G.Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -H.Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#129530/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.yml b/tests/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.yml deleted file mode 100644 index e73365d84eb..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-sdk-1.4.2 diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-5.0.txt b/tests/licensedcode/data/licenses/sun-bcl-sdk-5.0.txt deleted file mode 100644 index 2d1384dab68..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-5.0.txt +++ /dev/null @@ -1,51 +0,0 @@ -Sun Microsystems, Inc. Binary Code License Agreement -for the JAVA 2 PLATFORM STANDARD EDITION DEVELOPMENT KIT 5.0 - -SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. - -1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE platform) platform on Java-enabled general purpose desktop computers and servers. - -2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. - -3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - -4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. - -5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. - -8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -C. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -D. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -E. Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM 2 Platform Standard Edition Development Kit 5.0; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2004, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE , and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (i) provides you prompt notice of the claim; (ii) gives you sole control of the defense and settlement of the claim; (iii) provides you, at your expense, with all available information, assistance and authority to defend; and (iv) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration. - -F. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -G. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. -(LFI#141623/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-5.0.yml b/tests/licensedcode/data/licenses/sun-bcl-sdk-5.0.yml deleted file mode 100644 index 5858667435a..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-5.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-sdk-5.0 diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-6.0.txt b/tests/licensedcode/data/licenses/sun-bcl-sdk-6.0.txt deleted file mode 100644 index c588d62f825..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-6.0.txt +++ /dev/null @@ -1,52 +0,0 @@ -Sun Microsystems, Inc. Binary Code License Agreement -for the JAVA SE DEVELOPMENT KIT (JDK), VERSION 6 - -1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "General Purpose Desktop Computers and Servers" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means Java technology applets and applications intended to run on the Java Platform Standard Edition (Java SE) platform on Java-enabled General Purpose Desktop Computers and Servers. - -2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. - -3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - -4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. - -5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. - -7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. - -8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. - -9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. - -10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). - -11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. - -12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non- transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -C. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. - -D. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. - -E. Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM SE Development Kit 6; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2006, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE, and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (a) provides you prompt notice of the claim; (b) gives you sole control of the defense and settlement of the claim; (c) provides you, at your expense, with all available information, assistance and authority to defend; and (d) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration. - -F. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -G. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. - -H. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -I. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/. - -For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-bcl-sdk-6.0.yml b/tests/licensedcode/data/licenses/sun-bcl-sdk-6.0.yml deleted file mode 100644 index 2d2b4dc9cfa..00000000000 --- a/tests/licensedcode/data/licenses/sun-bcl-sdk-6.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-bcl-sdk-6.0 diff --git a/tests/licensedcode/data/licenses/sun-entitlement-jaf.txt b/tests/licensedcode/data/licenses/sun-entitlement-jaf.txt deleted file mode 100644 index da507a92adc..00000000000 --- a/tests/licensedcode/data/licenses/sun-entitlement-jaf.txt +++ /dev/null @@ -1,369 +0,0 @@ -Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE - -Licensee/Company: Entity receiving Software. - -Effective Date: Date of delivery of the Software to -You. - -Software: JavaMail 1.4. - -License Term: Perpetual (subject to termination under -the SLA). - -Licensed Unit: Software Copy. - -Licensed unit Count: Unlimited. - -Permitted Uses: - -1. You may reproduce and use the Software for -Individual, Commercial, or Research and Instructional -Use for the purposes of designing, developing, -testing, and running Your applets and -application("Programs"). - -2. Subject to the terms and conditions of this -Agreement and restrictions and exceptions set forth in -the Software's documentation, You may reproduce and -distribute portions of Software identified as a -redistributable in the documentation -("Redistributable"), provided that: - -(a) you distribute Redistributable complete and -unmodified and only bundled as part of Your Programs, - -(b) your Programs add significant and primary -functionality to the Redistributable, - -(c) you distribute Redistributable for the sole -purpose of running your Programs, - -(d) you do not distribute additional software intended -to replace any -component(s) of the Redistributable, - -(e) you do not remove or alter any proprietary legends -or notices contained in or on the Redistributable. - -(f) you only distribute the Redistributable subject to -a license agreement that protects Sun's interests -consistent with the terms contained in this -Agreement, and - -(g) you agree to defend and indemnify Sun and its -licensors from and against any damages, costs, -liabilities, settlement amounts and/or expenses -(including attorneys' fees) incurred in connection -with any claim, lawsuit or action by any third party -that arises or results from the use or distribution of -any and all Programs and/or Redistributable. - -3. Java Technology Restrictions. You may not create, -modify, or change the behavior of, or authorize your -licensees to create, modify, or change the behavior -of, classes, interfaces, or subpackages that are in -any way identified as "java", "javax", "sun" or -similar convention as specified by Sun in any naming -convention designation. - -B. Sun Microsystems, Inc. ("Sun") -SOFTWARE LICENSE AGREEMENT - -READ THE TERMS OF THIS AGREEMENT ("AGREEMENT") -CAREFULLY BEFORE OPENING SOFTWARE MEDIA PACKAGE. BY -OPENING SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS -OF THIS AGREEMENT. IF YOU ARE ACCESSING SOFTWARE -ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE -TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END OF -THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE -TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR -PLACE OF PURCHASE FOR A REFUND OR, IF SOFTWARE IS -ACCESSED ELECTRONICALLY, SELECT THE "DECLINE" (OR -"EXIT") BUTTON AT THE END OF THIS AGREEMENT. IF YOU -HAVE SEPARATELY AGREED TO LICENSE TERMS ("MASTER -TERMS") FOR YOUR LICENSE TO THIS SOFTWARE, THEN -SECTIONS 1-5 OF THIS AGREEMENT ("SUPPLEMENTAL LICENSE -TERMS") SHALL SUPPLEMENT AND SUPERSEDE THE MASTER -TERMS IN RELATION TO THIS SOFTWARE. - -1. Definitions. - -(a) "Entitlement" means the collective set of -applicable documents authorized by Sun evidencing your -obligation to pay associated fees (if any) for the -license, associated Services, and the authorized scope -of use of Software under this Agreement. - -(b) "Licensed Unit" means the unit of measure by -which your use of Software and/or Service is licensed, -as described in your Entitlement. - -(c) "Permitted Use" means the licensed Software -use(s) authorized in this Agreement as specified in -your Entitlement. The Permitted Use for any bundled -Sun software not specified in your Entitlement will be -evaluation use as provided in Section 3. - -(d) "Service" means the service(s) that Sun or its -delegate will provide, if any, as selected in your -Entitlement and as further described in the applicable -service listings at www.sun.com/service/servicelist. - -(e) "Software" means the Sun software described in -your Entitlement. Also, certain software may be -included for evaluation use under Section 3. - - -(f) "You" and "Your" means the individual or legal -entity specified in the Entitlement, or for evaluation -purposes, the entity performing the evaluation. - -2. License Grant and Entitlement. - -Subject to the terms of your Entitlement, Sun grants -you a nonexclusive, nontransferable limited license to -use Software for its Permitted Use for the license -term. Your Entitlement will specify (a) Software -licensed, (b) the Permitted Use, (c) the license term, -and (d) the Licensed Units. - -Additionally, if your Entitlement includes Services, -then it will also specify the (e) Service and (f) -service term. - -If your rights to Software or Services are limited in -duration and the date such rights begin is other than -the purchase date, your Entitlement will provide that -beginning date(s). - -The Entitlement may be delivered to you in various -ways depending on the manner in which you obtain -Software and Services, for example, the Entitlement -may be provided in your receipt, invoice or your -contract with Sun or authorized Sun reseller. It may -also be in electronic format if you download Software. - -3. Permitted Use. - -As selected in your Entitlement, one or more of the -following Permitted Uses will apply to your use of -Software. Unless you have an Entitlement that -expressly permits it, you may not use Software for any -of the other Permitted Uses. If you don't have an -Entitlement, or if your Entitlement doesn't cover -additional software delivered to you, then such -software is for your Evaluation Use. - -(a) Evaluation Use. You may evaluate Software -internally for a period of 90 days from your first -use. - -(b) Research and Instructional Use. You may use -Software internally to design, develop and test, and -also to provide instruction on such uses. - -(c) Individual Use. You may use Software internally -for personal, individual use. - -(d) Commercial Use. You may use Software internally -for your own commercial purposes. - -(e) Service Provider Use. You may make Software -functionality accessible (but not by providing -Software itself or through outsourcing services) to -your end users in an extranet deployment, but not to -your affiliated companies or to government agencies. - -4. Licensed Units. - -Your Permitted Use is limited to the number of -Licensed Units stated in your Entitlement. If you -require additional Licensed Units, you will need -additional Entitlement(s). - -5. Restrictions. - -(a) The copies of Software provided to you under this -Agreement are licensed, not sold, to you by Sun. Sun -reserves all rights not expressly granted. (b) You may -make a single archival copy of Software, but otherwise -may not copy, modify, or distribute Software. However -if the Sun documentation accompanying Software lists -specific portions of Software, such as header files, -class libraries, reference source code, and/or -redistributable files, that may be handled -differently, you may do so only as provided in the Sun -documentation. (c) You may not rent, lease, lend or -encumber Software. (d) Unless enforcement is -prohibited by applicable law, you may not decompile, -or reverse engineer Software. (e) The terms and -conditions of this Agreement will apply to any -Software updates, provided to you at Sun's discretion, -that replace and/or supplement the original Software, -unless such update contains a separate license. (f) -You may not publish or provide the results of any -benchmark or comparison tests run on Software to any -third party without the prior written consent of Sun. -(g) Software is confidential and copyrighted. (h) -Unless otherwise specified, if Software is delivered -with embedded or bundled software that enables -functionality of Software, you may not use such -software on a stand-alone basis or use any portion of -such software to interoperate with any program(s) -other than Software. (i) Software may contain programs -that perform automated collection of system data -and/or automated software updating services. System -data collected through such programs may be used by -Sun, its subcontractors, and its service delivery -partners for the purpose of providing you with remote -system services and/or improving Sun's software and -systems. (j) Software is not designed, licensed or -intended for use in the design, construction, -operation or maintenance of any nuclear facility and -Sun and its licensors disclaim any express or implied -warranty of fitness for such uses. (k) No right, title -or interest in or to any trademark, service mark, logo -or trade name of Sun or its licensors is granted under -this Agreement. - -6. Term and Termination. - -The license and service term are set forth in your -Entitlement(s). Your rights under this Agreement will -terminate immediately without notice from Sun if you -materially breach it or take any action in derogation -of Sun's and/or its licensors' rights to Software. Sun -may terminate this Agreement should any Software -become, or in Sun's reasonable opinion likely to -become, the subject of a claim of intellectual -property infringement or trade secret -misappropriation. Upon termination, you will cease use -of, and destroy, Software and confirm compliance in -writing to Sun. Sections 1, 5, 6, 7, and 9-15 will -survive termination of the Agreement. - -7. Java Compatibility and Open Source. - -Software may contain Java technology. You may not -create additional classes to, or modifications of, the -Java technology, except under compatibility -requirements available under a separate agreement -available at www.java.net. - -Sun supports and benefits from the global community of -open source developers, and thanks the community for -its important contributions and open standards-based -technology, which Sun has adopted into many of its -products. - -Please note that portions of Software may be provided -with notices and open source licenses from such -communities and third parties that govern the use of -those portions, and any licenses granted hereunder do -not alter any rights and obligations you may have -under such open source licenses, however, the -disclaimer of warranty and limitation of liability -provisions in this Agreement will apply to all -Software in this distribution. - -8. Limited Warranty. - -Sun warrants to you that for a period of 90 days from -the date of purchase, as evidenced by a copy of the -receipt, the media on which Software is furnished (if -any) will be free of defects in materials and -workmanship under normal use. Except for the -foregoing, Software is provided "AS IS". Your -exclusive remedy and Sun's entire liability under this -limited warranty will be at Sun's option to replace -Software media or refund the fee paid for Software. -Some states do not allow limitations on certain -implied warranties, so the above may not apply to you. -This limited warranty gives you specific legal rights. -You may have others, which vary from state to state. - -9. Disclaimer of Warranty. - -UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR -IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, -INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT -ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE -DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -10. Limitation of Liability. - -TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL -SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, -PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, -CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER -CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING -OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE -SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. In no event will Sun's -liability to you, whether in contract, tort (including -negligence), or otherwise, exceed the amount paid by -you for Software under this Agreement. The foregoing -limitations will apply even if the above stated -warranty fails of its essential purpose. Some states -do not allow the exclusion of incidental or -consequential damages, so some of the terms above may -not be applicable to you. - -11. Export Regulations. - -All Software, documents, technical data, and any other -materials delivered under this Agreement are subject -to U.S. export control laws and may be subject to -export or import regulations in other countries. You -agree to comply strictly with these laws and -regulations and acknowledge that you have the -responsibility to obtain any licenses to export, -re-export, or import as may be required after delivery -to you. - -12. U.S. Government Restricted Rights. - -If Software is being acquired by or on behalf of the -U.S. Government or by a U.S. Government prime -contractor or subcontractor (at any tier), then the -Government's rights in Software and accompanying -documentation will be only as set forth in this -Agreement; this is in accordance with 48 CFR 227.7201 -through 227.7202-4 (for Department of Defense (DOD) -acquisitions) and with 48 CFR 2.101 and 12.212 (for -non-DOD acquisitions). - -13. Governing Law. - -Any action related to this Agreement will be governed -by California law and controlling U.S. federal law. No -choice of law rules of any jurisdiction will apply. - -14. Severability. - -If any provision of this Agreement is held to be -unenforceable, this Agreement will remain in effect -with the provision omitted, unless omission would -frustrate the intent of the parties, in which case -this Agreement will immediately terminate. - -15. Integration. - -This Agreement, including any terms contained in your -Entitlement, is the entire agreement between you and -Sun relating to its subject matter. It supersedes all -prior or contemporaneous oral or written -communications, proposals, representations and -warranties and prevails over any conflicting or -additional terms of any quote, order, acknowledgment, -or other communication between the parties relating to -its subject matter during the term of this Agreement. -No modification of this Agreement will be binding, -unless in writing and signed by an authorized -representative of each party. - -Please contact Sun Microsystems, Inc. 4150 Network -Circle, Santa Clara, California 95054 if you have -questions. - diff --git a/tests/licensedcode/data/licenses/sun-entitlement-jaf.yml b/tests/licensedcode/data/licenses/sun-entitlement-jaf.yml deleted file mode 100644 index da968788d32..00000000000 --- a/tests/licensedcode/data/licenses/sun-entitlement-jaf.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-entitlement-jaf diff --git a/tests/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.txt b/tests/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.txt deleted file mode 100644 index b5e0cb42663..00000000000 --- a/tests/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.txt +++ /dev/null @@ -1,339 +0,0 @@ -JAVA WEB SERVICES DEVELOPER PACK, VERSION 1.6 -Sun Microsystems Inc. Software License Agreement - - -SUN IS WILLING TO LICENSE THE ACCOMPANYING BINARY SOFTWARE IN MACHINE- -READABLE FORM, TOGETHER WITH ACCOMPANYING DOCUMENTATION (COLLECTIVELY -"SOFTWARE") TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE -TERMS AND CONDITION CONTAINED IN THIS SOFTWARE LICENSE AGREEMENT. READ -THE TERMS AND CONDITIONS OF THIS SOFTWARE LICENSE AGREEMENT CAREFULLY -BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE -MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS SOFTWARE LICENSE -AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE -YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE -END OF THIS SOFTWARE LICENSE AGREEMENT. IF YOU DO NOT AGREE TO ALL -THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF -PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, -SELECT THE "DECLINE" BUTTON AT THE END OF THIS SOFTWARE LICENSE -AGREEMENT. - -LICENSE TO EVALUATE EA SOFTWARE: The Binary Code License Agreement -("BCL") and the Evaluation Terms ("Evaluation Terms") below shall apply -to the portions of the Software identified as Early Access in the -Software's Release Notes. The BCL and the Evaluation Terms shall -collectively be referred to as the Evaluation Agreement ("Evaluation -Agreement"). - -LICENSE TO USE FCS SOFTWARE: The BCL and the Supplemental Terms -("Supplemental Terms") provided following the BCL shall apply to -portions of the Software identified as FCS Software in the Software's -Release Notes. BCL and the Supplemental Terms shall collectively be -referred to as the Agreement ("Agreement"). - - -EVALUATION TERMS - -The terms of the Evaluation Agreement shall apply to portions of -Software identified as Early Access in the Software's Release Notes -("Software"). These Evaluation Terms add to or modify the terms of the -BCL. Capitalized terms not defined in these Evaluation Terms shall have -the same meanings ascribed to them in the BCL. These Evaluation Terms -shall supersede any inconsistent or conflicting terms in the BCL below, -or in any license contained within the Software. - -I. LICENSE TO EVALUATE. Sun grants to you, a non-exclusive, non- -transferable, royalty-free and limited license to use one (1) copy of -the Software internally for the purposes of evaluation only for one -hundred eighty (180) days after the date you download the Software from -Sun ("Evaluation Period"). No license is granted to you for any other -purpose. You may not sell, rent, loan or otherwise encumber or transfer -the Software in whole or in part, to any third party. Licensee shall -have no right to use the Software for productive or commercial use. - -II. DUTIES. You agree to evaluate and test the Software for use in your -software environment and provide feedback to Sun in a manner reasonably -requested by Sun. Any and all test results, error data, reports or -other information, feedback or materials made or provided by you -relating to Software (collectively, "Feedback") is the exclusive -property of Sun and you hereby assigns all Feedback to Sun at no cost -to Sun. Sun may use such Feedback in any manner and for any purpose, -without limitation, liability or obligation to you. - -III. CONFIDENTIAL INFORMATION. For purposes of the Evaluation -Agreement, "Confidential Information" means: (i) business and technical -information and any source code or binary code, which Sun discloses to -Licensee related to Software; (ii) Licensee's feedback based on -Software; and (iii) the terms, conditions, and existence of this -Agreement. Licensee may not disclose or use Confidential Information, -except for the purposes specified in this Agreement. You will protect -the Confidential Information with the same degree of care, but not less -than a reasonable degree of care, as Licensee uses to protect its own -Confidential Information. You must restrict access to Confidential -Information to your employees or contractors with a need for access to -perform their employment or contractual obligations and who have agreed -in writing to be bound by a confidentiality obligation, which -incorporates the protections and restrictions substantially as set -forth in this Agreement. Your obligations regarding Confidential -Information will expire no less than five (5) years from the date of -receipt of the Confidential Information, except for Sun source code -which will be protected in perpetuity. You agree that Software contains -Sun trade secrets. Notwithstanding any provisions contained in this -Agreement concerning nondisclosure and non-use of the Confidential -Information, the nondisclosure obligations of this section will not -apply to any portion of Confidential Information that you can -demonstrate in writing is: (i) now, or hereafter through no act or -failure to act on the part of you becomes, generally known to the -public; (ii) known to you at the time of receiving the Confidential -Information without an obligation of confidentiality; (iii) hereafter -rightfully furnished to you by a third party without restriction on -disclosure; or (iv) independently developed by you without any use -ofthe Confidential Information. - -IV. TERMINATION AND/OR EXPIRATION. Upon expiration of the Evaluation -Period, unless terminated earlier by Sun, you agree to immediately -cease use of and destroy Software. Either party may terminate this -Evaluation Agreement upon ten (10) days' written notice to the other -party. However, Sun may terminate this Evaluation Agreement immediately -should any Software become, or in Sun's opinion be likely to become, -the subject of a claim of infringement of a patent, trade secret or -copyright. Sun may terminate this Evaluation Agreement immediately -should you materially breach any of its provisions or take any action -in derogation of Sun's rights to the Confidential Information licensed -to you. Upon termination or expiration of this Evaluation Agreement, -you will immediately cease use of and destroy Software, any copies -thereof and provide to Sun a written statement certifying that you have -complied with the foregoing obligations. Rights and obligations under -this Evaluation Agreement which by their nature should survive, will -remain in effect after termination or expiration hereof. - -V. NO SUPPORT. Sun is under no obligation to support Software or to -provide upgrades or error corrections ("Software Updates") to the -Software. If Sun, at its sole option, supplies Software Updates to you, -the Software Updates will be considered part of Software, and subject -to the terms of this Agreement. - -VI. LIMITATION OF LIABILITY. Licensee acknowledges that the Software -may be experimental and that the Software may have defects or -deficiencies, which cannot or will not be corrected by Sun. Licensee -will hold Sun harmless from any claims based on Licensee's use of the -Software for any purposes other than those of internal evaluation, and -from any claims that later versions or releases of any Software -furnished to Licensee are incompatible with the Software provided to -Licensee under this Agreement. - -VII. NO SUPPLEMENTAL TERMS. The Supplemental Terms following the BCL do -not apply to the Evaluation Agreement. Portions of Software identified -as Early Access in the Software's Release Notes may not be -redistributed even if identified as Redistributable in the Software's -Release Notes. - -VIII. Trademarks and Logos. You acknowledge and agree as between you -and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET -trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related -trademarks, service marks, logos and other brand designations ("Sun -Marks"), and you agree to comply with the Sun Trademark and Logo Usage -Requirements currently located at -http://www.sun.com/policies/trademarks. Any use you make of the Sun -Marks inures to Sun's benefit. - -IX. Source Code. Software may contain source code that is provided -solely for reference purposes pursuant to the terms of this Agreement. -Source code may not be redistributed. - -X. Third Party Licenses. Additional copyright notices and license terms -applicable to portions of the software are set forth in the -THIRDPARTYLICENSEREADME file. - -Sun Microsystems, Inc. -Binary Code License Agreement - -READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE -TERMS (COLLECTIVELY "AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE -MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE -TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE -ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING -THE "ACCEPT" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE -TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE -OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED -ELECTRONICALLY, SELECT THE "DECLINE" BUTTON AT THE END OF THIS -AGREEMENT. - -1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable -license for the internal use only of the accompanying software and -documentation and any error corrections provided by Sun (collectively -"Software"), by the number of users and the class of computer hardware -for which the corresponding fee has been paid. - -2. RESTRICTIONS. Software is confidential and copyrighted. Title to -Software and all associated intellectual property rights is retained by -Sun and/or its licensors. Except as specifically authorized in any -Supplemental License Terms, you may not make copies of Software, other -than a single copy of Software for archival purposes. Unless -enforcement is prohibited by applicable law, you may not modify, -decompile, or reverse engineer Software. Licensee acknowledges that -Licensed Software is not designed or intended for use in the design, -construction, operation or maintenance of any nuclear facility. Sun -Microsystems, Inc. disclaims any express or implied warranty of fitness -for such uses. No right, title or interest in or to any trademark, -service mark, logo or trade name of Sun or its licensors is granted -under this Agreement. - -3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety -(90) days from the date of purchase, as evidenced by a copy of the -receipt, the media on which Software is furnished (if any) will be free -of defects in materials and workmanship under normal use. Except for -the foregoing, Software is provided "AS IS". Your exclusive remedy and -Sun's entire liability under this limited warranty will be at Sun's -option to replace Software media or refund the fee paid for Software. - -4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL -EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, -INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE -EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO -EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT -OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR -PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, -ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, -EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no -event will Sun's liability to you, whether in contract, tort (including -negligence), or otherwise, exceed the amount paid by you for Software -under this Agreement. The foregoing limitations will apply even if the -above stated warranty fails of its essential purpose. - -6. Termination. This Agreement is effective until terminated. You may -terminate this Agreement at any time by destroying all copies of -Software. This Agreement will terminate immediately without notice from -Sun if you fail to comply with any provision of this Agreement. Upon -Termination, you must destroy all copies of Software. - -7. Export Regulations. All Software and technical data delivered under -this Agreement are subject to US export control laws and may be subject -to export or import regulations in other countries. You agree to comply -strictly with all such laws and regulations and acknowledge that you -have the responsibility to obtain such licenses to export, re-export, -or import as may be required after delivery to you. - -8. U.S. Government Restricted Rights. If Software is being acquired by -or on behalf of the U.S. Government or by a U.S. Government prime -contractor or subcontractor (at any tier), then the Government's rights -in Software and accompanying documentation will be only as set forth in -this Agreement; this is in accordance with 48 CFR 227.7201 through -227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 -CFR 2.101 and 12.212 (for non-DOD acquisitions). - -9. Governing Law. Any action related to this Agreement will be governed -by California law and controlling U.S. federal law. No choice of law -rules of any jurisdiction will apply. - -10. Severability. If any provision of this Agreement is held to be -unenforceable, this Agreement will remain in effect with the provision -omitted, unless omission would frustrate the intent of the parties, in -which case this Agreement will immediately terminate. - -11. Integration. This Agreement is the entire agreement between you and -Sun relating to its subject matter. It supersedes all prior or -contemporaneous oral or written communications, proposals, -representations and warranties and prevails over any conflicting or -additional terms of any quote, order, acknowledgment, or other -communication between the parties relating to its subject matter during -the term of this Agreement. No modification of this Agreement will be -binding, unless in writing and signed by an authorized representative -of each party. - -SUPPLEMENTAL LICENSE TERMS - -These supplemental license terms ("Supplemental Terms") add to or -modify the terms of the Binary Code License Agreement (collectively, -the "Agreement"). Capitalized terms not defined in these Supplemental -Terms shall have the same meanings ascribed to them in the Agreement. -These Supplemental Terms shall supersede any inconsistent or -conflicting terms in the Agreement, or in any license contained within -the Software. - -A. Software Internal Use and Development License Grant. Subject to the -terms and conditions of this Agreement, including, but not limited to -Section C (Java Technology Restrictions) of these Supplemental Terms, -Sun grants you a non-exclusive, non-transferable, limited license to -reproduce internally and use internally the binary form of the Software -complete and unmodified for the purposes of designing, developing, -testing, and running your Java applets and applications intended to run -on the Java platform ("Programs"), except for certain files identified -in the Software "Release Notes" file which may only be used for the -purposes of designing, developing, and testing Programs. - -B. License to Distribute Redistributables. Subject to the terms and -conditions of this Agreement, including but not limited to Section C -(Java Technology Restrictions) of these Supplemental Terms, Sun grants -you a non-exclusive, non-transferable, limited license to reproduce and -distribute those components specifically identified as redistributable -in the Software "Release Notes" file ("Redistributables") provided -that: (i) you distribute the Redistributables complete and unmodified -(unless otherwise specified in the applicable Release Notes file), and -only bundled as part of your Programs, (ii) you do not distribute -additional software intended to supersede any portion of the -Redistributables, (iii) you do not remove or alter any proprietary -legends or notices contained in or on the Redistributables, (iv) you -only distribute the Redistributables pursuant to a license agreement -that protects Sun's interests consistent with the terms contained in -the Agreement, (v) you agree to defend and indemnify Sun and its -licensors from and against any damages, costs, liabilities, settlement -amounts and/or expenses (including attorneys' fees) incurred in -connection with any claim, lawsuit or action by any third party that -arises or results from the use or distribution of any and all Programs -and/or Software, and (vi) if you distribute the Java Secure Socket -Extension package, include the following statement as part of product -documentation (whether hard copy or electronic), as a part of a -copyright page or proprietary rights notice page, in an "About" box or -in any other form reasonably designed to make the statement visible to -users of the Software: "This product includes code licensed from RSA -Data Security". - -C. Java Technology Restrictions. You may not modify the Java Platform -Interface ("JPI", identified as classes contained within the "java" -package or any subpackages of the "java" package), by creating -additional classes within the JPI or otherwise causing the addition to -or modification of the classes in the JPI. In the event that you -create an additional class and associated API(s) which (i) extends the -functionality of the Java platform, and (ii) is exposed to third party -software developers for the purpose of developing additional software -which invokes such additional API, you must promptly publish broadly an -accurate specification for such API for free use by all developers. You -may not create, or authorize your licensees to create, additional -classes, interfaces, or subpackages that are in any way identified as -"java", "javax", "sun" or similar convention as specified by Sun in any -naming convention designation. - -D. Java Runtime Availability. Refer to the appropriate version of the -Java Runtime Environment binary code license (currently located at -http://www.java.sun.com/jdk/index.html) for the availability of runtime -code which may be distributed with Java applets and applications. - -E. Trademarks and Logos. You acknowledge and agree as between you and -Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET -trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related -trademarks, service marks, logos and other brand designations ("Sun -Marks"), and you agree to comply with the Sun Trademark and Logo Usage -Requirements currently located at -http://www.sun.com/policies/trademarks. Any use you make of the Sun -Marks inures to Sun's benefit. - -F. Source Code. Software may contain source code that is provided -solely for reference purposes pursuant to the terms of this Agreement. -Source code may not be redistributed unless expressly provided for in -this Agreement. - -G. Third Party Licenses. Additional copyright notices and license terms -applicable to portions of the software are set forth in the -THIRDPARTYLICENSEREADME file. - -H. Termination for Infringement. Either party may terminate this -Agreement immediately should any Software become, or in either -party'sopinion be likely to become, the subject of a claim of -infringement of any intellectual property right. - -For inquiries please contact: Sun Microsystems, Inc. 4150 Network -Circle, Santa Clara, California 95054. - diff --git a/tests/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.yml b/tests/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.yml deleted file mode 100644 index 513066b8245..00000000000 --- a/tests/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-java-web-services-dev-pack-1.6 diff --git a/tests/licensedcode/data/licenses/sun-rpc.txt b/tests/licensedcode/data/licenses/sun-rpc.txt deleted file mode 100644 index baece515d82..00000000000 --- a/tests/licensedcode/data/licenses/sun-rpc.txt +++ /dev/null @@ -1,26 +0,0 @@ -Sun RPC is a product of Sun Microsystems, Inc. and is provided for -unrestricted use provided that this legend is included on all tape -media and as a part of the software program in whole or part. Users -may copy or modify Sun RPC without charge, but are not authorized -to license or distribute it to anyone else except as part of a product or -program developed by the user. - -SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. - -Sun RPC is provided with no support and without any obligation on the -part of Sun Microsystems, Inc. to assist in its use, correction, -modification or enhancement. - -SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -OR ANY PART THEREOF. - -In no event will Sun Microsystems, Inc. be liable for any lost revenue -or profits or other special, indirect and consequential damages, even if -Sun has been advised of the possibility of such damages. - -Sun Microsystems, Inc. -2550 Garcia Avenue -Mountain View, California 94043 \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-rpc.yml b/tests/licensedcode/data/licenses/sun-rpc.yml deleted file mode 100644 index 93fda2572e4..00000000000 --- a/tests/licensedcode/data/licenses/sun-rpc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-rpc diff --git a/tests/licensedcode/data/licenses/sun-sdk-spec-1.1.txt b/tests/licensedcode/data/licenses/sun-sdk-spec-1.1.txt deleted file mode 100644 index 2f4b2bcd951..00000000000 --- a/tests/licensedcode/data/licenses/sun-sdk-spec-1.1.txt +++ /dev/null @@ -1,43 +0,0 @@ -Java(TM) Development Kit (JDK(TM)) ("Specification") -Version: 1.1.8 -Status: FCS - -Copyright 2002 Sun Microsystems, Inc. -4150 Network Circle, Santa Clara, California 95054, U.S.A -All rights reserved. - -NOTICE; LIMITED LICENSE GRANTS - -Sun Microsystems, Inc. ("Sun") hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under the Sun's applicable intellectual property rights to view, download, use and reproduce the Specification only for the purpose of internal evaluation, which shall be understood to include developing applications intended to run on an implementation of the Specification provided that such applications do not themselves implement any portion(s) of the Specification. - -Sun also grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty free, limited license (without the right to sublicense) under any applicable copyrights or patent rights it may have in the Specification to create and/or distribute an Independent Implementation of the Specification that: (i) fully implements the Spec(s) including all its required interfaces and functionality; (ii) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented; and (iii) passes the TCK (including satisfying the requirements of the applicable TCK Users Guide) for such Specification. The foregoing license is expressly conditioned on your not acting outside its scope. No license is granted hereunder for any other purpose. - -You need not include limitations (i)-(iii) from the previous paragraph or any other particular "pass through" requirements in any license You grant concerning the use of your Independent Implementation or products derived from it. However, except with respect to implementations of the Specification (and products derived from them) that satisfy limitations (i)-(iii) from the previous paragraph, You may neither: (a) grant or otherwise pass through to your licensees any licenses under Sun's applicable intellectual property rights; nor (b) authorize your licensees to make any claims concerning their implementation's compliance with the Spec in question. - -For the purposes of this Agreement: "Independent Implementation" shall mean an implementation of the Specification that neither derives from any of Sun's source code or binary code materials nor, except with an appropriate and separate license from Sun, includes any of Sun's source code or binary code materials; and "Licensor Name Space" shall mean the public class or interface declarations whose names begin with "java", "javax", "com.sun" or their equivalents in any subsequent naming convention adopted by Sun through the Java Community Process, or any recognized successors or replacements thereof. - -This Agreement will terminate immediately without notice from Sun if you fail to comply with any material provision of or act outside the scope of the licenses granted above. - -TRADEMARKS - -No right, title, or interest in or to any trademarks, service marks, or trade names of Sun or Sun's licensors is granted hereunder. Sun, Sun Microsystems, the Sun logo, Java, J2SE, JDK, and the Java Coffee Cup logo are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. - -DISCLAIMER OF WARRANTIES - -THE SPECIFICATION IS PROVIDED "AS IS". SUN MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER RIGHTS. This document does not represent any commitment to release or implement any portion of the Specification in any product. - -THE SPECIFICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION THEREIN; THESE CHANGES WILL BE INCORPORATED INTO NEW VERSIONS OF THE SPECIFICATION, IF ANY. SUN MAY MAKE IMPROVEMENTS AND/OR CHANGES TO THE PRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THE SPECIFICATION AT ANY TIME. Any use of such changes in the Specification will be governed by the then-current license for the applicable version of the Specification. - -LIMITATION OF LIABILITY - -TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN IF SUN AND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -You will indemnify, hold harmless, and defend Sun and its licensors from any claims arising or resulting from: (i) your use of the Specification; (ii) the use or distribution of your Java application, applet and/or clean room implementation; and/or (iii) any claims that later versions or releases of any Specification furnished to you are incompatible with the Specification provided to you under this license. - -RESTRICTED RIGHTS LEGEND - -U.S. Government: If this Specification is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Software and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions). - -REPORT - -You may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with your use of the Specification ("Feedback"). To the extent that you provide Sun with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Sun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/sun-sdk-spec-1.1.yml b/tests/licensedcode/data/licenses/sun-sdk-spec-1.1.yml deleted file mode 100644 index 06ea715cf3a..00000000000 --- a/tests/licensedcode/data/licenses/sun-sdk-spec-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-sdk-spec-1.1 diff --git a/tests/licensedcode/data/licenses/supervisor.txt b/tests/licensedcode/data/licenses/supervisor.txt deleted file mode 100644 index 3c8cd732edc..00000000000 --- a/tests/licensedcode/data/licenses/supervisor.txt +++ /dev/null @@ -1,164 +0,0 @@ -Supervisor is licensed under the following license: - - A copyright notice accompanies this license document that identifies - the copyright holders. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions in source code must retain the accompanying - copyright notice, this list of conditions, and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the accompanying - copyright notice, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Names of the copyright holders must not be used to endorse or - promote products derived from this software without prior - written permission from the copyright holders. - - 4. If any files are modified, you must cause the modified files to - carry prominent notices stating that you changed the files and - the date of any change. - - Disclaimer - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND - ANY EXPRESSED 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 - HOLDERS 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. - -http_client.py code is based on code by Daniel Krech, which was -released under this license: - - LICENSE AGREEMENT FOR RDFLIB 0.9.0 THROUGH 2.3.1 - ------------------------------------------------ - Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com/ - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * 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. - - * Neither the name of Daniel Krech 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 - OWNER 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. - -Medusa, the asynchronous communications framework upon which -supervisor's server and client code is based, was created by Sam -Rushing: - - Medusa was once distributed under a 'free for non-commercial use' - license, but in May of 2000 Sam Rushing changed the license to be - identical to the standard Python license at the time. The standard - Python license has always applied to the core components of Medusa, - this change just frees up the rest of the system, including the http - server, ftp server, utilities, etc. Medusa is therefore under the - following license: - - ============================== - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and - that both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Sam Rushing not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. - - SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN - NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS - OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION - WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ============================== - -Some software in this distribution is released under the Zope Public -License (as marked in its file header): - - Zope Public License (ZPL) Version 2.1 - ------------------------------------- - - A copyright notice accompanies this license document that - identifies the copyright holders. - - This license has been certified as open source. It has also - been designated as GPL compatible by the Free Software - Foundation (FSF). - - Redistribution and use in source and binary forms, with or - without modification, are permitted provided that the - following conditions are met: - - 1. Redistributions in source code must retain the - accompanying copyright notice, this list of conditions, - and the following disclaimer. - - 2. Redistributions in binary form must reproduce the accompanying - copyright notice, this list of conditions, and the - following disclaimer in the documentation and/or other - materials provided with the distribution. - - 3. Names of the copyright holders must not be used to - endorse or promote products derived from this software - without prior written permission from the copyright - holders. - - 4. The right to distribute this software or to use it for - any purpose does not give you the right to use - Servicemarks (sm) or Trademarks (tm) of the copyright - holders. Use of them is covered by separate agreement - with the copyright holders. - - 5. If any files are modified, you must cause the modified - files to carry prominent notices stating that you changed - the files and the date of any change. - - Disclaimer - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' - AND ANY EXPRESSED 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 HOLDERS 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/tests/licensedcode/data/licenses/supervisor.yml b/tests/licensedcode/data/licenses/supervisor.yml deleted file mode 100644 index e82d3db648f..00000000000 --- a/tests/licensedcode/data/licenses/supervisor.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - supervisor -notes: this is a composite license with repoze and bsd-new and historical and zpl-2.1 diff --git a/tests/licensedcode/data/licenses/synopsys-attribution.txt b/tests/licensedcode/data/licenses/synopsys-attribution.txt deleted file mode 100644 index dfd128f8826..00000000000 --- a/tests/licensedcode/data/licenses/synopsys-attribution.txt +++ /dev/null @@ -1,25 +0,0 @@ -Synopsys HS OTG Linux Software Driver and documentation (hereinafter, -"Software") is an Unsupported proprietary work of Synopsys, Inc. unless -otherwise expressly agreed to in writing between Synopsys and you. - -The Software IS NOT an item of Licensed Software or Licensed Product under -any End User Software License Agreement or Agreement for Licensed Product -with Synopsys or any supplement thereto. You are permitted to use and -redistribute this Software in source and binary forms, with or without -modification, provided that redistributions of source code must retain this -notice. You may not view, use, disclose, copy or distribute this file or -any information contained herein except pursuant to this license grant from -Synopsys. If you do not agree with this notice, including the disclaimer -below, then you are not authorized to use the Software. - -THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS" BASIS -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS 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. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/synopsys-attribution.yml b/tests/licensedcode/data/licenses/synopsys-attribution.yml deleted file mode 100644 index a588c3f5082..00000000000 --- a/tests/licensedcode/data/licenses/synopsys-attribution.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - synopsys-attribution diff --git a/tests/licensedcode/data/licenses/tcp-wrappers.txt b/tests/licensedcode/data/licenses/tcp-wrappers.txt deleted file mode 100644 index 1668a66166e..00000000000 --- a/tests/licensedcode/data/licenses/tcp-wrappers.txt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- - -As of June 1, 2001, the text below constitutes the TCP Wrappers license. - -/************************************************************************ -* Copyright 1995 by Wietse Venema. All rights reserved. Some individual -* files may be covered by other copyrights. -* -* This material was originally written and compiled by Wietse Venema at -* Eindhoven University of Technology, The Netherlands, in 1990, 1991, -* 1992, 1993, 1994 and 1995. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that this entire copyright notice -* is duplicated in all such copies. -* -* This software is provided "as is" and without any expressed or implied -* warranties, including, without limitation, the implied warranties of -* merchantibility and fitness for any particular purpose. -************************************************************************/ - ------BEGIN PGP SIGNATURE----- -Version: 2.6.3i -Charset: noconv - -iQCVAwUBOxo3X9yA8qbVMny5AQHT8wP9FZOtWxEM4SMj4Sj9QezMERz31n5fd0pC -jUDnyzmosOudM/iFlv6YfyR820aNvNNI+AdtgWYRPVHocVNOrZcmu7IADO8hlU// -v8BeBE0bdjeVmOQYRQfXgt3J2q0b8x8Q5a/LCLVLh8k6DFGg8AfEbLDQWhi1JiXC -0JsaB8crR3M= -=0AMW ------END PGP SIGNATURE----- \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/tcp-wrappers.yml b/tests/licensedcode/data/licenses/tcp-wrappers.yml deleted file mode 100644 index 4303534bbd0..00000000000 --- a/tests/licensedcode/data/licenses/tcp-wrappers.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - tcp-wrappers diff --git a/tests/licensedcode/data/licenses/ti-restricted.txt b/tests/licensedcode/data/licenses/ti-restricted.txt deleted file mode 100644 index ac3d5bf4287..00000000000 --- a/tests/licensedcode/data/licenses/ti-restricted.txt +++ /dev/null @@ -1,11 +0,0 @@ -**| Permission is hereby granted to licensees of Texas Instruments |** -**| Incorporated (TI) products to use this computer program for the sole |** -**| purpose of implementing a licensee product based on TI products. |** -**| No other rights to reproduce, use, or disseminate this computer |** -**| program, whether in part or in whole, are granted. |** -**| |** -**| TI makes no representation or warranties with respect to the |** -**| performance of this computer program, and specifically disclaims |** -**| any responsibility for any damages, special or consequential, |** -**| connected with the use of this program. |** -**| |** \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/ti-restricted.yml b/tests/licensedcode/data/licenses/ti-restricted.yml deleted file mode 100644 index 6476fedeb21..00000000000 --- a/tests/licensedcode/data/licenses/ti-restricted.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ti-restricted diff --git a/tests/licensedcode/data/licenses/tpl-1.0.txt b/tests/licensedcode/data/licenses/tpl-1.0.txt deleted file mode 100644 index 358cf543d5f..00000000000 --- a/tests/licensedcode/data/licenses/tpl-1.0.txt +++ /dev/null @@ -1,188 +0,0 @@ - -Terracotta Public License (version 1.0) - -1. Definitions - -1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source Code. - -1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. "License" means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -a. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -b. Any new file that contains any part of the Original Code or previous Modifications. - -c. Any new file that is contributed or otherwise made available under the terms of this License. - -1.10. "Original Code" means Source Code and Executable form of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License - -2.1. The Initial Developer Grant - -THE INITIAL DEVELOPER HEREBY GRANTS YOU A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE, SUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS: - -a. under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and - -b. under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). - -c. the licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes or otherwise makes available Original Code under the terms of this License. - -d. Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. - -2.2. Contributor Grant - -SUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS, EACH CONTRIBUTOR HEREBY GRANTS YOU AND INITIAL DEVELOPER A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE: - -a. under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and - -b. under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - -c. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first distributes or otherwise makes available the Covered Code. - -d. Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. - -3. Distribution Obligations - -3.1. Application of License - -ANY COVERED CODE THAT YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE IS GOVERNED BY THE TERMS OF THIS LICENSE, INCLUDING WITHOUT LIMITATION SECTION 2.2. THE SOURCE CODE VERSION OF COVERED CODE MAY BE DISTRIBUTED ONLY UNDER THE TERMS OF THIS LICENSE OR A FUTURE VERSION OF THIS LICENSE RELEASED UNDER SECTION 6.1, AND YOU MUST INCLUDE A COPY OF THIS LICENSE WITH EVERY COPY OF THE SOURCE CODE YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE. YOU MAY NOT OFFER OR IMPOSE ANY TERMS ON ANY SOURCE CODE VERSION THAT ALTERS OR RESTRICTS THE APPLICABLE VERSION OF THIS LICENSE OR THE RECIPIENTS' RIGHTS HEREUNDER. HOWEVER, YOU MAY INCLUDE AN ADDITIONAL DOCUMENT OFFERING THE ADDITIONAL RIGHTS DESCRIBED IN SECTION 3.5. - -3.2. Availability of Source Code - -ANY MODIFICATION WHICH YOU CREATE OR TO WHICH YOU CONTRIBUTE MUST BE MADE AVAILABLE IN SOURCE CODE FORM UNDER THE TERMS OF THIS LICENSE EITHER ON THE SAME MEDIA AS AN EXECUTABLE VERSION OR VIA AN ACCEPTED ELECTRONIC DISTRIBUTION MECHANISM TO ANYONE TO WHOM YOU MADE AN EXECUTABLE VERSION AVAILABLE; AND IF MADE AVAILABLE VIA ELECTRONIC DISTRIBUTION MECHANISM, MUST REMAIN AVAILABLE FOR AT LEAST TWELVE (12) MONTHS AFTER THE DATE IT INITIALLY BECAME AVAILABLE, OR AT LEAST SIX (6) MONTHS AFTER A SUBSEQUENT VERSION OF THAT PARTICULAR MODIFICATION HAS BEEN MADE AVAILABLE TO SUCH RECIPIENTS. YOU ARE RESPONSIBLE FOR ENSURING THAT THE SOURCE CODE VERSION REMAINS AVAILABLE EVEN IF THE ELECTRONIC DISTRIBUTION MECHANISM IS MAINTAINED BY A THIRD PARTY. - -3.3. Description of Modifications - -YOU MUST CAUSE ALL COVERED CODE TO WHICH YOU CONTRIBUTE TO CONTAIN A FILE DOCUMENTING THE CHANGES YOU MADE TO CREATE THAT COVERED CODE AND THE DATE OF ANY CHANGE. YOU MUST INCLUDE A PROMINENT STATEMENT THAT THE MODIFICATION IS DERIVED, DIRECTLY OR INDIRECTLY, FROM ORIGINAL CODE PROVIDED BY THE INITIAL DEVELOPER AND INCLUDING THE NAME OF THE INITIAL DEVELOPER IN (A) THE SOURCE CODE, AND (B) IN ANY NOTICE IN AN EXECUTABLE VERSION OR RELATED DOCUMENTATION IN WHICH YOU DESCRIBE THE ORIGIN OR OWNERSHIP OF THE COVERED CODE. - -3.4. Intellectual Property Matters - -(a) Third Party Claims - -IF CONTRIBUTOR HAS KNOWLEDGE THAT A LICENSE UNDER A THIRD PARTY'S INTELLECTUAL PROPERTY RIGHTS IS REQUIRED TO EXERCISE THE RIGHTS GRANTED BY SUCH CONTRIBUTOR UNDER SECTIONS 2.1 OR 2.2, CONTRIBUTOR MUST INCLUDE A TEXT FILE WITH THE SOURCE CODE DISTRIBUTION TITLED "LEGAL" WHICH DESCRIBES THE CLAIM AND THE PARTY MAKING THE CLAIM IN SUFFICIENT DETAIL THAT A RECIPIENT WILL KNOW WHOM TO CONTACT. IF CONTRIBUTOR OBTAINS SUCH KNOWLEDGE AFTER THE MODIFICATION IS MADE AVAILABLE AS DESCRIBED IN SECTION 3.2, CONTRIBUTOR SHALL PROMPTLY MODIFY THE LEGAL FILE IN ALL COPIES CONTRIBUTOR MAKES AVAILABLE THEREAFTER AND SHALL TAKE OTHER STEPS (SUCH AS NOTIFYING APPROPRIATE MAILING LISTS OR NEWSGROUPS) REASONABLY CALCULATED TO INFORM THOSE WHO RECEIVED THE COVERED CODE THAT NEW KNOWLEDGE HAS BEEN OBTAINED. - -(b) Contributor APIs - -IF CONTRIBUTOR'S MODIFICATIONS INCLUDE AN APPLICATION PROGRAMMING INTERFACE AND CONTRIBUTOR HAS KNOWLEDGE OF PATENT LICENSES WHICH ARE REASONABLY NECESSARY TO IMPLEMENT THAT API, CONTRIBUTOR MUST ALSO INCLUDE THIS INFORMATION IN THE LEGAL FILE. - -(c) Representations. - -CONTRIBUTOR REPRESENTS THAT, EXCEPT AS DISCLOSED PURSUANT TO SECTION 3.4 (A) ABOVE, CONTRIBUTOR BELIEVES THAT CONTRIBUTOR'S MODIFICATIONS ARE CONTRIBUTOR'S ORIGINAL CREATION(S) AND/OR CONTRIBUTOR HAS SUFFICIENT RIGHTS TO GRANT THE RIGHTS CONVEYED BY THIS LICENSE. - -3.5. Required Notices - -YOU MUST DUPLICATE THE NOTICE IN EXHIBIT A IN EACH FILE OF THE SOURCE CODE. IF IT IS NOT POSSIBLE TO PUT SUCH NOTICE IN A PARTICULAR SOURCE CODE FILE DUE TO ITS STRUCTURE, THEN YOU MUST INCLUDE SUCH NOTICE IN A LOCATION (SUCH AS A RELEVANT DIRECTORY) WHERE A USER WOULD BE LIKELY TO LOOK FOR SUCH A NOTICE. IF YOU CREATED ONE OR MORE MODIFICATION(S) YOU MAY ADD YOUR NAME AS A CONTRIBUTOR TO THE NOTICE DESCRIBED IN EXHIBIT A. YOU MUST ALSO DUPLICATE THIS LICENSE IN ANY DOCUMENTATION FOR THE SOURCE CODE WHERE YOU DESCRIBE RECIPIENTS' RIGHTS OR OWNERSHIP RIGHTS RELATING TO COVERED CODE. YOU MAY CHOOSE TO OFFER, AND TO CHARGE A FEE FOR, WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATIONS TO ONE OR MORE RECIPIENTS OF COVERED CODE. HOWEVER, YOU MAY DO SO ONLY ON YOUR OWN BEHALF, AND NOT ON BEHALF OF THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU MUST MAKE IT ABSOLUTELY CLEAR THAN ANY SUCH WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATION IS OFFERED BY YOU ALONE, AND YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF WARRANTY, SUPPORT, INDEMNITY OR LIABILITY TERMS YOU OFFER. - -3.6. Distribution of Executable Versions - -YOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE COVERED CODE IN EXECUTABLE FORM ONLY IF THE REQUIREMENTS OF SECTIONS 3.1, 3.2, 3.3, 3.4 AND 3.5 HAVE BEEN MET FOR THAT COVERED CODE, AND IF YOU INCLUDE A NOTICE STATING THAT THE SOURCE CODE VERSION OF THE COVERED CODE IS AVAILABLE UNDER THE TERMS OF THIS LICENSE, INCLUDING A DESCRIPTION OF HOW AND WHERE YOU HAVE FULFILLED THE OBLIGATIONS OF SECTION 3.2. THE NOTICE MUST BE CONSPICUOUSLY INCLUDED IN ANY NOTICE IN AN EXECUTABLE VERSION, RELATED DOCUMENTATION OR COLLATERAL IN WHICH YOU DESCRIBE RECIPIENTS' RIGHTS RELATING TO THE COVERED CODE. YOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION OF COVERED CODE OR OWNERSHIP RIGHTS UNDER A LICENSE OF YOUR CHOICE, WHICH MAY CONTAIN TERMS DIFFERENT FROM THIS LICENSE, PROVIDED THAT YOU ARE IN COMPLIANCE WITH THE TERMS OF THIS LICENSE AND THAT THE LICENSE FOR THE EXECUTABLE VERSION DOES NOT ATTEMPT TO LIMIT OR ALTER THE RECIPIENT'S RIGHTS IN THE SOURCE CODE VERSION FROM THE RIGHTS SET FORTH IN THIS LICENSE. IF YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION UNDER A DIFFERENT LICENSE YOU MUST MAKE IT ABSOLUTELY CLEAR THAT ANY TERMS WHICH DIFFER FROM THIS LICENSE ARE OFFERED BY YOU ALONE, NOT BY THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF ANY SUCH TERMS YOU OFFER. - -3.7. Larger Works - -YOU MAY CREATE A LARGER WORK BY COMBINING COVERED CODE WITH OTHER CODE NOT GOVERNED BY THE TERMS OF THIS LICENSE AND DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE LARGER WORK AS A SINGLE PRODUCT. IN SUCH A CASE, YOU MUST MAKE SURE THE REQUIREMENTS OF THIS LICENSE ARE FULFILLED FOR THE COVERED CODE. - -4. Inability to Comply Due to Statute or Regulation - -IF IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ANY OF THE TERMS OF THIS LICENSE WITH RESPECT TO SOME OR ALL OF THE COVERED CODE DUE TO STATUTE, JUDICIAL ORDER, OR REGULATION THEN YOU MUST: (A) COMPLY WITH THE TERMS OF THIS LICENSE TO THE MAXIMUM EXTENT POSSIBLE; AND (B) DESCRIBE THE LIMITATIONS AND THE CODE THEY AFFECT. SUCH DESCRIPTION MUST BE INCLUDED IN THE LEGAL FILE DESCRIBED IN SECTION 3.4 AND MUST BE INCLUDED WITH ALL DISTRIBUTIONS OF THE SOURCE CODE. EXCEPT TO THE EXTENT PROHIBITED BY STATUTE OR REGULATION, SUCH DESCRIPTION MUST BE SUFFICIENTLY DETAILED FOR A RECIPIENT OF ORDINARY SKILL TO BE ABLE TO UNDERSTAND IT. - -5. Application of this License - -THIS LICENSE APPLIES TO CODE TO WHICH THE INITIAL DEVELOPER HAS ATTACHED THE NOTICE IN EXHIBIT A AND TO RELATED COVERED CODE. - -6. Versions of the License - -6.1. New Versions - -TERRACOTTA, INC. ("TERRACOTTA") MAY PUBLISH REVISED AND/OR NEW VERSIONS OF THE LICENSE FROM TIME TO TIME. EACH VERSION WILL BE GIVEN A DISTINGUISHING VERSION NUMBER. - -6.2. Effect of New Versions - -ONCE COVERED CODE HAS BEEN PUBLISHED UNDER A PARTICULAR VERSION OF THE LICENSE, YOU MAY ALWAYS CONTINUE TO USE IT UNDER THE TERMS OF THAT VERSION. YOU MAY ALSO CHOOSE TO USE SUCH COVERED CODE UNDER THE TERMS OF ANY SUBSEQUENT VERSION OF THE LICENSE PUBLISHED BY TERRACOTTA. NO ONE OTHER THAN TERRACOTTA HAS THE RIGHT TO MODIFY THE TERMS APPLICABLE TO COVERED CODE CREATED UNDER THIS LICENSE. - -6.3. Derivative Works of License; Antecedent Licenses - -IF YOU CREATE OR USE A MODIFIED VERSION OF THIS LICENSE (WHICH YOU MAY ONLY DO IN ORDER TO APPLY IT TO CODE WHICH IS NOT ALREADY COVERED CODE GOVERNED BY THIS LICENSE), YOU MUST (A) RENAME YOUR LICENSE SO THAT THE PHRASES "TERRACOTTA", "TPL", OR ANY CONFUSINGLY SIMILAR PHRASE DO NOT APPEAR IN YOUR LICENSE (EXCEPT TO NOTE THAT YOUR LICENSE DIFFERS FROM THIS LICENSE) AND (B) OTHERWISE MAKE IT CLEAR THAT YOUR VERSION OF THE LICENSE CONTAINS TERMS WHICH DIFFER FROM THE TERRACOTTA PUBLIC LICENSE. (FILLING IN THE NAME OF THE INITIAL DEVELOPER, ORIGINAL CODE OR CONTRIBUTOR IN THE NOTICE DESCRIBED IN EXHIBIT A SHALL NOT OF THEMSELVES BE DEEMED TO BE MODIFICATIONS OF THIS LICENSE.) - -THIS TERRACOTTA PUBLIC LICENSE (TPL) IS SIMILAR TO, AND CONTAINS SAMPLES FROM, THE MOZILLA PUBLIC LICENSE (MPL) AND THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL). HOWEVER, THIS TPL CONTAINS TERMS WHICH DIFFER FROM THOSE CONTAINED IN THE MPL AND THE CDDL. - -7. Disclaimer of Warranty - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. Termination - -8.1. THIS LICENSE AND THE RIGHTS GRANTED HEREUNDER WILL TERMINATE AUTOMATICALLY IF YOU FAIL TO COMPLY WITH TERMS HEREIN AND FAIL TO CURE SUCH BREACH WITHIN 30 DAYS OF BECOMING AWARE OF THE BREACH. ALL SUBLICENSES TO THE COVERED CODE WHICH ARE PROPERLY GRANTED SHALL SURVIVE ANY TERMINATION OF THIS LICENSE. PROVISIONS WHICH, BY THEIR NATURE, MUST REMAIN IN EFFECT BEYOND THE TERMINATION OF THIS LICENSE SHALL SURVIVE. - -8.2. IF YOU INITIATE LITIGATION BY ASSERTING A PATENT INFRINGEMENT CLAIM (EXCLUDING DECLARATORY JUDGMENT ACTIONS) AGAINST INITIAL DEVELOPER OR A CONTRIBUTOR (THE INITIAL DEVELOPER OR CONTRIBUTOR AGAINST WHOM YOU FILE SUCH ACTION IS REFERRED TO AS "PARTICIPANT") ALLEGING THAT: - -a. such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (1) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (2) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. - -b. any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. - -8.3. IF YOU ASSERT A PATENT INFRINGEMENT CLAIM AGAINST PARTICIPANT ALLEGING THAT SUCH PARTICIPANT'S CONTRIBUTOR VERSION DIRECTLY OR INDIRECTLY INFRINGES ANY PATENT WHERE SUCH CLAIM IS RESOLVED (SUCH AS BY LICENSE OR SETTLEMENT) PRIOR TO THE INITIATION OF PATENT INFRINGEMENT LITIGATION, THEN THE REASONABLE VALUE OF THE LICENSES GRANTED BY SUCH PARTICIPANT UNDER SECTIONS 2.1 OR 2.2 SHALL BE TAKEN INTO ACCOUNT IN DETERMINING THE AMOUNT OR VALUE OF ANY PAYMENT OR LICENSE. - -8.4. IN THE EVENT OF TERMINATION UNDER SECTIONS 8.1 OR 8.2 ABOVE, ALL END USER LICENSE AGREEMENTS (EXCLUDING DISTRIBUTORS AND RESELLERS) WHICH HAVE BEEN VALIDLY GRANTED BY YOU OR ANY DISTRIBUTOR HEREUNDER PRIOR TO TERMINATION SHALL SURVIVE TERMINATION. - -9. Limitation of Liability - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. Government End Users - -THE COVERED CODE IS A "COMMERCIAL ITEM," AS THAT TERM IS DEFINED IN 48 C.F.R. 2.101 (OCT. 1995), CONSISTING OF "COMMERCIAL COMPUTER SOFTWARE" AND "COMMERCIAL COMPUTER SOFTWARE DOCUMENTATION," AS SUCH TERMS ARE USED IN 48 C.F.R. 12.212 (SEPT. 1995). CONSISTENT WITH 48 C.F.R. 12.212 AND 48 C.F.R. 227.7202-1 THROUGH 227.7202-4 (JUNE 1995), ALL U.S. GOVERNMENT END USERS ACQUIRE COVERED CODE WITH ONLY THOSE RIGHTS SET FORTH HEREIN. - -11. Miscellaneous - -THIS LICENSE REPRESENTS THE COMPLETE AGREEMENT CONCERNING SUBJECT MATTER HEREOF. IF ANY PROVISION OF THIS LICENSE IS HELD TO BE UNENFORCEABLE, SUCH PROVISION SHALL BE REFORMED ONLY TO THE EXTENT NECESSARY TO MAKE IT ENFORCEABLE. THIS LICENSE SHALL BE GOVERNED BY CALIFORNIA LAW PROVISIONS (EXCEPT TO THE EXTENT APPLICABLE LAW, IF ANY, PROVIDES OTHERWISE), EXCLUDING ITS CONFLICT-OF-LAW PROVISIONS. WITH RESPECT TO DISPUTES IN WHICH AT LEAST ONE PARTY IS A CITIZEN OF, OR AN ENTITY CHARTERED OR REGISTERED TO DO BUSINESS IN THE UNITED STATES OF AMERICA, ANY LITIGATION RELATING TO THIS LICENSE SHALL BE SUBJECT TO THE JURISDICTION OF THE FEDERAL COURTS OF THE NORTHERN DISTRICT OF CALIFORNIA, WITH VENUE LYING IN SANTA CLARA COUNTY, CALIFORNIA, WITH THE LOSING PARTY RESPONSIBLE FOR COSTS, INCLUDING WITHOUT LIMITATION, COURT COSTS AND REASONABLE ATTORNEYS' FEES AND EXPENSES. THE APPLICATION OF THE UNITED NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL SALE OF GOODS IS EXPRESSLY EXCLUDED. ANY LAW OR REGULATION WHICH PROVIDES THAT THE LANGUAGE OF A CONTRACT SHALL BE CONSTRUED AGAINST THE DRAFTER SHALL NOT APPLY TO THIS LICENSE. YOU AGREE THAT YOU ALONE ARE RESPONSIBLE FOR COMPLIANCE WITH THE UNITED STATES EXPORT ADMINISTRATION REGULATIONS (AND THE EXPORT CONTROL LAWS AND REGULATIONS OF ANY OTHER COUNTRIES) WHEN YOU USE, DISTRIBUTE, OR OTHERWISE MAKE AVAILABLE ANY COVERED CODE. - -12. Responsibility for Claims - -AS BETWEEN INITIAL DEVELOPER AND THE CONTRIBUTORS, EACH PARTY IS RESPONSIBLE FOR CLAIMS AND DAMAGES ARISING, DIRECTLY OR INDIRECTLY, OUT OF ITS UTILIZATION OF RIGHTS UNDER THIS LICENSE AND YOU AGREE TO WORK WITH INITIAL DEVELOPER AND CONTRIBUTORS TO DISTRIBUTE SUCH RESPONSIBILITY ON AN EQUITABLE BASIS. NOTHING HEREIN IS INTENDED OR SHALL BE DEEMED TO CONSTITUTE ANY ADMISSION OF LIABILITY. - -13. Multiple-Licensed Code - -INITIAL DEVELOPER MAY DESIGNATE PORTIONS OF THE COVERED CODE AS "MULTIPLE-LICENSED". "MULTIPLE-LICENSED" MEANS THAT THE INITIAL DEVELOPER PERMITS YOU TO UTILIZE PORTIONS OF THE COVERED CODE UNDER YOUR CHOICE OF THE TPL OR THE ALTERNATIVE LICENSES, IF ANY, SPECIFIED BY THE INITIAL DEVELOPER IN THE FILE DESCRIBED IN EXHIBIT A. - -14. Certain Attribution Requirements - -THIS LICENSE DOES NOT GRANT ANY LICENSE OR RIGHTS TO USE THE TRADEMARKS "TERRACOTTA," ANY "TERRACOTTA" LOGOS, OR ANY OTHER TRADEMARKS OF TERRACOTTA, INC. - -HOWEVER, IN ADDITION TO THE OTHER NOTICE OBLIGATIONS, ALL COPIES OF THE COVERED CODE IN EXECUTABLE AND SOURCE CODE FORM DISTRIBUTED OR OTHERWISE MADE AVAILABLE MUST, AS A FORM OF ATTRIBUTION OF THE INITIAL DEVELOPER, INCLUDE ON EACH USER INTERFACE SCREEN (I) THE COPYRIGHT NOTICE IN THE SAME FORM AS THE LATEST VERSION OF THE COVERED CODE DISTRIBUTED OR OTHERWISE MADE AVAILABLE BY TERRACOTTA, INC. AT THE TIME OF DISTRIBUTION OR MAKING AVAILABLE OF SUCH COPY AND (II) THE FOLLOWING TEXT, WHICH MUST BE LARGE ENOUGH SO THAT IT CAN BE READ EASILY: "POWERED BY TERRACOTTA". THE COPYRIGHT NOTICE AND TEXT MUST BE VISIBLE TO ALL USERS AND BE LOCATED AT THE VERY BOTTOM AND IN THE CENTER OF EACH USER INTERFACE SCREEN. THE WORD "TERRACOTTA" MUST BE A HYPERLINK, SO THAT WHEN ANY USER ACTIVATES THE LINK (E.G., BY CLICKING ON IT WITH A MOUSE), THE USER WILL BE DIRECTED TO HTTP://WWW.TERRACOTTA.ORG. - -Exhibit A - Terracotta Public License. - -"The contents of this file are subject to the Terracotta Public License, version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.terracotta.org/TPL. - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is Terracotta, Inc. - -Portions created by ______________________ are Copyright (C) _____________________________. All Rights Reserved. - -Contributor(s): ______________________________________. - -NOTE: THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE NOTICES IN THE SOURCE CODE FILES OF THE ORIGINAL CODE. YOU SHOULD USE THE TEXT OF THIS EXHIBIT A RATHER THAN THE TEXT FOUND IN THE ORIGINAL CODE SOURCE CODE FOR YOUR MODIFICATIONS. diff --git a/tests/licensedcode/data/licenses/tpl-1.0.yml b/tests/licensedcode/data/licenses/tpl-1.0.yml deleted file mode 100644 index 1053b1a1118..00000000000 --- a/tests/licensedcode/data/licenses/tpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - tpl-1.0 diff --git a/tests/licensedcode/data/licenses/treeview-developer.txt b/tests/licensedcode/data/licenses/treeview-developer.txt deleted file mode 100644 index f18b9bc6061..00000000000 --- a/tests/licensedcode/data/licenses/treeview-developer.txt +++ /dev/null @@ -1,66 +0,0 @@ -TreeView License: Developer's License - -This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft (“GUBUSOFT”) downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. - -GUBUSOFT grants Customer a royalty-free, perpetual license to use SOFTWARE within server CPUs and internet domains belonging to Customer. An unlimited number of end users may access and use the SOFTWARE. GUBUSOFT grants Customer rights to modify the source code, for use within their server CPUs and internet domains. - -1. DEFINITIONS - -1.1 Customer. Customer means the entity or individual that downloads the SOFTWARE. - -2. GRANT OF LICENSE - -2.1 GUBUSOFT hereby grants Customer the following non-exclusive, non-transferable right to use the SOFTWARE. - -2.1.3 LIMITATIONS - -Customer may not rent, lease, or transfer the rights to the SOFTWARE to someone else. - -Customer may redistribute and use SOFTWARE in source code form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) the source code retains all source code comments, including all copyright notices, without modification; (c) Customer does do not permit further redistribution of SOFTWARE by their customers; (d) Customer includes a valid copyright notice on their Application; and (e) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application. - -Customer may redistribute and use SOFTWARE in binary form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application; and (c) the following notices are included in the documentation and/or other materials provided with the Customer's Application: - -Copyright (C) 2006 Conor O'Mahony (gubusoft@gubusoft.com) - -All rights reserved. - -This application includes the TreeView script. - -You are not authorized to download and/or use the TreeView source code from this application for your own purposes. For your own FREE copy of the TreeView script, please visit the http://www.treeview.net Web site. - -THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -If Customer is using the free version of SOFTWARE, Customer must ensure that the "JavaScript Tree Menu" link at the top of the TreeView is visible and readable in their Web page or application. - -Customer may not harm the GUBUSOFT intellectual property rights using any media or via any electronic or other method now known or later discovered. - -Customer may not use the GubuSoft name, the name of the TreeView author, or the names of any source code contributors to endorse or promote products derived from this SOFTWARE without specific prior written permission. - -Customer may not utilize the SOFTWARE in a manner which is disparaging to GUBUSOFT. - -3. TERMINATION - -This LICENSE will automatically terminate if Customer fails to comply with any of the terms and conditions hereof. In such event, Customer must destroy all copies of the SOFTWARE and all of its component parts. - -Defensive Suspension. If Customer commences or participates in any legal proceeding against GUBUSOFT, then GUBUSOFT may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this LICENSE during the pendency of such legal proceedings. - -4. COPYRIGHT - -All title and copyrights in and to the SOFTWARE (including but not limited to all images, photographs, animations, video, audio, music, text, and other information incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE, are owned by GUBUSOFT. The SOFTWARE is protected by copyright laws and international treaty provisions. Accordingly, Customer is required to treat the SOFTWARE like any other copyrighted material, except as otherwise allowed pursuant to this LICENSE and that it may make one copy of the SOFTWARE solely for backup or archive purposes. - -5. APPLICABLE LAW - -This LICENSE shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of California. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. - -6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY - -6.1 No Warranties. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS IS" AND GUBUSOFT AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -6.2 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL GUBUSOFT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF GUBUSOFT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. MISCELLANEOUS - -If any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of GUBUSOFT. - -8. ASSIGNMENT - -GUBUSOFT may assign or otherwise transfer any of its rights or obligations under this LICENSE agreement. diff --git a/tests/licensedcode/data/licenses/treeview-developer.yml b/tests/licensedcode/data/licenses/treeview-developer.yml deleted file mode 100644 index 70089b3d96c..00000000000 --- a/tests/licensedcode/data/licenses/treeview-developer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - treeview-developer diff --git a/tests/licensedcode/data/licenses/treeview-distributor.txt b/tests/licensedcode/data/licenses/treeview-distributor.txt deleted file mode 100644 index 745c17a8169..00000000000 --- a/tests/licensedcode/data/licenses/treeview-distributor.txt +++ /dev/null @@ -1,66 +0,0 @@ -TreeView License: Distributor's License - -This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft (“GUBUSOFT”) downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. - -GUBUSOFT grants Customer a royalty-free, perpetual license to use SOFTWARE with unlimited server CPUs and internet domains. An unlimited number of end users may access and use the SOFTWARE. Customer may redistribute SOFTWARE subject to limitations. GUBUSOFT grants Customer rights to modify the source code, for use within their application. - -1. DEFINITIONS - -1.1 Customer. Customer means the entity or individual that downloads the SOFTWARE. - -2. GRANT OF LICENSE - -2.1 GUBUSOFT hereby grants Customer the following non-exclusive, non-transferable right to use the SOFTWARE. - -2.1.3 LIMITATIONS - -Customer may not rent, lease, or transfer the rights to the SOFTWARE to someone else. - -Customer may redistribute and use SOFTWARE in source code form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) the source code retains all source code comments, including all copyright notices, without modification; (c) Customer includes a valid copyright notice on their Application; and (d) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application. - -Customer may redistribute and use SOFTWARE in binary form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application; and (c) the following notices are included in the documentation and/or other materials provided with the Customer's Application: - -Copyright (C) 2006 Conor O'Mahony (gubusoft@gubusoft.com) - -All rights reserved. - -This application includes the TreeView script. - -You are not authorized to download and/or use the TreeView source code from this application for your own purposes. For your own FREE copy of the TreeView script, please visit the http://www.treeview.net Web site. - -THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -If Customer is using the free version of SOFTWARE, Customer must ensure that the "JavaScript Tree Menu" link at the top of the TreeView is visible and readable in their Web page or application. - -Customer may not harm the GUBUSOFT intellectual property rights using any media or via any electronic or other method now known or later discovered. - -Customer may not use the GubuSoft name, the name of the TreeView author, or the names of any source code contributors to endorse or promote products derived from this SOFTWARE without specific prior written permission. - -Customer may not utilize the SOFTWARE in a manner which is disparaging to GUBUSOFT. - -3. TERMINATION - -This LICENSE will automatically terminate if Customer fails to comply with any of the terms and conditions hereof. In such event, Customer must destroy all copies of the SOFTWARE and all of its component parts. - -Defensive Suspension. If Customer commences or participates in any legal proceeding against GUBUSOFT, then GUBUSOFT may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this LICENSE during the pendency of such legal proceedings. - -4. COPYRIGHT - -All title and copyrights in and to the SOFTWARE (including but not limited to all images, photographs, animations, video, audio, music, text, and other information incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE, are owned by GUBUSOFT. The SOFTWARE is protected by copyright laws and international treaty provisions. Accordingly, Customer is required to treat the SOFTWARE like any other copyrighted material, except as otherwise allowed pursuant to this LICENSE and that it may make one copy of the SOFTWARE solely for backup or archive purposes. - -5. APPLICABLE LAW - -This LICENSE shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of California. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. - -6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY - -6.1 No Warranties. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS IS" AND GUBUSOFT AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -6.2 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL GUBUSOFT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF GUBUSOFT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. MISCELLANEOUS - -If any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of GUBUSOFT. - -8. ASSIGNMENT - -GUBUSOFT may assign or otherwise transfer any of its rights or obligations under this LICENSE agreement. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/treeview-distributor.yml b/tests/licensedcode/data/licenses/treeview-distributor.yml deleted file mode 100644 index 283434d01f4..00000000000 --- a/tests/licensedcode/data/licenses/treeview-distributor.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - treeview-distributor diff --git a/tests/licensedcode/data/licenses/uk-ogl-1.0.txt b/tests/licensedcode/data/licenses/uk-ogl-1.0.txt deleted file mode 100644 index 24139e53dd7..00000000000 --- a/tests/licensedcode/data/licenses/uk-ogl-1.0.txt +++ /dev/null @@ -1,104 +0,0 @@ -You are encouraged to use and re-use the Information that is available under this - licence, the Open Government Licence, freely and flexibly, with only a few conditions. - -Using information under this licence -Use of copyright and database right material expressly made available under this licence - (the ‘Information’) indicates your acceptance of the terms and conditions below. - -The Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to -use the Information subject to the conditions below. - -This licence does not affect your freedom under fair dealing or fair use or any other - copyright or database right exceptions and limitations. - -You are free to: -copy, publish, distribute and transmit the Information; -adapt the Information; -exploit the Information commercially for example, by combining it with other Information, -or by including it in your own product or application. -You must, where you do any of the above: -acknowledge the source of the Information by including any attribution statement specified -by the Information Provider(s) and, where possible, provide a link to this licence; -If the Information Provider does not provide a specific attribution statement, or if you are -using Information from several Information Providers and multiple attributions are not -practical in your product or application, you may consider using the following: - -Contains public sector information licensed under the Open Government Licence v1.0. - -ensure that you do not use the Information in a way that suggests any official status or -that the Information Provider endorses you or your use of the Information; -ensure that you do not mislead others or misrepresent the Information or its source; -ensure that your use of the Information does not breach the Data Protection Act 1998 or -the Privacy and Electronic Communications (EC Directive) Regulations 2003. -These are important conditions of this licence and if you fail to comply with them the rights -granted to you under this licence, or any similar licence granted by the Licensor, will end automatically. - -Exemptions -This licence does not cover the use of: - -personal data in the Information; -Information that has neither been published nor disclosed under information access -legislation (including the Freedom of Information Acts for the UK and Scotland) by -or with the consent of the Information Provider; -departmental or public sector organisation logos, crests and the Royal Arms except -where they form an integral part of a document or dataset; -military insignia; -third party rights the Information Provider is not authorised to license; -Information subject to other intellectual property rights, including patents, trademarks, -and design rights; and -identity documents such as the British Passport. -No warranty -The Information is licensed ‘as is’ and the Information Provider excludes all representations, -warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. - -The Information Provider is not liable for any errors or omissions in the Information and -shall not be liable for any loss, injury or damage of any kind caused by its use. -The Information Provider does not guarantee the continued supply of the Information. - -Governing Law -This licence is governed by the laws of the jurisdiction in which the Information Provider -has its principal place of business, unless otherwise specified by the Information Provider. - -Definitions -In this licence, the terms below have the following meanings: - -‘Information’ -means information protected by copyright or by database right (for example, literary -and artistic works, content, data and source code) offered for use under the terms of this licence. - -‘Information Provider’ -means the person or organisation providing the Information under this licence. - -‘Licensor’ -means any Information Provider which has the authority to offer Information under the -terms of this licence or the Controller of Her Majesty’s Stationery Office, who has the -authority to offer Information subject to Crown copyright and Crown database rights and -Information subject to copyright and database right that has been assigned to or acquired -by the Crown, under the terms of this licence. - -‘Use’ -as a verb, means doing any act which is restricted by copyright or database right, whether -in the original medium or in any other medium, and includes without limitation distributing, -copying, adapting, modifying as may be technically necessary to use it in a different mode or format. - -‘You’ -means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence. - -About the Open Government Licence -The Controller of Her Majesty’s Stationery Office (HMSO) has developed this licence as a -tool to enable Information Providers in the public sector to license the use and re-use -of their Information under a common open licence. The Controller invites public sector -bodies owning their own copyright and database rights to permit the use of their Information under this licence. - -The Controller of HMSO has authority to license Information subject to copyright and -database right owned by the Crown. The extent of the Controller’s offer to license this -Information under the terms of this licence is set out in the UK Government Licensing Framework. - -This is version 1.0 of the Open Government Licence. The Controller of HMSO may, from -time to time, issue new versions of the Open Government Licence. However, you may continue -to use Information licensed under this version should you wish to do so. - -These terms have been aligned to be interoperable with any Creative Commons Attribution Licence, -which covers copyright, and Open Data Commons Attribution License, which covers database rights and applicable copyrights. - -Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. diff --git a/tests/licensedcode/data/licenses/uk-ogl-1.0.yml b/tests/licensedcode/data/licenses/uk-ogl-1.0.yml deleted file mode 100644 index 3731c194cb3..00000000000 --- a/tests/licensedcode/data/licenses/uk-ogl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ogl-uk-1.0 diff --git a/tests/licensedcode/data/licenses/vbAccelerator.txt b/tests/licensedcode/data/licenses/vbAccelerator.txt deleted file mode 100644 index b996300b7e9..00000000000 --- a/tests/licensedcode/data/licenses/vbAccelerator.txt +++ /dev/null @@ -1,17 +0,0 @@ -Distribution notice: - -You are free to distribute this zip in it's original state to any -public www site, online service or BBS without explicitly obtaining -the author's permission. (Notification would be greatly appreciated -though!). - -You are free distribute vbalGrid6.ocx unmodified, or to use or modify -the source code as you wish. However, you must not distribute -modified versions of vbalGrid6.ocx unless you have changed the filename -and the ProgID (project name). - -If you wish to distribute this zip by any other means (i.e. if -you want to include it on a CD or any other software media) then the -EXPRESS PERMISSION of the author is REQUIRED. - -Please report any bugs in the component to the author. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/vbAccelerator.yml b/tests/licensedcode/data/licenses/vbAccelerator.yml deleted file mode 100644 index 0f14c9f75c9..00000000000 --- a/tests/licensedcode/data/licenses/vbAccelerator.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - vbaccelerator diff --git a/tests/licensedcode/data/licenses/vic-metcalfe-pd.txt b/tests/licensedcode/data/licenses/vic-metcalfe-pd.txt deleted file mode 100644 index c86c353da0f..00000000000 --- a/tests/licensedcode/data/licenses/vic-metcalfe-pd.txt +++ /dev/null @@ -1,13 +0,0 @@ -/* - * This file is provided for use with the unix-socket-faq. It is public - * domain, and may be copied freely. There is no copyright on it. The - * original work was by Vic Metcalfe (vic@brutus.tlug.org), and any - * modifications made to that work were made with the understanding that - * the finished work would be in the public domain. - * - * If you have found a bug, please pass it on to me at the above address - * acknowledging that there will be no copyright on your work. - * - * The most recent version of this file, and the unix-socket-faq can be - * found at http://www.interlog.com/~vic/sock-faq/. - */ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/vic-metcalfe-pd.yml b/tests/licensedcode/data/licenses/vic-metcalfe-pd.yml deleted file mode 100644 index 8e3c3cc3d76..00000000000 --- a/tests/licensedcode/data/licenses/vic-metcalfe-pd.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - vic-metcalfe-pd diff --git a/tests/licensedcode/data/licenses/w3c-docs-19990405.txt b/tests/licensedcode/data/licenses/w3c-docs-19990405.txt deleted file mode 100644 index 9448cc88d1d..00000000000 --- a/tests/licensedcode/data/licenses/w3c-docs-19990405.txt +++ /dev/null @@ -1,25 +0,0 @@ -W3C® DOCUMENT NOTICE AND LICENSE - -Copyright © 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. -http://www.w3.org/Consortium/Legal/ - -Public documents on the W3C site are provided by the copyright holders under the following license. The software or Document Type Definitions (DTDs) associated with W3C specifications are governed by the Software Notice. By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: - -Permission to use, copy, and distribute the contents of this document, or the W3C document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use: - -A link or URL to the original W3C document. -The pre-existing copyright notice of the original author, or if it doesn't exist, a notice of the form: "Copyright © [$date-of-document] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/" (Hypertext is preferred, but a textual representation is permitted.) -If it exists, the STATUS of the W3C document. -When space permits, inclusion of the full text of this NOTICE should be provided. We request that authorship attribution be provided in any software, documents, or other items or products that you create pursuant to the implementation of the contents of this document, or any portion thereof. - -No right to create modifications or derivatives of W3C documents is granted pursuant to this license. However, if additional requirements (documented in the Copyright FAQ) are satisfied, the right to create modifications or derivatives is sometimes granted by the W3C to individuals complying with those requirements. - -THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. - -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. - -The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this document will at all times remain with copyright holders. - ----------------------------------------------------------------------------- - -This formulation of W3C's notice and license became active on April 05 1999 so as to account for the treatment of DTDs, schema's and bindings. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/w3c-docs-19990405.yml b/tests/licensedcode/data/licenses/w3c-docs-19990405.yml deleted file mode 100644 index ecaa0870477..00000000000 --- a/tests/licensedcode/data/licenses/w3c-docs-19990405.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - w3c-docs-19990405 diff --git a/tests/licensedcode/data/licenses/w3c-docs-20021231.txt b/tests/licensedcode/data/licenses/w3c-docs-20021231.txt deleted file mode 100644 index c1d2162a645..00000000000 --- a/tests/licensedcode/data/licenses/w3c-docs-20021231.txt +++ /dev/null @@ -1,28 +0,0 @@ -W3C DOCUMENT LICENSE - -Public documents on the W3C site are provided by the copyright holders under the following license. - -License -By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: - -Permission to copy, and distribute the contents of this document, or the W3C document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use: - -* A link or URL to the original W3C document. -* The pre-existing copyright notice of the original author, or if it doesn't exist, a notice (hypertext is preferred, but a textual representation is permitted) of the form: "Copyright © [$date-of-document] World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University, Beihang). All Rights Reserved. http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231" -* If it exists, the STATUS of the W3C document. - -When space permits, inclusion of the full text of this NOTICE should be provided. We request that authorship attribution be provided in any software, documents, or other items or products that you create pursuant to the implementation of the contents of this document, or any portion thereof. - -No right to create modifications or derivatives of W3C documents is granted pursuant to this license. However, if additional requirements (documented in the Copyright FAQ) are satisfied, the right to create modifications or derivatives is sometimes granted by the W3C to individuals complying with those requirements. - -Disclaimers -THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. - -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. - -The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this document will at all times remain with copyright holders. - -Notes -This version: http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 - -This formulation of W3C's notice and license became active on December 31 2002. This version removes the copyright ownership notice such that this license can be used with materials other than those owned by the W3C, moves information on style sheets, DTDs, and schemas to the Copyright FAQ, reflects that ERCIM is now a host of the W3C, includes references to this specific dated version of the license, and removes the ambiguous grant of "use". See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, such as the translating or annotating specifications. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/w3c-docs-20021231.yml b/tests/licensedcode/data/licenses/w3c-docs-20021231.yml deleted file mode 100644 index 0c65de1ae7f..00000000000 --- a/tests/licensedcode/data/licenses/w3c-docs-20021231.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - w3c-docs-20021231 diff --git a/tests/licensedcode/data/licenses/w3c-software-19980720.txt b/tests/licensedcode/data/licenses/w3c-software-19980720.txt deleted file mode 100644 index 4caaef90d18..00000000000 --- a/tests/licensedcode/data/licenses/w3c-software-19980720.txt +++ /dev/null @@ -1,20 +0,0 @@ -W3C® SOFTWARE NOTICE AND LICENSE - -Copyright © 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/ - -This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: - -Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make: - -The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. -Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright © [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/" -Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. - -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. - -The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. - -____________________________________ - -This formulation of W3C's notice and license became active on August 14 1998 so as to improve compatibility with GPL. This version ensures that W3C software licensing terms are no more restrictive than GPL and consequently W3C software may be distributed in GPL packages. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org. diff --git a/tests/licensedcode/data/licenses/w3c-software-19980720.yml b/tests/licensedcode/data/licenses/w3c-software-19980720.yml deleted file mode 100644 index c99b7d49aa4..00000000000 --- a/tests/licensedcode/data/licenses/w3c-software-19980720.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - w3c-software-19980720 diff --git a/tests/licensedcode/data/licenses/w3c-software-19980720_1.txt b/tests/licensedcode/data/licenses/w3c-software-19980720_1.txt deleted file mode 100644 index fb39eb2844d..00000000000 --- a/tests/licensedcode/data/licenses/w3c-software-19980720_1.txt +++ /dev/null @@ -1,25 +0,0 @@ -W3C? SOFTWARE NOTICE AND LICENSE -Copyright ? 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/ - -This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: - -Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make: - - The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. - Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright ? [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/" - Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. - -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. - -The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. - -____________________________________ - -This formulation of W3C's notice and license became active on August 14 1998 so as to improve compatibility with GPL. This version ensures that W3C software licensing terms are no more restrictive than GPL and consequently W3C software may be distributed in GPL packages. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org. - - - -webmaster -(last updated $Date: 2002/02/13 14:08:32 $) diff --git a/tests/licensedcode/data/licenses/w3c-software-19980720_1.yml b/tests/licensedcode/data/licenses/w3c-software-19980720_1.yml deleted file mode 100644 index c99b7d49aa4..00000000000 --- a/tests/licensedcode/data/licenses/w3c-software-19980720_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - w3c-software-19980720 diff --git a/tests/licensedcode/data/licenses/warranty-disclaimer_2.txt b/tests/licensedcode/data/licenses/warranty-disclaimer_2.txt deleted file mode 100644 index a54897d49af..00000000000 --- a/tests/licensedcode/data/licenses/warranty-disclaimer_2.txt +++ /dev/null @@ -1 +0,0 @@ -This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. diff --git a/tests/licensedcode/data/licenses/warranty-disclaimer_2.yml b/tests/licensedcode/data/licenses/warranty-disclaimer_2.yml deleted file mode 100644 index 17e5b6ebd02..00000000000 --- a/tests/licensedcode/data/licenses/warranty-disclaimer_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - warranty-disclaimer diff --git a/tests/licensedcode/data/licenses/warranty-disclaimer_3.txt b/tests/licensedcode/data/licenses/warranty-disclaimer_3.txt deleted file mode 100644 index ec98dda4b5b..00000000000 --- a/tests/licensedcode/data/licenses/warranty-disclaimer_3.txt +++ /dev/null @@ -1 +0,0 @@ -This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/warranty-disclaimer_3.yml b/tests/licensedcode/data/licenses/warranty-disclaimer_3.yml deleted file mode 100644 index 17e5b6ebd02..00000000000 --- a/tests/licensedcode/data/licenses/warranty-disclaimer_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - warranty-disclaimer diff --git a/tests/licensedcode/data/licenses/westhawk.txt b/tests/licensedcode/data/licenses/westhawk.txt deleted file mode 100644 index b4e8d9cea29..00000000000 --- a/tests/licensedcode/data/licenses/westhawk.txt +++ /dev/null @@ -1,7 +0,0 @@ -Permission to use, copy, modify, and distribute this software -for any purpose and without fee is hereby granted, provided -that the above copyright notices appear in all copies and that -both the copyright notice and this permission notice appear in -supporting documentation. -This software is provided "as is" without express or implied -warranty. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/westhawk.yml b/tests/licensedcode/data/licenses/westhawk.yml deleted file mode 100644 index 40e5ccb5f38..00000000000 --- a/tests/licensedcode/data/licenses/westhawk.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - westhawk -notes: Initial comments delimiters removed from the beginning of each line. diff --git a/tests/licensedcode/data/licenses/whistle_2.txt b/tests/licensedcode/data/licenses/whistle_2.txt deleted file mode 100644 index 3a6ffe309d3..00000000000 --- a/tests/licensedcode/data/licenses/whistle_2.txt +++ /dev/null @@ -1,38 +0,0 @@ -/*- -* Copyright (c) 1996-1999 Whistle Communications, Inc. -* All rights reserved. -* -* Subject to the following obligations and disclaimer of warranty, use and -* redistribution of this software, in source or object code forms, with or -* without modifications are expressly permitted by Whistle Communications; -* provided, however, that: -* 1. Any and all reproductions of the source or object code must include the -* copyright notice above and the following disclaimer of warranties; and -* 2. No rights are granted, in any manner or form, to use Whistle -* Communications, Inc. trademarks, including the mark "WHISTLE -* COMMUNICATIONS" on advertising, endorsements, or otherwise except as -* such appears in the above copyright notice or in the software. -* -* THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND -* TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO -* REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE, -* INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF -* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. -* WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY -* REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS -* SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE. -* IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES -* RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING -* WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, -* PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR -* SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER 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 WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY -* OF SUCH DAMAGE. -* -* Author: Julian Elischer < julian@freebsd.org> -* -* $FreeBSD: src/sys/netgraph/ng_pppoe.c,v 1.67.2.1 2005/01/29 23:33:54 glebius Exp $ -* $Whistle: ng_pppoe.c,v 1.10 1999/11/01 09:24:52 julian Exp $ -*/ \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/whistle_2.yml b/tests/licensedcode/data/licenses/whistle_2.yml deleted file mode 100644 index cd005e43e34..00000000000 --- a/tests/licensedcode/data/licenses/whistle_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - whistle diff --git a/tests/licensedcode/data/licenses/winzip-eula.txt b/tests/licensedcode/data/licenses/winzip-eula.txt deleted file mode 100644 index 999c1544d5d..00000000000 --- a/tests/licensedcode/data/licenses/winzip-eula.txt +++ /dev/null @@ -1,97 +0,0 @@ -PERPETUAL PROVISIONS APPLICABLE TO -WINZIP -WINZIP COURIER -WINZIP SELF EXTRACTOR -WINZIP MAC EDITION - -IF YOU AGREE TO THIS EULA YOU ARE GRANTED A LIMITED, PERSONAL, WORLDWIDE, ROYALTY-FREE, NON-ASSIGNABLE, NON-SUBLICENSEABLE, NON-TRANSFERABLE AND NON-EXCLUSIVE LICENSE TO USE THE SOFTWARE. YOU ARE PERMITTED TO USE ONE (1) COPY OF THE SOFTWARE FOR YOUR (I) PRIVATE, NON-COMMERCIAL PURPOSES AS A PRIVATE USER, AND/OR (II) COMMERCIAL PURPOSES AS A SERVICE PROVIDER IN A COMMERCIAL BUSINESS ("BUSINESS USER"). THE SOFTWARE IS LICENSED PER HOUSEHOLD OR PER SINGLE ADDRESS ("ADDRESS"). YOU MAY ONLY DOWNLOAD AND INSTALL THE SOFTWARE ON ONE (1) COMPUTING DEVICE PER ADDRESS. YOU MAY NOT RE-INSTALL THE SOFTWARE ON A SECOND COMPUTING DEVICE, UNLESS (I) THE ORIGINAL COMPUTING DEVICE FAILS, (II) YOU CONTACT CUSTOMER SERVICE (HELP@WINZIP.COM) REQUESTING OUR APPROVAL (AND WE PROVIDE YOU AUTHORIZATION CODE) TO RE-INSTALL THE SOFTWARE ON A NEW COMPUTING DEVICE, AND (III) YOU CERTIFY TO WINZIP THAT YOU HAVE UNINSTALLED THE SOFTWARE FROM THE FAILED COMPUTING DEVICE. PRIVATE AND BUSINESS USERS OF WINZIP, WINZIP COURIER, WINZIP SELF EXTRACTOR OR WINZIP MAC EDITION THAT HAVE MULTIPLE COMPUTING DEVICES (E.G., STAND-ALONE COMPUTER, LAP-TOP, TABLET AND MINI/PORTABLE PC), MAY DOWNLOAD AND INSTALL THE SOFTWARE ON UP TO THREE (3) SYSTEMS PER ADDRESS, HOWEVER THE SOFTWARE CAN ONLY BE USED BY YOU ON ONE (1) SYSTEM AT A TIME (I.E., THE SOFTWARE MAY NOT BE SHARED OR USED CONCURRENTLY ON DIFFERENT COMPUTING DEVICES). IF YOU INSTALL THE SOFTWARE ON A FORTH COMPUTING DEVICE OR ON A COMPUTING DEVICE LOCATED AT A DIFFERENT ADDRESS YOU MUST PURCHASE ADDITIONAL LICENSES FOR SUCH ADDITIONAL COMPUTING DEVICES. IF YOU HAVE PURCHASED MULTIPLE-USER LICENSES FOR THE SOFTWARE, AT ANY TIME YOU MAY HAVE AS MANY COPIES OF THE SOFTWARE IN USE UP TO THE NUMBER OF MULTIPLE-USER LICENSES YOU HAVE PURCHASED. - -LICENSE TO USE THE SOFTWARE. The Software is licensed to You, not sold to You. You must lawfully acquire the Software from Us or Our authorized resellers otherwise You don't have a right to use the Software. You may only purchase and/or download the Software from Our (or Our authorized reseller's) eStore or website that is located in the country in which You hold legal residency. BUSINESS USERS: If You are a business, and You purchased the Software from Us or from one of Our authorized resellers, You may install the Software on a hardware partition, blade, or terminal server ("Virtualization Environment") to run, use or access the Software by means of Your organization's computing devices directly connected to Your organization's internal network or Your organization's virtual private network. Use of the Software by Your employees (and Your organization's subcontractors contractually authorized to act on Your behalf) via such Virtualization Environment is permitted only up to the maximum number of site licenses purchased by Your organization. For the avoidance of doubt, You must acquire and dedicate one (1) license for each computing device using, running, or accessing the Software from Virtualization Environment and for each computing device on which the Software is installed, run, used or accessed from. You agree that if the Software requires mandatory activation or email validation, You will complete the process providing Us with accurate information. Your use of the Software is suspended until You complete the activation and/or registration process. The Software may include digital images, stock photographs, clip art, fonts, sounds or other artistic works ("Stock Files"). The responsibilities and restrictions relating to the Software apply to the Stock Files. We reserve all rights not expressly granted to You in this EULA. BUSINESS USERS: If You are a business, You agree to maintain records, systems and/or procedures that accurately record of the number of copies of the Software that have been acquired, installed and in use on Your computing devices and will keep the records for two (2) years from the date Your license to use the Software ends. We may conduct an audit (remotely or at Your facility) of records and systems from Your business, to verify that Your installation of the Software conforms with a valid license from Us or Our authorized resellers. We will not conduct more than one (1) audit per year. If the audit results find that Your use does not conform to a valid license, then You will immediately obtain a valid license or true-up Your licenses for the Software. - - - -SUBSCRIPTION PROVISIONS APPLICABLE TO -WINZIP SYSTEM UTILITIES SUITE -WINZIP REGISTRY OPTIMIZER -WINZIP DRIVER UPDATER -WINZIP MALWARE PROTECTOR -WINZIP MAC OPTIMIZER -WINZIP DISK TOOLS - -IF YOU AGREE TO THIS EULA YOU ARE GRANTED A LIMITED-TIME, PERSONAL, WORLDWIDE, ROYALTY-FREE, NON-ASSIGNABLE, NON-SUBLICENSEABLE, NON-TRANSFERABLE AND NON-EXCLUSIVE SUBSCRIPTION-BASED LICENSE TO USE WINZIP SYSTEM UTILITIES SUITE, WINZIP REGISTRY OPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR, WINZIP MAC OPTIMIZER OR WINZIP DISK TOOLS. THE SOFTWARE IS LICENSED TO YOU ON A SUBSCRIPTION BASIS FOR AN INITIAL ONE (1) YEAR PERIOD ("INITIAL TERM") AND WILL AUTOMATICALLY RENEW FOR ADDITIONAL ONE (1) YEAR PERIODS (“RENEWAL TERM”) (COLLECTIVELY “TERM”) UNTIL YOU TERMINATE YOUR SUBSCRIPTION BY NOTIFYING US, VIA EMAIL AS SET FORTH BELOW, OF YOUR INTENT TO DISCONTINUE YOUR USE OF THE SOFTWARE. YOU ARE PERMITTED TO USE ONE (1) COPY OF THE SOFTWARE FOR YOUR (I) PRIVATE, NON-COMMERCIAL PURPOSES AS A PRIVATE USER, AND/OR (II) COMMERCIAL PURPOSES AS A SERVICE PROVIDER IN A COMMERCIAL BUSINESS ("BUSINESS USER"). THE SOFTWARE IS LICENSED PER HOUSEHOLD OR PER SINGLE ADDRESS ("ADDRESS"). YOU MAY ONLY DOWNLOAD AND INSTALL THE SOFTWARE ON ONE (1) COMPUTING DEVICE PER ADDRESS. YOU MAY NOT RE-INSTALL THE SOFTWARE ON A SECOND COMPUTING DEVICE UNLESS (I) THE ORIGINAL COMPUTING DEVICE FAILS, (II) YOU CONTACT CUSTOMER SERVICE (HELP@WINZIP.COM) REQUESTING OUR APPROVAL (AND WE PROVIDE YOU AUTHORIZATION CODE) TO RE-INSTALL THE SOFTWARE ON A NEW COMPUTING DEVICE, AND (III) YOU CERTIFY TO WINZIP THAT YOU HAVE UNINSTALLED THE SOFTWARE FROM THE FAILED COMPUTING DEVICE. PRIVATE AND BUSINESS USERS OF WINZIP SYSTEM UTILITIES SUITE, WINZIP REGISTRY OPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR, WINZIP MAC OPTIMIZER OR WINZIP DISK TOOLS THAT HAVE MULTIPLE COMPUTING DEVICES (E.G., STAND-ALONE COMPUTER, LAP-TOP, TABLET AND MINI/PORTABLE PC) MAY NOT DOWNLOAD AND INSTALL THE SOFTWARE ON MULTIPLE COMPUTING DEVICES. YOU MAY DOWNLOAD AND INSTALL THE SOFTWARE ON ONLY ONE (1) SYSTEM PER ADDRESS (I.E., THE SOFTWARE MAY NOT BE SHARED OR USED CONCURRENTLY ON DIFFERENT COMPUTING DEVICES). - -BY DOWNLOADING AND INSTALLING WINZIP SYSTEM UTILITIES SUITE, WINZIP REGISTRY OPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR, WINZIP MAC OPTIMIZER OR WINZIP DISK TOOLS, YOU AGREE THAT WINZIP IS AUTHORIZED TO CHARGE YOUR CREDIT CARD FOR THE ANNUAL SUBSCRIPTION FEE FOR THE SOFTWARE ON A YEARLY BASIS WITHOUT ANY FURTHER ACTION ON YOUR PART. IN THE EVENT THAT YOUR CREDIT CARD IS DECLINED FOR ANY REASON, THE SUBSCRIPTION FEE IS STILL DUE AND OWING TO WINZIP AND YOU WILL PROMPTLY PROVIDE US WITH ANOTHER CREDIT CARD FOR AUTOMATIC PAYMENT PURPOSES. YOUR CONTINUED USE OF THE SOFTWARE IS SUBJECT TO AND CONDITIONED UPON YOUR PAYMENT OF THE SUBSCRIPTION FEE. YOU MUST PROVIDE NOTICE OF INTENT TO TERMINATE YOUR SUBSCRIPTION FIVE (5) BUSINESS DAYS PRIOR TO THE END OF THE INITIAL TERM OR FIVE (5) BUSINESS DAYS PRIOR TO THE END OF EACH RENEWAL TERM OTHERWISE YOUR SUBSCRIPTION WILL AUTOMATICALLY RENEW FOR ANOTHER TERM. DURING EACH RENEWAL TERM, ONCE A PAYMENT IS RECEIVED, THE SUBSCRIPTION FEE IS NON-REFUNDABLE AND NON-CANCELLABLE. IF YOU DECIDE TO TERMINATE YOUR SUBSCRIPTION OR FAIL TO PROVIDE A NEW CREDIT CARD AS REQUIRED FOR PAYMENT, THE SOFTWARE CONTAINS A LOCKING CODE WHICH WILL AUTOMATICALLY LOCK AT THE END OF THE TERM AND THAT WILL PROHIBIT YOU FROM USING THE SOFTWARE UNTIL A NEW REGISTRATION CODE IS RECEIVED BY YOU. YOU WILL RECEIVE A NEW REGISTRATION CODE ONLY UPON OUR RECEIPT OF YOUR NEW CREDIT CARD AND PAYMENT OF THE FEE (IN THE EVENT OF A FAILED CREDIT CARD) OR RENEWAL OF THE SUBSCRIPTION (IN THE EVENT YOU PREVIOUSLY TERMINATED YOUR SUBSCRIPTION). USE OF THE SOFTWARE BEFORE OR BEYOND THE APPLICABLE SUBSCRIPTION TERM, OR ANY ATTEMPT TO DEFEAT ANY TIME-CONTROL DISABLING FUNCTION IN THE SOFTWARE, IS AN UNAUTHORIZED USE AND CONSTITUTES A MATERIAL BREACH OF THIS EULA AND APPLICABLE LAW. TO PROVIDE US NOTICE OF YOUR INTENT TO TERMINATE YOUR SUBSCRIPTION, CONTACT OUR CUSTOMER SUPPORT TEAM AT HELP@WINZIP.COM. - -LICENSE TO USE THE SOFTWARE. The Software is licensed to You, not sold to You. You must lawfully acquire the Software from Us or Our authorized resellers otherwise You don't have a right to use the Software. You may only purchase and/or download the Software from Our (or Our authorized reseller's) eStore or website that is located in the country in which You hold legal residency. You agree that if the Software requires mandatory activation or email validation, You will complete the process providing WinZip with accurate information. Your use of the Software is suspended until You complete the activation and/or registration process. The Software may include digital images, stock photographs, clip art, fonts, sounds or other artistic works ("Stock Files"). The responsibilities and restrictions relating to the Software apply to the Stock Files. We reserve all rights not expressly granted to You in this EULA. BUSINESS USERS: If You are a business, You agree to maintain records, systems and/or procedures that accurately record of the number of copies of the Software that have been acquired, installed and in use on Your computing devices and will keep the records for two (2) years from the date Your license to use the Software ends. We may conduct an audit (remotely or at Your facility) of records and systems from Your business, to verify that Your installation of the Software conforms with a valid license from Us or Our authorized resellers. We will not conduct more than one (1) audit per year. If the audit results find that Your use does not conform to a valid license, then You will immediately obtain a valid license or true-up Your licenses for the Software. - -PROVISIONS APPLICABLE TO BOTH -SUBSCRIPTION AND PERPETUAL LICENSES - -YOUR RESPONSIBILITIES WHILE USING THE SOFTWARE. With regard to Your Use of the Software under this EULA, You have certain responsibilities. The Software may include product activation and other technology designed to prevent unauthorized use and copying. You may not sell, rent, lease, resell, or loan any version of the Software (including an Evaluation Version of the Software). If You purchase the Software as a gift to a third person, the third person must accept the terms of this EULA before using the Software. You may not reverse engineer, reengineer, decompile, disassemble, translate, reconstruct, transform, or extract the Software or any portion of the Software. You may not wrap the Software or any Software executable (E.G., .EXE, .MSI, .ISO or .DMG or similar executable now known or later developed) with any third party software add-on or offer except pursuant to a separate express, written, fully-executed agreement with WinZip. While We own Our Software, You own and are responsible for the content ("Content") that You create, or have created for You, resulting from the use of Our Software (including any add-ons or plug-ins to Our Software that You create, or have created for You). You agree that, in connection with Your use of the Software, You are responsible for the direct and/or indirect consequences of any of the (i) Content You create and (ii) third party photos or images that You use or modify in creating Your Content, especially in situations where You share Your Content with family, friends, clients and/or third parties such as members of social networking sites (e.g., Facebook, Flickr, LinkedIn, Twitter, etc.) or file sharing or cloud services sites (e.g., Google Drive, Sky Drive, Dropbox, box.net, etc.). WinZip can neither monitor nor control what third party social networking, file sharing, or cloud services sites or the members or users of such sites do with Your content You share. You are responsible for independently verifying the accuracy and completeness of Your Content (e.g., any technical illustrations or diagrams for operation guides, parts catalogs, schematics, writing diagrams, assembly instructions, maintenance manuals, architectural presentations or other materials You create and/or modify using Our Software). You may not modify or create derivative works based upon the Software. You represent and warrant to Us that You will comply with all applicable laws and regulations impacting Your use of the Software including data protection and privacy laws. You agree that You will not use the Software in a way that is unlawful or that violates the rights of a third party. If We get sued or a claim is brought against Us by a third party due to (i) Your actions, (ii) Your failure to act when required, or (iii) Your content, then You agree to defend, indemnify and hold WinZip harmless. You may receive updates, bug fixes, feature enhancements or improvements, or other data relating to the Software (collectively "Updates") downloaded to Your computing device with a notice describing what is included in the Update and the purpose of the Update. You will have to choose either to install the Update on Your computing device or opt-out and not install the Update. If You do not install the Updates the Software may not perform properly. - -OUR INTELLECTUAL PROPERTY RIGHTS. The Software is protected by United States and Canadian Intellectual Property laws and international intellectual property laws and treaty provisions. Therefore, You may not distribute the Software without Our permission. If You purchase or download the Software in China, India, Indonesia or Vietnam, You may not copy the Software or printed materials accompanying the Software for any purpose. If You purchase or download the Software in a country not specifically prohibited under this EULA, You may only make one (1) copy of the Software (or You may keep one (1) copy of the Software on a single hard drive) for backup or archival purposes. For backup or archival purposes only, You may either make only one (1) copy of the Software and the Printed Materials or print one (1) copy of any user documentation if You downloaded the Software or You may keep one (1) copy the Software and printed materials (or user documentation) on a single hard drive. Otherwise, You may not copy the Software or the printed materials accompanying the Software (or print copies of any user documentation if You downloaded the Software). You agree that WinZip, the WinZip logos, and other WinZip trademarks, service marks, and graphics are trademarks of WinZip International LLC, a Corel company, (some in the United States and/or other countries) or are trademarks of WinZip's partners ("Marks"). You are not granted a right to use Marks without the owner's permission. You will not remove, obscure or alter any proprietary notices affixed to or contained within the Software. You understand and agree that We have the right to stop selling, distributing, servicing or updating the Software (any part of it), and services or offerings at any time. - -USAGE AUDITING, PIRACY AND OUR PRIVACY POLICY. Our audit and collection of any of Your data and Your use of the Software is subject to the Corel Corporation Privacy Policy (http://www.winzip.com/privacy). We may audit Your Software usage for anti-piracy purposes, to verify a valid registration, and identify if new Updates are available for Your computing device prior to sending You a notice to install a new Software Update, and to assess Your use of the Software. You consent to the Software sending usage data (e.g., the number of instances the Software is launched, the device IP address, and/or the version of the Software), for registration, authentication, use and anti-piracy auditing and enforcement purposes. - -PRE-COMMERCIAL RELEASE OR BETA SOFTWARE. If the Software You have received with this EULA is a pre-commercial release or a beta version, then You understand the Software (i) is the Confidential Information of WinZip, its licensors and suppliers, and (ii) does not represent a final product of WinZip. You have no right to (i) modify, enhance, adapt, alter, translate, or create derivative works of such Software; (ii) merge or wrap the Software with other software; (iii) sublicense, lease, rent, loan, sell, export, or otherwise transfer or distribute the Software to any third party; (iv) reverse engineer, decompile, disassemble, or otherwise attempt to derive the source code for the Software; or (v) otherwise use or copy the Software. The Software may contain bugs, errors and other problems that could cause computer system failures and data loss. THEREFORE, ALL PRE-RELEASE OR BETA SOFTWARE IS PROVIDED ON AN "AS-IS" BASIS AND WINZIP DISCLAIMS ANY AND ALL WARRANTIES OR LIABILITY TO YOU OF ANY KIND. - -EVALUATION SOFTWARE. In the instance of a fixed term license such as with a trial version, the license to use the Software begins on installation and shall be for the duration identified by Us in Our invoice or by Our authorized reseller in its invoice. Subject to the terms and conditions of this EULA, if (i) the Software is identified as a demonstration, evaluation, trial, "not for sale" ("NFS") or "not for resale" ("NFR") version ("Evaluation Version") in the applicable user documentation, or (ii) You acquired the Software without charge, Your use of the Software is subject to the following terms: (a) You may make as many exact copies of the Software as You wish solely for evaluation purposes and for no other purpose using the tangible physical media (e.g., compact discs); (b) You may distribute individual exact copies of the Software solely for evaluation purposes and for no other purpose without charge to You or the recipient. Exact copy means a file that is, for example, identical to the WinZip distribution file available at www.winzip.com; (c) You may not distribute the Software with any other product or wrap the Software or any Software executable (.EXE, .MSI, .ISO or .DMG or similar executable now known or later developed) with any third party software add-on or offer; and (d) If You distribute the Software You may do so by electronic download or email, but not through the use of bulk mail, spam or unsolicited emails. Except pursuant to a separate express, written, fully-executed agreement with WinZip, You may not use Our Software for competitive analysis, or commercial, professional, or other for-profit purposes. You understand that at the end of the evaluation period, You must either stop using the Software or pay for the Software to continue using it. If You fail to pay for it, then Your license terminates. Upon expiration of the evaluation period, You will immediately discontinue use of the Evaluation Version and delete and destroy all electronic copies of the Evaluation Version including, but not limited to, all user documentation that may have been provided as part of the evaluation from Your computing device and any other computer devices on which You have installed the Evaluation Version. UNAUTHORIZED USE OF THE EVALUATION VERSION, USE OF THE EVALUATION VERSION BEFORE OR BEYOND THE APPLICABLE FIXED TERM, OR ANY ATTEMPT TO DEFEAT ANY TIME-CONTROL DISABLING FUNCTION IN THE EVALUATION VERSION IS AN UNAUTHORIZED USE CONSTITUTING A MATERIAL BREACH OF THIS EULA AND APPLICABLE LAW AND WILL AUTOMATICALLY AND IMMEDIATELY TERMINATE YOUR LICENSE TO USE THE SOFTWARE. - -LIMITED AND RESTRICTED WARRANTY (FOR COUNTRIES OTHER THAN THOSE LISTED SEPARATELY UNDER "ADDITIONAL EULA TERMS"). If You purchased the Software on a computer disc, then WinZip warrants that the media on which Software is furnished will be free of defects in materials and workmanship under normal use for a period of ninety (90) days from the date You purchased the Software. The Software when properly installed and under normal use will substantially conform to the features and functionality as set forth in the documentation accompanying the Software, however, the Software may contain normal bugs and errors. Therefore, the Software is provided on an "AS IS" basis with the understanding that bug fixes and Updates will be provided from time to time. This warranty is valid only for the original purchaser of the Software. IF THE DISC IS DEFECTIVE, THEN WINZIP'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY UNDER THIS WARRANTY WILL BE REPLACEMENT OF THE DEFECTIVE COMPUTER DISC IF YOU RETURN THE DEFECTIVE DISC TO US WITH A COPY OF YOUR RECEIPT. Your right to a replacement of the Software is void if the damage to the disc is a result of accident, abuse or misapplication. Any replacement Software will be warranted for the remainder of the original warranty period. YOU ASSUME ALL RESPONSIBILITIES FOR CHOOSING, INSTALLING, AND USING THE SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WINZIP DISCLAIMS ALL OTHER WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE SOFTWARE AND THE ACCOMPANYING WRITTEN MATERIALS. This clause shall not impair the U.S. Government's right to recover for fraud or crimes arising out of or related to this EULA under any federal fraud statute, including the False Claims Act, 31 U.S.C. §§ 3729-3733. - -SOME STATES OR COUNTRIES DO NOT ALLOW THE WARRANTY EXCLUSION OR LIMITATIONS; THE ABOVE LIMITATION MAY NOT APPLY TO YOU. In such instances and as long as You obtained the Software from WinZip, or a WinZip authorized reseller, WinZip may remedy substantial defects of the Software at its reasonable discretion by (i) providing a patch, Update or replacement of the Software, or (ii) asking for return of the Software and cancelling this EULA. You are entitled to a reduction of the purchase price or a rescission of this EULA only if WinZip has repeatedly failed to remedy the defect after a reasonable period of time. If You are a consumer, Your claims under this clause are time-barred in twenty-four (24) months; if You are a business, Your claims under this clause are time-barred in twelve (12) months. If You alter the Software in any way without being authorized by WinZip, WinZip will not remedy defects caused by such alteration and You are liable for any damages incurred by WinZip due to Your unauthorized alteration of the Software. IF YOU INSTALL PRE-RELEASE VERSION PRODUCTS MARKED AS SUCH, YOU DO SO AT YOUR OWN RISK. Pre-release version products are to be used only for test purposes in testing environments and must not be used for production purposes. To make a warranty claim You must provide a detailed error description to WinZip Customer Service (help@winzip.com) or, at WinZip's request, return the Software along with any return materials authorization information provided to You by WinZip to Corel Corporation, Attention: Manufacturing (WinZip), 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7, Canada. For further warranty information, please contact WinZip Customer Service at help@winzip.com. - -NO LIABILITY FOR OPEN SOURCE MATERIALS. THE SOFTWARE MAY CONTAIN "OPEN SOURCE" MATERIALS (E.G., ANY SOFTWARE SUBJECT TO OPEN SOURCE, COPYLEFT, GNU GENERAL PUBLIC LICENSE, LIBRARY GENERAL PUBLIC LICENSE, LESSER GENERAL PUBLIC LICENSE, MOZILLA LICENSE, BERKELEY SOFTWARE DISTRIBUTION LICENSE, OPEN SOURCE INITIATIVE LICENSE, MIT, APACHE OR PUBLIC DOMAIN LICENSES, OR SIMILAR LICENSE). WINZIP MAKES NO WARRANTIES, AND SHALL HAVE NO LIABILITY, DIRECT OR INDIRECT, WHATSOEVER WITH RESPECT TO OPEN SOURCE MATERIALS CONTAINED IN THE SOFTWARE. - -INDIRECT AND CONSEQUENTIAL DAMAGES (FOR COUNTRIES OTHER THAN THOSE LISTED SEPARATELY UNDER "ADDITIONAL EULA TERMS"): -NO LIABILITY FOR INDIRECT OR CONSEQUENTIAL DAMAGES. YOU ASSUME THE ENTIRE COST OF ANY DAMAGE RESULTING FROM THE INFORMATION CONTAINED IN OR COMPILED BY THE SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL WINZIP OR ITS SUPPLIERS OR LICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL WINZIP'S TOTAL LIABILITY TO YOU FOR ALL DAMAGES IN ANY ONE OR MORE CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU FOR THE SOFTWARE. THIS LIMITATION WILL APPLY REGARDLESS OF THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. - -SOME STATES OR COUNTRIES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES; THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IN SUCH INSTANCES AND AS LONG AS YOU OBTAINED THE SOFTWARE FROM WINZIP, OR A WINZIP AUTHORIZED RESELLER, WINZIP MAY BE LIABLE TO YOU (I) WITHOUT LIMITATION FOR DAMAGES YOU HAVE INCURRED UNDER OR IN CONNECTION WITH THIS EULA ONLY IF THE DAMAGE HAS BEEN CAUSED BY THE WILLFUL OR GROSSLY NEGLIGENT ACT OF WINZIP; AND (II) FOR THOSE TYPICAL DAMAGES THAT WERE REASONABLY FORESEEABLE AND WHICH HAVE BEEN CAUSED BY ANY OTHER NEGLIGENT BREACH OF AN ESSENTIAL CONTRACTUAL DUTY BY WINZIP. ANY FURTHER LIABILITY OF WINZIP IS EXCLUDED. THESE AFOREMENTIONED LIMITATIONS APPLY IRRESPECTIVE OF THEIR LEGAL BASIS, IN PARTICULAR WITH REGARD TO ANY PRE-CONTRACTUAL OR AUXILIARY CONTRACTUAL CLAIMS. These limitations shall not apply, however, to any mandatory liability under the applicable product liability laws, nor to any damage which is caused due to the breach of an express warranty to the extent that such express warranty was intended to protect consumers against the specific damage incurred, nor to damages due to loss of life, injury or prejudice to health. - -U.S. GOVERNMENT-RESTRICTED RIGHTS. With respect to any acquisition of the Software by or for any unit or agency of the United States Government (the "Government"), the Software shall be classified as "commercial computer software", as that term is defined in the applicable provisions of the Federal Acquisition Regulation (the "FAR") and supplements thereto, including the Department of Defense (DoD) FAR Supplement (the "DFARS"). The Software was developed entirely at private expense, and no part of the Software was first produced in the performance of a Government contract. If the Software is supplied for use by DoD, the Software is delivered subject to the terms of this EULA and either (i) in accordance with DFARS 227.7202-1(a) and 227.7202-3(a); or (ii) with restricted rights in accordance with DFARS 252-227-7013 (c)(1)(ii)(OCT 1988), as applicable. If the Software is supplied for use by a Federal agency other than DoD, the Software is restricted computer software delivered subject to the terms of this EULA and (i) FAR 12.212(a); (ii) FAR 52.227-19; or (iii) FAR 52.227-14 (ALT III), as applicable. The contractor/manufacturer is Corel Corporation, 1600 Carling Avenue, Ottawa, Ontario, Canada, K1Z 8R7. - -EXPORT RESTRICTIONS. If You are located in a country embargoed by the United States, or You are on the United States Treasury Department's list of Specially Designated Nationals You may not engage in commercial activities with Us or Our authorized resellers. You may not download, distribute, export, re-export, or redistribute the Software, including any WinZip shareware product (i) into, or to a national or resident of, any country to which the United States has embargoed goods, or (ii) to anyone on the United States Treasury Department's list of 'Specially Designated' nationals or the United States Commerce Department's 'Table of Deny Orders'. By downloading or using the Software, You are representing and warranting that You are not located in, under the control of, or a national or resident of any such country or on any such list. Except pursuant to a separate express, written, fully-executed agreement with WinZip, You may not purchase a license to use the Software for the purpose of exporting it to a country other than the original country of sale, nor may You retain the services of a third party to purchase a license to use the Software if in doing so You will require such third party to send (via any means, electronic or otherwise) the Software to You in a country other than the original country of sale. - -GENERAL. If You purchased or downloaded the Software in the United States then this EULA is governed by the laws of the United States and the State of California, without reference to conflict of laws principles. Any dispute between You and WinZip regarding this EULA will be subject to the exclusive venue of the state and federal courts in the State of California. This EULA specifically excludes the United Nations Convention on Contracts for the International Sale of Goods and any legislation implementing such 'Convention', if otherwise applicable. Except as expressly set forth herein to the extent permitted by applicable law, this EULA shall not prejudice the non-excludable, statutory rights of any party dealing as a consumer. If You acquired the Software in Canada, unless expressly prohibited by local law, this EULA is governed by the laws in force in the Province of Ontario, Canada; and, any dispute between You and WinZip regarding this EULA will be subject to the exclusive jurisdiction of the federal and provincial courts sitting in Toronto, Ontario. If You acquired the Software in the European Union, Iceland, Norway, or Switzerland, then local law applies. If You acquired the Software in any other country, then local law may apply. This EULA is the entire agreement between You and WinZip and supersedes any other communications or advertisements with respect to the Software and documentation. The Software, or any feature or part thereof, may not be available in all languages or in all countries. If WinZip has provided You with a translation of the English language version of this EULA, You agree that such translation is provided for Your convenience only and that the English language version, not the translation, of this EULA will be legally binding on You. The English language version of this EULA and not its translation(s) will govern in the event of a conflict between the English language version and a translation. The original English version of this EULA can be found at http://winzip.com/en/eula.htm. - -If and to the extent any provision of this EULA is held illegal, invalid, or unenforceable in whole or in part under applicable law, such provision or such portion thereof shall be ineffective as to the jurisdiction in which it is illegal, invalid, or unenforceable but only to the extent of its illegality, invalidity, or unenforceability and shall be deemed modified to the extent necessary to conform to applicable law so as to give the maximum effect to the intent of the parties. No term or provision in this EULA will be considered waived, and no breach excused, unless such waiver is in writing signed on behalf of the party against whom the waiver is asserted. No waiver (whether express or implied) will constitute consent to, waiver of, or excuse of any other, different, or subsequent breach. No modifications or amendments to this EULA will be binding upon WinZip unless made in writing and duly executed by You and an authorized representative of WinZip. - -Some Software versions may not be compatible with various computer operating systems and WinZip may not release Updates. The Software may not be compatible with computer operating systems that You may purchase now or in the future. - -You understand that the Software may be incorporated into, and may incorporate itself into, software and other technology owned and controlled by third parties. This EULA remains effective with such incorporation. Any and all other third party software or technology that may be distributed together with the Software may be subject to You explicitly accepting a license agreement with that third party and Your use of that software constitutes acceptance of such terms. WinZip's licensors shall be direct and intended third party beneficiaries of this EULA. - - - -ADDITIONAL EULA TERMS - -ENCRYPTION TECHNOLOGY CONTAINED IN WINZIP PRODUCTS: -YOU AGREE THAT WINZIP CANNOT GUARANTEE THAT THE ENCRYPTION TECHNOLOGY CONTAINED IN THE SOFTWARE IS COMPLETELY SECURE FROM DECODING BY THIRD PARTIES. ACCORDINGLY, WINZIP WILL NOT BE RESPONSIBLE FOR ANY LOSSES WHATSOEVER RESULTING FROM THIRD PARTY DECODING OF, OR ACCESS TO, YOUR FILES. - -Self-extracting Zip files created by WinZip's 'Self Extractor' trial version Software may contain extractor software ("Extraction Software"). You may not alter or modify the Extraction Software, nor give anyone permission to do so. Under no circumstances are You licensed to distribute Extraction Software. If You create self-extracting Zip files using an evaluation version of WinZip Self Extractor Software You may not transmit Your Zip files to a third party. However, the fully licensed (non-trial version of) WinZip Self Extractor may be used to create an unlimited number of freely distributable, royalty-free, self-extracting Zip files subject to the terms of this EULA. - -ADDITIONAL TERMS APPLICABLE TO USERS OF SOFTWARE LOCATED IN GERMANY OR AUSTRIA: -If You obtained the Software from WinZip or a WinZip authorized reseller in Germany or Austria and such country is Your legal residence, then the Germany and Austrian product liability and other consumer protection laws concerning remedies for defective goods shall apply and govern any inconsistencies between such laws and the provisions of this EULA set forth above. - -ADDITIONAL TERMS APPLICABLE TO USERS OF HARDWARE OR SOFTWARE LOCATED IN THE UNITED KINGDOM: -If (i) You are acting as a consumer and the United Kingdom is where Your legal residence; (ii) You entered into this EULA in the United Kingdom; and (iii) You have obtained the Software from WinZip or a WinZip authorized reseller in the United Kingdom (a "Consumer"), then the limitation of liability and warranty provisions set forth in applicable consumer protection and warranty laws of the United Kingdom shall apply and govern any inconsistencies between such laws and the provisions of this EULA set forth above. - -ADDITIONAL TERMS APPLICABLE TO USERS OF HARDWARE OR SOFTWARE LOCATED IN AUSTRALIA: -LIMITED WARRANTY (AUSTRALIAN CONSUMERS ONLY): -Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for "major failure" and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if goods fail to be of acceptable quality and the failure does not amount to a major failure. The term "major failure" is defined in the Australian Consumer Law and includes, but is not limited to, where the goods are substantially unfit for purpose and cannot easily and within a reasonable time be remedied to make them fit for such a purpose, or where the goods depart in one or more significant respects, if they were supplied by description – from that description. The warranty provided under this Section is provided by Corel Corporation of 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7, Canada. We warrant that the media on which Software is furnished will be free of defects in materials and workmanship under normal use for a period of ninety (90) days from the date You purchased the Software. The benefits provided by this express warranty are in addition to any other rights and remedies of the consumer under any law in relation to the goods or service to which the warranty relates. The Software when properly installed and under normal use will substantially conform to the features and functionality as set forth in the documentation accompanying the Software, however, the Software may contain normal bugs and errors. Bug fixes and Updates will be provided from time to time. If the disc is defective, then, without limiting any other obligations at law, WinZip will replace the defective computer disc if You return the defective disc to Us with a copy of Your receipt. Any replacement Software will be warranted for the original warranty period covered by this Section. - -EXCLUSIONS (AUSTRALIA ONLY): -THE WARRANTY PROVIDED UNDER THIS SECTION DOES NOT COVER DEFECTS OR PROBLEMS THAT ARISE DUE TO YOU CAUSING THE SOFTWARE TO BECOME OF UNACCEPTABLE QUALITY, SUCH AS FAILURE TO TAKE REASONABLE CARE OR DAMAGE CAUSED BY ABNORMAL USE. FURTHER, YOU ASSUME ALL RESPONSIBILITIES FOR CHOOSING, INSTALLING, AND USING THE SOFTWARE. EXCEPT AS SET OUT ABOVE, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WINZIP DISCLAIMS ALL OTHER WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT WITH RESPECT TO THE SOFTWARE AND THE ACCOMPANYING WRITTEN MATERIALS. IF YOU ALTER THE SOFTWARE IN ANY WAY WITHOUT BEING AUTHORIZED BY WINZIP, WINZIP WILL NOT REMEDY DEFECTS CAUSED BY SUCH ALTERATION AND YOU ARE LIABLE FOR ANY DAMAGES INCURRED BY WINZIP DUE TO YOUR UNAUTHORIZED ALTERATION. IF YOU INSTALL PRE-RELEASE VERSION PRODUCTS MARKED AS SUCH, YOU DO SO AT YOUR OWN RISK. PRE-RELEASE VERSION PRODUCTS ARE TO BE USED ONLY FOR TEST PURPOSES IN TESTING ENVIRONMENTS AND MUST NOT BE USED FOR PRODUCTION PURPOSES. THE SOFTWARE MAY CONTAIN "OPEN SOURCE" MATERIALS (E.G., ANY SOFTWARE SUBJECT TO OPEN SOURCE, COPYLEFT, GNU GENERAL PUBLIC LICENSE, LIBRARY GENERAL PUBLIC LICENSE, LESSER GENERAL PUBLIC LICENSE, MOZILLA LICENSE, BERKELEY SOFTWARE DISTRIBUTION LICENSE, OPEN SOURCE INITIATIVE LICENSE, MIT, APACHE OR PUBLIC DOMAIN LICENSES, OR SIMILAR LICENSE). TO THE EXTENT PERMISSIBLE AT LAW WINZIP MAKES NO WARRANTIES, AND SHALL HAVE NO LIABILITY, DIRECT OR INDIRECT, WHATSOEVER WITH RESPECT TO OPEN SOURCE MATERIALS CONTAINED IN THE SOFTWARE. - -HOW TO CLAIM UNDER THE WARRANTY (AUSTRALIA ONLY): -For the warranty to be honored, You must contact WinZip's Customer Service centre at help@winzip.com and seek a Return Merchandise Authorization ("RMA"). More detailed RMA instructions together with shipping information and an RMA number will then be sent to You by email. You will be required to provide proof of purchase and bear the costs of returning the Software. The Software together with all related media and manuals must be returned to Corel Corporation, Attention: Manufacturing (WinZip), 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7, Canada and must be uninstalled from Your computer and any storage devices and You must delete any backup copies. We will endeavor to process Your claim within ten (10) business days from the date WinZip receives it. If We accept that the Software is defective, a replacement disc will be provided to You by mail. - -INDIRECT AND CONSEQUENTIAL LOSS (AUSTRALIA ONLY): -TO THE EXTENT PERMITTED UNDER AUSTRALIAN LAW, WINZIP SHALL HAVE NO LIABILITY FOR INDIRECT OR CONSEQUENTIAL DAMAGES. YOU ASSUME THE ENTIRE COST OF ANY DAMAGE RESULTING FROM THE INFORMATION CONTAINED IN OR COMPILED BY THE SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL WINZIP OR ITS SUPPLIERS OR LICENSORS BE LIABLE FOR ANY DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER INDIRECT PECUNIARY LOSS) ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -ADDITIONAL TERMS APPLICABLE TO USERS OF SOFTWARE CONTAINING SHAREWARE: -Certain Software are shareware and as such are acquired without charge and can be used for a limited period of time for evaluation purposes and are subject to the particular end user license for such shareware. - -ADDITIONAL TERMS APPLICABLE TO USERS OF CLIPART, STOCK PHOTO IMAGES, VIDEO CONTENT, AUDIO CLIPS, FONTS AND SAMPLE CONTENT: -Our Software may contain clipart, photo images, video content, audio clips (collectively referred to as the "Images or Clips"), software data files that render typeface designs when used in conjunction with appropriate hardware and software (for example only, without limitation,.ttf or .otf files) referred to as "Font Software", and the graphic rendering generated by the Font Software referred to as "Font Output" and sample content such as forms, templates, "tubes" or similar items (collectively referred to as the "Sample Content") that are either owned by Us or licensed from a third-party. Except as required in the paragraph below, as a user of Our Software You are free to use, modify and publish the Images or Clips, Font Output or Sample Content as follows: You may (i) incorporate any Images or Clips, Font Output, or Sample Content into Your own original work and publish, display and distribute Your work in any media, provided You include a copyright notice in Your work reflecting on the copyright ownership of both You and WinZip as follows: "Copyright (c) 20__ [Your name], WinZip Computing, S.L. and its licensors. All rights reserved."; and (ii) make one (1) copy of the Images or Clips, Font Software, or Sample Content for backup or archival purposes. YOU MAY NOT RESELL, SUBLICENSE OR OTHERWISE MAKE AVAILABLE THE IMAGES OR CLIPS, OR FONT SOFTWARE FOR USE OR DISTRIBUTION SEPARATELY OR DETACHED FROM A PRODUCT OR WEB PAGE. For example, the Images or Clips or Font Output may be used by You as part of a web page design, but not be made available for downloading separately (use of the Font Software as a web font, utilizing the CSS3@font-face specification or similar is specifically prohibited) or in a format designed or intended for permanent storage or re-use by others. YOU MAY NOT PROVIDE THE IMAGES OR CLIPS OR FONT SOFTWARE TO THIRD PARTIES OR PERMIT THE USE OF THE IMAGES OR CLIPS OR FONT SOFTWARE OR FONT OUTPUT BY THIRD PARTIES SEPARATELY OR AS PART OF ANY OTHER PRODUCT, HOWEVER, THIRD PARTIES MAY BE PROVIDED WITH COPIES OF THE IMAGES OR CLIPS OR FONT OUTPUT (INCLUDING IN DIGITAL FILES) AS PART OF A WORK PRODUCT. YOU MAY NOT CREATE SCANDALOUS, OBSCENE, DEFAMATORY OR IMMORAL WORKS USING THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT NOR USE THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT FOR ANY OTHER PURPOSE WHICH IS PROHIBITED BY LAW. YOU MAY NOT PERMIT THE USE OF THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT OR ANY PART THEREOF AS A TRADEMARK OR SERVICE MARK, OR CLAIM ANY PROPRIETARY RIGHTS OF ANY SORT IN THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT OR ANY PART THEREOF. YOU MAY NOT USE ANY OF THE IMAGES OR CLIPS WHICH CONTAIN IDENTIFIABLE INDIVIDUALS OR ENTITIES FOR ANY COMMERCIAL PURPOSE INCLUDING, WITHOUT LIMITATION, IN A MANNER WHICH SUGGESTS THEIR ASSOCIATION WITH OR ENDORSEMENT OF ANY PRODUCT OR SERVICE. YOU MAY NOT USE THE IMAGES OR CLIPS IN ELECTRONIC FORMAT, ON-LINE OR IN MULTIMEDIA APPLICATIONS UNLESS THE IMAGES OR CLIPS ARE INCORPORATED FOR VIEWING PURPOSES ONLY AND NO PERMISSION IS GIVEN TO DOWNLOAD AND/OR SAVE THE IMAGES OR CLIPS FOR ANY REASON. YOU MAY NOT RENT, LEASE, SUBLICENSE OR LEND THE IMAGES OR CLIPS OR FONT SOFTWARE OR FONT OUTPUT, OR ANY COPIES THEREOF, TO ANOTHER PERSON OR LEGAL ENTITY. YOU MAY NOT MODIFY THE FONT SOFTWARE IN ANY WAY. YOU MAY NOT USE ANY IMAGES OR CLIPS PRESENTED IN ANY SOFTWARE SPLASHSCREENS, WELCOME SCREENS, PRODUCT PACKAGING AND/OR MARKETING COLLATERAL. YOU MAY NOT USE ANY IMAGES OR CLIPS, FONT SOFTWARE OR FONT OUTPUT OR SAMPLE CONTENT EXCEPT AS EXPRESSLY PERMITTED BY THIS EULA. You may, however, transfer subject to WinZip's license transfer authorization, all Your EULA to use the Images or Clips or Font Software to another person or legal entity, provided that (i) You transfer the Software, including the Images or Clips or Font Software, and this EULA, including all copies (except copies incorporated into Your work product as permitted under this EULA), to such person or entity, (ii) You retain no copies, including copies stored on a computer or other storage device, and (iii) the receiving party agrees to be bound by the terms and conditions of this EULA. - -October 2012 (1.0) \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/winzip-eula.yml b/tests/licensedcode/data/licenses/winzip-eula.yml deleted file mode 100644 index 412038059ba..00000000000 --- a/tests/licensedcode/data/licenses/winzip-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - winzip-eula diff --git a/tests/licensedcode/data/licenses/winzip-self-extractor.txt b/tests/licensedcode/data/licenses/winzip-self-extractor.txt deleted file mode 100644 index 4159b6215f1..00000000000 --- a/tests/licensedcode/data/licenses/winzip-self-extractor.txt +++ /dev/null @@ -1,13 +0,0 @@ -License requirements to distribute self-extracting Zip files - -If you are using a registered copy of WinZip Self-Extractor, you do not need any additional license in order to distribute the self-extracting Zip files you create. The license requirements for the software in the self-extracting Zip files you create, though, is your responsibility. - -In regards to usage, the WinZip Self-Extractor Registered License states: - -If you have purchased a single-user license you have the right to install and use a single copy of WinZip Self-Extractor on one computer or workstation. If you have purchased a multi-user license and received a valid registration file or code, you or your organization have the right to install a copy of WinZip Self-Extractor on multiple computers up to the number of "Licensed Copies" that you have acquired, as indicated in the documents issued by WinZip Computing when granting the License. - -Here is the section of the license that specifically addresses distribution of the self-extracting Zip files you create: - -WinZip Self-Extractor may be used to create an unlimited number of freely distributable, royalty-free self-extracting Zip files. Each self-extracting Zip file contains, among other things, a portion of WinZip Self-Extractor, including copyrighted software, proprietary notices, and identifying information (this portion is the "Extraction Software"). You may not alter or modify the Extraction Software, nor give anyone permission to do so. - -If you have additional questions about license requirements for self-extractors, please email the Service Department. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/winzip-self-extractor.yml b/tests/licensedcode/data/licenses/winzip-self-extractor.yml deleted file mode 100644 index 9ab026496f9..00000000000 --- a/tests/licensedcode/data/licenses/winzip-self-extractor.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - winzip-self-extractor diff --git a/tests/licensedcode/data/licenses/x11-fsf_4.txt b/tests/licensedcode/data/licenses/x11-fsf_4.txt deleted file mode 100644 index 0713ff4f90d..00000000000 --- a/tests/licensedcode/data/licenses/x11-fsf_4.txt +++ /dev/null @@ -1,6 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, distribute with modifications, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright holders shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/x11-fsf_4.yml b/tests/licensedcode/data/licenses/x11-fsf_4.yml deleted file mode 100644 index 03a20a6e0e6..00000000000 --- a/tests/licensedcode/data/licenses/x11-fsf_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - x11-fsf diff --git a/tests/licensedcode/data/licenses/x11.txt b/tests/licensedcode/data/licenses/x11.txt deleted file mode 100644 index e9857fedc4f..00000000000 --- a/tests/licensedcode/data/licenses/x11.txt +++ /dev/null @@ -1,15 +0,0 @@ -ICU License - ICU 1.8.1 and later - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1995-2010 International Business Machines Corporation and others - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. - -All trademarks and registered trademarks mentioned herein are the property of their respective owners. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/x11.yml b/tests/licensedcode/data/licenses/x11.yml deleted file mode 100644 index 27df195b896..00000000000 --- a/tests/licensedcode/data/licenses/x11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - x11 diff --git a/tests/licensedcode/data/licenses/x11_1.txt b/tests/licensedcode/data/licenses/x11_1.txt deleted file mode 100644 index 677f38878da..00000000000 --- a/tests/licensedcode/data/licenses/x11_1.txt +++ /dev/null @@ -1,28 +0,0 @@ -ICU License - ICU 1.8.1 and later - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1995-2009 International Business Machines Corporation and others - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this -software and associated documentation files (the "Software"), to deal in the Software -without restriction, including without limitation the rights to use, copy, modify, merge, -publish, distribute, and/or sell copies of the Software, and to permit persons to whom -the Software is furnished to do so, provided that the above copyright notice(s) and this -permission notice appear in all copies of the Software and that both the above copyright -notice(s) and this permission notice appear in supporting documentation. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL -INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF -USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used -in advertising or otherwise to promote the sale, use or other dealings in this Software -without prior written authorization of the copyright holder. - diff --git a/tests/licensedcode/data/licenses/x11_1.yml b/tests/licensedcode/data/licenses/x11_1.yml deleted file mode 100644 index 27df195b896..00000000000 --- a/tests/licensedcode/data/licenses/x11_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - x11 diff --git a/tests/licensedcode/data/licenses/xskat.txt b/tests/licensedcode/data/licenses/xskat.txt deleted file mode 100644 index c4a385f02bd..00000000000 --- a/tests/licensedcode/data/licenses/xskat.txt +++ /dev/null @@ -1,10 +0,0 @@ -This program is free software; you can redistribute it freely. -Use it at your own risk; there is NO WARRANTY. - -Redistribution of modified versions is permitted provided that the following conditions are met: - -1. All copyright & permission notices are preserved. - -2.a) Only changes required for packaging or porting are made. -or -2.b) It is clearly stated who last changed the program. The program is renamed or the version number is of the form x.y.z, where x.y is the version of the original program and z is an arbitrary suffix. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/xskat.yml b/tests/licensedcode/data/licenses/xskat.yml deleted file mode 100644 index 8e843fbc40c..00000000000 --- a/tests/licensedcode/data/licenses/xskat.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - xskat diff --git a/tests/licensedcode/data/licenses/xxd.txt b/tests/licensedcode/data/licenses/xxd.txt deleted file mode 100644 index 604d008b605..00000000000 --- a/tests/licensedcode/data/licenses/xxd.txt +++ /dev/null @@ -1,3 +0,0 @@ -Distribute freely and credit me, -make money and share with me, -lose money and don't ask me. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/xxd.yml b/tests/licensedcode/data/licenses/xxd.yml deleted file mode 100644 index f84aec6e61e..00000000000 --- a/tests/licensedcode/data/licenses/xxd.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - xxd diff --git a/tests/licensedcode/data/licenses/zlib-acknowledgement.txt b/tests/licensedcode/data/licenses/zlib-acknowledgement.txt deleted file mode 100644 index d622c77cc22..00000000000 --- a/tests/licensedcode/data/licenses/zlib-acknowledgement.txt +++ /dev/null @@ -1,15 +0,0 @@ -Copyright (c) 2002-2007 Charlie Poole -Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov -Copyright (c) 2000-2002 Philip A. Craig - -This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. - -Portions Copyright (c) 2002-2007 Charlie Poole or Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright (c) 2000-2002 Philip A. Craig - -2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/zlib-acknowledgement.yml b/tests/licensedcode/data/licenses/zlib-acknowledgement.yml deleted file mode 100644 index 0b2ec1b0b25..00000000000 --- a/tests/licensedcode/data/licenses/zlib-acknowledgement.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zlib-acknowledgement diff --git a/tests/licensedcode/data/licenses/zlib_2.txt b/tests/licensedcode/data/licenses/zlib_2.txt deleted file mode 100644 index ca6f32dffd8..00000000000 --- a/tests/licensedcode/data/licenses/zlib_2.txt +++ /dev/null @@ -1 +0,0 @@ -For conditions of distribution and use, see copyright notice in zlib.h \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/zlib_2.yml b/tests/licensedcode/data/licenses/zlib_2.yml deleted file mode 100644 index 6878e141c8f..00000000000 --- a/tests/licensedcode/data/licenses/zlib_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zlib diff --git a/tests/licensedcode/data/licenses/zlib_3.txt b/tests/licensedcode/data/licenses/zlib_3.txt deleted file mode 100644 index a25a5a5bfdf..00000000000 --- a/tests/licensedcode/data/licenses/zlib_3.txt +++ /dev/null @@ -1,17 +0,0 @@ -BSD LIKE - -This software is provided 'as-is', without any express or implied -warranty In no event will the authors be held liable for any damages -arising from the use of this software - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1 The origin of this software must not be misrepresented; you must not - claim that you wrote the original software If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required -2 Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software -3 This notice may not be removed or altered from any source distribution diff --git a/tests/licensedcode/data/licenses/zlib_3.yml b/tests/licensedcode/data/licenses/zlib_3.yml deleted file mode 100644 index 6878e141c8f..00000000000 --- a/tests/licensedcode/data/licenses/zlib_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zlib diff --git a/tests/licensedcode/data/licenses/zlib_4.txt b/tests/licensedcode/data/licenses/zlib_4.txt deleted file mode 100644 index c996e8d92f7..00000000000 --- a/tests/licensedcode/data/licenses/zlib_4.txt +++ /dev/null @@ -1,15 +0,0 @@ -This software is provided 'as-is', without any express or implied warranty. In -no event will the authors be held liable for any damages arising from the use of -this software. - -Permission is granted to anyone to use this software for any purpose, including -commercial applications, and to alter it and redistribute it freely, subject to -the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not claim - that you wrote the original software. If you use this software in a - product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/zlib_4.yml b/tests/licensedcode/data/licenses/zlib_4.yml deleted file mode 100644 index 6878e141c8f..00000000000 --- a/tests/licensedcode/data/licenses/zlib_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zlib diff --git a/tests/licensedcode/data/licenses/zveno-research.txt b/tests/licensedcode/data/licenses/zveno-research.txt deleted file mode 100644 index b6b9230fba7..00000000000 --- a/tests/licensedcode/data/licenses/zveno-research.txt +++ /dev/null @@ -1,10 +0,0 @@ -http://www.zveno.com/ - -Zveno makes this software available free of charge for any purpose. -This software may be copied, and distributed, with or without -modifications; but this notice must be included on any copy. - -The software was developed for research purposes only and Zveno does not -warrant that it is error free or fit for any purpose. Zveno disclaims any -liability for all claims, expenses, losses, damages and costs any user may -incur as a result of using, copying or modifying this software. \ No newline at end of file diff --git a/tests/licensedcode/data/licenses/zveno-research.yml b/tests/licensedcode/data/licenses/zveno-research.yml deleted file mode 100644 index 08a8b4f6607..00000000000 --- a/tests/licensedcode/data/licenses/zveno-research.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zveno-research diff --git a/tests/licensedcode/data/models/validate/apache-2.0.LICENSE b/tests/licensedcode/data/models/validate/apache-2.0.LICENSE new file mode 100644 index 00000000000..7348616c691 --- /dev/null +++ b/tests/licensedcode/data/models/validate/apache-2.0.LICENSE @@ -0,0 +1,5 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/tests/licensedcode/data/models/validate/apache-2.0.yml b/tests/licensedcode/data/models/validate/apache-2.0.yml new file mode 100644 index 00000000000..abeb5d2fb3c --- /dev/null +++ b/tests/licensedcode/data/models/validate/apache-2.0.yml @@ -0,0 +1,11 @@ +key: apache-2.0 +short_name: Apache 2.0 +name: Apache License 2.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-2.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +osi_url: http://opensource.org/licenses/apache2.0.php +faq_url: http://www.apache.org/foundation/licence-FAQ.html diff --git a/tests/licensedcode/data/models/validate/bsd-ack-carrot2.LICENSE b/tests/licensedcode/data/models/validate/bsd-ack-carrot2.LICENSE new file mode 100644 index 00000000000..7348616c691 --- /dev/null +++ b/tests/licensedcode/data/models/validate/bsd-ack-carrot2.LICENSE @@ -0,0 +1,5 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/tests/licensedcode/data/models/validate/bsd-ack-carrot2.yml b/tests/licensedcode/data/models/validate/bsd-ack-carrot2.yml new file mode 100644 index 00000000000..2f7cbaf8fab --- /dev/null +++ b/tests/licensedcode/data/models/validate/bsd-ack-carrot2.yml @@ -0,0 +1 @@ +key: bsd-ack-carrot2 diff --git a/tests/licensedcode/data/models/validate/gpl-1.0-plus.LICENSE b/tests/licensedcode/data/models/validate/gpl-1.0-plus.LICENSE new file mode 100644 index 00000000000..e24d1d2a7a7 --- /dev/null +++ b/tests/licensedcode/data/models/validate/gpl-1.0-plus.LICENSE @@ -0,0 +1,5 @@ +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/models/validate/gpl-1.0-plus.yml b/tests/licensedcode/data/models/validate/gpl-1.0-plus.yml new file mode 100644 index 00000000000..1ff5be49307 --- /dev/null +++ b/tests/licensedcode/data/models/validate/gpl-1.0-plus.yml @@ -0,0 +1,7 @@ +key: gpl-1.0-plus +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +spdx_license_key: GPL-1.0 diff --git a/tests/licensedcode/data/models/validate/gpl-1.0.LICENSE b/tests/licensedcode/data/models/validate/gpl-1.0.LICENSE new file mode 100644 index 00000000000..b8f7fb132a9 --- /dev/null +++ b/tests/licensedcode/data/models/validate/gpl-1.0.LICENSE @@ -0,0 +1,5 @@ +GNU GENERAL PUBLIC LICENSE + Version 1, February 1989 + + Copyright (C) 1989 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/tests/licensedcode/data/models/validate/gpl-1.0.yml b/tests/licensedcode/data/models/validate/gpl-1.0.yml new file mode 100644 index 00000000000..4c0ae6c54c5 --- /dev/null +++ b/tests/licensedcode/data/models/validate/gpl-1.0.yml @@ -0,0 +1,17 @@ +key: gpl-1.0 +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: GNU Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-1.0.txt +text_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt + - http://www.gnu.org/licenses/gpl-1.0.txt + - +faq_url: http://www.gnu.org/licenses/gpl-1.0.txt +osi_url: http://www.gnu.org/licenses/gpl-1.0.txt +other_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html + - http://www.gnu.org/licenses/gpl-1.0.txt + - http://www.gnu.org/licenses/gpl-1.0.txt + - diff --git a/tests/licensedcode/data/models/validate/w3c-docs-19990405.yml b/tests/licensedcode/data/models/validate/w3c-docs-19990405.yml new file mode 100644 index 00000000000..a4c99d2ec80 --- /dev/null +++ b/tests/licensedcode/data/models/validate/w3c-docs-19990405.yml @@ -0,0 +1,6 @@ +key: w3c-docs-19990405 +short_name: W3C-DOCS-19990405 +name: W3C Document Notice and License (1999-04-05) +category: Permissive Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 diff --git a/tests/licensedcode/data/more_licenses/licenses/abstyles.txt b/tests/licensedcode/data/more_licenses/licenses/abstyles.txt deleted file mode 100644 index 624616ed55c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/abstyles.txt +++ /dev/null @@ -1,11 +0,0 @@ -This is APREAMBL.TEX, version 1.10e, written by Hans-Hermann Bode -(HHBODE@DOSUNI1.BITNET), for the BibTeX ''adaptable'' family, version 1.10. -See the file APREAMBL.DOC for a detailed documentation. - -This program is distributed WITHOUT ANY WARRANTY, express or implied. - -Copyright (C) 1991, 1992 Hans-Hermann Bode - -Permission is granted to make and distribute verbatim copies of this document provided that the copyright notice and this permission notice are preserved on all copies. - -Permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/abstyles.yml b/tests/licensedcode/data/more_licenses/licenses/abstyles.yml deleted file mode 100644 index e810d92f6ca..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/abstyles.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - abstyles -notes: this is a license from fossology license reference Abstyles (Abstyles License) https://fedoraproject.org/wiki/Licensing/Abstyles diff --git a/tests/licensedcode/data/more_licenses/licenses/ace.txt b/tests/licensedcode/data/more_licenses/licenses/ace.txt deleted file mode 100644 index f38cc20fcb3..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ace.txt +++ /dev/null @@ -1,14 +0,0 @@ -Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), DAnCE(TM), and CoSMIC(TM) - -ACE(TM), TAO(TM), CIAO(TM), DAnCE>(TM), and CoSMIC(TM) (henceforth referred to as "DOC software") are copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009, all rights reserved. Since DOC software is open-source, freely available software, you are free to use, modify, copy, and distribute--perpetually and irrevocably--the DOC software source code and object code produced from the source, as well as copy and distribute modified versions of this software. You must, however, include this copyright statement along with any code built using DOC software that you release. No copyright statement needs to be provided if you just ship binary executables of your software products. -You can use DOC software in commercial and/or binary software releases and are under no obligation to redistribute any of your source code that is built using DOC software. Note, however, that you may not misappropriate the DOC software code, such as copyrighting it yourself or claiming authorship of the DOC software code, in a way that will prevent DOC software from being distributed freely using an open-source development model. You needn''t inform anyone that you''re using DOC software in your software, though we encourage you to let us know so we can promote your project in the DOC software success stories. - -The ACE, TAO, CIAO, DAnCE, and CoSMIC web sites are maintained by the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center for Distributed Object Computing of Washington University, St. Louis for the development of open-source software as part of the open-source software community. Submissions are provided by the submitter ``as is'''' with no warranties whatsoever, including any warranty of merchantability, noninfringement of third party intellectual property, or fitness for any particular purpose. In no event shall the submitter be liable for any direct, indirect, special, exemplary, punitive, or consequential damages, including without limitation, lost profits, even if advised of the possibility of such damages. Likewise, DOC software is provided as is with no warranties of any kind, including the warranties of design, merchantability, and fitness for a particular purpose, noninfringement, or arising from a course of dealing, usage or trade practice. Washington University, UC Irvine, Vanderbilt University, their employees, and students shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by DOC software or any part thereof. Moreover, in no event will Washington University, UC Irvine, or Vanderbilt University, their employees, or students be liable for any lost revenue or profits or other special, indirect and consequential damages. - -DOC software is provided with no support and without any obligation on the part of Washington University, UC Irvine, Vanderbilt University, their employees, or students to assist in its use, correction, modification, or enhancement. A number of companies around the world provide commercial support for DOC software, however. DOC software is Y2K-compliant, as long as the underlying OS platform is Y2K-compliant. Likewise, DOC software is compliant with the new US daylight savings rule passed by Congress as "The Energy Policy Act of 2005," which established new daylight savings times (DST) rules for the United States that expand DST as of March 2007. Since DOC software obtains time/date and calendaring information from operating systems users will not be affected by the new DST rules as long as they upgrade their operating systems accordingly. - -The names ACE(TM), TAO(TM), CIAO(TM), DAnCE(TM), CoSMIC(TM), Washington University, UC Irvine, and Vanderbilt University, may not be used to endorse or promote products or services derived from this source without express written permission from Washington University, UC Irvine, or Vanderbilt University. This license grants no permission to call products or services derived from this source ACE(TM), TAO(TM), CIAO(TM), DAnCE(TM), or CoSMIC(TM), nor does it grant permission for the name Washington University, UC Irvine, or Vanderbilt University to appear in their names. - -If you have any suggestions, additions, comments, or questions, please let me know. - -Douglas C. Schmidt \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ace.yml b/tests/licensedcode/data/more_licenses/licenses/ace.yml deleted file mode 100644 index 1665fe079db..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ace.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ace-tao -notes: this is a license from fossology license reference ACE (ACE) http://www.cs.wustl.edu/~schmidt/ACE-copying.html diff --git a/tests/licensedcode/data/more_licenses/licenses/afl-3.0.txt b/tests/licensedcode/data/more_licenses/licenses/afl-3.0.txt deleted file mode 100644 index ddfd0c99c46..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/afl-3.0.txt +++ /dev/null @@ -1,46 +0,0 @@ -Academic Free License ("AFL") v. 3.0 -This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: - -Licensed under the Academic Free License version 3.0 - -1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: - -a) to reproduce the Original Work in copies, either alone or as part of a collective work; - -b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute or communicate copies of the Original Work and Derivative Works to the public, under any license of your choice that does not contradict the terms and conditions, including Licensor''s reserved rights and remedies, in this Academic Free License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor''s trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. - -9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. - -12) Attorneys'' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys'' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/afl-3.0.yml b/tests/licensedcode/data/more_licenses/licenses/afl-3.0.yml deleted file mode 100644 index b069386e774..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/afl-3.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - afl-3.0 -notes: this is a license from fossology license reference AFL-3.0 (Academic Free License 3.0) - http://www.opensource.org/licenses/afl-3.0.php diff --git a/tests/licensedcode/data/more_licenses/licenses/against-drm.txt b/tests/licensedcode/data/more_licenses/licenses/against-drm.txt deleted file mode 100644 index 066aac68f76..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/against-drm.txt +++ /dev/null @@ -1,144 +0,0 @@ -1. Definitions - -Access control mechanism: a technological measure which, in the ordinary course of its operation, requires the application of information, or a process or a treatment, with the authority of the copyright owner or related rights owner, to gain access to the work. - -Acts authorised by licensor: acts concerning granted rights (in particular, act of access, act of copy, act of modification, act of sharing). - -Acts not authorised by licensor: acts concerning copyright or possible moral rights. - -Author/s: the creator/s of an original work or the creator/s of a derivative work. - -Broadcasting: the use of any means of distribution over a distance, such as telegraph, telephone, radio, television and other comparable media, including communication to the public by satellite and cable retransmission. - -Copy control mechanism: a technological measure which, in the ordinary course of its operation, prevents, restricts, or otherwise limits the exercise of a right of the copyright owner or related rights owner. - -Derivative work: a work based upon the copyrightable work released under the terms and the conditions of this license. - -Distribution: the marketing, the placing in circulation or the making available to the public, by whatever means and for whatever purpose, of a work or of copies thereof. - -Elaboration: all forms of modification, adaptation and transformation of a work. - -Lending: the making available for use of originals, of copies or of carriers of copyright works, for a limited period of time and for purposes other than those referred to in the paragraph 16. - -Licensee: the person acquiring rights under the terms and the conditions of this license. - -Licensor: the person offering the work under the terms and the conditions of this license. - -Moral rights: the author''s right, recognized in some countries, to claim authorship of the work and to object to any distortion, mutilation or other modification of, or other derogatory action in relation to, the said work, which would be prejudicial to his honor or reputation; other author''s rights recognized as moral rights in some countries. - -Original work: a work not based upon another work. - -Related rights: the rights that belong to the performers, the producers of phonograms and broadcasting organizations in relation to their performances, phonograms and broadcasts respectively. - -Rental: the making available for use of originals, of copies or of carriers of copyright works, for a limited period of time and for direct or indirect economic or commercial advantage. - -Reproduction: the multiplication of copies of a work by any means, such as copying by hand, printing, lithography, engraving, photography, phonography, cinematography and any other process of reproduction. - -Transcription: the use of means suitable for transforming an oral work into a written work or into a work reproduced by one of the methods referred to in the preceding paragraph. - -Translation: the translation of the work into another language or dialect. - -Work: the copyrightable work released under the terms and the conditions of this license. - - -2. License''s area of applicability - -This license concerns copyright and related rights: this license does not treat any other right. - -Nothing in this license is intended to prevent or restrict the exercise of rights not treated in this license, such as rights concerning privacy, private property, sale and other personal or private rights. - -Nothing in this license is intended to prevent or restrict the private use of any lawful technological measure. - -Nothing in this license is intended to prevent or restrict any limitation on the exclusive rights of the copyright owner or related rights owner under copyright law or other applicable law. - -This license is applicable to the works of the mind having a creative character and belonging to literature, music, figurative arts, architecture, theater or cinematography, whatever their mode or form of expression. - - -3. Object - -In particular, this license is applicable to: - -a. literary, dramatic, scientific, didactic and religious works, whether in written or oral form; - -b. musical works and compositions, with or without words, dramatico-musical works and musical variations that themselves constitute original works; - -c. choreographic works and works of dumb show, the form of which is fixed in writing or otherwise; - -d. works of sculpture, painting, drawing, engraving and similar figurative arts, including scenic art; - -e. architectural plans and works; - -f. works of cinematographic art, whether silent or with sound; - -g. works of photographic art and works expressed with processes analogous to photography; - -h. industrial design works that have creative character or inherent artistic character; - -i. collective works formed by the assembling of works, or parts of works, and possessing the character of a self-contained creation resulting from selection and coordination with a specific literary, scientific, didactic, religious, political or artistic aim, such as encyclopedias, dictionaries, anthologies, magazines and newspapers; - -j. works of a creative character derived from any such work, such as translations into another language, transformations into any other literary or artistic form, modifications and additions constituting a substantial remodeling of the original work, adaptations, arrangements, abridgments and variations which do not constitute an original work. - - -4. Grant of rights - -Licensor authorizes licensee to exercise the following rights: -a. right of reproduction; -b. right of distribution; -c. right of publishing (also in a collection); -d. right of public performance or recitation; -e. right of broadcasting; -f. right of modification; -g. right of elaboration; -h. right of transcription; -i. right of translation; -j. right of lending; -k. right of rental; -l. right of commercial use. - - -5. Related rights and sublicensing - -Licensor declares to be related rights owner and he authorizes licensee to exercise them. - -If the work is not object of related rights, preceding paragraph must be considered as void and having no legal effect. - -Licensee may not sublicense the work. - - -6. No DRM - -This license is incompatible with any technology, device or component that, in the normal course of its operation, is designed to prevent or restrict acts which are authorised or not authorised by licensor: this incompatibility causes the inapplicability of the license to the work. - -In particular: -a. it is not possible to release validly under this license works or derivative works whose access control mechanism and/or copy control mechanism prevents or restricts quantitatively and/or qualitatively access to, fruition, copy, modification and/or sharing of them; -b. in conformity with this license, it is not allowed to prevent or restrict quantitatively and/or qualitatively access to, fruition, copy, modification, and/or sharing of works or derivative works through an access control mechanism and/or a copy control mechanism; -c. in conformity with this license, it is not allowed to prevent or restrict the exercise of a granted right through any digital, analog or physical method. - - -7. Copyleft clause - -Derivative works, performances of the work, phonograms in which the work is fixed, broadcastings of the work must be released with a license that provides: -a. the renunciation to exclusive exercise of rights referred to in the articles 4 and 5; -b. the same type of clause described in article 6; -c. the same type of clause described in this article. - - -8. Resolutory clause - -Any breach of this license (in particular, the breach of the articles 6 and 7) will automatically void this license, without the necessity of any communication from licensor. - - -9. DISCLAIMER - -TO THE EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED. TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES HOWEVER CAUSED. - - -10. Copyright notice - -[Original work] Copyright (C) [year/s] [name/s of author/s] -[Work] Copyright (C) [year/s] [name/s of author/s] -[Derivative work] Copyright (C) [year/s] [name/s of author/s] - -Licensee must keep intact copyright notice and all notices that refer to this license. - -Licensee must include a copy of this license with every copy of the work the licensee distributes, publicly demonstrates or publicly performs. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/against-drm.yml b/tests/licensedcode/data/more_licenses/licenses/against-drm.yml deleted file mode 100644 index 2a83f7eeb34..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/against-drm.yml +++ /dev/null @@ -1,5 +0,0 @@ -expected_failure: yes -license_expressions: - - free-unknown - - kalle-kaukonen -notes: this is a license from fossology license reference Against-DRM (Against DRM 2.0) http://www.freecreations.org/Against_DRM2.html diff --git a/tests/licensedcode/data/more_licenses/licenses/agpl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/agpl-1.0.txt deleted file mode 100644 index b890205d9f3..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/agpl-1.0.txt +++ /dev/null @@ -1,95 +0,0 @@ -AFFERO GENERAL PUBLIC LICENSE -Version 1, March 2002 - -Copyright © 2002 Affero Inc. -510 Third Street - Suite 225, San Francisco, CA 94107, USA - -This license is a modified version of the GNU General Public License copyright (C) 1989, 1991 Free Software Foundation, Inc. made with their permission. Section 2(d) has been added to cover use of software over a computer network. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the Affero General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This Public License applies to most of Affero''s software and to any other program whose authors commit to using it. (Some other Affero software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. This General Public License is designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. - -Also, for each author''s protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors'' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone''s free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this Affero General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program''s source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -* a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. - -* b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. - -* c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) - -* d) If the Program as you received it is intended to interact with users through a computer network and if, in the version you received, any user interacting with the Program was given the opportunity to request transmission to that user of the Program''s complete source code, you must not remove that facility from your modified version of the Program or work based on the Program, and must offer an equivalent opportunity for all users interacting with your Program through a computer network to request immediate transmission by HTTP of the complete source code of your modified version or other derivative work. - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: - -* a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - -* b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - -* c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients'' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -9. Affero Inc. may publish revised and/or new versions of the Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by Affero, Inc. If the Program does not specify a version number of this License, you may choose any version ever published by Affero, Inc. - -You may also choose to redistribute modified versions of this program under any version of the Free Software Foundation''s GNU General Public License version 3 or higher, so long as that version of the GNU GPL includes terms and conditions substantially equivalent to those of this license. - -10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by Affero, Inc., write to us; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/agpl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/agpl-1.0.yml deleted file mode 100644 index fc9dbef477f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/agpl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - agpl-1.0 -notes: this is a license from fossology license reference AGPL-1.0 (Affero General Public License - 1.0) http://www.affero.org/oagpl.html diff --git a/tests/licensedcode/data/more_licenses/licenses/agpl-3.0.txt b/tests/licensedcode/data/more_licenses/licenses/agpl-3.0.txt deleted file mode 100644 index 8eb6dd3703b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/agpl-3.0.txt +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users'' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work''s -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users'' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work''s -users, your or third parties'' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program''s source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation''s users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party''s predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor''s "contributor version". - - A contributor''s "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor''s essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient''s use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others'' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy''s -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/agpl-3.0.yml b/tests/licensedcode/data/more_licenses/licenses/agpl-3.0.yml deleted file mode 100644 index 35292049464..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/agpl-3.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - agpl-3.0 -notes: this is a license from fossology license reference AGPL-3.0 (GNU Affero General Public - License v3.0) http://www.gnu.org/licenses/agpl-3.0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/apache-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/apache-1.1.txt deleted file mode 100644 index d61fb4d565d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/apache-1.1.txt +++ /dev/null @@ -1,57 +0,0 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2000 The Apache Software Foundation. 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. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Apache" and "Apache Software Foundation" must - * not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache", - * nor may "Apache" appear in their name, without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'''' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR - * ITS 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. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . - * - * Portions of this software are based upon public domain software - * originally written at the National Center for Supercomputing Applications, - * University of Illinois, Urbana-Champaign. - */ diff --git a/tests/licensedcode/data/more_licenses/licenses/apache-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/apache-1.1.yml deleted file mode 100644 index da71152da52..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/apache-1.1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - apache-1.1 AND public-domain -notes: this is a license from fossology license reference Apache-1.1 (Apache License 1.1) http://www.apache.org/licenses/LICENSE-1.1 diff --git a/tests/licensedcode/data/more_licenses/licenses/apsl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/apsl-1.0.txt deleted file mode 100644 index 2fc5c031c93..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/apsl-1.0.txt +++ /dev/null @@ -1,370 +0,0 @@ -APPLE PUBLIC SOURCE LICENSE -Version 1.0 - March 16, 1999 - -Please read this License carefully before downloading this software. -By downloading and using this software, you are agreeing to be bound by -the terms of this License. If you do not or cannot agree to the terms -of this License, please do not download or use the software. - -1. General; Definitions. This License applies to any program or other -work which Apple Computer, Inc. ("Apple") publicly announces as -subject to this Apple Public Source License and which contains a -notice placed by Apple identifying such program or work as "Original -Code" and stating that it is subject to the terms of this Apple Public -Source License version 1.0 (or subsequent version thereof), as it may -be revised from time to time by Apple ("License"). As used in this -License: - -1.1 "Applicable Patents" mean: (a) in the case where Apple is the -grantor of rights, (i) patents or patent applications that are now -or hereafter acquired, owned by or assigned to Apple and (ii) whose -claims cover subject matter contained in the Original Code, but only -to the extent necessary to use, reproduce and/or distribute the -Original Code without infringement; and (b) in the case where You -are the grantor of rights, (i) patents and patent applications that -are now or hereafter acquired, owned by or assigned to You and (ii) -whose claims cover subject matter in Your Modifications, taken alone -or in combination with Original Code. - -1.2 "Covered Code" means the Original Code, Modifications, the -combination of Original Code and any Modifications, and/or any -respective portions thereof. - -1.3 "Deploy" means to use, sublicense or distribute Covered Code other -than for Your internal research and development (R&D), and includes -without limitation, any and all internal use or distribution of -Covered Code within Your business or organization except for R&D use, -as well as direct or indirect sublicensing or distribution of Covered -Code by You to any third party in any form or manner. - -1.4 "Larger Work" means a work which combines Covered Code or portions -thereof with code not governed by the terms of this License. - -1.5 "Modifications" mean any addition to, deletion from, and/or change -to, the substance and/or structure of Covered Code. When code is -released as a series of files, a Modification is: (a) any addition to -or deletion from the contents of a file containing Covered Code; -and/or (b) any new file or other representation of computer program -statements that contains any part of Covered Code. - -1.6 "Original Code" means the Source Code of a program or other work -as originally made available by Apple under this License, including -the Source Code of any updates or upgrades to such programs or works -made available by Apple under this License, and that has been -expressly identified by Apple as such in the header file(s) of such -work. - -1.7 "Source Code" means the human readable form of a program or other -work that is suitable for making modifications to it, including all -modules it contains, plus any associated interface definition files, -scripts used to control compilation and installation of an executable -(object code). - -1.8 "You" or "Your" means an individual or a legal entity exercising -rights under this License. For legal entities, "You" or "Your" -includes any entity which controls, is controlled by, or is under -common control with, You, where "control" means (a) the power, direct -or indirect, to cause the direction or management of such entity, -whether by contract or otherwise, or (b) ownership of fifty percent -(50%) or more of the outstanding shares or beneficial ownership of -such entity. - -2. Permitted Uses; Conditions & Restrictions. Subject to the terms -and conditions of this License, Apple hereby grants You, effective on -the date You accept this License and download the Original Code, a -world-wide, royalty-free, non-exclusive license, to the extent of -Apple''s Applicable Patents and copyrights covering the Original -Code, to do the following: - -2.1 You may use, copy, modify and distribute Original Code, with or -without Modifications, solely for Your internal research and -development, provided that You must in each instance: - -(a) retain and reproduce in all copies of Original Code the copyright -and other proprietary notices and disclaimers of Apple as they appear -in the Original Code, and keep intact all notices in the Original Code -that refer to this License; - -(b) include a copy of this License with every copy of Source Code of -Covered Code and documentation You distribute, and You may not offer -or impose any terms on such Source Code that alter or restrict this -License or the recipients'' rights hereunder, except as permitted under -Section 6; and - -(c) completely and accurately document all Modifications that you have -made and the date of each such Modification, designate the version of -the Original Code you used, prominently include a file carrying such -information with the Modifications, and duplicate the notice in -Exhibit A in each file of the Source Code of all such Modifications. - -2.2 You may Deploy Covered Code, provided that You must in each -instance: - -(a) satisfy all the conditions of Section 2.1 with respect to the -Source Code of the Covered Code; - -(b) make all Your Deployed Modifications publicly available in Source -Code form via electronic distribution (e.g. download from a web site) -under the terms of this License and subject to the license grants set -forth in Section 3 below, and any additional terms You may choose to -offer under Section 6. You must continue to make the Source Code of -Your Deployed Modifications available for as long as you Deploy the -Covered Code or twelve (12) months from the date of initial -Deployment, whichever is longer; - -(c) must notify Apple and other third parties of how to obtain Your -Deployed Modifications by filling out and submitting the required -information found at -http://www.apple.com/publicsource/modifications.html; and - -(d) if you Deploy Covered Code in object code, executable form only, -include a prominent notice, in the code itself as well as in related -documentation, stating that Source Code of the Covered Code is -available under the terms of this License with information on how and -where to obtain such Source Code. - -3. Your Grants. In consideration of, and as a condition to, the -licenses granted to You under this License: - -(a) You hereby grant to Apple and all third parties a non-exclusive, -royalty-free license, under Your Applicable Patents and other -intellectual property rights owned or controlled by You, to use, -reproduce, modify, distribute and Deploy Your Modifications of the -same scope and extent as Apple''s licenses under Sections 2.1 and 2.2; -and - -(b) You hereby grant to Apple and its subsidiaries a non-exclusive, -worldwide, royalty-free, perpetual and irrevocable license, under Your -Applicable Patents and other intellectual property rights owned or -controlled by You, to use, reproduce, execute, compile, display, -perform, modify or have modified (for Apple and/or its subsidiaries), -sublicense and distribute Your Modifications, in any form, through -multiple tiers of distribution. - -4. Larger Works. You may create a Larger Work by combining Covered -Code with other code not governed by the terms of this License and -distribute the Larger Work as a single product. In each such -instance, You must make sure the requirements of this License are -fulfilled for the Covered Code or any portion thereof. - -5. Limitations on Patent License. Except as expressly stated in -Section 2, no other patent rights, express or implied, are granted -by Apple herein. Modifications and/or Larger Works may require -additional patent licenses from Apple which Apple may grant in its -sole discretion. - -6. Additional Terms. You may choose to offer, and to charge a fee -for, warranty, support, indemnity or liability obligations and/or -other rights consistent with the scope of the license granted herein -("Additional Terms") to one or more recipients of Covered -Code. However, You may do so only on Your own behalf and as Your -sole responsibility, and not on behalf of Apple. You must obtain the -recipient''s agreement that any such Additional Terms are offered by -You alone, and You hereby agree to indemnify, defend and hold Apple -harmless for any liability incurred by or claims asserted against -Apple by reason of any such Additional Terms. - -7. Versions of the License. Apple may publish revised and/or new -versions of this License from time to time. Each version will be -given a distinguishing version number. Once Original Code has been -published under a particular version of this License, You may -continue to use it under the terms of that version. You may also -choose to use such Original Code under the terms of any subsequent -version of this License published by Apple. No one other than Apple -has the right to modify the terms applicable to Covered Code created -under this License. - -8. NO WARRANTY OR SUPPORT. The Original Code may contain in whole or -in part pre-release, untested, or not fully tested works. The -Original Code may contain errors that could cause failures or loss -of data, and may be incomplete or contain inaccuracies. You -expressly acknowledge and agree that use of the Original Code, or -any portion thereof, is at Your sole and entire risk. THE ORIGINAL -CODE IS PROVIDED "AS IS" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT -OF ANY KIND AND APPLE AND APPLE''S LICENSOR(S) (FOR THE PURPOSES OF -SECTIONS 8 AND 9, APPLE AND APPLE''S LICENSOR(S) ARE COLLECTIVELY -REFERRED TO AS "APPLE") EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR -CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY OR -SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT THAT -THE FUNCTIONS CONTAINED IN THE ORIGINAL CODE WILL MEET YOUR -REQUIREMENTS, OR THAT THE OPERATION OF THE ORIGINAL CODE WILL BE -UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE ORIGINAL CODE -WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN -BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A -WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF THIS WARRANTY. You -acknowledge that the Original Code is not intended for use in the -operation of nuclear facilities, aircraft navigation, communication -systems, or air traffic control machines in which case the failure -of the Original Code could lead to death, personal injury, or severe -physical or environmental damage. - -9. Liability. - -9.1 Infringement. If any of the Original Code becomes the subject of -a claim of infringement ("Affected Original Code"), Apple may, at -its sole discretion and option: (a) attempt to procure the rights -necessary for You to continue using the Affected Original Code; (b) -modify the Affected Original Code so that it is no longer -infringing; or (c) terminate Your rights to use the Affected -Original Code, effective immediately upon Apple''s posting of a -notice to such effect on the Apple web site that is used for -implementation of this License. - -9.2 LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL APPLE BE -LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR -INABILITY TO USE THE ORIGINAL CODE, OR ANY PORTION THEREOF, WHETHER -UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), -PRODUCTS LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF -THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF -ESSENTIAL PURPOSE OF ANY REMEDY. In no event shall Apple''s total -liability to You for all damages under this License exceed the -amount of fifty dollars ($50.00). - -10. Trademarks. This License does not grant any rights to use the -trademarks or trade names "Apple", "Apple Computer", "Mac OS X", -"Mac OS X Server" or any other trademarks or trade names belonging -to Apple (collectively "Apple Marks") and no Apple Marks may be -used to endorse or promote products derived from the Original Code -other than as permitted by and in strict compliance at all times -with Apple''s third party trademark usage guidelines which are -posted at http://www.apple.com/legal/guidelinesfor3rdparties.html. - -11. Ownership. Apple retains all rights, title and interest in and to -the Original Code and any Modifications made by or on behalf of -Apple ("Apple Modifications"), and such Apple Modifications will -not be automatically subject to this License. Apple may, at its -sole discretion, choose to license such Apple Modifications under -this License, or on different terms from those contained in this -License or may choose not to license them at all. Apple''s -development, use, reproduction, modification, sublicensing and -distribution of Covered Code will not be subject to this License. - -12. Termination. - -12.1 Termination. This License and the rights granted hereunder will -terminate: - -(a) automatically without notice from Apple if You fail to comply with -any term(s) of this License and fail to cure such breach within 30 -days of becoming aware of such breach; (b) immediately in the event of -the circumstances described in Sections 9.1 and/or 13.6(b); or (c) -automatically without notice from Apple if You, at any time during the -term of this License, commence an action for patent infringement -against Apple. - -12.2 Effect of Termination. Upon termination, You agree to -immediately stop any further use, reproduction, modification and -distribution of the Covered Code, or Affected Original Code in the -case of termination under Section 9.1, and to destroy all copies of -the Covered Code or Affected Original Code (in the case of -termination under Section 9.1) that are in your possession or -control. All sublicenses to the Covered Code which have been -properly granted prior to termination shall survive any termination -of this License. Provisions which, by their nature, should remain -in effect beyond the termination of this License shall survive, -including but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and -13. Neither party will be liable to the other for compensation, -indemnity or damages of any sort solely as a result of terminating -this License in accordance with its terms, and termination of this -License will be without prejudice to any other right or remedy of -either party. - -13. Miscellaneous. - -13.1 Export Law Assurances. You may not use or otherwise export or -re-export the Original Code except as authorized by United States -law and the laws of the jurisdiction in which the Original Code was -obtained. In particular, but without limitation, the Original Code -may not be exported or re-exported (a) into (or to a national or -resident of) any U.S. embargoed country or (b) to anyone on the -U.S. Treasury Department''s list of Specially Designated Nationals -or the U.S. Department of Commerce''s Table of Denial Orders. By -using the Original Code, You represent and warrant that You are not -located in, under control of, or a national or resident of any such -country or on any such list. - -13.2 Government End Users. The Covered Code is a "commercial item" as -defined in FAR 2.101. Government software and technical data -rights in the Covered Code include only those rights customarily -provided to the public as defined in this License. This customary -commercial license in technical data and software is provided in -accordance with FAR 12.211 (Technical Data) and 12.212 (Computer -Software) and, for Department of Defense purchases, DFAR -252.227-7015 (Technical Data -- Commercial Items) and 227.7202-3 -(Rights in Commercial Computer Software or Computer Software -Documentation). Accordingly, all U.S. Government End Users acquire -Covered Code with only those rights set forth herein. - -13.3 Relationship of Parties. This License will not be construed as -creating an agency, partnership, joint venture or any other form of -legal association between You and Apple, and You will not represent -to the contrary, whether expressly, by implication, appearance or -otherwise. - -13.4 Independent Development. Nothing in this License will impair -Apple''s right to acquire, license, develop, have others develop for -it, market and/or distribute technology or products that perform -the same or similar functions as, or otherwise compete with, -Modifications, Larger Works, technology or products that You may -develop, produce, market or distribute. - -13.5 Waiver; Construction. Failure by Apple to enforce any provision -of this License will not be deemed a waiver of future enforcement -of that or any other provision. Any law or regulation which -provides that the language of a contract shall be construed against -the drafter will not apply to this License. - -13.6 Severability. (a) If for any reason a court of competent -jurisdiction finds any provision of this License, or portion -thereof, to be unenforceable, that provision of the License will be -enforced to the maximum extent permissible so as to effect the -economic benefits and intent of the parties, and the remainder of -this License will continue in full force and effect. (b) -Notwithstanding the foregoing, if applicable law prohibits or -restricts You from fully and/or specifically complying with -Sections 2 and/or 3 or prevents the enforceability of either of -those Sections, this License will immediately terminate and You -must immediately discontinue any use of the Covered Code and -destroy all copies of it that are in your possession or control. - -13.7 Dispute Resolution. Any litigation or other dispute resolution -between You and Apple relating to this License shall take place in -the Northern District of California, and You and Apple hereby -consent to the personal jurisdiction of, and venue in, the state -and federal courts within that District with respect to this -License. The application of the United Nations Convention on -Contracts for the International Sale of Goods is expressly -excluded. - -13.8 Entire Agreement; Governing Law. This License constitutes the -entire agreement between the parties with respect to the subject -matter hereof. This License shall be governed by the laws of the -United States and the State of California, except that body of -California law concerning conflicts of law. - -Where You are located in the province of Quebec, Canada, the following -clause applies: The parties hereby confirm that they have requested -that this License and all related documents be drafted in English. Les -parties ont exige que le present contrat et tous les documents -connexes soient rediges en anglais. - -EXHIBIT A. - -"Portions Copyright (c) 1999 Apple Computer, Inc. All Rights -Reserved. This file contains Original Code and/or Modifications of -Original Code as defined in and that are subject to the Apple Public -Source License Version 1.0 (the ''License''). You may not use this file -except in compliance with the License. Please obtain a copy of the -License at http://www.apple.com/publicsource and read it before using -this file. - -The Original Code and all software distributed under the License are -distributed on an ''AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, EITHER -EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, -INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the -License for the specific language governing rights and limitations -under the License." diff --git a/tests/licensedcode/data/more_licenses/licenses/apsl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/apsl-1.0.yml deleted file mode 100644 index 1ff616968f7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/apsl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - apsl-1.0 -notes: this is a license from fossology license reference APSL-1.0 (Apple Public Source License - 1.0) http://spdx.org/licenses/APSL-1.0#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/apsl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/apsl-1.1.txt deleted file mode 100644 index b41a9052cbb..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/apsl-1.1.txt +++ /dev/null @@ -1,372 +0,0 @@ -APPLE PUBLIC SOURCE LICENSE -Version 1.1 - April 19, 1999 - -Please read this License carefully before downloading this software. -By downloading and using this software, you are agreeing to be bound by -the terms of this License. If you do not or cannot agree to the terms -of this License, please do not download or use the software. - -1. General; Definitions. This License applies to any program or other -work which Apple Computer, Inc. ("Apple") publicly announces as -subject to this Apple Public Source License and which contains a -notice placed by Apple identifying such program or work as "Original -Code" and stating that it is subject to the terms of this Apple Public -Source License version 1.1 (or subsequent version thereof), as it may -be revised from time to time by Apple ("License"). As used in this -License: - -1.1 "Affected Original Code" means only those specific portions of -Original Code that allegedly infringe upon any party''s intellectual -property rights or are otherwise the subject of a claim of -infringement. - -1.2 "Applicable Patent Rights" mean: (a) in the case where Apple is -the grantor of rights, (i) claims of patents that are now or hereafter -acquired, owned by or assigned to Apple and (ii) that cover subject -matter contained in the Original Code, but only to the extent -necessary to use, reproduce and/or distribute the Original Code -without infringement; and (b) in the case where You are the grantor of -rights, (i) claims of patents that are now or hereafter acquired, -owned by or assigned to You and (ii) that cover subject matter in Your -Modifications, taken alone or in combination with Original Code. - -1.3 "Covered Code" means the Original Code, Modifications, the -combination of Original Code and any Modifications, and/or any -respective portions thereof. - -1.4 "Deploy" means to use, sublicense or distribute Covered Code other -than for Your internal research and development (R&D), and includes -without limitation, any and all internal use or distribution of -Covered Code within Your business or organization except for R&D use, -as well as direct or indirect sublicensing or distribution of Covered -Code by You to any third party in any form or manner. - -1.5 "Larger Work" means a work which combines Covered Code or portions -thereof with code not governed by the terms of this License. - -1.6 "Modifications" mean any addition to, deletion from, and/or change -to, the substance and/or structure of Covered Code. When code is -released as a series of files, a Modification is: (a) any addition to -or deletion from the contents of a file containing Covered Code; -and/or (b) any new file or other representation of computer program -statements that contains any part of Covered Code. - -1.7 "Original Code" means (a) the Source Code of a program or other -work as originally made available by Apple under this License, -including the Source Code of any updates or upgrades to such programs -or works made available by Apple under this License, and that has been -expressly identified by Apple as such in the header file(s) of such -work; and (b) the object code compiled from such Source Code and -originally made available by Apple under this License. - -1.8 "Source Code" means the human readable form of a program or other -work that is suitable for making modifications to it, including all -modules it contains, plus any associated interface definition files, -scripts used to control compilation and installation of an executable -(object code). - -1.9 "You" or "Your" means an individual or a legal entity exercising -rights under this License. For legal entities, "You" or "Your" -includes any entity which controls, is controlled by, or is under -common control with, You, where "control" means (a) the power, direct -or indirect, to cause the direction or management of such entity, -whether by contract or otherwise, or (b) ownership of fifty percent -(50%) or more of the outstanding shares or beneficial ownership of -such entity. - -2. Permitted Uses; Conditions & Restrictions. Subject to the terms -and conditions of this License, Apple hereby grants You, effective on -the date You accept this License and download the Original Code, a -world-wide, royalty-free, non-exclusive license, to the extent of -Apple''s Applicable Patent Rights and copyrights covering the Original -Code, to do the following: - -2.1 You may use, copy, modify and distribute Original Code, with or -without Modifications, solely for Your internal research and -development, provided that You must in each instance: - -(a) retain and reproduce in all copies of Original Code the copyright -and other proprietary notices and disclaimers of Apple as they appear -in the Original Code, and keep intact all notices in the Original Code -that refer to this License; - -(b) include a copy of this License with every copy of Source Code of -Covered Code and documentation You distribute, and You may not offer -or impose any terms on such Source Code that alter or restrict this -License or the recipients'' rights hereunder, except as permitted under -Section 6; and - -(c) completely and accurately document all Modifications that you have -made and the date of each such Modification, designate the version of -the Original Code you used, prominently include a file carrying such -information with the Modifications, and duplicate the notice in -Exhibit A in each file of the Source Code of all such Modifications. - -2.2 You may Deploy Covered Code, provided that You must in each -instance: - -(a) satisfy all the conditions of Section 2.1 with respect to the -Source Code of the Covered Code; - -(b) make all Your Deployed Modifications publicly available in Source -Code form via electronic distribution (e.g. download from a web site) -under the terms of this License and subject to the license grants set -forth in Section 3 below, and any additional terms You may choose to -offer under Section 6. You must continue to make the Source Code of -Your Deployed Modifications available for as long as you Deploy the -Covered Code or twelve (12) months from the date of initial -Deployment, whichever is longer; - -(c) if You Deploy Covered Code containing Modifications made by You, -inform others of how to obtain those Modifications by filling out and -submitting the information found at -http://www.apple.com/publicsource/modifications.html, if available; -and - -(d) if You Deploy Covered Code in object code, executable form only, -include a prominent notice, in the code itself as well as in related -documentation, stating that Source Code of the Covered Code is -available under the terms of this License with information on how and -where to obtain such Source Code. - -3. Your Grants. In consideration of, and as a condition to, the -licenses granted to You under this License: - -(a) You hereby grant to Apple and all third parties a non-exclusive, -royalty-free license, under Your Applicable Patent Rights and other -intellectual property rights owned or controlled by You, to use, -reproduce, modify, distribute and Deploy Your Modifications of the -same scope and extent as Apple''s licenses under Sections 2.1 and 2.2; -and - -(b) You hereby grant to Apple and its subsidiaries a non-exclusive, -worldwide, royalty-free, perpetual and irrevocable license, under Your -Applicable Patent Rights and other intellectual property rights owned -or controlled by You, to use, reproduce, execute, compile, display, -perform, modify or have modified (for Apple and/or its subsidiaries), -sublicense and distribute Your Modifications, in any form, through -multiple tiers of distribution. - -4. Larger Works. You may create a Larger Work by combining Covered -Code with other code not governed by the terms of this License and -distribute the Larger Work as a single product. In each such instance, -You must make sure the requirements of this License are fulfilled for -the Covered Code or any portion thereof. - -5. Limitations on Patent License. Except as expressly stated in -Section 2, no other patent rights, express or implied, are granted by -Apple herein. Modifications and/or Larger Works may require additional -patent licenses from Apple which Apple may grant in its sole -discretion. - -6. Additional Terms. You may choose to offer, and to charge a fee -for, warranty, support, indemnity or liability obligations and/or -other rights consistent with the scope of the license granted herein -("Additional Terms") to one or more recipients of Covered Code. -However, You may do so only on Your own behalf and as Your sole -responsibility, and not on behalf of Apple. You must obtain the -recipient''s agreement that any such Additional Terms are offered by -You alone, and You hereby agree to indemnify, defend and hold Apple -harmless for any liability incurred by or claims asserted against -Apple by reason of any such Additional Terms. - -7. Versions of the License. Apple may publish revised and/or new -versions of this License from time to time. Each version will be given -a distinguishing version number. Once Original Code has been published -under a particular version of this License, You may continue to use it -under the terms of that version. You may also choose to use such -Original Code under the terms of any subsequent version of this -License published by Apple. No one other than Apple has the right to -modify the terms applicable to Covered Code created under this -License. - -8. NO WARRANTY OR SUPPORT. The Original Code may contain in whole or in -part pre-release, untested, or not fully tested works. The Original -Code may contain errors that could cause failures or loss of data, and -may be incomplete or contain inaccuracies. You expressly acknowledge -and agree that use of the Original Code, or any portion thereof, is at -Your sole and entire risk. THE ORIGINAL CODE IS PROVIDED "AS IS" AND -WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND -APPLE''S LICENSOR(S) (FOR THE PURPOSES OF SECTIONS 8 AND 9, APPLE AND -APPLE''S LICENSOR(S) ARE COLLECTIVELY REFERRED TO AS "APPLE") EXPRESSLY -DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS -OF MERCHANTABILITY OR SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT -WARRANT THAT THE FUNCTIONS CONTAINED IN THE ORIGINAL CODE WILL MEET -YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE ORIGINAL CODE WILL BE -UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE ORIGINAL CODE WILL -BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE -OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY OR IN -ANY WAY INCREASE THE SCOPE OF THIS WARRANTY. You acknowledge that the -Original Code is not intended for use in the operation of nuclear -facilities, aircraft navigation, communication systems, or air -traffic control machines in which case the failure of the Original -Code could lead to death, personal injury, or severe physical or -environmental damage. - -9. Liability. - -9.1 Infringement. If any portion of, or functionality implemented by, -the Original Code becomes the subject of a claim of infringement, -Apple may, at its option: (a) attempt to procure the rights necessary -for Apple and You to continue using the Affected Original Code; (b) -modify the Affected Original Code so that it is no longer infringing; -or (c) suspend Your rights to use, reproduce, modify, sublicense and -distribute the Affected Original Code until a final determination of -the claim is made by a court or governmental administrative agency of -competent jurisdiction and Apple lifts the suspension as set forth -below. Such suspension of rights will be effective immediately upon -Apple''s posting of a notice to such effect on the Apple web site that -is used for implementation of this License. Upon such final -determination being made, if Apple is legally able, without the -payment of a fee or royalty, to resume use, reproduction, -modification, sublicensing and distribution of the Affected Original -Code, Apple will lift the suspension of rights to the Affected -Original Code by posting a notice to such effect on the Apple web site -that is used for implementation of this License. If Apple suspends -Your rights to Affected Original Code, nothing in this License shall -be construed to restrict You, at Your option and subject to applicable -law, from replacing the Affected Original Code with non-infringing -code or independently negotiating for necessary rights from such third -party. - -9.2 LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL APPLE BE -LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES -ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO -USE THE ORIGINAL CODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY -OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY -OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF -ANY REMEDY. In no event shall Apple''s total liability to You for all -damages under this License exceed the amount of fifty dollars -($50.00). - -10. Trademarks. This License does not grant any rights to use the -trademarks or trade names "Apple", "Apple Computer", "Mac OS X", "Mac -OS X Server" or any other trademarks or trade names belonging to Apple -(collectively "Apple Marks") and no Apple Marks may be used to endorse -or promote products derived from the Original Code other than as -permitted by and in strict compliance at all times with Apple''s third -party trademark usage guidelines which are posted at -http://www.apple.com/legal/guidelinesfor3rdparties.html. - -11. Ownership. Apple retains all rights, title and interest in and to -the Original Code and any Modifications made by or on behalf of Apple -("Apple Modifications"), and such Apple Modifications will not be -automatically subject to this License. Apple may, at its sole -discretion, choose to license such Apple Modifications under this -License, or on different terms from those contained in this License or -may choose not to license them at all. Apple''s development, use, -reproduction, modification, sublicensing and distribution of Covered -Code will not be subject to this License. - -12. Termination. - -12.1 Termination. This License and the rights granted hereunder will -terminate: - -(a) automatically without notice from Apple if You fail to comply with -any term(s) of this License and fail to cure such breach within 30 -days of becoming aware of such breach; (b) immediately in the event of -the circumstances described in Section 13.5(b); or (c) automatically -without notice from Apple if You, at any time during the term of this -License, commence an action for patent infringement against Apple. - -12.2 Effect of Termination. Upon termination, You agree to -immediately stop any further use, reproduction, modification, -sublicensing and distribution of the Covered Code and to destroy all -copies of the Covered Code that are in your possession or control. -All sublicenses to the Covered Code which have been properly granted -prior to termination shall survive any termination of this License. -Provisions which, by their nature, should remain in effect beyond the -termination of this License shall survive, including but not limited -to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. Neither party will be -liable to the other for compensation, indemnity or damages of any sort -solely as a result of terminating this License in accordance with its -terms, and termination of this License will be without prejudice to -any other right or remedy of either party. - -13. Miscellaneous. - -13.1 Government End Users. The Covered Code is a "commercial item" as -defined in FAR 2.101. Government software and technical data rights -in the Covered Code include only those rights customarily provided to -the public as defined in this License. This customary commercial -license in technical data and software is provided in accordance with -FAR 12.211 (Technical Data) and 12.212 (Computer Software) and, for -Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- -Commercial Items) and 227.7202-3 (Rights in Commercial Computer -Software or Computer Software Documentation). Accordingly, all U.S. -Government End Users acquire Covered Code with only those rights set -forth herein. - -13.2 Relationship of Parties. This License will not be construed as -creating an agency, partnership, joint venture or any other form of -legal association between You and Apple, and You will not represent to -the contrary, whether expressly, by implication, appearance or -otherwise. - -13.3 Independent Development. Nothing in this License will impair -Apple''s right to acquire, license, develop, have others develop for -it, market and/or distribute technology or products that perform the -same or similar functions as, or otherwise compete with, -Modifications, Larger Works, technology or products that You may -develop, produce, market or distribute. - -13.4 Waiver; Construction. Failure by Apple to enforce any provision -of this License will not be deemed a waiver of future enforcement of -that or any other provision. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -will not apply to this License. - -13.5 Severability. (a) If for any reason a court of competent -jurisdiction finds any provision of this License, or portion thereof, -to be unenforceable, that provision of the License will be enforced to -the maximum extent permissible so as to effect the economic benefits -and intent of the parties, and the remainder of this License will -continue in full force and effect. (b) Notwithstanding the foregoing, -if applicable law prohibits or restricts You from fully and/or -specifically complying with Sections 2 and/or 3 or prevents the -enforceability of either of those Sections, this License will -immediately terminate and You must immediately discontinue any use of -the Covered Code and destroy all copies of it that are in your -possession or control. - -13.6 Dispute Resolution. Any litigation or other dispute resolution -between You and Apple relating to this License shall take place in the -Northern District of California, and You and Apple hereby consent to -the personal jurisdiction of, and venue in, the state and federal -courts within that District with respect to this License. The -application of the United Nations Convention on Contracts for the -International Sale of Goods is expressly excluded. - -13.7 Entire Agreement; Governing Law. This License constitutes the -entire agreement between the parties with respect to the subject -matter hereof. This License shall be governed by the laws of the -United States and the State of California, except that body of -California law concerning conflicts of law. - -Where You are located in the province of Quebec, Canada, the following -clause applies: The parties hereby confirm that they have requested -that this License and all related documents be drafted in English. Les -parties ont exige que le present contrat et tous les documents -connexes soient rediges en anglais. - -EXHIBIT A. - -"Portions Copyright (c) 1999-2000 Apple Computer, Inc. All Rights -Reserved. This file contains Original Code and/or Modifications of -Original Code as defined in and that are subject to the Apple Public -Source License Version 1.1 (the "License"). You may not use this file -except in compliance with the License. Please obtain a copy of the -License at http://www.apple.com/publicsource and read it before using -this file. - -The Original Code and all software distributed under the License are -distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER -EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, -INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the -License for the specific language governing rights and limitations -under the License." diff --git a/tests/licensedcode/data/more_licenses/licenses/apsl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/apsl-1.1.yml deleted file mode 100644 index fd3970f3a68..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/apsl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - apsl-1.1 -notes: this is a license from fossology license reference APSL-1.1 (Apple Public Source License - 1.1) http://spdx.org/licenses/APSL-1.1#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/aptana-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/aptana-1.0.txt deleted file mode 100644 index 03dc3ce8edb..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/aptana-1.0.txt +++ /dev/null @@ -1,29 +0,0 @@ -Aptana Public License 1.0 -The Aptana Public License is designed to allow you the freedom to use Aptana products without restriction, except for redistribution. We at Aptana want you to not only use Aptana for web development, but also freely share scripts, snippets, websites and other items with friends and coworkers, and to encourage others to use and adopt Aptana as well. However, we require that you do not redistribute Aptana Studio itself. If you are interested in redistributing Aptana or have a question, please contact us at license@aptana.com. -Please view the Frequently Asked Questions if you have additional questions not answered here. -THE PROGRAM (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS APTANA PUBLIC LICENSE ("LICENSE"). THE PROGRAM IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. BY EXERCISING ANY RIGHTS TO THE PROGRAM PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. -THIS LICENSE GRANTS PERMISSIONS ONLY FOR YOUR INTERNAL USE (AS DEFINED BELOW). IF YOU WISH TO DISTRIBUTE OR MAKE OTHER USES OF THE PROGRAM, PLEASE CONTACT APTANA. -1. Definitions -When used in this License: -"Aptana" means Aptana, Inc. -"Internal Use" means use by You for Your personal or internal business purposes only, specifically excluding any use, distribution, or communication of the Program or any derivative work of the Program in any way such that the Program or any derivative work of the Program may be used by anyone other than You, whether those works are distributed or communicated to those persons or otherwise made available for use over a network. -"Program" means the code and documentation owned by Aptana and distributed under this License by Aptana. In case of any doubt as to whether any code or documentation is part of the Program covered by this license, the notices placed by Aptana in the source code or documentation will govern. -"You" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. -2. License Grants -a) Subject to the terms and conditions of this License, Aptana hereby grants to You a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, install, and execute the Program in source code and object code form, in each case solely for Your Internal Use. -b) Subject to the terms and conditions of this License, Aptana hereby grants to You a worldwide, non-exclusive, royalty-free, patent license under Aptana''s Licensed Patent Claims to make and use the Program in source code and object code form, in each case solely for Your Internal Use. As used herein, "Licensed Patent Claims" means only those patent claims owned by Aptana that are necessarily infringed by Your making and using the Program for Your Internal Use. Notwithstanding this Section 2.1(b), no patent license is granted: (i) for code that You delete from the Program or (ii) for infringements caused by: (1) the modification of the Program or (2) the combination of the Program with other software or devices. -3. Certain Limitations and Conditions -You are not licensed under this License to distribute the Program or derivative works thereof, or to make any use other than Internal Use of the Program or derivative works thereof. -You may not remove or alter any copyright or other proprietary rights notices, or other means of attribution, contained within the Program. -4. No Warranty -Aptana represents that to its knowledge as of the date of first publication of the Program under this License, it has sufficient copyright rights in the Program, to grant the copyright license set forth in this License. -EXCEPT AS EXPRESSLY SET FORTH IN THIS SECTION 4, THE PROGRAM IS PROVIDED "AS IS", 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. You are solely responsible for determining the appropriateness of using and reproducing the Program and assume any and all risks associated with its exercise of rights under this License, 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. -Without limiting the foregoing, Aptana provides no assurances that the Program does not infringe the patent or other intellectual property rights of any third party. Aptana disclaims any liability for claims based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to use the Program, it is Your responsibility to acquire that license before using the Program. -5. Limitation of Liability -To the maximum extent permissible by applicable law, in no event and under no legal theory, whether in tort (including negligence and strict liability), contract, or otherwise, shall Aptana be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Program (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if Aptana has been advised of the possibility of such damages. -6. General -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, 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. -Except as expressly stated in Section 2 above, You receive no rights or licenses to the intellectual property of Aptana under this License, whether expressly, by implication, estoppel or otherwise. In particular, without limitation, this License does not grant permission to use the trade names, trademarks, service marks, or product names of Aptana. All rights in the Program not expressly granted under this License are reserved. -If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Program shall terminate as of the date such litigation is filed. -All Your rights under this License shall terminate if You fail to comply with any of the terms or conditions of this License and do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Your rights under this License terminate, You agree to cease use of the Program as soon as reasonably practicable. However, Your obligations under this License, and this Section 6, shall continue and survive. -This Agreement is governed by the laws of the State of California and the intellectual property laws of the United States of America, without reference to conflicts of laws principles that would require the application of the laws of any other jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. No party to this License will bring a legal action under this License more than one year after the cause of action arose. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You exercise rights under this License. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/aptana-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/aptana-1.0.yml deleted file mode 100644 index 91f667ac3d7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/aptana-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - aptana-1.0 -notes: this is a license from fossology license reference Aptana-1.0 (Aptana Public License - 1.0) http://www.aptana.com/legal/apl diff --git a/tests/licensedcode/data/more_licenses/licenses/artistic-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/artistic-1.0.txt deleted file mode 100644 index af7b43e2525..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/artistic-1.0.txt +++ /dev/null @@ -1,48 +0,0 @@ -The Artistic License -Preamble - -The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. - -Definitions: - -"Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. -"Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. -"Copyright Holder" is whoever is named in the copyright or copyrights for the package. -"You" is you, if you''re thinking about copying or distributing this Package. -"Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) -"Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. -1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: - -a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. - -b) use the modified Package only within your corporation or organization. - -c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: - -a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. - -b) accompany the distribution with the machine-readable source of the Package with your modifications. - -c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/artistic-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/artistic-1.0.yml deleted file mode 100644 index c6afb1c78c9..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/artistic-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - artistic-1.0 -notes: this is a license from fossology license reference Artistic-1.0 (Artistic License 1.0) - http://www.opensource.org/licenses/artistic-license-1.0.php diff --git a/tests/licensedcode/data/more_licenses/licenses/artistic-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/artistic-2.0.txt deleted file mode 100644 index 9131cad5dff..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/artistic-2.0.txt +++ /dev/null @@ -1,72 +0,0 @@ -Artistic License 2.0 -Copyright (c) 2000-2006, The Perl Foundation. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -Preamble -This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is that the Copyright Holder maintains some artistic control over the development of that Package while still keeping the Package available as open source and free software. - -You are always permitted to make arrangements wholly outside of this license directly with the Copyright Holder of a given Package. If the terms of this license do not permit the full use that you propose to make of the Package, you should contact the Copyright Holder and seek a different licensing arrangement. - -Definitions -"Copyright Holder" means the individual(s) or organization(s) named in the copyright notice for the entire Package. - -"Contributor" means any party that has contributed code or other material to the Package, in accordance with the Copyright Holder''s procedures. - -"You" and "your" means any person who would like to copy, distribute, or modify the Package. - -"Package" means the collection of files distributed by the Copyright Holder, and derivatives of that collection and/or of those files. A given Package may consist of either the Standard Version, or a Modified Version. - -"Distribute" means providing a copy of the Package or making it accessible to anyone else, or in the case of a company or organization, to others outside of your company or organization. - -"Distributor Fee" means any fee that you charge for Distributing this Package or providing support for this Package to another party. It does not mean licensing fees. - -"Standard Version" refers to the Package if it has not been modified, or has been modified only in ways explicitly requested by the Copyright Holder. - -"Modified Version" means the Package, if it has been changed, and such changes were not explicitly requested by the Copyright Holder. - -"Original License" means this Artistic License as Distributed with the Standard Version of the Package, in its current version or as it may be modified by The Perl Foundation in the future. - -"Source" form means the source code, documentation source, and configuration files for the Package. - -"Compiled" form means the compiled bytecode, object code, binary, or any other form resulting from mechanical transformation or translation of the Source form. - -Permission for Use and Modification Without Distribution -(1) You are permitted to use the Standard Version and create and use Modified Versions for any purpose without restriction, provided that you do not Distribute the Modified Version. - -Permissions for Redistribution of the Standard Version -(2) You may Distribute verbatim copies of the Source form of the Standard Version of this Package in any medium without restriction, either gratis or for a Distributor Fee, provided that you duplicate all of the original copyright notices and associated disclaimers. At your discretion, such verbatim copies may or may not include a Compiled form of the Package. - -(3) You may apply any bug fixes, portability changes, and other modifications made available from the Copyright Holder. The resulting Package will still be considered the Standard Version, and as such will be subject to the Original License. - -Distribution of Modified Versions of the Package as Source -(4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following: - -(a) make the Modified Version available to the Copyright Holder of the Standard Version, under the Original License, so that the Copyright Holder may include your modifications in the Standard Version. -(b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version. -(c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under -(i) the Original License or -(ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed. -Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source -(5) You may Distribute Compiled forms of the Standard Version without the Source, provided that you include complete instructions on how to get the Source of the Standard Version. Such instructions must be valid at the time of your distribution. If these instructions, at any time while you are carrying out such distribution, become invalid, you must provide new instructions on demand or cease further distribution. If you provide valid instructions or cease distribution within thirty days after you become aware that the instructions are invalid, then you do not forfeit any of your rights under this license. - -(6) You may Distribute a Modified Version in Compiled form without the Source, provided that you comply with Section 4 with respect to the Source of the Modified Version. - -Aggregating or Linking the Package -(7) You may aggregate the Package (either the Standard Version or Modified Version) with other packages and Distribute the resulting aggregation provided that you do not charge a licensing fee for the Package. Distributor Fees are permitted, and licensing fees for other components in the aggregation are permitted. The terms of this license apply to the use and Distribution of the Standard or Modified Versions as included in the aggregation. - -(8) You are permitted to link Modified and Standard Versions with other works, to embed the Package in a larger work of your own, or to build stand-alone binary or bytecode versions of applications that include the Package, and Distribute the result without restriction, provided the result does not expose a direct interface to the Package. - -Items That are Not Considered Part of a Modified Version -(9) Works (including, but not limited to, modules and scripts) that merely extend or make use of the Package, do not, by themselves, cause the Package to be a Modified Version. In addition, such works are not considered parts of the Package itself, and are not subject to the terms of this license. - -General Provisions -(10) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license. - -(11) If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license. - -(12) This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder. - -(13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed. - -(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/artistic-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/artistic-2.0.yml deleted file mode 100644 index 1eee0368374..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/artistic-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - artistic-2.0 -notes: this is a license from fossology license reference Artistic-2.0 (Artistic License 2.0) - http://www.opensource.org/licenses/artistic-license-2.0.php diff --git a/tests/licensedcode/data/more_licenses/licenses/ati-eula.txt b/tests/licensedcode/data/more_licenses/licenses/ati-eula.txt deleted file mode 100644 index d2387c60bcc..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ati-eula.txt +++ /dev/null @@ -1,180 +0,0 @@ -ATI Software End User License Agreement - -PLEASE READ THIS LICENSE CAREFULLY BEFORE USING THE SOFTWARE. BY -DOWNLOADING, INSTALLING, COPYING OR USING THE SOFTWARE, YOU ARE AGREEING TO -BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU ARE ACCESSING THE SOFTWARE -ELECTRONICALLY, SIGNIFY YOUR AGREEMENT BY CLICKING THE "AGREE/ACCEPT" -BUTTON. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, PROMPTLY RETURN -THE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT AND (IF APPLICABLE) YOUR -MONEY WILL BE REFUNDED OR IF THE SOFTWARE WAS ACCESSED ELECTRONICALLY CLICK -"DISAGREE/DECLINE". - -1. License. ATI Technologies Inc., on behalf of itself, its subsidiaries -and licensors (referred collectively as "ATI") grants to you the following -non-exclusive, right to use the software accompanying this License -(hereinafter "Software") subject to the following terms and limitations: - -(a) Regardless of the media upon which it is distributed, the Software is -licensed to you for use solely in conjunction with ATI hardware products to -which the Software relates ("ATI Hardware"). - -(b) You own the medium on which the Software is recorded, but ATI and, if -applicable, its licensors retain title to the Software and related -documentation. - -(c) You may: - - i) use the Software solely in connection with the ATI Hardware on a - single computer; - - ii) make one copy of the Software in machine-readable form for backup - purposes only. You must reproduce on such copy ATI''s copyright notice and - any other proprietary legends that were on the original copy of the - Software; - - iii) transfer all your license rights in the Software provided you must - also transfer a copy of this License, the backup copy of the Software, - the ATI Hardware and the related documentation and provided the other - party reads and agrees to accept the terms and conditions of this - License. Upon such transfer your license rights are then terminated. - -(d) In addition to the license terms above, with respect to portions of -the Software in source code or binary form designed exclusively for use -with the Linux operating system ("ATI Linux Code"), you may use, display, -modify, copy, distribute, allow others to re-distribute, package and re- -package such ATI Linux Code for commercial and non-commercial purposes, -provided that: - - i) all binary components of the ATI Linux Code are not modified in any - way; - - ii) the ATI Linux Code is only used as part of the Software and in - connection with ATI Hardware; - - iii) all copyright notices of ATI are reproduced and you refer to these - license terms; - - iv) you may not offer or impose any terms on the use of ATI Linux - Code that alter or restrict this License; and - - v) if you have modified the ATI Linux Code, such modifications will be - made publicly available and are licensed under the same terms provided - herein to ATI or any other third party without further restriction, - royalty or any other license requirement; - - vi) to the extent there is any ATI sample or control panel source - code included in the ATI Linux Code, no rights are granted to modify such - code except for portions thereof that may be subject to third party - license terms that grant such rights; and - - vii) ATI is not obligated to provide any maintenance or technical support - for any code resulting from ATI Linux Code. - -2. Restrictions. The Software contains copyrighted and patented material, -trade secrets and other proprietary material. In order to protect them, -and except as permitted by this license or applicable legislation, you may -not: - - a) decompile, reverse engineer, disassemble or otherwise reduce the - Software to a human-perceivable form; - - b) modify, network, rent, lend, loan, distribute or create derivative - works based upon the Software in whole or in part; or - - c) electronically transmit the Software from one computer to another or - over a network or otherwise transfer the Software except as permitted by - this License. - -3. Termination. This License is effective until terminated. You may -terminate this License at any time by destroying the Software, related -documentation and all copies thereof. This License will terminate -immediately without notice from ATI if you fail to comply with any -provision of this License. Upon termination you must destroy the Software, -related documentation and all copies thereof. - -4. Government End Users. If you are acquiring the Software on behalf of -any unit or agency of the United States Government, the following -provisions apply. The Government agrees the Software and documentation -were developed at private expense and are provided with "RESTRICTED -RIGHTS". Use, duplication, or disclosure by the Government is subject to -restrictions as set forth in DFARS 227.7202-1(a) and 227.7202-3(a) (1995), -DFARS 252.227-7013(c)(1)(ii) (Oct 1988), FAR 12.212(a)(1995), FAR 52.227- -19, (June 1987) or FAR 52.227-14(ALT III) (June 1987),as amended from time -to time. In the event that this License, or any part thereof, is deemed -inconsistent with the minimum rights identified in the Restricted Rights -provisions, the minimum rights shall prevail. - -5. No Other License. No rights or licenses are granted by ATI under this -License, expressly or by implication, with respect to any proprietary -information or patent, copyright, trade secret or other intellectual -property right owned or controlled by ATI, except as expressly provided in -this License. - -6. Additional Licenses. DISTRIBUTION OR USE OF THE SOFTWARE WITH AN -OPERATING SYSTEM MAY REQUIRE ADDITIONAL LICENSES FROM THE OPERATING SYSTEM -VENDOR. - -7. Disclaimer of Warranty on Software. You expressly acknowledge and -agree that use of the Software is at your sole risk. The Software and -related documentation are provided "AS IS" and without warranty of any kind -and ATI EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FORA PARTICULAR PURPOSE, OF QUALITY, OF QUIET ENJOYMENT AND OF NON- -INFRINGEMENT OF THIRD PARTY RIGHTS. ATI DOES NOT WARRANT THAT THE -FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT -THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT -DEFECTS IN THE SOFTWARE WILL BE CORRECTED. THE ENTIRE RISK AS TO THE -RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. FURTHERMORE, -ATI DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE ORTHE -RESULTS OF THE USE OF THE SOFTWARE OR RELATED DOCUMENTATION IN TERMS OF -THEIR CORRECTNESS, ACCURACY, RELIABILITY, CURRENTNESS, OR OTHERWISE. NO -ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY ATI OR ATI''S AUTHORIZED -REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF -THIS WARRANTY. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU (AND NOT ATI OR -ATI''S AUTHORIZED REPRESENTATIVE) ASSUME THE ENTIRE COST OF ALL NECESSARY -SERVICING, REPAIR OR CORRECTION. THE SOFTWARE IS NOT INTENDED FOR USE IN -MEDICAL, LIFE SAVING OR LIFE SUSTAINING APPLICATIONS. SOME JURISDICTIONS -DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION -MAY NOT APPLY TO YOU. - -8. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY LAW, UNDER -NO CIRCUMSTANCES INCLUDING NEGLIGENCE, SHALL ATI, OR ITS DIRECTORS, -OFFICERS, EMPLOYEES OR AGENTS, BE LIABLE TO YOU FOR ANY INCIDENTAL, -INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES (INCLUDING DAMAGES FOR LOSS OF -BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESSINFORMATION, AND -THE LIKE) ARISING OUT OF THE USE, MISUSE OR INABILITY TO USE THE SOFTWARE -OR RELATED DOCUMENTATION, BREACH OR DEFAULT, INCLUDING THOSE ARISING FROM -INFRINGEMENT OR ALLEGED INFRINGEMENT OF ANY PATENT, TRADEMARK, COPYRIGHT OR -OTHER INTELLECTUAL PROPERTY RIGHT, BY ATI, EVEN IF ATI OR ATI''S AUTHORIZED -REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME -JURISDICTIONS DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR -INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION -MAY NOT APPLY TO YOU. ATI will not be liable for 1) loss of, or damage to, -your records or data or 2) any damages claimed by you based on any third -party claim. In no event shall ATI''s total liability to you for all -damages, losses, and causes of action (whether in contract, tort (including -negligence) or otherwise) exceed the amount paid by you for the Software. -The foregoing limitations will apply even if the above stated limitation -fails of its essential purpose. - -9. Controlling Law and Severability. This License shall be governed by -and construed under the laws of the Province of Ontario, Canada without -reference to its conflict of law principles. Any dispute related hereto -will be brought only in the courts in Toronto, Ontario, Canada and such -courts are agreed to be the convenient forum. In the event of any -conflicts between foreign law, rules, and regulations, and Canadian law, -rules, and regulations, Canadian law, rules and regulations shall prevail -and govern. The United Nations Convention on Contracts for the -International Sale of Goods shall not apply to this License. If for any -reason a court of competent jurisdiction finds any provision of this -License or portion thereof, to be unenforceable, that provision of the -License shall be enforced to the maximum extent permissible so as to effect -the intent of the parties, and the remainder of this License shall continue -in full force and effect. - -10. Complete Agreement. This License constitutes the entire agreement -between the parties with respect to the use of the Software and the related -documentation, and supersedes all prior or contemporaneous understandings -or agreements, written or oral, regarding such subject matter. No -amendment to or modification of this License will be binding unless in -writing and signed by a duly authorized representative of ATI. diff --git a/tests/licensedcode/data/more_licenses/licenses/ati-eula.yml b/tests/licensedcode/data/more_licenses/licenses/ati-eula.yml deleted file mode 100644 index 2ff21beeae7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ati-eula.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ati-eula -notes: this is a license from fossology license reference ATI-EULA (ATI Software EULA) https://olex-secure.openlogic.com/licenses/atisoftwareeula diff --git a/tests/licensedcode/data/more_licenses/licenses/bitstream.txt b/tests/licensedcode/data/more_licenses/licenses/bitstream.txt deleted file mode 100644 index a381bdda20c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bitstream.txt +++ /dev/null @@ -1,57 +0,0 @@ -Bitstream License Agreement - -Bitstream, Inc. Electronic License Agreement - -By using or installing this software product, you (or you on behalf of your employer) are agreeing to be bound by the terms of this Agreement. This Agreement constitutes the complete agreement between you and Bitstream (except for Multi-Workstation Products, where another document supplements this one). -Bitstream Inc. Dept. ISR 215 First Street Cambridge, MA 02142 USA - -1. License Grant - -Number of Users: -In consideration for the license fee paid, Bitstream grants to you only, the Licensee, the non-exclusive, nontransferable right to use and display the Bitstream Product purchased through this service. If you are using this product for your work, this agreement applies to your employer. Bitstream software collections consisting of one or more fonts from the Bitstream Typeface Library may be used on up to five (5) CPUs at your site connected to any number of printers or other image producing devices (regardless of resolutions) at your own site. - -Multiple Workstations: -If you have paid for and executed the Bitstream Multi-Workstation License Agreement, then you may use the Bitstream Product on the number of CPUs stated in that agreement. - -Third Parties: -You may send a copy of any Bitstream font along with your documents to a commercial printer or other service bureau to enable the editing or printing of your document, provided that such party has informed you that it owns a valid license to use that particular font software. You may also "embed" PC TrueType format fonts within your documents for the viewing, editing, and printing of those documents. - -Portable Documents. -You may send along with your documents a Portable Font Resource ("PFR") created by Bitstream''s TrueDoc(r), for the purpose of allowing any third party to view, edit, or print the document remotely but with the express understanding that such party may not use such PFR to edit or print any other document unless independently licensed to do so. You may also "embed" Bitstream typefaces within PostScript-Language files, .PDF files, and .EVY files for distribution, viewing, and imaging to other parties. - -No Modifications. -You may not modify, adapt, translate, reverse engineer, decompile, disassemble, or create derivative works based on the Bitstream Product without Bitstream''s prior written consent. - -Rights Reservation. -Bitstream reserves all rights not specifically granted to Licensee. - -2. Copyright -The Bitstream Product and the accompanying materials are copyrighted and contain proprietary information and trade secrets of Bitstream. Unauthorized copying of the Bitstream product even if modified, merged, or included with other software, or of the written materials, is expressly forbidden. You may be held legally responsible for any infringement of Bitstream''s intellectual property rights that is caused or encouraged by your failure to abide by the terms of this Agreement, unless you have a Multi-Workstation License Agreement. You may make one (1) copy of the Bitstream Product solely for backup purposes provided the copyright and trademark notices are reproduced in their entirety on the backup copy. - -3. Termination -This Agreement is effective until terminated. This Agreement will terminate automatically without notice from Bitstream if you fail to comply with any provision contained herein. Upon termination, you must destroy the written materials, the Bitstream Product, and all copies of them, in part and in whole, including modified copies, if any. - -4. Product Upgrade -Bitstream may, from time to time, update the Bitstream Product. Bitstream Product upgrade pricing may apply. - -5. Disclaimer and Limited Warranty -Bitstream warrants the Bitstream Product to be free from defects in materials and workmanship under normal use for a period of ninety (90) days from the date of delivery as shown on your invoice. Bitstream''s entire liability and your exclusive remedy as to a defective product shall be, at Bitstream''s option, either return of purchase price or replacement of any such product that is returned to Bitstream with a copy of the invoice. Bitstream shall have no responsibility to replace the product or refund the purchase price if failure results from accident, abuse or misapplication, or if any product is lost or damaged due to theft, fire, or negligence. Any replacement product will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is longer. This warranty gives you specific legal rights. You may have other rights, which vary from state to state. - -EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE BITSTREAM PRODUCT, IS PROVIDED "AS IS". BITSTREAM DOES NOT MAKE ANY WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The entire risk as to the quality and performance of the Bitstream Product rests upon you. Bitstream does not warrant that the functions contained in the Bitstream Product will meet your requirements or that the operation of the software will be uninterrupted or error free. - -BITSTREAM SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, OR INCIDENTAL DAMAGES (INCLUDING DAMAGES FROM LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE LIKE) ARISING OUT OF THE USE OF OR INABILITY TO USE THE BITSTREAM PRODUCT EVEN IF BITSTREAM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you. - -6. U.S. Government Restricted Rights -The software product referred to as the Bitstream Product and its related documentation are provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the Government is subject to restrictions as set forth in FAR 52.227-19(c)(2) (May, 1987) when applicable or the applicable provisions of the DOD FAR supplement 252.227-7013 subdivision (a)(15)(April, 1988) or subdivision (a)(17)(April, 1988). Contractor/manufacturer is Bitstream Inc./215 First Street/Cambridge, MA 02142. - -Export (Domestic Versions): -Regardless of any disclosure made by LICENSEE to Bitstream of an ultimate destination of the Bitstream Product, LICENSEE shall not reexport or transfer, whether directly or indirectly, the Bitstream Product to anyone outside the United States of America without first obtaining a license from the United States Department of Commerce or any other agency or department of the United States Government, as required. - -Should you have any questions concerning this Agreement, or if you desire to contact Bitstream for any reason, please contact in writing. - -7. Governing Law -This agreement is governed by the laws of the United States of America and the Commonwealth of Massachusetts. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/bitstream.yml b/tests/licensedcode/data/more_licenses/licenses/bitstream.yml deleted file mode 100644 index 79a3b529d5d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bitstream.yml +++ /dev/null @@ -1,5 +0,0 @@ -expected_failure: yes -license_expressions: - - proprietary-license -notes: this is a license from fossology license reference Bitstream (Bitstream License Agreement) - http://www.fontshop.com/licenses/bitstream/ diff --git a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.0.txt deleted file mode 100644 index 0080da91df8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.0.txt +++ /dev/null @@ -1,5 +0,0 @@ -The contents of this file are subject to the BitTorrent Open Source -License Version 1.0 (the License). You may not copy or use this file, -in either source code or executable form, except in compliance with the -License. You may obtain a copy of the License at -http://www.bittorrent.com/license/. diff --git a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.0.yml deleted file mode 100644 index 99ecb70b0ac..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - bittorrent-1.0 -notes: this is a license from fossology license reference BitTorrent-1.0 (BitTorrent Open Source - License v1.0) http://spdx.org/licenses/BitTorrent-1.0#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.1.txt deleted file mode 100644 index 60f5880cc25..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.1.txt +++ /dev/null @@ -1,139 +0,0 @@ -BitTorrent Open Source License - -Version 1.1 - -This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. - -Preamble - -This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. - -This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. - -This License provides that: - -1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. - -2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) - -3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) - -4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. - -5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. - -You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn''t work properly or causes you any injury or damages. - -6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. - -7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. - -You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. - -Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. - -New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. - -This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. - -License Terms - -1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: - -a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. - -b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. - -2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: - -a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. - -b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. - -3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. - -4. Your Obligations Regarding Distribution. - -a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients'' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). - -b. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -c. Intellectual Property Matters. - -i. Third Party Claims. If you have knowledge that a license to a third party''s intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. - -ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - -iii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. - -d. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients'' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. - -e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. - -f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. - -g. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. - -5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. - -6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. - -7. Versions of This License. - -a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. - -b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. - -c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. - -8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -9. Termination. - -a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. - -b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. - -c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. - -d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. - -10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. - -13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For purposes of this definition, control means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. You are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. - -15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. - -Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) - -Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) - -License: This BitTorrent Open Source License. (See first paragraph of License) - -Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) - -Licensor: BitTorrent, Inc. (See first paragraph of License) - -Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) - -Notice: The notice contained in Exhibit A. (See Section 4(e)) - -Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) - -You: This term is defined in Section 14 of this License. - -EXHIBIT A - -The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. - -License: - -The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. - -Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.1.yml deleted file mode 100644 index b98cb455478..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bittorrent-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - bittorrent-1.1 -notes: this is a license from fossology license reference BitTorrent-1.1 (BitTorrent Open Source - License 1.1) http://spdx.org/licenses/BitTorrent-1.1#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/broadcom-eula.txt b/tests/licensedcode/data/more_licenses/licenses/broadcom-eula.txt deleted file mode 100644 index 64cecb32412..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/broadcom-eula.txt +++ /dev/null @@ -1,39 +0,0 @@ -BroadCom License Agreement -IMPORTANT-READ CAREFULLY: This End-User License Agreement ("EULA") is a legal agreement between you ("Licensee") and Broadcom Corporation ("Broadcom") for the Broadcom software that accompanies this EULA, which includes computer software and may include associated media, printed materials, "online" or electronic documentation, and Internet-based services ("Software"). BY OPENING THE SOFTWARE PACKAGE, CLICKING ON THE "ACCEPT" BUTTON OF ANY ELECTRONIC VERSION OF THIS END USER LICENSE AGREEMENT ("AGREEMENT") OR ACCESSING OR INSTALLING THE SOFTWARE, YOU ACKNOWLEDGE THAT YOU HAVE READ THE LICENSE AGREEMENT, UNDERSTAND IT AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO THE TERMS OF THIS EULA, PROMPTLY CLICK ON THE "DECLINE" BUTTON AND DO NOT DOWNLOAD, INSTALL, COPY OR USE THE SOFTWARE. - -License -Subject to the terms and conditions of this Agreement, Broadcom grants to Licensee the non-exclusive, non-transferable, personal, revocable right to use the Software only in connection with proprietary semiconductor products of Broadcom incorporated in the equipment purchased by Licensee, and to make one (1) copy of the Software for back-up or archival purposes only. Any other use of this Software or removal of the Software from a country in which it is licensed shall automatically terminate this license. - -Restrictions -This Software is protected by U.S. Copyright Law. This Software is licensed, not sold. Licensee may not use, disclose, modify, reproduce or distribute the Software except as expressly permitted in this Agreement. No license is granted to Licensee in any human readable code of the Software (source code). Licensee shall not decompile, reverse engineer, modify, or otherwise attempt to derive source code from the Software except to the extent that restrictions on these activities may be prohibited under applicable law. Additionally, Licensee may not remove, efface or otherwise obscure any proprietary notices, labels, or marks on the Software. Licensee agrees that each copy of the Software and Documentation will include reproductions of all proprietary notices, labels or marks included therein. Licensee further acknowledges and agrees that all right, title and interest in the Software and all subsequent copies thereof regardless of the form or media are retained and held by Broadcom. ALL RIGHTS NOT EXPRESSLY GRANTED HEREIN ARE RESERVED BY BROADCOM. - -Termination -Licensee may terminate this EULA at any time by destroying all copies of the Software. Also, Licensee''s rights under this EULA will terminate immediately without notice from Broadcom if Licensee fails to comply with any provision of this Agreement. Upon termination, Licensee shall destroy the Software and all copies thereof that are in Licensee''s possession or control. - -No Support -Nothing in this Agreement shall obligate Broadcom to provide any support for the Software including without limitation any obligation to correct any defects or provide any updates to the Software to Licensee. - - -No Warranty / Disclaimer -TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY REPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND BROADCOM SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH LICENSEE. - -Exclusion of Incidental, Consequential and Certain Other Damages -TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ITS SUPPLIERS BE LIABLE FOR CONSEQUENTIAL, INCIDENTAL, SPECIAL, INDIRECT, OR EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATING TO THIS AGREEMENT OR LICENSEE''S USE OF OR INABILITY TO USE THE SOFTWARE, OR THE PROVISION OR FAILURE TO PROVIDE SUPPORT SERVICES, INCLUDING BUT NOT LIMITED TO LOST PROFITS, LOSS OF CONFIDENTIAL OR OTHER INFORMATION, BUSINESS INTERRUPTION, PERSONAL INJURY, LOSS OF PRIVACY, FAILURE TO MEET ANY DUTY (INCLUDING OF GOOD FAITH OR REASONABLE CARE), NEGLIGENCE, COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR ANY OTHER CLAIM FOR PECUNIARY OR OTHER LOSS WHATSOEVER, OR FOR ANY CLAIM OR DEMAND AGAINST YOU BY ANY OTHER PARTY, EVEN IF BROADCOM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. - -Limitation of Liability and Remedies -NOTWITHSTANDING ANY DAMAGES YOU MAY INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY OF BROADCOM AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS AGREEMENT AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE. - -Confidentiality -"Confidential Information" means any trade secrets, confidential data, or other confidential information relating to or used in the Software. Licensee shall not use or disclose Confidential Information except as expressly permitted hereunder and shall use all reasonable efforts to protect the confidentiality thereof. Licensee agrees and acknowledges that the structure, sequence and organization of the Software are the valuable trade secrets of Broadcom, and thus constitute Confidential Information under this Agreement. - -Export Regulations -Software, including technical data, may be subject to U.S. export control laws, including the U.S. Export Administration Act and its associated regulations, and may be subject to export or import regulations in other countries. Licensee warrants that it will comply strictly in all respects with all such regulations and acknowledges that it has the responsibility to obtain licenses to export, re-export or import the Software. - -Non-Assignability -Licensee may not sell, transfer, assign or subcontract the Software or any right or obligation set forth in this Agreement without the prior written consent of Broadcom. Any act in derogation of the foregoing shall be null and void. - -U.S. Government License Rights -The Software is licensed only with "RESTRICTED RIGHTS," and use, duplication or disclosure by the Government is subject to restrictions as set forth in FAR, 48 CFR 52.227-14 and DFAR252.227-7013 et seq. or its successor(s). Use of the Software by the Government constitutes acknowledgement that the Software is commercial, and of Broadcom''s proprietary rights therein. The Contractor/Manufacturer of the Software is Broadcom. Licensee agrees not to remove or deface any portion of any legend provided in or with the Software provided hereunder. The Software is a trade secret of Broadcom for all purposes of the Freedom of Information Act and is, in all respects, proprietary data belonging solely to Broadcom. - -Miscellaneous -Broadcom and Licensee are independent contractors. This is the entire Agreement between the parties relating to the subject matter hereof, supersedes any and all prior proposals, agreements and representations between the parties, whether written or oral, and no waiver, modification or amendment of the Agreement shall be valid unless in writing signed by each party. The waiver of a breach of any term hereof shall in no way be construed as a waiver of any other term or breach hereof. If any provision of this Agreement shall be held by a court of competent jurisdiction to be contrary to law, the remaining provisions of this Agreement shall remain in full force and effect. This Agreement is governed by the laws of the State of California without reference to conflict of laws principles. The parties expressly stipulate that the 1980 United Nations Convention on Contracts for the International Sale of Goods shall not apply. All disputes arising out of this Agreement shall be subject to the exclusive jurisdiction of the state and federal courts located in Orange County, California, and the parties agree and submit to the personal and exclusive jurisdiction and venue of these courts. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/broadcom-eula.yml b/tests/licensedcode/data/more_licenses/licenses/broadcom-eula.yml deleted file mode 100644 index d50da2525d8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/broadcom-eula.yml +++ /dev/null @@ -1,5 +0,0 @@ -expected_failure: yes -license_expressions: - - proprietary-license -notes: this is a license from fossology license reference Broadcom-EULA (Broadcom License Agreement) - http://www.calculate-linux.ru/packages/licenses/Broadcom diff --git a/tests/licensedcode/data/more_licenses/licenses/bsd-2-clause-freebsd.txt b/tests/licensedcode/data/more_licenses/licenses/bsd-2-clause-freebsd.txt deleted file mode 100644 index 2a8730de9a1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bsd-2-clause-freebsd.txt +++ /dev/null @@ -1,13 +0,0 @@ -The FreeBSD Copyright - -Copyright 1992-2012 The FreeBSD Project. 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. - -THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``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 FREEBSD PROJECT 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. - -The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/bsd-2-clause-freebsd.yml b/tests/licensedcode/data/more_licenses/licenses/bsd-2-clause-freebsd.yml deleted file mode 100644 index e85ee041279..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bsd-2-clause-freebsd.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - bsd-2-clause-freebsd -notes: this is a license from fossology license reference BSD-2-Clause-FreeBSD (BSD 2-clause - FreeBSD License) http://www.freebsd.org/copyright/freebsd-license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/bsl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/bsl-1.0.txt deleted file mode 100644 index 30aac2cf479..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bsl-1.0.txt +++ /dev/null @@ -1,23 +0,0 @@ -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/bsl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/bsl-1.0.yml deleted file mode 100644 index c377ec25101..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bsl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - boost-1.0 -notes: this is a license from fossology license reference BSL-1.0 (Boost Software License 1.0) - http://www.boost.org/LICENSE_1_0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.5.txt b/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.5.txt deleted file mode 100644 index b5adb91601b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.5.txt +++ /dev/null @@ -1,16 +0,0 @@ -Version 1.0.5 of 10 December 2007 - -Copyright © 1996-2007 Julian Seward - -This program, bzip2, the associated library libbzip2, and all documentation, are copyright © 1996-2007 Julian Seward. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - • The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - • Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - • The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. - -PATENTS: To the best of my knowledge, bzip2 and libbzip2 do not use any patented algorithms. However, I do not have the resources to carry out a patent search. Therefore I cannot give any guarantee of the above statement. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.5.yml b/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.5.yml deleted file mode 100644 index 1081d0d3f20..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - bzip2-libbzip-1.0.5 -notes: this is a license from fossology license reference bzip2-1.0.5 (bzip2 and libbzip2 License - v1.0.5) http://bzip.org/1.0.5/bzip2-manual-1.0.5.html diff --git a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.6.txt b/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.6.txt deleted file mode 100644 index f45bc7e8d59..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.6.txt +++ /dev/null @@ -1,12 +0,0 @@ -This program, "bzip2", the associated library "libbzip2", and all documentation, are copyright (C) 1996-2010 Julian R Seward. 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. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - 3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - 4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''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 AUTHOR 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. - -Julian Seward, jseward@bzip.org bzip2/libbzip2 version 1.0.6 of 6 September 2010 \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.6.yml b/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.6.yml deleted file mode 100644 index 43ef185bc72..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/bzip2-1.0.6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - bzip2-libbzip-2010 -notes: this is a license from fossology license reference bzip2-1.0.6 (bzip2 and libbzip2 License - v1.0.6) https://github.com/asimonov-im/bzip2/blob/master/LICENSE diff --git a/tests/licensedcode/data/more_licenses/licenses/catosl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/catosl-1.1.txt deleted file mode 100644 index 81b594c8ade..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/catosl-1.1.txt +++ /dev/null @@ -1,353 +0,0 @@ -Computer Associates Trusted Open Source License - -Version 1.1 - -PLEASE READ THIS DOCUMENT CAREFULLY AND IN ITS ENTIRETY. THE -ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMPUTER -ASSOCIATES TRUSTED OPEN SOURCE LICENSE ("LICENSE"). ANY USE, -REPRODUCTION, MODIFICATION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES -THE RECIPIENT''S ACCEPTANCE OF THIS LICENSE. - -License Background - -Computer Associates International, Inc. (CA) believes in open source. We -believe that the open source development approach can take appropriate -software programs to unprecedented levels of quality, growth, and -innovation. To demonstrate our continuing commitment to open source, we -are releasing the Program (as defined below) under this License. - -This License is intended to permit contributors and recipients of the -Program to use the Program, including its source code, freely and -without many of the concerns of some other open source licenses. -Although we expect the underlying Program, and Contributions (as defined -below) made to such Program, to remain open, this License is designed to -permit you to maintain your own software programs free of this License -unless you choose to do so. Thus, only your Contributions to the Program -must be distributed under the terms of this License. - -The provisions that follow set forth the terms and conditions under -which you may use the Program. - -1. DEFINITIONS - -1.1 Contribution means (a) in the case of CA, the Original Program; and -(b) in the case of each Contributor (including CA), changes and -additions to the Program, where such changes and/or additions to the -Program originate from and are distributed by that particular -Contributor to unaffiliated third parties. A Contribution originates -from a Contributor if it was added to the Program by such Contributor -itself or anyone acting on such Contributors behalf. Contributions do -not include additions to the Program which: (x) are separate modules of -software distributed in conjunction with the Program under their own -license agreement, and (y) are not derivative works of the Program. - -1.2 Contributor means CA and any other person or entity that distributes -the Program. - -1.3 Contributor Version means as to a Contributor, that version of the -Program that includes the Contributors Contribution but not any -Contributions made to the Program thereafter. - -1.4 Larger Work means a work that combines the Program or portions -thereof with code not governed by the terms of this License. - -1.5 Licensed Patents mean patents licensable by a Contributor that are -infringed by the use or sale of its Contribution alone or when combined -with the Program. - -1.6 Original Program means the original version of the software to which -this License is attached and as released by CA, including source code, -object code and documentation, if any. - -1.7 Program means the Original Program and Contributions. - -1.8 Recipient means anyone who modifies, copies, uses or distributes the -Program. - -2. GRANT OF RIGHTS - -2.1 Subject to the terms of this License, each Contributor hereby grants -Recipient an irrevocable, non-exclusive, worldwide, royalty-free 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. -For the avoidance of doubt, the license provided in this Section 2.1 -shall not include a license to any Licensed Patents of a Contributor. - -2.2 Subject to the terms of this License, each Contributor hereby grants -Recipient an irrevocable, non-exclusive, worldwide, royalty-free license -to the Licensed Patents to the extent necessary to make, use, sell, -offer to sell and import the Contribution of such Contributor, if any, -in source code and object code form. The license granted in this Section -2.2 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 the Licensed Patents to be infringed -by such combination. Notwithstanding the foregoing, no license is -granted under this Section 2.2: (a) for any code or works that do not -include the Contributor Version, as it exists and is used in accordance -with the terms hereof; (b) for infringements caused by: (i) third party -modifications of the Contributor Version; or (ii) the combination of -Contributions made by each such Contributor with other software (except -as part of the Contributor Version) or other devices; or (c) with -respect to Licensed Patents infringed by the Program in the absence of -Contributions made by that Contributor. - -2.3 Recipient understands that although each Contributor grants the -licenses to its Contributions set forth herein, except as provided in -Section 2.4, no assurances are provided by any Contributor that the -Program does not infringe the patent or other intellectual property -rights of any other person or entity. Each Contributor disclaims any -liability to Recipient for claims brought by any other person or 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. - -2.4 Each Contributor represents and warrants that it has all right, -title and interest in the copyrights in its Contributions, and has the -right to grant the copyright licenses set forth in this License. - -3. DISTRIBUTION REQUIREMENTS - -3.1 If the Program is distributed in object code form, then a prominent -notice must be included in the code itself as well as in any related -documentation, stating that the source code for the Program is available -from the Contributor with information on how and where to obtain the -source code. A Contributor may choose to distribute the Program in -object code form under its own license agreement, provided that: - -a. it complies with the terms and conditions of this License; and -b. its license agreement: - 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, to the maximum extent - permitted by applicable law; - ii. effectively excludes on behalf of all Contributors all liability for - damages, including direct, indirect, special, incidental and consequential - damages, such as lost profits, to the maximum extent permitted by applicable - law; - iii. states that any provisions which are inconsistent with this License are - offered by that Contributor alone and not by any other party; and - iv. states that source code for the Program is available from such - Contributor at the cost of distribution, and informs licensees how to obtain - it in a reasonable manner. - -3.2 When the Program is made available in source code form: - -a. it must be made available under this License; and -b. a copy of this License must be included with each copy of the Program. - -3.3 This License is intended to facilitate the commercial distribution -of the Program by any Contributor. However, Contributors may only charge -Recipients a one-time, upfront fee for the distribution of the Program. -Contributors may not charge Recipients any recurring charge, license -fee, or any ongoing royalty for the Recipients exercise of its rights -under this License to the Program. Contributors shall make the source -code for the Contributor Version they distribute available at a cost, if -any, equal to the cost to the Contributor to physically copy and -distribute the work. It is not the intent of this License to prohibit a -Contributor from charging fees for any service or maintenance that a -Contributor may charge to a Recipient, so long as such fees are not an -attempt to circumvent the foregoing restrictions on charging royalties -or other recurring fees for the Program itself. - -3.4 A Contributor may create a Larger Work by combining the Program with -other software code not governed by the terms of this License, and -distribute the Larger Work as a single product. In such a case, the -Contributor must make sure that the requirements of this License are -fulfilled for the Program. Any Contributor who includes the Program in a -commercial product offering, including as part of a Larger Work, may -subject itself, but not any other Contributor, to additional contractual -commitments, including, but not limited to, performance warranties and -non-infringement representations on suchContributors behalf. No -Contributor may create any additional 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) -who made Contributions to the Program distributed by the Commercial -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, including any additional contractual commitments, of -such Commercial Contributor in connection with its distribution of the -Program. The obligations in this section do not apply to any claims or -Losses relating to any actual or alleged intellectual property -infringement. - -3.5 If Contributor has knowledge that a license under a third partys -intellectual property rights is required to exercise the rights granted -by such Contributor under Sections 2.1 or 2.2, Contributor must (a) -include a text file with the Program source code distribution titled -../IP_ISSUES, and (b) notify CA in writing at Computer Associates -International, Inc., One Computer Associates Plaza, Islandia, New York -11749, Attn: Open Source Group or by email at opensource@ca.com, both -describing the claim and the party making the claim in sufficient detail -that a Recipient and CA will know whom to contact with regard to such -matter. If Contributor obtains such knowledge after the Contribution is -made available, Contributor shall also promptly modify the IP_ISSUES -file in all copies Contributor makes available thereafter and shall take -other steps (such as notifying appropriate mailing lists or newsgroups) -reasonably calculated to inform those who received the Program that such -new knowledge has been obtained. - -3.6 Recipient shall not remove, obscure, or modify any CA or other -Contributor copyright or patent proprietary notices appearing in the -Program, whether in the source code, object code or in any -documentation. In addition to the obligations set forth in Section 4, -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. - -4. CONTRIBUTION RESTRICTIONS - -4.1 Each Contributor must cause the Program to which the Contributor -provides a Contribution to contain a file documenting the changes the -Contributor made to create its version of the Program and the date of -any change. Each Contributor must also include a prominent statement -that the Contribution is derived, directly or indirectly, from the -Program distributed by a prior Contributor, including the name of the -prior Contributor from which such Contribution was derived, in (a) the -Program source code, and (b) in any notice in an executable version or -related documentation in which the Contributor describes the origin or -ownership of the Program. - -5. NO WARRANTY - -5.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE, THE PROGRAM IS -PROVIDED AS IS AND IN ITS PRESENT STATE AND CONDITION. NO WARRANTY, -REPRESENTATION, CONDITION, UNDERTAKING OR TERM, EXPRESS OR IMPLIED, -STATUTORY OR OTHERWISE, AS TO THE CONDITION, QUALITY, DURABILITY, -PERFORMANCE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A -PARTICULAR PURPOSE OR USE OF THE PROGRAM IS GIVEN OR ASSUMED BY ANY -CONTRIBUTOR AND ALL SUCH WARRANTIES, REPRESENTATIONS, CONDITIONS, -UNDERTAKINGS AND TERMS ARE HEREBY EXCLUDED TO THE FULLEST EXTENT -PERMITTED BY LAW. - -5.2 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 License, -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. - -5.3 Each Recipient acknowledges that the Program is not intended for use -in the operation of nuclear facilities, aircraft navigation, -communication systems, or air traffic control machines in which case the -failure of the Program could lead to death, personal injury, or severe -physical or environmental damage. - -6. DISCLAIMER OF LIABILITY - -6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE, AND TO THE EXTENT -PERMITTED BY LAW, NO CONTRIBUTOR 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. - -7. TRADEMARKS AND BRANDING - -7.1 This License does not grant any Recipient or any third party any -rights to use the trademarks or trade names now or subsequently posted -at http://www.ca.com/catrdmrk.htm, or any other trademarks, service -marks, logos or trade names belonging to CA (collectively CA Marks) or -to any trademark, service mark, logo or trade name belonging to any -Contributor. Recipient agrees not to use any CA Marks in or as part of -the name of products derived from the Original Program or to endorse or -promote products derived from the Original Program. - -7.2 Subject to Section 7.1, Recipients may distribute the Program under -trademarks, logos, and product names belonging to the Recipient provided -that all copyright and other attribution notices remain in the Program. - -8. PATENT LITIGATION - -8.1 If Recipient institutes patent litigation against any person or -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 Recipients patent(s), then -such Recipients rights granted under Section 2.2 shall terminate as of -the date such litigation is filed. - -9. OWNERSHIP - -9.1 Subject to the licenses granted under this License in Sections 2.1 -and 2.2 above, each Contributor retains all rights, title and interest -in and to any Contributions made by such Contributor. CA retains all -rights, title and interest in and to the Original Program and any -Contributions made by or on behalf of CA (CA Contributions), and such CA -Contributions will not be automatically subject to this License. CA may, -at its sole discretion, choose to license such CA Contributions under -this License, or on different terms from those contained in this License -or may choose not to license them at all. - -10. TERMINATION - -10.1 All of Recipients rights under this License shall terminate if it -fails to comply with any of the material terms or conditions of this -License and does not cure such failure in a reasonable period of time -after becoming aware of such noncompliance. If Recipients rights under -this License terminate, Recipient agrees to cease use and distribution -of the Program as soon as reasonably practicable. However, Recipients -obligations under this License and any licenses granted by Recipient as -a Contributor relating to the Program shall continue and survive -termination. - -11. GENERAL - -11.1 If any provision of this License is invalid or unenforceable under -applicable law, it shall not affect the validity or enforceability of -the remainder of the terms of this License, 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. - -11.2 CA may publish new versions (including revisions) of this License -from time to time. Each new version of the License will be given a -distinguishing version number. The Program (including Contributions) may -always be distributed subject to the version of the License under which -it was received. In addition, after a new version of the License is -published, Contributor may elect to distribute the Program (including -its Contributions) under the new version. No one other than CA has the -right to modify this License. - -11.3 If it is impossible for Recipient to comply with any of the terms -of this License with respect to some or all of the Program due to -statute, judicial order, or regulation, then Recipient must: (a) comply -with the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be included in the IP_ISSUES file described in Section 3.5 and must be -included with all distributions of the Program source code. Except to -the extent prohibited by statute or regulation, such description must be -sufficiently detailed for a Recipient of ordinary skill to be able to -understand it. - -11.4 This License is governed by the laws of the State of New York. No -Recipient will bring a legal action under this License more than one -year after the cause of action arose. Each Recipient waives its rights -to a jury trial in any resulting litigation. Any litigation or other -dispute resolution between a Recipient and CA relating to this License -shall take place in the State of New York, and Recipient and CA hereby -consent to the personal jurisdiction of, and venue in, the state and -federal courts within that district with respect to this License. The -application of the United Nations Convention on Contracts for the -International Sale of Goods is expressly excluded. - -11.5 Where Recipient is located in the province of Quebec, Canada, the -following clause applies: The parties hereby confirm that they have -requested that this License and all related documents be drafted in -English. Les parties contractantes confirment qu''elles ont exige que le -present contrat et tous les documents associes soient rediges en -anglais. - -11.6 The Program is subject to all export and import laws, restrictions -and regulations of the country in which Recipient receives the Program. -Recipient is solely responsible for complying with and ensuring that -Recipient does not export, re-export, or import the Program in violation -of such laws, restrictions or regulations, or without any necessary -licenses and authorizations. - -11.7 This License constitutes the entire agreement between the parties -with respect to the subject matter hereof. diff --git a/tests/licensedcode/data/more_licenses/licenses/catosl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/catosl-1.1.yml deleted file mode 100644 index f3da18cf5d4..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/catosl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ca-tosl-1.1 -notes: this is a license from fossology license reference CATOSL-1.1 (Computer Associates Trusted - Open Source License 1.1) http://opensource.org/licenses/ca-tosl1.1.php diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cc-by-1.0.txt deleted file mode 100644 index 14912919622..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-1.0.txt +++ /dev/null @@ -1,55 +0,0 @@ -Attribution 1.0 - -CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - -"Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. -"Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. -"Licensor" means the individual or entity that offers the Work under the terms of this License. -"Original Author" means the individual or entity who created the Work. -"Work" means the copyrightable work of authorship offered under the terms of this License. -"You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. -2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - -to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; -to create and reproduce Derivative Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - -You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients'' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. -If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. -5. Representations, Warranties and Disclaimer - -By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor''s knowledge after reasonable inquiry: -Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; -The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. -EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - -This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. -Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -8. Miscellaneous - -Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. -Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. -If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. -This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. -Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - -Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons'' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. - -Creative Commons may be contacted at http://creativecommons.org/. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cc-by-1.0.yml deleted file mode 100644 index 3d0526703f7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cc-by-1.0 -notes: this is a license from fossology license reference CC-BY-1.0 (Creative Commons Attribution - 1.0) http://creativecommons.org/licenses/by/1.0/legalcode diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-2.5.txt b/tests/licensedcode/data/more_licenses/licenses/cc-by-2.5.txt deleted file mode 100644 index ece5cb50fa0..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-2.5.txt +++ /dev/null @@ -1,58 +0,0 @@ -Attribution 2.5 - -CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - -"Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. -"Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. -"Licensor" means the individual or entity that offers the Work under the terms of this License. -"Original Author" means the individual or entity who created the Work. -"Work" means the copyrightable work of authorship offered under the terms of this License. -"You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. -2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - -to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; -to create and reproduce Derivative Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. -For the avoidance of doubt, where the work is a musical composition: - -Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. -Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). -Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - -You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients'' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(b), as requested. -If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor''s copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - -This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. -Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -8. Miscellaneous - -Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. -Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. -If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. -This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. -Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - -Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons'' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. - -Creative Commons may be contacted at http://creativecommons.org/. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-2.5.yml b/tests/licensedcode/data/more_licenses/licenses/cc-by-2.5.yml deleted file mode 100644 index b0ab7a6f98c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-2.5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cc-by-2.5 -notes: this is a license from fossology license reference CC-BY-2.5 (Creative Commons Attribution - 2.5) http://creativecommons.org/licenses/by/2.5/legalcode diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-1.0.txt deleted file mode 100644 index 2824ab6df9b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-1.0.txt +++ /dev/null @@ -1,56 +0,0 @@ -Attribution-ShareAlike 1.0 - -CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - -"Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. -"Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. -"Licensor" means the individual or entity that offers the Work under the terms of this License. -"Original Author" means the individual or entity who created the Work. -"Work" means the copyrightable work of authorship offered under the terms of this License. -"You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. -2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - -to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; -to create and reproduce Derivative Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - -You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients'' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. -You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients'' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. -If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. -5. Representations, Warranties and Disclaimer - -By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor''s knowledge after reasonable inquiry: -Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; -The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. -EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - -This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. -Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -8. Miscellaneous - -Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. -Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. -If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. -This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. -Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - -Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons'' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. - -Creative Commons may be contacted at http://creativecommons.org/. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-1.0.yml deleted file mode 100644 index 6eb9cc35eff..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cc-by-sa-1.0 -notes: this is a license from fossology license reference CC-BY-SA-1.0 (Creative Commons Attribution-ShareAlike - 1.0) http://creativecommons.org/licenses/by-sa/1.0/legalcode diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-2.5.txt b/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-2.5.txt deleted file mode 100644 index 594385730f6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-2.5.txt +++ /dev/null @@ -1,60 +0,0 @@ -Attribution-ShareAlike 2.5 - -CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - -"Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. -"Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. -"Licensor" means the individual or entity that offers the Work under the terms of this License. -"Original Author" means the individual or entity who created the Work. -"Work" means the copyrightable work of authorship offered under the terms of this License. -"You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. -"License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. -2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - -to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; -to create and reproduce Derivative Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; -to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. -For the avoidance of doubt, where the work is a musical composition: - -Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. -Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). -Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - -You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients'' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested. -You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients'' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. -If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor''s copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - -This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. -Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -8. Miscellaneous - -Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. -Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. -If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. -This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. -Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - -Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons'' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. - -Creative Commons may be contacted at http://creativecommons.org/. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-2.5.yml b/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-2.5.yml deleted file mode 100644 index 1a1f790d9e6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cc-by-sa-2.5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cc-by-sa-2.5 -notes: this is a license from fossology license reference CC-BY-SA-2.5 (Creative Commons Attribution-ShareAlike - 2.5) http://creativecommons.org/licenses/by-sa/2.5/legalcode diff --git a/tests/licensedcode/data/more_licenses/licenses/cddl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cddl-1.0.txt deleted file mode 100644 index 22ebafccf93..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cddl-1.0.txt +++ /dev/null @@ -1,384 +0,0 @@ -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 - - - 1. Definitions. - - 1.1. Contributor means each individual or entity that - creates or contributes to the creation of Modifications. - - 1.2. Contributor Version means the combination of the - Original Software, prior Modifications used by a - Contributor (if any), and the Modifications made by that - particular Contributor. - - 1.3. Covered Software means (a) the Original Software, or - (b) Modifications, or (c) the combination of files - containing Original Software with files containing - Modifications, in each case including portions thereof. - - 1.4. Executable means the Covered Software in any form - other than Source Code. - - 1.5. Initial Developer means the individual or entity - that first makes Original Software available under this - License. - - 1.6. Larger Work means a work which combines Covered - Software or portions thereof with code not governed by the - terms of this License. - - 1.7. License means this document. - - 1.8. Licensable means having the right to grant, to the - maximum extent possible, whether at the time of the initial - grant or subsequently acquired, any and all of the rights - conveyed herein. - - 1.9. Modifications means the Source Code and Executable - form of any of the following: - - A. Any file that results from an addition to, - deletion from or modification of the contents of a - file containing Original Software or previous - Modifications; - - B. Any new file that contains any part of the - Original Software or previous Modification; or - - C. Any new file that is contributed or otherwise made - available under the terms of this License. - - 1.10. Original Software means the Source Code and - Executable form of computer software code that is - originally released under this License. - - 1.11. Patent Claims means any patent claim(s), now owned - or hereafter acquired, including without limitation, - method, process, and apparatus claims, in any patent - Licensable by grantor. - - 1.12. Source Code means (a) the common form of computer - software code in which modifications are made and (b) - associated documentation included in or with such code. - - 1.13. You (or Your) means an individual or a legal - entity exercising rights under, and complying with all of - the terms of, this License. For legal entities, You - includes any entity which controls, is controlled by, or is - under common control with You. For purposes of this - definition, control means (a) the power, direct or - indirect, to cause the direction or management of such - entity, whether by contract or otherwise, or (b) ownership - of more than fifty percent (50%) of the outstanding shares - or beneficial ownership of such entity. - - 2. License Grants. - - 2.1. The Initial Developer Grant. - - Conditioned upon Your compliance with Section 3.1 below and - subject to third party intellectual property claims, the - Initial Developer hereby grants You a world-wide, - royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than - patent or trademark) Licensable by Initial Developer, - to use, reproduce, modify, display, perform, - sublicense and distribute the Original Software (or - portions thereof), with or without Modifications, - and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, - using or selling of Original Software, to make, have - made, use, practice, sell, and offer for sale, and/or - otherwise dispose of the Original Software (or - portions thereof). - - (c) The licenses granted in Sections 2.1(a) and (b) - are effective on the date Initial Developer first - distributes or otherwise makes the Original Software - available to a third party under the terms of this - License. - - (d) Notwithstanding Section 2.1(b) above, no patent - license is granted: (1) for code that You delete from - the Original Software, or (2) for infringements - caused by: (i) the modification of the Original - Software, or (ii) the combination of the Original - Software with other software or devices. - - 2.2. Contributor Grant. - - Conditioned upon Your compliance with Section 3.1 below and - subject to third party intellectual property claims, each - Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - (a) under intellectual property rights (other than - patent or trademark) Licensable by Contributor to - use, reproduce, modify, display, perform, sublicense - and distribute the Modifications created by such - Contributor (or portions thereof), either on an - unmodified basis, with other Modifications, as - Covered Software and/or as part of a Larger Work; and - - - (b) under Patent Claims infringed by the making, - using, or selling of Modifications made by that - Contributor either alone and/or in combination with - its Contributor Version (or portions of such - combination), to make, use, sell, offer for sale, - have made, and/or otherwise dispose of: (1) - Modifications made by that Contributor (or portions - thereof); and (2) the combination of Modifications - made by that Contributor with its Contributor Version - (or portions of such combination). - - (c) The licenses granted in Sections 2.2(a) and - 2.2(b) are effective on the date Contributor first - distributes or otherwise makes the Modifications - available to a third party. - - (d) Notwithstanding Section 2.2(b) above, no patent - license is granted: (1) for any code that Contributor - has deleted from the Contributor Version; (2) for - infringements caused by: (i) third party - modifications of Contributor Version, or (ii) the - combination of Modifications made by that Contributor - with other software (except as part of the - Contributor Version) or other devices; or (3) under - Patent Claims infringed by Covered Software in the - absence of Modifications made by that Contributor. - - 3. Distribution Obligations. - - 3.1. Availability of Source Code. - - Any Covered Software that You distribute or otherwise make - available in Executable form must also be made available in - Source Code form and that Source Code form must be - distributed only under the terms of this License. You must - include a copy of this License with every copy of the - Source Code form of the Covered Software You distribute or - otherwise make available. You must inform recipients of any - such Covered Software in Executable form as to how they can - obtain such Covered Software in Source Code form in a - reasonable manner on or through a medium customarily used - for software exchange. - - 3.2. Modifications. - - The Modifications that You create or to which You - contribute are governed by the terms of this License. You - represent that You believe Your Modifications are Your - original creation(s) and/or You have sufficient rights to - grant the rights conveyed by this License. - - 3.3. Required Notices. - - You must include a notice in each of Your Modifications - that identifies You as the Contributor of the Modification. - You may not remove or alter any copyright, patent or - trademark notices contained within the Covered Software, or - any notices of licensing or any descriptive text giving - attribution to any Contributor or the Initial Developer. - - 3.4. Application of Additional Terms. - - You may not offer or impose any terms on any Covered - Software in Source Code form that alters or restricts the - applicable version of this License or the recipients'' - rights hereunder. You may choose to offer, and to charge a - fee for, warranty, support, indemnity or liability - obligations to one or more recipients of Covered Software. - However, you may do so only on Your own behalf, and not on - behalf of the Initial Developer or any Contributor. You - must make it absolutely clear that any such warranty, - support, indemnity or liability obligation is offered by - You alone, and You hereby agree to indemnify the Initial - Developer and every Contributor for any liability incurred - by the Initial Developer or such Contributor as a result of - warranty, support, indemnity or liability terms You offer. - - - 3.5. Distribution of Executable Versions. - - You may distribute the Executable form of the Covered - Software under the terms of this License or under the terms - of a license of Your choice, which may contain terms - different from this License, provided that You are in - compliance with the terms of this License and that the - license for the Executable form does not attempt to limit - or alter the recipient''s rights in the Source Code form - from the rights set forth in this License. If You - distribute the Covered Software in Executable form under a - different license, You must make it absolutely clear that - any terms which differ from this License are offered by You - alone, not by the Initial Developer or Contributor. You - hereby agree to indemnify the Initial Developer and every - Contributor for any liability incurred by the Initial - Developer or such Contributor as a result of any such terms - You offer. - - 3.6. Larger Works. - - You may create a Larger Work by combining Covered Software - with other code not governed by the terms of this License - and distribute the Larger Work as a single product. In such - a case, You must make sure the requirements of this License - are fulfilled for the Covered Software. - - 4. Versions of the License. - - 4.1. New Versions. - - Sun Microsystems, Inc. is the initial license steward and - may publish revised and/or new versions of this License - from time to time. Each version will be given a - distinguishing version number. Except as provided in - Section 4.3, no one other than the license steward has the - right to modify this License. - - 4.2. Effect of New Versions. - - You may always continue to use, distribute or otherwise - make the Covered Software available under the terms of the - version of the License under which You originally received - the Covered Software. If the Initial Developer includes a - notice in the Original Software prohibiting it from being - distributed or otherwise made available under any - subsequent version of the License, You must distribute and - make the Covered Software available under the terms of the - version of the License under which You originally received - the Covered Software. Otherwise, You may also choose to - use, distribute or otherwise make the Covered Software - available under the terms of any subsequent version of the - License published by the license steward. - - 4.3. Modified Versions. - - When You are an Initial Developer and You want to create a - new license for Your Original Software, You may create and - use a modified version of this License if You: (a) rename - the license and remove any references to the name of the - license steward (except to note that the license differs - from this License); and (b) otherwise make it clear that - the license contains terms which differ from this License. - - - 5. DISCLAIMER OF WARRANTY. - - COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS - BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, - INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED - SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR - PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND - PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY - COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE - INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF - ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF - WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS - DISCLAIMER. - - 6. TERMINATION. - - 6.1. This License and the rights granted hereunder will - terminate automatically if You fail to comply with terms - herein and fail to cure such breach within 30 days of - becoming aware of the breach. Provisions which, by their - nature, must remain in effect beyond the termination of - this License shall survive. - - 6.2. If You assert a patent infringement claim (excluding - declaratory judgment actions) against Initial Developer or - a Contributor (the Initial Developer or Contributor against - whom You assert such claim is referred to as Participant) - alleging that the Participant Software (meaning the - Contributor Version where the Participant is a Contributor - or the Original Software where the Participant is the - Initial Developer) directly or indirectly infringes any - patent, then any and all rights granted directly or - indirectly to You by such Participant, the Initial - Developer (if the Initial Developer is not the Participant) - and all Contributors under Sections 2.1 and/or 2.2 of this - License shall, upon 60 days notice from Participant - terminate prospectively and automatically at the expiration - of such 60 day notice period, unless if within such 60 day - period You withdraw Your claim with respect to the - Participant Software against such Participant either - unilaterally or pursuant to a written agreement with - Participant. - - 6.3. In the event of termination under Sections 6.1 or 6.2 - above, all end user licenses that have been validly granted - by You or any distributor hereunder prior to termination - (excluding licenses granted to You by any distributor) - shall survive termination. - - 7. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE - INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF - COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE - LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT - LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK - STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER - COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN - INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL - INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT - APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO - NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR - CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT - APPLY TO YOU. - - 8. U.S. GOVERNMENT END USERS. - - The Covered Software is a commercial item, as that term is - defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial - computer software (as that term is defined at 48 C.F.R. - 252.227-7014(a)(1)) and commercial computer software - documentation as such terms are used in 48 C.F.R. 12.212 (Sept. - 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 - through 227.7202-4 (June 1995), all U.S. Government End Users - acquire Covered Software with only those rights set forth herein. - This U.S. Government Rights clause is in lieu of, and supersedes, - any other FAR, DFAR, or other clause or provision that addresses - Government rights in computer software under this License. - - 9. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the - extent necessary to make it enforceable. This License shall be - governed by the law of the jurisdiction specified in a notice - contained within the Original Software (except to the extent - applicable law, if any, provides otherwise), excluding such - jurisdiction''s conflict-of-law provisions. Any litigation - relating to this License shall be subject to the jurisdiction of - the courts located in the jurisdiction and venue specified in a - notice contained within the Original Software, with the losing - party responsible for costs, including, without limitation, court - costs and reasonable attorneys'' fees and expenses. The - application of the United Nations Convention on Contracts for the - International Sale of Goods is expressly excluded. Any law or - regulation which provides that the language of a contract shall - be construed against the drafter shall not apply to this License. - You agree that You alone are responsible for compliance with the - United States export administration regulations (and the export - control laws and regulation of any other countries) when You use, - distribute or otherwise make available any Covered Software. - - 10. RESPONSIBILITY FOR CLAIMS. - - As between Initial Developer and the Contributors, each party is - responsible for claims and damages arising, directly or - indirectly, out of its utilization of rights under this License - and You agree to work with Initial Developer and Contributors to - distribute such responsibility on an equitable basis. Nothing - herein is intended or shall be deemed to constitute any admission - of liability. diff --git a/tests/licensedcode/data/more_licenses/licenses/cddl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cddl-1.0.yml deleted file mode 100644 index 99c5bed10e1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cddl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cddl-1.0 -notes: this is a license from fossology license reference CDDL-1.0 (Common Development and Distribution - License 1.0) http://www.opensource.org/licenses/cddl1 diff --git a/tests/licensedcode/data/more_licenses/licenses/cddl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/cddl-1.1.txt deleted file mode 100644 index 0bb927ff6c6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cddl-1.1.txt +++ /dev/null @@ -1,107 +0,0 @@ -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1 - -1. Definitions. - -1.1. “Contributor” means each individual or entity that creates or contributes to the creation of Modifications. - -1.2. “Contributor Version” means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. - -1.3. “Covered Software” means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. - -1.4. “Executable” means the Covered Software in any form other than Source Code. - -1.5. “Initial Developer” means the individual or entity that first makes Original Software available under this License. - -1.6. “Larger Work” means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. - -1.7. “License” means this document. - -1.8. “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9. “Modifications” means the Source Code and Executable form of any of the following: -A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; -B. Any new file that contains any part of the Original Software or previous Modification; or -C. Any new file that is contributed or otherwise made available under the terms of this License. - -1.10. “Original Software” means the Source Code and Executable form of computer software code that is originally released under this License. - -1.11. “Patent Claims” means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.12. “Source Code” means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. - -1.13. “You” (or “Your”) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, “You” includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. License Grants. - -2.1. The Initial Developer Grant. -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and -(b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). -(c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. -(d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. - -2.2. Contributor Grant. -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). -(c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - -3.1. Availability of Source Code. -Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. - -3.2. Modifications. -The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. - -3.3. Required Notices. -You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. - -3.4. Application of Additional Terms. -You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients'' rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.5. Distribution of Executable Versions. -You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient''s rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.6. Larger Works. -You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. - -4. Versions of the License. - -4.1. New Versions. -Oracle is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. - -4.2. Effect of New Versions. -You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. - -4.3. Modified Versions. -When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. - -5. DISCLAIMER OF WARRANTY. -COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -6. TERMINATION. - -6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as “Participant”) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. - -6.3. If You assert a patent infringement claim against Participant alleging that the Participant Software directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -6.4. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. - -7. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -8. U.S. GOVERNMENT END USERS. -The Covered Software is a “commercial item,” as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of “commercial computer software” (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) and “commercial computer software documentation” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. - -9. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction''s conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys'' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. - -10. RESPONSIBILITY FOR CLAIMS. -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) -The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cddl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/cddl-1.1.yml deleted file mode 100644 index 90ee86dfa14..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cddl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cddl-1.1 -notes: this is a license from fossology license reference CDDL-1.1 (Common Development and Distribution - License 1.1) http://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/tests/licensedcode/data/more_licenses/licenses/cecill-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cecill-1.0.txt deleted file mode 100644 index 8590c9040c0..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cecill-1.0.txt +++ /dev/null @@ -1,503 +0,0 @@ -FREE SOFTWARE LICENSING AGREEMENT CeCILL - ======================================== - - -Notice ------- - - -This Agreement is a free software license that is the result of discussions -between its authors in order to ensure compliance with the two main -principles guiding its drafting: - - firstly, its conformity with French law, both as regards the law of - torts and intellectual property law, and the protection that it offers - to authors and the holders of economic rights over software. - - secondly, compliance with the principles for the distribution of free - software: access to source codes, extended user-rights. - -The following bodies are the authors of this license CeCILL (Ce : CEA, C : -CNRS, I : INRIA, LL : Logiciel Libre): - -Commissariat à l''Energie Atomique - CEA, a public scientific, technical and -industrial establishment, having its principal place of business at 31-33 -rue de la Fédération, 75752 PARIS cedex 15. - -Centre National de la Recherche Scientifique - CNRS, a public scientific -and technological establishment, having its principal place of business at -3 rue Michel-Ange 75794 Paris cedex 16. - -Institut National de Recherche en Informatique et en Automatique - INRIA, a -public scientific and technological establishment, having its principal -place of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le -Chesnay cedex. - - -PREAMBLE --------- - - -The purpose of this Free Software Licensing Agreement is to grant users the -right to modify and redistribute the software governed by this license -within the framework of an "open source" distribution model. - -The exercising of these rights is conditional upon certain obligations for -users so as to ensure that this status is retained for subsequent -redistribution operations. - -Nevertheless, access to the source code, and the resulting rights to copy, -modify and redistribute only provide users with a limited warranty and the -software''s author, the holder of the economic rights, and the successive -licensors only have limited liability. - -In this respect, the user''s attention is drawn to the risks associated with -loading, using, modifying and/or developing or reproducing the software by -the user in light of its specific status of free software, that may mean -that it is complicated to manipulate, and that also therefore means that it -is reserved for developers and experienced professionals having in-depth IT -knowledge. Users are therefore encouraged to load and test the Software''s -suitability as regards their requirements in conditions enabling the -security of their systems and/or data to be ensured and, more generally, to -use and operate it in the same conditions as regards security. This -Agreement may be freely reproduced and published, provided it is not -altered, and that no Articles are either added or removed herefrom. - -This Agreement may apply to any or all software for which the holder of the -economic rights decides to submit the operation thereof to its provisions. - - -Article 1 - DEFINITIONS ------------------------- - - -For the purposes of this Agreement, when the following expressions commence -with a capital letter, they shall have the following meaning: - -Agreement: means this Licensing Agreement, and any or all of its subsequent -versions. - -Software: means the software in its Object Code and/or Source Code form -and, where applicable, its documentation, "as is" at the time when the -Licensee accepts the Agreement. - -Initial Software: means the Software in its Source Code and/or Object Code -form and, where applicable, its documentation, "as is" at the time when it -is distributed for the first time under the terms and conditions of the -Agreement. - -Modified Software: means the Software modified by at least one -Contribution. - -Source Code: means all the Software''s instructions and program lines to -which access is required so as to modify the Software. - -Object Code: means the binary files originating from the compilation of the -Source Code. - -Holder: means the holder of the economic copyright over the Initial -Software. - -Licensee(s): mean(s) the Software user(s) having accepted the Agreement. - -Contributor: means a Licensee having made at least one Contribution. - -Licensor: means the Holder, or any or all other individual or legal entity, -that distributes the Software under the Agreement. - -Contributions: mean any or all modifications, corrections, translations, -adaptations and/or new functionalities integrated into the Software by any -or all Contributor, and the Static Modules. - -Module: means a set of sources files including their documentation that, -once compiled in executable form, enables supplementary functionalities or -services to be developed in addition to those offered by the Software. - -Dynamic Module: means any or all module, created by the Contributor, that -is independent of the Software, so that this module and the Software are in -two different executable forms that are run in separate address spaces, -with one calling the other when they are run. - -Static Module: means any or all module, created by the Contributor and -connected to the Software by a static link that makes their object codes -interdependent. This module and the Software to which it is connected, are -combined in a single executable. - -Parties: mean both the Licensee and the Licensor. - -These expressions may be used both in singular and plural form. - - -Article 2 - PURPOSE -------------------- - - -The purpose of the Agreement is to enable the Licensor to grant the -Licensee a free, non-exclusive, transferable and worldwide License for the -Software as set forth in Article 5 hereinafter for the whole term of -protection of the rights over said Software. - - -Article 3 - ACCEPTANCE ----------------------- - - -3.1. The Licensee shall be deemed as having accepted the terms and -conditions of this Agreement by the occurrence of the first of the -following events: -- (i) loading the Software by any or all means, notably, by downloading - from a remote server, or by loading from a physical medium; -- (ii) the first time the Licensee exercises any of the rights granted - hereunder. - -3.2. One copy of the Agreement, containing a notice relating to the -specific nature of the Software, to the limited warranty, and to the -limitation to use by experienced users has been provided to the Licensee -prior to its acceptance as set forth in Article 3.1 hereinabove, and the -Licensee hereby acknowledges that it is aware thereof. - - -Article 4 - EFFECTIVE DATE AND TERM ------------------------------------ - - -4.1. EFFECTIVE DATE - -The Agreement shall become effective on the date when it is accepted by the -Licensee as set forth in Article 3.1. - -4.2. TERM - -The Agreement shall remain in force during the whole legal term of -protection of the economic rights over the Software. - - -Article 5 - SCOPE OF THE RIGHTS GRANTED ---------------------------------------- - - -The Licensor hereby grants to the Licensee, that accepts such, the -following rights as regards the Software for any or all use, and for the -term of the Agreement, on the basis of the terms and conditions set forth -hereinafter. - -Otherwise, the Licensor grants to the Licensee free of charge exploitation -rights on the patents he holds on whole or part of the inventions -implemented in the Software. - -5.1. RIGHTS OF USE - -The Licensee is authorized to use the Software, unrestrictedly, as regards -the fields of application, with it being hereinafter specified that this -relates to: -- permanent or temporary reproduction of all or part of the Software by - any or all means and in any or all form. -- loading, displaying, running, or storing the Software on any or all - medium. -- entitlement to observe, study or test the operation thereof so as to - establish the ideas and principles that form the basis for any or all - constituent elements of said Software. This shall apply when the - Licensee carries out any or all loading, displaying, running, - transmission or storage operation as regards the Software, that it is - entitled to carry out hereunder. - -5.2. entitlement to make CONTRIBUTIONS - -The right to make Contributions includes the right to translate, adapt, -arrange, or make any or all modification to the Software, and the right to -reproduce the resulting Software. - -The Licensee is authorized to make any or all Contribution to the Software -provided that it explicitly mentions its name as the author of said -Contribution and the date of the development thereof. - -5.3. DISTRIBUTION AND PUBLICATION RIGHTS - -In particular, the right of distribution and publication includes the right -to transmit and communicate the Software to the general public on any or -all medium, and by any or all means, and the right to market, either in -consideration of a fee, or free of charge, a copy or copies of the Software -by means of any or all process. -The Licensee is further authorized to redistribute copies of the modified -or unmodified Software to third parties according to the terms and -conditions set forth hereinafter. - -5.3.1. REDISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION - -The Licensee is authorized to redistribute true copies of the Software in -Source Code or Object Code form, provided that said redistribution complies -with all the provisions of the Agreement and is accompanied by: -- a copy of the Agreement, -- a notice relating to the limitation of both the Licensor''s warranty - and liability as set forth in Articles 8 and 9, -and that, in the event that only the Software''s Object Code is -redistributed, the Licensee allows future Licensees unhindered access to -the Software''s full Source Code by providing them with the terms and -conditions for access thereto, it being understood that the additional cost -of acquiring the Source Code shall not exceed the cost of transferring the -data. - -5.3.2. REDISTRIBUTION OF MODIFIED SOFTWARE - -When the Licensee makes a Contribution to the Software, the terms and -conditions for the redistribution of the Modified Software shall then be -subject to all the provisions hereof. - -The Licensee is authorized to redistribute the Modified Software, in Source -Code or Object Code form, provided that said redistribution complies with -all the provisions of the Agreement and is accompanied by: -- a copy of the Agreement, -- a notice relating to the limitation of both the Licensor''s warranty - and liability as set forth in Articles 8 and 9, -and that, in the event that only the Modified Software''s Object Code is -redistributed, the Licensee allows future Licensees unhindered access to -the Modified Software''s full Source Code by providing them with the terms -and conditions for access thereto, it being understood that the additional -cost of acquiring the Source Code shall not exceed the cost of transferring -the data. - - -5.3.3. redistribution OF DYNAMIC MODULES - -When the Licensee has developed a Dynamic Module, the terms and conditions -hereof do not apply to said Dynamic Module, that may be distributed under -a separate Licensing Agreement. - -5.3.4. COMPATIBILITY WITH THE GPL LICENSE - -In the event that the Modified or unmodified Software includes a code that -is subject to the provisions of the GPL License, the Licensee is authorized -to redistribute the whole under the GPL License. - -In the event that the Modified Software includes a code that is subject to -the provisions of the GPL License, the Licensee is authorized to -redistribute the Modified Software under the GPL License. - - -Article 6 - INTELLECTUAL PROPERTY ----------------------------------- - - -6.1. OVER THE INITIAL SOFTWARE - -The Holder owns the economic rights over the Initial Software. Any or all -use of the Initial Software is subject to compliance with the terms and -conditions under which the Holder has elected to distribute its work and no -one shall be entitled to and it shall have sole entitlement to modify the -terms and conditions for the distribution of said Initial Software. - -The Holder undertakes to maintain the distribution of the Initial Software -under the conditions of the Agreement, for the duration set forth in -article 4.2.. - -6.2. OVER THE CONTRIBUTIONS - -The intellectual property rights over the Contributions are attached to the -holder of the economic rights as designated by effective legislation. - -6.3. OVER THE DYNAMIC MODULES - -The Licensee having developed a Dynamic Module is the holder of the -intellectual property rights over said Dynamic Module and is free to choose -the agreement that shall govern its distribution. - -6.4. JOINT PROVISIONS - -6.4.1. The Licensee expressly undertakes: -- not to remove, or modify, in any or all manner, the intellectual - property notices affixed to the Software; -- to reproduce said notices, in an identical manner, in the copies of - the Software. - -6.4.2. The Licensee undertakes not to directly or indirectly infringe the -intellectual property rights of the Holder and/or Contributors and to take, -where applicable, vis-à-vis its staff, any or all measures required to -ensure respect for said intellectual property rights of the Holder and/or -Contributors. - - -Article 7 - RELATED SERVICES ------------------------------ - - -7.1. Under no circumstances shall the Agreement oblige the Licensor to -provide technical assistance or maintenance services for the Software. - -However, the Licensor is entitled to offer this type of service. The -terms and conditions of such technical assistance, and/or such -maintenance, shall then be set forth in a separate instrument. Only the -Licensor offering said maintenance and/or technical assistance services -shall incur liability therefor. - -7.2. Similarly, any or all Licensor shall be entitled to offer to its -Licensees, under its own responsibility, a warranty, that shall only be -binding upon itself, for the redistribution of the Software and/or the -Modified Software, under terms and conditions that it shall decide upon -itself. Said warranty, and the financial terms and conditions of its -application, shall be subject to a separate instrument executed between the -Licensor and the Licensee. - - -Article 8 - LIABILITY ----------------------- - - -8.1. Subject to the provisions of Article 8.2, should the Licensor fail to -fulfill all or part of its obligations hereunder, the Licensee shall be -entitled to claim compensation for the direct loss suffered that it is able -to justify, subject to providing proof of negligence by the Licensor in -question. - -8.2. The Licensor''s liability is limited to the commitments made under this -Licensing Agreement and shall not be incurred as a result , in particular: -(i) of loss due the Licensee''s total or partial failure to fulfill its -obligations, (ii) direct or consequential loss due to the Software''s use or -performance that is suffered by the Licensee, when the latter is a -professional using said Software for professional purposes and (iii) -consequential loss due to the Software''s use or performance. The Parties -expressly agree that any or all pecuniary or business loss (i.e. loss of -data, loss of profits, operating loss, loss of customers or orders, -opportunity cost, any disturbance to business activities) or any or all -legal proceedings instituted against the Licensee by a third party, shall -constitute consequential loss and shall not provide entitlement to any or -all compensation from the Licensor. - - -Article 9 - WARRANTY ---------------------- - - -9.1. The Licensee acknowledges that the current situation as regards -scientific and technical know-how at the time when the Software was -distributed did not enable all possible uses to be tested and verified, nor -for the presence of any or all faults to be detected. In this respect, the -Licensee''s attention has been drawn to the risks associated with loading, -using, modifying and/or developing and reproducing the Software that are -reserved for experienced users. - -The Licensee shall be responsible for verifying, by any or all means, the -product''s suitability for its requirements, its due and proper functioning, -and for ensuring that it shall not cause damage to either persons or -property. - -9.2. The Licensor hereby represents, in good faith, that it is entitled to -grant all the rights on the Software (including in particular the rights -set forth in Article 5 hereof over the Software). - -9.3. The Licensee acknowledges that the Software is supplied "as is" by the -Licensor without any or all other express or tacit warranty, other than -that provided for in Article 9.2 and, in particular, without any or all -warranty as to its market value, its securised, innovative or relevant -nature. - -Specifically, the Licensor does not warrant that the Software is free from -any or all error, that it shall operate continuously, that it shall be -compatible with the Licensee''s own equipment and its software -configuration, nor that it shall meet the Licensee''s requirements. - -9.4. The Licensor does not either expressly or tacitly warrant that the -Software does not infringe any or all third party intellectual right -relating to a patent, software or to any or all other property right. -Moreover, the Licensor shall not hold the Licensee harmless against any or -all proceedings for infringement that may be instituted in respect of the -use, modification and redistribution of the Software. Nevertheless, should -such proceedings be instituted against the Licensee, the Licensor shall -provide it with technical and legal assistance for its defense. Such -technical and legal assistance shall be decided upon on a case-by-case -basis between the relevant Licensor and the Licensee pursuant to a -memorandum of understanding. The Licensor disclaims any or all liability as -regards the Licensee''s use of the Software''s name. No warranty shall be -provided as regards the existence of prior rights over the name of the -Software and as regards the existence of a trademark. - - -Article 10 - TERMINATION -------------------------- - - -10.1. In the event of a breach by the Licensee of its obligations -hereunder, the Licensor may automatically terminate this Agreement thirty -(30) days after notice has been sent to the Licensee and has remained -ineffective. - -10.2. The Licensee whose Agreement is terminated shall no longer be -authorized to use, modify or distribute the Software. However, any or all -licenses that it may have granted prior to termination of the Agreement -shall remain valid subject to their having been granted in compliance with -the terms and conditions hereof. - - -Article 11 - MISCELLANEOUS PROVISIONS --------------------------------------- - - -11.1. EXCUSABLE EVENTS - -Neither Party shall be liable for any or all delay, or failure to perform -the Agreement, that may be attributable to an event of force majeure, an -act of God or an outside cause, such as, notably, defective functioning, or -interruptions affecting the electricity or telecommunications networks, -blocking of the network following a virus attack, the intervention of the -government authorities, natural disasters, water damage, earthquakes, fire, -explosions, strikes and labor unrest, war, etc. - -11.2. The fact that either Party may fail, on one or several occasions, to -invoke one or several of the provisions hereof, shall under no -circumstances be interpreted as being a waiver by the interested Party of -its entitlement to invoke said provision(s) subsequently. - -11.3. The Agreement cancels and replaces any or all previous agreement, -whether written or oral, between the Parties and having the same purpose, -and constitutes the entirety of the agreement between said Parties -concerning said purpose. No supplement or modification to the terms and -conditions hereof shall be effective as regards the Parties unless it is -made in writing and signed by their duly authorized representatives. - -11.4. In the event that one or several of the provisions hereof were to -conflict with a current or future applicable act or legislative text, said -act or legislative text shall take precedence, and the Parties shall make -the necessary amendments so as to be in compliance with said act or -legislative text. All the other provisions shall remain effective. -Similarly, the fact that a provision of the Agreement may be null and -void, for any reason whatsoever, shall not cause the Agreement as a whole -to be null and void. - -11.5. LANGUAGE - -The Agreement is drafted in both French and English. In the event of a -conflict as regards construction, the French version shall be deemed -authentic. - - -Article 12 - NEW VERSIONS OF THE AGREEMENT -------------------------------------------- - - -12.1. Any or all person is authorized to duplicate and distribute copies of -this Agreement. - -12.2. So as to ensure coherence, the wording of this Agreement is protected -and may only be modified by the authors of the License, that reserve the -right to periodically publish updates or new versions of the Agreement, -each with a separate number. These subsequent versions may incorporate new -problems encountered by the free software. - -12.3. Any or all Software distributed under a given version of the -Agreement may only be subsequently distributed under the same version of -the Agreement, or a subsequent version, subject to the provisions of -article 5.3.4. - - -Article 13 - GOVERNING LAW AND JURISDICTION -------------------------------------------- - - -13.1. The Agreement is governed by French law. The Parties agree to -endeavor to settle the disagreements or disputes that may arise during the -performance of the Agreement out-of-court. - -13.2. In the absence of an out-of-court settlement within two (2) months as -from their occurrence, and unless emergency proceedings are necessary, the -disagreements or disputes shall be referred to the Paris Courts having -jurisdiction, by the first Party to take action. - - - Version 1 of 06/21/2004 \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cecill-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cecill-1.0.yml deleted file mode 100644 index 0ecc7413bbb..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cecill-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - cecill-1.0 -notes: this is a license from fossology license reference CECILL-1.0 (CeCILL License 1.0) http://www.cecill.info/licences/Licence_CeCILL_V1-US.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/cecill-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/cecill-1.1.txt deleted file mode 100644 index 5709fbddc67..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cecill-1.1.txt +++ /dev/null @@ -1,511 +0,0 @@ - FREE SOFTWARE LICENSING AGREEMENT CeCILL - ======================================== - - -Notice ------- - - -This Agreement is a free software license that is the result of discussions -between its authors in order to ensure compliance with the two main -principles guiding its drafting: - - firstly, its conformity with French law, both as regards the law of - torts and intellectual property law, and the protection that it offers - to authors and the holders of economic rights over software. - - secondly, compliance with the principles for the distribution of free - software: access to source codes, extended user-rights. - -The following bodies are the authors of this license CeCILL (Ce : CEA, C : -CNRS, I : INRIA, LL : Logiciel Libre): - -Commissariat à l''Energie Atomique - CEA, a public scientific, technical and -industrial establishment, having its principal place of business at 31-33 -rue de la Fédération, 75752 PARIS cedex 15, France. - -Centre National de la Recherche Scientifique - CNRS, a public scientific -and technological establishment, having its principal place of business at -3 rue Michel-Ange 75794 Paris cedex 16, France. - -Institut National de Recherche en Informatique et en Automatique - INRIA, a -public scientific and technological establishment, having its principal -place of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le -Chesnay cedex. - - -PREAMBLE --------- - - -The purpose of this Free Software Licensing Agreement is to grant users the -right to modify and redistribute the software governed by this license -within the framework of an "open source" distribution model. - -The exercising of these rights is conditional upon certain obligations for -users so as to ensure that this status is retained for subsequent -redistribution operations. - -As a counterpart to the access to the source code and rights to copy, modify -and redistribute granted by the license, users are provided only with a -limited warranty and the software''s author, the holder of the economic -rights, and the successive licensors only have limited liability. - -In this respect, it is brought to the user''s attention that the risks -associated with loading, using, modifying and/or developing or reproducing -the software by the user given its nature of Free Software, that may -mean that it is complicated to manipulate, and that also therefore means -that it is reserved for developers and experienced professionals having -in-depth computer knowledge. Users are therefore encouraged to load and test -the Software''s suitability as regards their requirements in conditions -enabling the security of their systems and/or data to be ensured and, more -generally, to use and operate it in the same conditions of security. -This Agreement may be freely reproduced and published, provided it is -not altered, and that no Articles are either added or removed herefrom. - -This Agreement may apply to any or all software for which the holder of the -economic rights decides to submit the operation thereof to its provisions. - - -Article 1 - DEFINITIONS ------------------------- - - -For the purposes of this Agreement, when the following expressions commence -with a capital letter, they shall have the following meaning: - -Agreement: means this Licensing Agreement, and any or all of its subsequent -versions. - -Software: means the software in its Object Code and/or Source Code form -and, where applicable, its documentation, "as is" at the time when the -Licensee accepts the Agreement. - -Initial Software: means the Software in its Source Code and/or Object Code -form and, where applicable, its documentation, "as is" at the time when it -is distributed for the first time under the terms and conditions of the -Agreement. - -Modified Software: means the Software modified by at least one -Contribution. - -Source Code: means all the Software''s instructions and program lines to -which access is required so as to modify the Software. - -Object Code: means the binary files originating from the compilation of the -Source Code. - -Holder: means the holder of the economic rights over the Initial -Software. - -Licensee(s): mean(s) the Software user(s) having accepted the Agreement. - -Contributor: means a Licensee having made at least one Contribution. - -Licensor: means the Holder, or any or all other individual or legal entity, -that distributes the Software under the Agreement. - -Contributions: mean any or all modifications, corrections, translations, -adaptations and/or new functionalities integrated into the Software by any -or all Contributor, and the Static Modules. - -Module: means a set of sources files including their documentation that, -once compiled in executable form, enables supplementary functionalities or -services to be developed in addition to those offered by the Software. - -Dynamic Module: means any or all module, created by the Contributor, that -is independent of the Software, so that this module and the Software are in -two different executable forms that are run in separate address spaces, -with one calling the other when they are run. - -Static Module: means any or all module, created by the Contributor and -connected to the Software by a static link that makes their object codes -interdependent. This module and the Software to which it is connected, are -combined in a single executable. - -Parties: mean both the Licensee and the Licensor. - -These expressions may be used both in singular and plural form. - - -Article 2 - PURPOSE -------------------- - - -The purpose of the Agreement is to enable the Licensor to grant the -Licensee a free, non-exclusive, transferable and worldwide License for the -Software as set forth in Article 5 hereinafter for the whole term of -protection of the rights over said Software. - - -Article 3 - ACCEPTANCE ----------------------- - - -3.1. The Licensee shall be deemed as having accepted the terms and -conditions of this Agreement by the occurrence of the first of the -following events: -- (i) loading the Software by any or all means, notably, by downloading - from a remote server, or by loading from a physical medium; -- (ii) the first time the Licensee exercises any of the rights granted - hereunder. - -3.2. One copy of the Agreement, containing a notice relating to the -specific nature of the Software, to the limited warranty, and to the -limitation to use by experienced users has been provided to the Licensee -prior to its acceptance as set forth in Article 3.1 hereinabove, and the -Licensee hereby acknowledges that it is aware thereof. - - -Article 4 - EFFECTIVE DATE AND TERM ------------------------------------ - - -4.1. EFFECTIVE DATE - -The Agreement shall become effective on the date when it is accepted by the -Licensee as set forth in Article 3.1. - -4.2. TERM - -The Agreement shall remain in force during the whole legal term of -protection of the economic rights over the Software. - - -Article 5 - SCOPE OF THE RIGHTS GRANTED ---------------------------------------- - - -The Licensor hereby grants to the Licensee, that accepts such, the -following rights as regards the Software for any or all use, and for the -term of the Agreement, on the basis of the terms and conditions set forth -hereinafter. - -Otherwise, the Licensor grants to the Licensee free of charge exploitation -rights on the patents he holds on whole or part of the inventions -implemented in the Software. - -5.1. RIGHTS OF USE - -The Licensee is authorized to use the Software, unrestrictedly, as regards -the fields of application, with it being hereinafter specified that this -relates to: -- permanent or temporary reproduction of all or part of the Software by - any or all means and in any or all form. -- loading, displaying, running, or storing the Software on any or all - medium. -- entitlement to observe, study or test the operation thereof so as to - establish the ideas and principles that form the basis for any or all - constituent elements of said Software. This shall apply when the - Licensee carries out any or all loading, displaying, running, - transmission or storage operation as regards the Software, that it is - entitled to carry out hereunder. - -5.2. entitlement to make CONTRIBUTIONS - -The right to make Contributions includes the right to translate, adapt, -arrange, or make any or all modification to the Software, and the right to -reproduce the resulting Software. - -The Licensee is authorized to make any or all Contribution to the Software -provided that it explicitly mentions its name as the author of said -Contribution and the date of the development thereof. - -5.3. DISTRIBUTION AND PUBLICATION RIGHTS - -In particular, the right of distribution and publication includes the right -to transmit and communicate the Software to the general public on any or -all medium, and by any or all means, and the right to market, either in -consideration of a fee, or free of charge, a copy or copies of the Software -by means of any or all process. -The Licensee is further authorized to redistribute copies of the modified -or unmodified Software to third parties according to the terms and -conditions set forth hereinafter. - -5.3.1. REDISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION - -The Licensee is authorized to redistribute true copies of the Software in -Source Code or Object Code form, provided that said redistribution complies -with all the provisions of the Agreement and is accompanied by: -- a copy of the Agreement, -- a notice relating to the limitation of both the Licensor''s warranty - and liability as set forth in Articles 8 and 9, -and that, in the event that only the Software''s Object Code is -redistributed, the Licensee allows future Licensees unhindered access to -the Software''s full Source Code by providing them with the terms and -conditions for access thereto, it being understood that the additional cost -of acquiring the Source Code shall not exceed the cost of transferring the -data. - -5.3.2. REDISTRIBUTION OF MODIFIED SOFTWARE - -When the Licensee makes a Contribution to the Software, the terms and -conditions for the redistribution of the Modified Software shall then be -subject to all the provisions hereof. - -The Licensee is authorized to redistribute the Modified Software, in Source -Code or Object Code form, provided that said redistribution complies with -all the provisions of the Agreement and is accompanied by: -- a copy of the Agreement, -- a notice relating to the limitation of both the Licensor''s warranty - and liability as set forth in Articles 8 and 9, -and that, in the event that only the Modified Software''s Object Code is -redistributed, the Licensee allows future Licensees unhindered access to -the Modified Software''s full Source Code by providing them with the terms -and conditions for access thereto, it being understood that the additional -cost of acquiring the Source Code shall not exceed the cost of transferring -the data. - - -5.3.3. redistribution OF DYNAMIC MODULES - -When the Licensee has developed a Dynamic Module, the terms and conditions -hereof do not apply to said Dynamic Module, that may be distributed under -a separate Licensing Agreement. - -5.3.4. COMPATIBILITY WITH THE GPL LICENSE - -In the event that the Modified or unmodified Software is included in a code -that is subject to the provisions of the GPL License, the Licensee is -authorized to redistribute the whole under the GPL License. - -In the event that the Modified Software includes a code that is subject to -the provisions of the GPL License, the Licensee is authorized to -redistribute the Modified Software under the GPL License. - - -Article 6 - INTELLECTUAL PROPERTY ----------------------------------- - - -6.1. OVER THE INITIAL SOFTWARE - -The Holder owns the economic rights over the Initial Software. Any or all -use of the Initial Software is subject to compliance with the terms and -conditions under which the Holder has elected to distribute its work and no -one shall be entitled to and it shall have sole entitlement to modify the -terms and conditions for the distribution of said Initial Software. - -The Holder undertakes to maintain the distribution of the Initial Software -under the conditions of the Agreement, for the duration set forth in -article 4.2.. - -6.2. OVER THE CONTRIBUTIONS - -The intellectual property rights over the Contributions belong to the -holder of the economic rights as designated by effective legislation. - -6.3. OVER THE DYNAMIC MODULES - -The Licensee having developed a Dynamic Module is the holder of the -intellectual property rights over said Dynamic Module and is free to choose -the agreement that shall govern its distribution. - -6.4. JOINT PROVISIONS - -6.4.1. The Licensee expressly undertakes: -- not to remove, or modify, in any or all manner, the intellectual - property notices affixed to the Software; -- to reproduce said notices, in an identical manner, in the copies of - the Software. - -6.4.2. The Licensee undertakes not to directly or indirectly infringe the -intellectual property rights of the Holder and/or Contributors and to take, -where applicable, vis-à-vis its staff, any or all measures required to -ensure respect for said intellectual property rights of the Holder and/or -Contributors. - - -Article 7 - RELATED SERVICES ------------------------------ - - -7.1. Under no circumstances shall the Agreement oblige the Licensor to -provide technical assistance or maintenance services for the Software. - -However, the Licensor is entitled to offer this type of service. The -terms and conditions of such technical assistance, and/or such -maintenance, shall then be set forth in a separate instrument. Only the -Licensor offering said maintenance and/or technical assistance services -shall incur liability therefor. - -7.2. Similarly, any or all Licensor shall be entitled to offer to its -Licensees, under its own responsibility, a warranty, that shall only be -binding upon itself, for the redistribution of the Software and/or the -Modified Software, under terms and conditions that it shall decide upon -itself. Said warranty, and the financial terms and conditions of its -application, shall be subject to a separate instrument executed between the -Licensor and the Licensee. - - -Article 8 - LIABILITY ----------------------- - - -8.1. Subject to the provisions of Article 8.2, should the Licensor fail to -fulfill all or part of its obligations hereunder, the Licensee shall be -entitled to claim compensation for the direct loss suffered as a result of -a fault on the part of the Licensor, subject to providing evidence of it. - -8.2. The Licensor''s liability is limited to the commitments made under this -Licensing Agreement and shall not be incurred as a result , in particular: -(i) of loss due the Licensee''s total or partial failure to fulfill its -obligations, (ii) direct or consequential loss due to the Software''s use or -performance that is suffered by the Licensee, when the latter is a -professional using said Software for professional purposes and (iii) -consequential loss due to the Software''s use or performance. The Parties -expressly agree that any or all pecuniary or business loss (i.e. loss of -data, loss of profits, operating loss, loss of customers or orders, -opportunity cost, any disturbance to business activities) or any or all -legal proceedings instituted against the Licensee by a third party, shall -constitute consequential loss and shall not provide entitlement to any or -all compensation from the Licensor. - - -Article 9 - WARRANTY ---------------------- - - -9.1. The Licensee acknowledges that the current situation as regards -scientific and technical know-how at the time when the Software was -distributed did not enable all possible uses to be tested and verified, nor -for the presence of any or all faults to be detected. In this respect, the -Licensee''s attention has been drawn to the risks associated with loading, -using, modifying and/or developing and reproducing the Software that are -reserved for experienced users. - -The Licensee shall be responsible for verifying, by any or all means, the -product''s suitability for its requirements, its due and proper functioning, -and for ensuring that it shall not cause damage to either persons or -property. - -9.2. The Licensor hereby represents, in good faith, that it is entitled to -grant all the rights on the Software (including in particular the rights -set forth in Article 5 hereof over the Software). - -9.3. The Licensee acknowledges that the Software is supplied "as is" by the -Licensor without any or all other express or tacit warranty, other than -that provided for in Article 9.2 and, in particular, without any or all -warranty as to its market value, its secured, innovative or relevant -nature. - -Specifically, the Licensor does not warrant that the Software is free from -any or all error, that it shall operate continuously, that it shall be -compatible with the Licensee''s own equipment and its software -configuration, nor that it shall meet the Licensee''s requirements. - -9.4. The Licensor does not either expressly or tacitly warrant that the -Software does not infringe any or all third party intellectual right -relating to a patent, software or to any or all other property right. -Moreover, the Licensor shall not hold the Licensee harmless against any or -all proceedings for infringement that may be instituted in respect of the -use, modification and redistribution of the Software. Nevertheless, should -such proceedings be instituted against the Licensee, the Licensor shall -provide it with technical and legal assistance for its defense. Such -technical and legal assistance shall be decided upon on a case-by-case -basis between the relevant Licensor and the Licensee pursuant to a -memorandum of understanding. The Licensor disclaims any or all liability as -regards the Licensee''s use of the Software''s name. No warranty shall be -provided as regards the existence of prior rights over the name of the -Software and as regards the existence of a trademark. - - -Article 10 - TERMINATION -------------------------- - - -10.1. In the event of a breach by the Licensee of its obligations -hereunder, the Licensor may automatically terminate this Agreement thirty -(30) days after notice has been sent to the Licensee and has remained -ineffective. - -10.2. The Licensee whose Agreement is terminated shall no longer be -authorized to use, modify or distribute the Software. However, any or all -licenses that it may have granted prior to termination of the Agreement -shall remain valid subject to their having been granted in compliance with -the terms and conditions hereof. - - -Article 11 - MISCELLANEOUS PROVISIONS --------------------------------------- - - -11.1. EXCUSABLE EVENTS - -Neither Party shall be liable for any or all delay, or failure to perform -the Agreement, that may be attributable to an event of force majeure, an -act of God or an outside cause, such as, notably, defective functioning, or -interruptions affecting the electricity or telecommunications networks, -blocking of the network following a virus attack, the intervention of the -government authorities, natural disasters, water damage, earthquakes, fire, -explosions, strikes and labor unrest, war, etc. - -11.2. The fact that either Party may fail, on one or several occasions, to -invoke one or several of the provisions hereof, shall under no -circumstances be interpreted as being a waiver by the interested Party of -its entitlement to invoke said provision(s) subsequently. - -11.3. The Agreement cancels and replaces any or all previous agreement, -whether written or oral, between the Parties and having the same purpose, -and constitutes the entirety of the agreement between said Parties -concerning said purpose. No supplement or modification to the terms and -conditions hereof shall be effective as regards the Parties unless it is -made in writing and signed by their duly authorized representatives. - -11.4. In the event that one or several of the provisions hereof were to -conflict with a current or future applicable act or legislative text, said -act or legislative text shall take precedence, and the Parties shall make -the necessary amendments so as to be in compliance with said act or -legislative text. All the other provisions shall remain effective. -Similarly, the fact that a provision of the Agreement may be null and -void, for any reason whatsoever, shall not cause the Agreement as a whole -to be null and void. - -11.5. LANGUAGE - -The Agreement is drafted in both French and English. In the event of a -conflict as regards construction, the French version shall be deemed -authentic. - - -Article 12 - NEW VERSIONS OF THE AGREEMENT -------------------------------------------- - - -12.1. Any or all person is authorized to duplicate and distribute copies of -this Agreement. - -12.2. So as to ensure coherence, the wording of this Agreement is protected -and may only be modified by the authors of the License, that reserve the -right to periodically publish updates or new versions of the Agreement, -each with a separate number. These subsequent versions may address new issues -encountered by Free Software. - -12.3. Any or all Software distributed under a given version of the -Agreement may only be subsequently distributed under the same version of -the Agreement, or a subsequent version, subject to the provisions of -article 5.3.4. - - -Article 13 - GOVERNING LAW AND JURISDICTION -------------------------------------------- - - -13.1. The Agreement is governed by French law. The Parties agree to -endeavor to settle the disagreements or disputes that may arise during the -performance of the Agreement out-of-court. - -13.2. In the absence of an out-of-court settlement within two (2) months as -from their occurrence, and unless emergency proceedings are necessary, the -disagreements or disputes shall be referred to the Paris Courts having -jurisdiction, by the first Party to take action. - - - Version 1.1 of 10/26/2004 - - - - - - - - - diff --git a/tests/licensedcode/data/more_licenses/licenses/cecill-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/cecill-1.1.yml deleted file mode 100644 index a33aa56f313..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cecill-1.1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - cecill-1.1 -notes: this is a license from fossology license reference CECILL-1.1 (CeCILL License 1.1) http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/cecill-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/cecill-2.0.txt deleted file mode 100644 index a446a3beb8a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cecill-2.0.txt +++ /dev/null @@ -1,505 +0,0 @@ -CeCILL FREE SOFTWARE LICENSE AGREEMENT - - - Notice - -This Agreement is a Free Software license agreement that is the result -of discussions between its authors in order to ensure compliance with -the two main principles guiding its drafting: - - * firstly, compliance with the principles governing the distribution - of Free Software: access to source code, broad rights granted to - users, - * secondly, the election of a governing law, French law, with which - it is conformant, both as regards the law of torts and - intellectual property law, and the protection that it offers to - both authors and holders of the economic rights over software. - -The authors of the CeCILL (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre]) -license are: - -Commissariat à l''Energie Atomique - CEA, a public scientific, technical -and industrial research establishment, having its principal place of -business at 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris, France. - -Centre National de la Recherche Scientifique - CNRS, a public scientific -and technological establishment, having its principal place of business -at 3 rue Michel-Ange, 75794 Paris cedex 16, France. - -Institut National de Recherche en Informatique et en Automatique - -INRIA, a public scientific and technological establishment, having its -principal place of business at Domaine de Voluceau, Rocquencourt, BP -105, 78153 Le Chesnay cedex, France. - - - Preamble - -The purpose of this Free Software license agreement is to grant users -the right to modify and redistribute the software governed by this -license within the framework of an open source distribution model. - -The exercising of these rights is conditional upon certain obligations -for users so as to preserve this status for all subsequent redistributions. - -In consideration of access to the source code and the rights to copy, -modify and redistribute granted by the license, users are provided only -with a limited warranty and the software''s author, the holder of the -economic rights, and the successive licensors only have limited liability. - -In this respect, the risks associated with loading, using, modifying -and/or developing or reproducing the software by the user are brought to -the user''s attention, given its Free Software status, which may make it -complicated to use, with the result that its use is reserved for -developers and experienced professionals having in-depth computer -knowledge. Users are therefore encouraged to load and test the -suitability of the software as regards their requirements in conditions -enabling the security of their systems and/or data to be ensured and, -more generally, to use and operate it in the same conditions of -security. This Agreement may be freely reproduced and published, -provided it is not altered, and that no provisions are either added or -removed herefrom. - -This Agreement may apply to any or all software for which the holder of -the economic rights decides to submit the use thereof to its provisions. - - - Article 1 - DEFINITIONS - -For the purpose of this Agreement, when the following expressions -commence with a capital letter, they shall have the following meaning: - -Agreement: means this license agreement, and its possible subsequent -versions and annexes. - -Software: means the software in its Object Code and/or Source Code form -and, where applicable, its documentation, "as is" when the Licensee -accepts the Agreement. - -Initial Software: means the Software in its Source Code and possibly its -Object Code form and, where applicable, its documentation, "as is" when -it is first distributed under the terms and conditions of the Agreement. - -Modified Software: means the Software modified by at least one -Contribution. - -Source Code: means all the Software''s instructions and program lines to -which access is required so as to modify the Software. - -Object Code: means the binary files originating from the compilation of -the Source Code. - -Holder: means the holder(s) of the economic rights over the Initial -Software. - -Licensee: means the Software user(s) having accepted the Agreement. - -Contributor: means a Licensee having made at least one Contribution. - -Licensor: means the Holder, or any other individual or legal entity, who -distributes the Software under the Agreement. - -Contribution: means any or all modifications, corrections, translations, -adaptations and/or new functions integrated into the Software by any or -all Contributors, as well as any or all Internal Modules. - -Module: means a set of sources files including their documentation that -enables supplementary functions or services in addition to those offered -by the Software. - -External Module: means any or all Modules, not derived from the -Software, so that this Module and the Software run in separate address -spaces, with one calling the other when they are run. - -Internal Module: means any or all Module, connected to the Software so -that they both execute in the same address space. - -GNU GPL: means the GNU General Public License version 2 or any -subsequent version, as published by the Free Software Foundation Inc. - -Parties: mean both the Licensee and the Licensor. - -These expressions may be used both in singular and plural form. - - - Article 2 - PURPOSE - -The purpose of the Agreement is the grant by the Licensor to the -Licensee of a non-exclusive, transferable and worldwide license for the -Software as set forth in Article 5 hereinafter for the whole term of the -protection granted by the rights over said Software. - - - Article 3 - ACCEPTANCE - -3.1 The Licensee shall be deemed as having accepted the terms and -conditions of this Agreement upon the occurrence of the first of the -following events: - - * (i) loading the Software by any or all means, notably, by - downloading from a remote server, or by loading from a physical - medium; - * (ii) the first time the Licensee exercises any of the rights - granted hereunder. - -3.2 One copy of the Agreement, containing a notice relating to the -characteristics of the Software, to the limited warranty, and to the -fact that its use is restricted to experienced users has been provided -to the Licensee prior to its acceptance as set forth in Article 3.1 -hereinabove, and the Licensee hereby acknowledges that it has read and -understood it. - - - Article 4 - EFFECTIVE DATE AND TERM - - - 4.1 EFFECTIVE DATE - -The Agreement shall become effective on the date when it is accepted by -the Licensee as set forth in Article 3.1. - - - 4.2 TERM - -The Agreement shall remain in force for the entire legal term of -protection of the economic rights over the Software. - - - Article 5 - SCOPE OF RIGHTS GRANTED - -The Licensor hereby grants to the Licensee, who accepts, the following -rights over the Software for any or all use, and for the term of the -Agreement, on the basis of the terms and conditions set forth hereinafter. - -Besides, if the Licensor owns or comes to own one or more patents -protecting all or part of the functions of the Software or of its -components, the Licensor undertakes not to enforce the rights granted by -these patents against successive Licensees using, exploiting or -modifying the Software. If these patents are transferred, the Licensor -undertakes to have the transferees subscribe to the obligations set -forth in this paragraph. - - - 5.1 RIGHT OF USE - -The Licensee is authorized to use the Software, without any limitation -as to its fields of application, with it being hereinafter specified -that this comprises: - - 1. permanent or temporary reproduction of all or part of the Software - by any or all means and in any or all form. - - 2. loading, displaying, running, or storing the Software on any or - all medium. - - 3. entitlement to observe, study or test its operation so as to - determine the ideas and principles behind any or all constituent - elements of said Software. This shall apply when the Licensee - carries out any or all loading, displaying, running, transmission - or storage operation as regards the Software, that it is entitled - to carry out hereunder. - - - 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS - -The right to make Contributions includes the right to translate, adapt, -arrange, or make any or all modifications to the Software, and the right -to reproduce the resulting software. - -The Licensee is authorized to make any or all Contributions to the -Software provided that it includes an explicit notice that it is the -author of said Contribution and indicates the date of the creation thereof. - - - 5.3 RIGHT OF DISTRIBUTION - -In particular, the right of distribution includes the right to publish, -transmit and communicate the Software to the general public on any or -all medium, and by any or all means, and the right to market, either in -consideration of a fee, or free of charge, one or more copies of the -Software by any means. - -The Licensee is further authorized to distribute copies of the modified -or unmodified Software to third parties according to the terms and -conditions set forth hereinafter. - - - 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION - -The Licensee is authorized to distribute true copies of the Software in -Source Code or Object Code form, provided that said distribution -complies with all the provisions of the Agreement and is accompanied by: - - 1. a copy of the Agreement, - - 2. a notice relating to the limitation of both the Licensor''s - warranty and liability as set forth in Articles 8 and 9, - -and that, in the event that only the Object Code of the Software is -redistributed, the Licensee allows future Licensees unhindered access to -the full Source Code of the Software by indicating how to access it, it -being understood that the additional cost of acquiring the Source Code -shall not exceed the cost of transferring the data. - - - 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE - -When the Licensee makes a Contribution to the Software, the terms and -conditions for the distribution of the resulting Modified Software -become subject to all the provisions of this Agreement. - -The Licensee is authorized to distribute the Modified Software, in -source code or object code form, provided that said distribution -complies with all the provisions of the Agreement and is accompanied by: - - 1. a copy of the Agreement, - - 2. a notice relating to the limitation of both the Licensor''s - warranty and liability as set forth in Articles 8 and 9, - -and that, in the event that only the object code of the Modified -Software is redistributed, the Licensee allows future Licensees -unhindered access to the full source code of the Modified Software by -indicating how to access it, it being understood that the additional -cost of acquiring the source code shall not exceed the cost of -transferring the data. - - - 5.3.3 DISTRIBUTION OF EXTERNAL MODULES - -When the Licensee has developed an External Module, the terms and -conditions of this Agreement do not apply to said External Module, that -may be distributed under a separate license agreement. - - - 5.3.4 COMPATIBILITY WITH THE GNU GPL - -The Licensee can include a code that is subject to the provisions of one -of the versions of the GNU GPL in the Modified or unmodified Software, -and distribute that entire code under the terms of the same version of -the GNU GPL. - -The Licensee can include the Modified or unmodified Software in a code -that is subject to the provisions of one of the versions of the GNU GPL, -and distribute that entire code under the terms of the same version of -the GNU GPL. - - - Article 6 - INTELLECTUAL PROPERTY - - - 6.1 OVER THE INITIAL SOFTWARE - -The Holder owns the economic rights over the Initial Software. Any or -all use of the Initial Software is subject to compliance with the terms -and conditions under which the Holder has elected to distribute its work -and no one shall be entitled to modify the terms and conditions for the -distribution of said Initial Software. - -The Holder undertakes that the Initial Software will remain ruled at -least by this Agreement, for the duration set forth in Article 4.2. - - - 6.2 OVER THE CONTRIBUTIONS - -The Licensee who develops a Contribution is the owner of the -intellectual property rights over this Contribution as defined by -applicable law. - - - 6.3 OVER THE EXTERNAL MODULES - -The Licensee who develops an External Module is the owner of the -intellectual property rights over this External Module as defined by -applicable law and is free to choose the type of agreement that shall -govern its distribution. - - - 6.4 JOINT PROVISIONS - -The Licensee expressly undertakes: - - 1. not to remove, or modify, in any manner, the intellectual property - notices attached to the Software; - - 2. to reproduce said notices, in an identical manner, in the copies - of the Software modified or not. - -The Licensee undertakes not to directly or indirectly infringe the -intellectual property rights of the Holder and/or Contributors on the -Software and to take, where applicable, vis-à-vis its staff, any and all -measures required to ensure respect of said intellectual property rights -of the Holder and/or Contributors. - - - Article 7 - RELATED SERVICES - -7.1 Under no circumstances shall the Agreement oblige the Licensor to -provide technical assistance or maintenance services for the Software. - -However, the Licensor is entitled to offer this type of services. The -terms and conditions of such technical assistance, and/or such -maintenance, shall be set forth in a separate instrument. Only the -Licensor offering said maintenance and/or technical assistance services -shall incur liability therefor. - -7.2 Similarly, any Licensor is entitled to offer to its licensees, under -its sole responsibility, a warranty, that shall only be binding upon -itself, for the redistribution of the Software and/or the Modified -Software, under terms and conditions that it is free to decide. Said -warranty, and the financial terms and conditions of its application, -shall be subject of a separate instrument executed between the Licensor -and the Licensee. - - - Article 8 - LIABILITY - -8.1 Subject to the provisions of Article 8.2, the Licensee shall be -entitled to claim compensation for any direct loss it may have suffered -from the Software as a result of a fault on the part of the relevant -Licensor, subject to providing evidence thereof. - -8.2 The Licensor''s liability is limited to the commitments made under -this Agreement and shall not be incurred as a result of in particular: -(i) loss due the Licensee''s total or partial failure to fulfill its -obligations, (ii) direct or consequential loss that is suffered by the -Licensee due to the use or performance of the Software, and (iii) more -generally, any consequential loss. In particular the Parties expressly -agree that any or all pecuniary or business loss (i.e. loss of data, -loss of profits, operating loss, loss of customers or orders, -opportunity cost, any disturbance to business activities) or any or all -legal proceedings instituted against the Licensee by a third party, -shall constitute consequential loss and shall not provide entitlement to -any or all compensation from the Licensor. - - - Article 9 - WARRANTY - -9.1 The Licensee acknowledges that the scientific and technical -state-of-the-art when the Software was distributed did not enable all -possible uses to be tested and verified, nor for the presence of -possible defects to be detected. In this respect, the Licensee''s -attention has been drawn to the risks associated with loading, using, -modifying and/or developing and reproducing the Software which are -reserved for experienced users. - -The Licensee shall be responsible for verifying, by any or all means, -the suitability of the product for its requirements, its good working -order, and for ensuring that it shall not cause damage to either persons -or properties. - -9.2 The Licensor hereby represents, in good faith, that it is entitled -to grant all the rights over the Software (including in particular the -rights set forth in Article 5). - -9.3 The Licensee acknowledges that the Software is supplied "as is" by -the Licensor without any other express or tacit warranty, other than -that provided for in Article 9.2 and, in particular, without any warranty -as to its commercial value, its secured, safe, innovative or relevant -nature. - -Specifically, the Licensor does not warrant that the Software is free -from any error, that it will operate without interruption, that it will -be compatible with the Licensee''s own equipment and software -configuration, nor that it will meet the Licensee''s requirements. - -9.4 The Licensor does not either expressly or tacitly warrant that the -Software does not infringe any third party intellectual property right -relating to a patent, software or any other property right. Therefore, -the Licensor disclaims any and all liability towards the Licensee -arising out of any or all proceedings for infringement that may be -instituted in respect of the use, modification and redistribution of the -Software. Nevertheless, should such proceedings be instituted against -the Licensee, the Licensor shall provide it with technical and legal -assistance for its defense. Such technical and legal assistance shall be -decided on a case-by-case basis between the relevant Licensor and the -Licensee pursuant to a memorandum of understanding. The Licensor -disclaims any and all liability as regards the Licensee''s use of the -name of the Software. No warranty is given as regards the existence of -prior rights over the name of the Software or as regards the existence -of a trademark. - - - Article 10 - TERMINATION - -10.1 In the event of a breach by the Licensee of its obligations -hereunder, the Licensor may automatically terminate this Agreement -thirty (30) days after notice has been sent to the Licensee and has -remained ineffective. - -10.2 A Licensee whose Agreement is terminated shall no longer be -authorized to use, modify or distribute the Software. However, any -licenses that it may have granted prior to termination of the Agreement -shall remain valid subject to their having been granted in compliance -with the terms and conditions hereof. - - - Article 11 - MISCELLANEOUS - - - 11.1 EXCUSABLE EVENTS - -Neither Party shall be liable for any or all delay, or failure to -perform the Agreement, that may be attributable to an event of force -majeure, an act of God or an outside cause, such as defective -functioning or interruptions of the electricity or telecommunications -networks, network paralysis following a virus attack, intervention by -government authorities, natural disasters, water damage, earthquakes, -fire, explosions, strikes and labor unrest, war, etc. - -11.2 Any failure by either Party, on one or more occasions, to invoke -one or more of the provisions hereof, shall under no circumstances be -interpreted as being a waiver by the interested Party of its right to -invoke said provision(s) subsequently. - -11.3 The Agreement cancels and replaces any or all previous agreements, -whether written or oral, between the Parties and having the same -purpose, and constitutes the entirety of the agreement between said -Parties concerning said purpose. No supplement or modification to the -terms and conditions hereof shall be effective as between the Parties -unless it is made in writing and signed by their duly authorized -representatives. - -11.4 In the event that one or more of the provisions hereof were to -conflict with a current or future applicable act or legislative text, -said act or legislative text shall prevail, and the Parties shall make -the necessary amendments so as to comply with said act or legislative -text. All other provisions shall remain effective. Similarly, invalidity -of a provision of the Agreement, for any reason whatsoever, shall not -cause the Agreement as a whole to be invalid. - - - 11.5 LANGUAGE - -The Agreement is drafted in both French and English and both versions -are deemed authentic. - - - Article 12 - NEW VERSIONS OF THE AGREEMENT - -12.1 Any person is authorized to duplicate and distribute copies of this -Agreement. - -12.2 So as to ensure coherence, the wording of this Agreement is -protected and may only be modified by the authors of the License, who -reserve the right to periodically publish updates or new versions of the -Agreement, each with a separate number. These subsequent versions may -address new issues encountered by Free Software. - -12.3 Any Software distributed under a given version of the Agreement may -only be subsequently distributed under the same version of the Agreement -or a subsequent version, subject to the provisions of Article 5.3.4. - - - Article 13 - GOVERNING LAW AND JURISDICTION - -13.1 The Agreement is governed by French law. The Parties agree to -endeavor to seek an amicable solution to any disagreements or disputes -that may arise during the performance of the Agreement. - -13.2 Failing an amicable solution within two (2) months as from their -occurrence, and unless emergency proceedings are necessary, the -disagreements or disputes shall be referred to the Paris Courts having -jurisdiction, by the more diligent Party. - - -Version 2.0 dated 2006-09-05. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cecill-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/cecill-2.0.yml deleted file mode 100644 index 8b04f133b96..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cecill-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - cecill-2.0 -notes: this is a license from fossology license reference CECILL-2.0 (CeCILL License 2.0) http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/clartistic.txt b/tests/licensedcode/data/more_licenses/licenses/clartistic.txt deleted file mode 100644 index f72680c335c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/clartistic.txt +++ /dev/null @@ -1,136 +0,0 @@ -The Clarified Artistic License - -Preamble - -The intent of this document is to state the conditions under which a -Package may be copied, such that the Copyright Holder maintains some -semblance of artistic control over the development of the package, -while giving the users of the package the right to use and distribute -the Package in a more-or-less customary fashion, plus the right to make -reasonable modifications. - -Definitions: - -"Package" refers to the collection of files distributed by the -Copyright Holder, and derivatives of that collection of files -created through textual modification. - -"Standard Version" refers to such a Package if it has not been -modified, or has been modified in accordance with the wishes -of the Copyright Holder as specified below. - -"Copyright Holder" is whoever is named in the copyright or -copyrights for the package. - -"You" is you, if you''re thinking about copying or distributing -this Package. - -"Distribution fee" is a fee you charge for providing a copy -of this Package to another party. - -"Freely Available" means that no fee is charged for the right to -use the item, though there may be fees involved in handling the -item. It also means that recipients of the item may redistribute -it under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you -duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain, or those made Freely Available, or from -the Copyright Holder. A Package modified in such a way shall still be -considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided -that you insert a prominent notice in each changed file stating how and -when you changed that file, and provided that you do at least ONE of the -following: - -a) place your modifications in the Public Domain or otherwise make them -Freely Available, such as by posting said modifications to Usenet or an -equivalent medium, or placing the modifications on a major network -archive site allowing unrestricted access to them, or by allowing the -Copyright Holder to include your modifications in the Standard Version -of the Package. - -b) use the modified Package only within your corporation or organization. - -c) rename any non-standard executables so the names do not conflict -with standard executables, which must also be provided, and provide -a separate manual page for each non-standard executable that clearly -documents how it differs from the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -e) permit and encourge anyone who receives a copy of the modified Package -permission to make your modifications Freely Available -in some specific way. - - -4. You may distribute the programs of this Package in object code or -executable form, provided that you do at least ONE of the following: - -a) distribute a Standard Version of the executables and library files, -together with instructions (in the manual page or equivalent) on where -to get the Standard Version. - -b) accompany the distribution with the machine-readable source of -the Package with your modifications. - -c) give non-standard executables non-standard names, and clearly -document the differences in manual pages (or equivalent), together -with instructions on where to get the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -e) offer the machine-readable source of the Package, with your -modifications, by mail order. - -5. You may charge a distribution fee for any distribution of this Package. -If you offer support for this Package, you may charge any fee you choose -for that support. You may not charge a license fee for the right to use -this Package itself. You may distribute this Package in aggregate with -other (possibly commercial and possibly nonfree) programs as part of a -larger (possibly commercial and possibly nonfree) software distribution, -and charge license fees for other parts of that software distribution, -provided that you do not advertise this Package as a product of your own. -If the Package includes an interpreter, You may embed this Package''s -interpreter within an executable of yours (by linking); this shall be -construed as a mere form of aggregation, provided that the complete -Standard Version of the interpreter is so embedded. - -6. The scripts and library files supplied as input to or produced as -output from the programs of this Package do not automatically fall -under the copyright of this Package, but belong to whoever generated -them, and may be sold commercially, and may be aggregated with this -Package. If such scripts or library files are aggregated with this -Package via the so-called "undump" or "unexec" methods of producing a -binary executable image, then distribution of such an image shall -neither be construed as a distribution of this Package nor shall it -fall under the restrictions of Paragraphs 3 and 4, provided that you do -not represent such an executable image as a Standard Version of this -Package. - -7. C subroutines (or comparably compiled subroutines in other -languages) supplied by you and linked into this Package in order to -emulate subroutines and variables of the language defined by this -Package shall not be considered part of this Package, but are the -equivalent of input as in Paragraph 6, provided these subroutines do -not change the language in any way that would cause it to fail the -regression tests for the language. - -8. Aggregation of the Standard Version of the Package with a commercial -distribution is always permitted provided that the use of this Package -is embedded; that is, when no overt attempt is made to make this Package''s -interfaces visible to the end user of the commercial distribution. -Such use shall not be construed as a distribution of this Package. - -9. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/clartistic.yml b/tests/licensedcode/data/more_licenses/licenses/clartistic.yml deleted file mode 100644 index 795005342f8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/clartistic.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - artistic-clarified -notes: this is a license from fossology license reference ClArtistic (Clarified Artistic License) - http://www.ncftp.com/ncftp/doc/LICENSE.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/cpal-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cpal-1.0.txt deleted file mode 100644 index 248511844ee..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cpal-1.0.txt +++ /dev/null @@ -1,172 +0,0 @@ -Common Public Attribution License Version 1.0 (CPAL) - -1. “Definitions” - -1.0.1 “Commercial Use” means distribution or otherwise making the Covered Code available to a third party. - -1.1 “Contributor” means each entity that creates or contributes to the creation of Modifications. - -1.2 “Contributor Version” means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3 “Covered Code” means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4 “Electronic Distribution Mechanism” means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5 “Executable” means Covered Code in any form other than Source Code. - -1.6 “Initial Developer” means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7 “Larger Work” means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8 “License” means this document. - -1.8.1 “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9 “Modifications” means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10 “Original Code” means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.10.1 “Patent Claims” means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.11 “Source Code” means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor’s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12 “You” (or “Your”) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, “You” includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1 The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and - -(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. - -(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. - -2.2 Contributor Grant. -Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. - -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - -3.1 Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients’ rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2 Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3 Description of Modifications. -You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4 Intellectual Property Matters - -(a) Third Party Claims. If Contributor has knowledge that a license under a third party’s intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled “LEGAL” which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. If Contributor’s Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. - -(c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor’s Modifications are Contributor’s original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5 Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients’ rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6 Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients’ rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient’s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer, Original Developer or any Contributor. You hereby agree to indemnify the Initial Developer, Original Developer and every Contributor for any liability incurred by the Initial Developer, Original Developer or such Contributor as a result of any such terms You offer. - -3.7 Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1 New Versions. -Socialtext, Inc. (“Socialtext”) may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2 Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Socialtext. No one other than Socialtext has the right to modify the terms applicable to Covered Code created under this License. - -6.3 Derivative Works. -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases “Socialtext”, “CPAL” or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the CPAL. (Filling in the name of the Initial Developer, Original Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER, ORIGINAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - -8.1 This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -8.2 If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer, Original Developer or a Contributor (the Initial Developer, Original Developer or Contributor against whom You file such action is referred to as “Participant”) alleging that: - -(a) such Participant’s Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant’s Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. - -8.3 If You assert a patent infringement claim against Participant alleging that such Participant’s Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -8.4 In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ORIGINAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY’S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. -The Covered Code is a “commercial item,” as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of “commercial computer software” and “commercial computer software documentation,” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys’ fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. -As between Initial Developer, Original Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer, Original Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. -Initial Developer may designate portions of the Covered Code as Multiple-Licensed. Multiple-Licensed means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the CPAL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. - -14. ADDITIONAL TERM: ATTRIBUTION - -(a) As a modest attribution to the organizer of the development of the Original Code (“Original Developer”), in the hope that its promotional value may help justify the time, money and effort invested in writing the Original Code, the Original Developer may include in Exhibit B (“Attribution Information”) a requirement that each time an Executable and Source Code or a Larger Work is launched or initially run (which includes initiating a session), a prominent display of the Original Developer’s Attribution Information (as defined below) must occur on the graphic user interface employed by the end user to access such Covered Code (which may include display on a splash screen), if any. The size of the graphic image should be consistent with the size of the other elements of the Attribution Information. If the access by the end user to the Executable and Source Code does not create a graphic user interface for access to the Covered Code, this obligation shall not apply. If the Original Code displays such Attribution Information in a particular form (such as in the form of a splash screen, notice at login, an “about” display, or dedicated attribution area on user interface screens), continued use of such form for that Attribution Information is one way of meeting this requirement for notice. - -(b) Attribution information may only include a copyright notice, a brief phrase, graphic image and a URL (“Attribution Information”) and is subject to the Attribution Limits as defined below. For these purposes, prominent shall mean display for sufficient duration to give reasonable notice to the user of the identity of the Original Developer and that if You include Attribution Information or similar information for other parties, You must ensure that the Attribution Information for the Original Developer shall be no less prominent than such Attribution Information or similar information for the other party. For greater certainty, the Original Developer may choose to specify in Exhibit B below that the above attribution requirement only applies to an Executable and Source Code resulting from the Original Code or any Modification, but not a Larger Work. The intent is to provide for reasonably modest attribution, therefore the Original Developer cannot require that You display, at any time, more than the following information as Attribution Information: (a) a copyright notice including the name of the Original Developer; (b) a word or one phrase (not exceeding 10 words); (c) one graphic image provided by the Original Developer; and (d) a URL (collectively, the “Attribution Limits”). - -(c) If Exhibit B does not include any Attribution Information, then there are no requirements for You to display any Attribution Information of the Original Developer. - -(d) You acknowledge that all trademarks, service marks and/or trade names contained within the Attribution Information distributed with the Covered Code are the exclusive property of their owners and may only be used with the permission of their owners, or under circumstances otherwise permitted by law or as expressly set out in this License. - -15. ADDITIONAL TERM: NETWORK USE. -The term “External Deployment” means the use, distribution, or communication of the Original Code or Modifications in any way such that the Original Code or Modifications may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Code or Modifications as a distribution under section 3.1 and make Source Code available under Section 3.2. - -EXHIBIT A. Common Public Attribution License Version 1.0. - -“The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at _____________. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B. -Software distributed under the License is distributed on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. -The Original Code is______________________. -The Original Developer is not the Initial Developer and is __________. If left blank, the Original Developer is the Initial Developer. -The Initial Developer of the Original Code is ____________. All portions of the code written by ___________ are Copyright (c) _____. All Rights Reserved. -Contributor ______________________. -Alternatively, the contents of this file may be used under the terms of the _____ license (the [___] License), in which case the provisions of [______] License are applicable instead of those above. -If you wish to allow use of your version of this file only under the terms of the [____] License and not to allow others to use your version of this file under the CPAL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either the CPAL or the [___] License.” - -[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] - -EXHIBIT B. Attribution Information - -Attribution Copyright Notice: _______________________ -Attribution Phrase (not exceeding 10 words): _______________________ -Attribution URL: _______________________ -Graphic Image as provided in the Covered Code, if any. -Display of Attribution Information is [required/not required] in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code not governed by the terms of the CPAL. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cpal-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cpal-1.0.yml deleted file mode 100644 index e6ca82cd290..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cpal-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cpal-1.0 -notes: this is a license from fossology license reference CPAL-1.0 (Common Public Attribution - License 1.0 ) http://opensource.org/licenses/cpal_1.0 diff --git a/tests/licensedcode/data/more_licenses/licenses/cpl-0.5.txt b/tests/licensedcode/data/more_licenses/licenses/cpl-0.5.txt deleted file mode 100644 index 14c1b22d212..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cpl-0.5.txt +++ /dev/null @@ -1,87 +0,0 @@ -Common Public License Version 0.5 - -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. - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and - -b) in the case of each subsequent Contributor: - -i) changes to the Program, and - -ii) additions to the Program; - -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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -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. - -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. - -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. - -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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -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; - -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - -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. - -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and - -b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. - -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. diff --git a/tests/licensedcode/data/more_licenses/licenses/cpl-0.5.yml b/tests/licensedcode/data/more_licenses/licenses/cpl-0.5.yml deleted file mode 100644 index 1467d6c2097..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cpl-0.5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cpl-0.5 -notes: this is a license from fossology license reference CPL-0.5 (Common Public License 0.5) - http://www.eclipse.org/legal/cpl-v05.html diff --git a/tests/licensedcode/data/more_licenses/licenses/cpl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cpl-1.0.txt deleted file mode 100644 index 5b96ad5a1b6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cpl-1.0.txt +++ /dev/null @@ -1,92 +0,0 @@ -Common Public License - v 1.0 - -Updated 16 Apr 2009 - -As of 25 Feb 2009, IBM has assigned the Agreement Steward role for the CPL to the Eclipse Foundation. Eclipse has designated the Eclipse Public License (EPL) as the follow-on version of the CPL. - - -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. - - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -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. - -"Contributor" means any person or entity that distributes the Program. - - -"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. - - -"Program" means the Contributions distributed in accordance with this Agreement. - - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - - -2. GRANT OF RIGHTS - -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. -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. -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. -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. -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -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; -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -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. -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - - -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. - - -4. COMMERCIAL DISTRIBUTION - -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. - - -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. - - -5. NO WARRANTY - -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. - - -6. DISCLAIMER OF LIABILITY - -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. - - -7. GENERAL - -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. - - -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. - - -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. - - -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. - - -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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cpl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cpl-1.0.yml deleted file mode 100644 index 5ebd3696c39..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cpl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cpl-1.0 -notes: this is a license from fossology license reference CPL-1.0 (Common Public License 1.0) - http://www.eclipse.org/legal/cpl-v10.html diff --git a/tests/licensedcode/data/more_licenses/licenses/crystalstacker.txt b/tests/licensedcode/data/more_licenses/licenses/crystalstacker.txt deleted file mode 100644 index 71cda70abd6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/crystalstacker.txt +++ /dev/null @@ -1,7 +0,0 @@ -Crystal Stacker is freeware. This means you can pass copies around freely provided you include this document in it''s original form in your distribution. Please see the "Contacting Us" section of this document if you need to contact us for any reason. - -Disclaimer - -NewCreature Design makes no guarantees regarding the Crystal Stacker software. We are not responsible for damages caused by it, though the software is not known to cause any problems. If you have trouble with the software, see the "Contacting Us" section of this document. - -The source code is provided as-is and you may do with it whatsoever you please provided that you include this file in its unmodified form with any new distribution. NewCreature Design makes no gaurantees regarding the usability of the source but are willing to help with any problems you might run into. Please see the "Contacting Us" section of this document if you need to get in touch with us about any issues you have regarding the source. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/crystalstacker.yml b/tests/licensedcode/data/more_licenses/licenses/crystalstacker.yml deleted file mode 100644 index 6e16afa4214..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/crystalstacker.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - crystal-stacker -notes: this is a license from fossology license reference CrystalStacker (CrystalStacker License) - https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker diff --git a/tests/licensedcode/data/more_licenses/licenses/cua-opl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cua-opl-1.0.txt deleted file mode 100644 index 769ed05f8d2..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cua-opl-1.0.txt +++ /dev/null @@ -1,469 +0,0 @@ -CUA Office Public License Version 1.0 -(plain text) -1. Definitions. - -1.0.1. "Commercial Use" means distribution or otherwise making the -Covered Code available to a third party. - -1.1. "Contributor" means each entity that creates or contributes to -the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original -Code, prior Modifications used by a Contributor, and the Modifications -made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the -combination of the Original Code and Modifications, in each case -including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally -accepted in the software development community for the electronic -transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source -Code. - -1.6. "Initial Developer" means the individual or entity identified -as the Initial Developer in the Source Code notice required by Exhibit -A. - -1.7. "Larger Work" means a work which combines Covered Code or -portions thereof with code not governed by the terms of this License. - -1.8. "License" means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum -extent possible, whether at the time of the initial grant or -subsequently acquired, any and all of the rights conveyed herein. - -1.9. "Modifications" means any addition to or deletion from the -substance or structure of either the Original Code or any previous -Modifications. When Covered Code is released as a series of files, a -Modification is: - -A. Any addition to or deletion from the contents of a file -containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or -previous Modifications. - -1.10. "Original Code" means Source Code of computer software code -which is described in the Source Code notice required by Exhibit A as -Original Code, and which, at the time of its release under this -License is not already Covered Code governed by this License. - -1.10.1. "Patent Claims" means any patent claim(s), now owned or -hereafter acquired, including without limitation, method, process, -and apparatus claims, in any patent Licensable by grantor. - -1.11. "Source Code" means the preferred form of the Covered Code for -making modifications to it, including all modules it contains, plus -any associated interface definition files, scripts used to control -compilation and installation of an Executable, or source code -differential comparisons against either the Original Code or another -well known, available Covered Code of the Contributor''s choice. The -Source Code can be in a compressed or archival form, provided the -appropriate decompression or de-archiving software is widely available -for no charge. - -1.12. "You" (or "Your") means an individual or a legal entity -exercising rights under, and complying with all of the terms of, this -License or a future version of this License issued under Section 6.1. -For legal entities, "You" includes any entity which controls, is -controlled by, or is under common control with You. For purposes of -this definition, "control" means (a) the power, direct or indirect, -to cause the direction or management of such entity, whether by -contract or otherwise, or (b) ownership of more than fifty percent -(50%) of the outstanding shares or beneficial ownership of such -entity. - -2. Source Code License. - -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) under intellectual property rights (other than patent or -trademark) Licensable by Initial Developer to use, reproduce, -modify, display, perform, sublicense and distribute the Original -Code (or portions thereof) with or without Modifications, and/or -as part of a Larger Work; and - -(b) under Patents Claims infringed by the making, using or -selling of Original Code, to make, have made, use, practice, -sell, and offer for sale, and/or otherwise dispose of the -Original Code (or portions thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are -effective on the date Initial Developer first distributes -Original Code under the terms of this License. - -(d) Notwithstanding Section 2.1(b) above, no patent license is -granted: 1) for code that You delete from the Original Code; 2) -separate from the Original Code; or 3) for infringements caused -by: i) the modification of the Original Code or ii) the -combination of the Original Code with other software or devices. - -2.2. Contributor Grant. -Subject to third party intellectual property claims, each Contributor -hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent or -trademark) Licensable by Contributor, to use, reproduce, modify, -display, perform, sublicense and distribute the Modifications -created by such Contributor (or portions thereof) either on an -unmodified basis, with other Modifications, as Covered Code -and/or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using, or -selling of Modifications made by that Contributor either alone -and/or in combination with its Contributor Version (or portions -of such combination), to make, use, sell, offer for sale, have -made, and/or otherwise dispose of: 1) Modifications made by that -Contributor (or portions thereof); and 2) the combination of -Modifications made by that Contributor with its Contributor -Version (or portions of such combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are -effective on the date Contributor first makes Commercial Use of -the Covered Code. - -(d) Notwithstanding Section 2.2(b) above, no patent license is -granted: 1) for any code that Contributor has deleted from the -Contributor Version; 2) separate from the Contributor Version; -3) for infringements caused by: i) third party modifications of -Contributor Version or ii) the combination of Modifications made -by that Contributor with other software (except as part of the -Contributor Version) or other devices; or 4) under Patent Claims -infringed by Covered Code in the absence of Modifications made by -that Contributor. - -3. Distribution Obligations. - -3.1. Application of License. -The Modifications which You create or to which You contribute are -governed by the terms of this License, including without limitation -Section 2.2. The Source Code version of Covered Code may be -distributed only under the terms of this License or a future version -of this License released under Section 6.1, and You must include a -copy of this License with every copy of the Source Code You -distribute. You may not offer or impose any terms on any Source Code -version that alters or restricts the applicable version of this -License or the recipients'' rights hereunder. However, You may include -an additional document offering the additional rights described in -Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be -made available in Source Code form under the terms of this License -either on the same media as an Executable version or via an accepted -Electronic Distribution Mechanism to anyone to whom you made an -Executable version available; and if made available via Electronic -Distribution Mechanism, must remain available for at least twelve (12) -months after the date it initially became available, or at least six -(6) months after a subsequent version of that particular Modification -has been made available to such recipients. You are responsible for -ensuring that the Source Code version remains available even if the -Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which You contribute to contain a -file documenting the changes You made to create that Covered Code and -the date of any change. You must include a prominent statement that -the Modification is derived, directly or indirectly, from Original -Code provided by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any notice in an -Executable version or related documentation in which You describe the -origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If Contributor has knowledge that a license under a third party''s -intellectual property rights is required to exercise the rights -granted by such Contributor under Sections 2.1 or 2.2, -Contributor must include a text file with the Source Code -distribution titled "LEGAL" which describes the claim and the -party making the claim in sufficient detail that a recipient will -know whom to contact. If Contributor obtains such knowledge after -the Modification is made available as described in Section 3.2, -Contributor shall promptly modify the LEGAL file in all copies -Contributor makes available thereafter and shall take other steps -(such as notifying appropriate mailing lists or newsgroups) -reasonably calculated to inform those who received the Covered -Code that new knowledge has been obtained. - -(b) Contributor APIs. - -If Contributor''s Modifications include an application programming -interface and Contributor has knowledge of patent licenses which -are reasonably necessary to implement that API, Contributor must -also include this information in the LEGAL file. - -(c) Representations. - -Contributor represents that, except as disclosed pursuant to -Section 3.4(a) above, Contributor believes that Contributor''s -Modifications are Contributor''s original creation(s) and/or -Contributor has sufficient rights to grant the rights conveyed by -this License. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source -Code. If it is not possible to put such notice in a particular Source -Code file due to its structure, then You must include such notice in a -location (such as a relevant directory) where a user would be likely -to look for such a notice. If You created one or more Modification(s) -You may add your name as a Contributor to the notice described in -Exhibit A. You must also duplicate this License in any documentation -for the Source Code where You describe recipients'' rights or ownership -rights relating to Covered Code. You may choose to offer, and to -charge a fee for, warranty, support, indemnity or liability -obligations to one or more recipients of Covered Code. However, You -may do so only on Your own behalf, and not on behalf of the Initial -Developer or any Contributor. You must make it absolutely clear than -any such warranty, support, indemnity or liability obligation is -offered by You alone, and You hereby agree to indemnify the Initial -Developer and every Contributor for any liability incurred by the -Initial Developer or such Contributor as a result of warranty, -support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the -requirements of Section 3.1-3.5 have been met for that Covered Code, -and if You include a notice stating that the Source Code version of -the Covered Code is available under the terms of this License, -including a description of how and where You have fulfilled the -obligations of Section 3.2. The notice must be conspicuously included -in any notice in an Executable version, related documentation or -collateral in which You describe recipients'' rights relating to the -Covered Code. You may distribute the Executable version of Covered -Code or ownership rights under a license of Your choice, which may -contain terms different from this License, provided that You are in -compliance with the terms of this License and that the license for the -Executable version does not attempt to limit or alter the recipient''s -rights in the Source Code version from the rights set forth in this -License. If You distribute the Executable version under a different -license You must make it absolutely clear that any terms which differ -from this License are offered by You alone, not by the Initial -Developer or any Contributor. You hereby agree to indemnify the -Initial Developer and every Contributor for any liability incurred by -the Initial Developer or such Contributor as a result of any such -terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code -not governed by the terms of this License and distribute the Larger -Work as a single product. In such a case, You must make sure the -requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Code due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description -must be included in the LEGAL file described in Section 3.4 and must -be included with all distributions of the Source Code. Except to the -extent prohibited by statute or regulation, such description must be -sufficiently detailed for a recipient of ordinary skill to be able to -understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has -attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions. -CUA Office Project may publish revised -and/or new versions of the License from time to time. Each version -will be given a distinguishing version number. - -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the -License, You may always continue to use it under the terms of that -version. You may also choose to use such Covered Code under the terms -of any subsequent version of the License published by CUA Office Project. No one -other than CUA Office Project has the right to modify the terms applicable to -Covered Code created under this License. - -6.3. Derivative Works. -If You create or use a modified version of this License (which you may -only do in order to apply it to code which is not already Covered Code -governed by this License), You must (a) rename Your license so that -the phrases "CUA Office", "CUA", "CUAPL", or any confusingly similar phrase do not appear in your -license (except to note that your license differs from this License) -and (b) otherwise make it clear that Your version of the license -contains terms which differ from the CUA Office Public License. (Filling in the name of the Initial -Developer, Original Code or Contributor in the notice described in -Exhibit A shall not of themselves be deemed to be modifications of -this License.) - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. -THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE -IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, -YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE -COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER -OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF -ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - -8.1. This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. All -sublicenses to the Covered Code which are properly granted shall -survive any termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this License -shall survive. - -8.2. If You initiate litigation by asserting a patent infringement -claim (excluding declatory judgment actions) against Initial Developer -or a Contributor (the Initial Developer or Contributor against whom -You file such action is referred to as "Participant") alleging that: - -(a) such Participant''s Contributor Version directly or indirectly -infringes any patent, then any and all rights granted by such -Participant to You under Sections 2.1 and/or 2.2 of this License -shall, upon 60 days notice from Participant terminate prospectively, -unless if within 60 days after receipt of notice You either: (i) -agree in writing to pay Participant a mutually agreeable reasonable -royalty for Your past and future use of Modifications made by such -Participant, or (ii) withdraw Your litigation claim with respect to -the Contributor Version against such Participant. If within 60 days -of notice, a reasonable royalty and payment arrangement are not -mutually agreed upon in writing by the parties or the litigation claim -is not withdrawn, the rights granted by Participant to You under -Sections 2.1 and/or 2.2 automatically terminate at the expiration of -the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant''s -Contributor Version, directly or indirectly infringes any patent, then -any rights granted to You by such Participant under Sections 2.1(b) -and 2.2(b) are revoked effective as of the date You first made, used, -sold, distributed, or had made, Modifications made by that -Participant. - -8.3. If You assert a patent infringement claim against Participant -alleging that such Participant''s Contributor Version directly or -indirectly infringes any patent where such claim is resolved (such as -by license or settlement) prior to the initiation of patent -infringement litigation, then the reasonable value of the licenses -granted by such Participant under Sections 2.1 or 2.2 shall be taken -into account in determining the amount or value of any payment or -license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, -all end user license agreements (excluding distributors and resellers) -which have been validly granted by You or any distributor hereunder -prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT -(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL -DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, -OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR -ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY -CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, -WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER -COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN -INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF -LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY -RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW -PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE -EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO -THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - -The Covered Code is a "commercial item," as that term is defined in -48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer -software" and "commercial computer software documentation," as such -terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 -C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), -all U.S. Government End Users acquire Covered Code with only those -rights set forth herein. - -11. MISCELLANEOUS. - -This License represents the complete agreement concerning subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. This License shall be governed by -California law provisions (except to the extent applicable law, if -any, provides otherwise), excluding its conflict-of-law provisions. -With respect to disputes in which at least one party is a citizen of, -or an entity chartered or registered to do business in the United -States of America, any litigation relating to this License shall be -subject to the jurisdiction of the Federal Courts of the Northern -District of California, with venue lying in Santa Clara County, -California, with the losing party responsible for costs, including -without limitation, court costs and reasonable attorneys'' fees and -expenses. The application of the United Nations Convention on -Contracts for the International Sale of Goods is expressly excluded. -Any law or regulation which provides that the language of a contract -shall be construed against the drafter shall not apply to this -License. - -12. RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is -responsible for claims and damages arising, directly or indirectly, -out of its utilization of rights under this License and You agree to -work with Initial Developer and Contributors to distribute such -responsibility on an equitable basis. Nothing herein is intended or -shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - -Initial Developer may designate portions of the Covered Code as -"Multiple-Licensed". "Multiple-Licensed" means that the Initial -Developer permits you to utilize portions of the Covered Code under -Your choice of the NPL or the alternative licenses, if any, specified -by the Initial Developer in the file described in Exhibit A. - -EXHIBIT A - CUA Office Public License. - -``The contents of this file are subject to the CUA Office Public License -Version 1.0 (the "License"); you may not use this file except in -compliance with the License. You may obtain a copy of the License at -http://cuaoffice.sourceforge.net/ - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations -under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is ________________________. -Portions created by ______________________ are Copyright (C) ______ -_______________________. All Rights Reserved. - -Contributor(s): ______________________________________. - -Alternatively, the contents of this file may be used under the terms -of the _____ license (the "[___] License"), in which case the -provisions of [______] License are applicable instead of those -above. If you wish to allow use of your version of this file only -under the terms of the [____] License and not to allow others to use -your version of this file under the CUAPL, indicate your decision by -deleting the provisions above and replace them with the notice and -other provisions required by the [___] License. If you do not delete -the provisions above, a recipient may use your version of this file -under either the CUAPL or the [___] License." - -[NOTE: The text of this Exhibit A may differ slightly from the text of -the notices in the Source Code files of the Original Code. You should -use the text of this Exhibit A rather than the text found in the -Original Code Source Code for Your Modifications.] \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cua-opl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cua-opl-1.0.yml deleted file mode 100644 index 877ffdb071c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cua-opl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - cua-opl-1.0 -notes: this is a license from fossology license reference CUA-OPL-1.0 (CUA Office Public License - 1.0) http://www.opensource.org/licenses/cuaoffice.php diff --git a/tests/licensedcode/data/more_licenses/licenses/cygnus-ecos-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/cygnus-ecos-1.0.txt deleted file mode 100644 index 2318544f2c5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cygnus-ecos-1.0.txt +++ /dev/null @@ -1,477 +0,0 @@ -CYGNUS ECOS PUBLIC LICENSE Version 1.0 - - -1. DEFINITIONS. - - 1.1. "Contributor" means each entity that creates or -contributes to the creation of Modifications. - - 1.2. "Contributor Version" means the combination of -the Original Code, prior Modifications used by a -Contributor, and the Modifications made by that particular -Contributor. - - 1.3. "Covered Code" means the Original Code or -Modifications or the combination of the Original Code and -Modifications, in each case including portions thereof. - - 1.4. "Electronic Distribution Mechanism" means a -mechanism generally accepted in the software development -community for the electronic transfer of data. - - 1.5. "Executable" means Covered Code in any form other -than Source Code. - - 1.6. "Initial Developer" means the individual or -entity identified as the Initial Developer in the Source -Code notice required by Exhibit A. - - 1.7. "Larger Work" means a work which combines Covered -Code or portions thereof with code not governed by the terms -of this License. - - 1.8. "License" means this document. - - 1.9. "Modifications" means any addition to or deletion -from the substance or structure of either the Original Code -or any previous Modifications. When Covered Code is released -as a series of files, a Modification is: - - A. Any addition to or deletion from the contents -of a file containing Original Code or previous -Modifications. - - B. Any new file that contains any part of the -Original Code or previous Modifications. - - 1.10. "Original Code" means Source Code of computer -software code which is described in the Source Code notice -required by Exhibit A as Original Code, and which, at the -time of its release under this License is not already -Covered Code governed by this License. - - 1.11. "Source Code" means the preferred form of the -Covered Code for making modifications to it, including all -modules it contains, plus any associated interface -definition files, scripts used to control compilation and -installation of an Executable, or a list of source code -differential comparisons against either the Original Code or -another well known, available Covered Code of the -Contributor''s choice. The Source Code can be in a compressed -or archival form, provided the appropriate decompression or -de-archiving software is widely available for no charge. - - 1.12. "You" means an individual or a legal entity -exercising rights under, and complying with all of the terms -of, this License or a future version of this License issued -under Section 6.1. For legal entities, "You" includes any -entity which controls, is controlled by, or is under common -control with You. For purposes of this definition, -"control" means (a) the power, direct or indirect, to cause -the direction or management of such entity, whether by -contract or otherwise, or (b) ownership of fifty percent -(50%) or more of the outstanding shares or beneficial -ownership of such entity. - - 1.13. "Cygnus''s Branded Code" is code that Cygnus -Solutions ("Cygnus") distributes and/or permits others to -distribute under different terms than the Cygnus eCos Public -License. Cygnus''s Branded Code may contain part or all of -the Covered Code. - -2. SOURCE CODE LICENSE. - - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, -royalty-free, non-exclusive license, subject to third party -intellectual property claims: - - (a) to use, reproduce, modify, display, perform, -sublicense and distribute the Original Code (or portions -thereof) with or without Modifications, or as part of a -Larger Work; and - - (b) under patents now or hereafter owned or -controlled by Initial Developer, to make, have made, use and -sell ("Utilize") the Original Code (or portions thereof), -but solely to the extent that any such patent is reasonably -necessary to enable You to Utilize the Original Code (or -portions thereof) and not to any greater extent that may be -necessary to Utilize further Modifications or combinations. - - 2.2. Contributor Grant. - Each Contributor hereby grants You a world-wide, -royalty-free, non-exclusive license, subject to third party -intellectual property claims: - - (a) to use, reproduce, modify, display, perform, -sublicense and distribute the Modifications created by such -Contributor (or portions thereof) either on an unmodified -basis, with other Modifications, as Covered Code or as part -of a Larger Work; and - - (b) under patents now or hereafter owned or -controlled by Contributor, to Utilize the Contributor -Version (or portions thereof), but solely to the extent that -any such patent is reasonably necessary to enable You to -Utilize the Contributor Version (or portions thereof), and -not to any greater extent that may be necessary to Utilize -further Modifications or combinations. - -3. DISTRIBUTION OBLIGATIONS. - - 3.1. Application of License. - The Modifications which You create or to which You -contribute are governed by the terms of this License, -including without limitation Section 2.2. The Source Code -version of Covered Code may be distributed only under the -terms of this License or a future version of this License -released under Section 6.1, and You must include a copy of -this License with every copy of the Source Code You -distribute. You may not offer or impose any terms on any -Source Code version that alters or restricts the applicable -version of this License or the recipients'' rights hereunder. -However, You may include an additional document offering the -additional rights described in Section 3.5. - - 3.2. Availability of Source Code. - Any Modification which You create or to which You -contribute must be made available in Source Code form under -the terms of this License via an accepted Electronic -Distribution Mechanism to anyone to whom you made an -Executable version available and to the Initial Developer; -and if made available via Electronic Distribution Mechanism, -must remain available for at least twelve (12) months after -the date it initially became available, or at least six (6) -months after a subsequent version of that particular -Modification has been made available to such recipients. You -are responsible for ensuring that the Source Code version -remains available even if the Electronic Distribution -Mechanism is maintained by a third party. You are -responsible for notifying the Initial Developer of the -Modification and the location of the Source if a contact -means is provided. Cygnus will be acting as maintainer of -the Source and may provide an Electronic Distribution -mechanism for the Modification to be made available. You can -contact Cygnus to make the Modification available and to -notify the Initial Developer. (http://sourceware.cygnus.com/ecos) - - 3.3. Description of Modifications. - You must cause all Covered Code to which you contribute -to contain a file documenting the changes You made to create -that Covered Code and the date of any change. You must -include a prominent statement that the Modification is -derived, directly or indirectly, from Original Code provided -by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any -notice in an Executable version or related documentation in -which You describe the origin or ownership of the Covered -Code. - - 3.4. Intellectual Property Matters - - (a) Third Party Claims. - If You have knowledge that a party claims an -intellectual property right in particular functionality or -code (or its utilization under this License), you must -include a text file with the source code distribution titled -"LEGAL" which describes the claim and the party making the -claim in sufficient detail that a recipient will know whom -to contact. If you obtain such knowledge after You make Your -Modification available as described in Section 3.2, You -shall promptly modify the LEGAL file in all copies You make -available thereafter and shall take other steps (such as -notifying appropriate mailing lists or newsgroups) -reasonably calculated to inform those who received the -Covered Code that new knowledge has been obtained. - - (b) Contributor APIs. - If Your Modification is an application programming -interface and You own or control patents which are -reasonably necessary to implement that API, you must also -include this information in the LEGAL file. - - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file -of the Source Code, and this License in any documentation -for the Source Code, where You describe recipients'' rights -relating to Covered Code. If You created one or more -Modification(s), You may add your name as a Contributor to -the Source Code. If it is not possible to put such notice in -a particular Source Code file due to its structure, then you -must include such notice in a location (such as a relevant -directory file) where a user would be likely to look for -such a notice. You may choose to offer, and to charge a fee -for, warranty, support, indemnity or liability obligations -to one or more recipients of Covered Code. - However, You may do so only on Your own behalf, and not -on behalf of the Initial Developer or any Contributor. You -must make it absolutely clear that any such warranty, -support, indemnity or liability obligation is offered by You -alone, and You hereby agree to indemnify the Initial -Developer and every Contributor for any liability incurred -by the Initial Developer or such Contributor as a result of -warranty, support, indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only -if the requirements of Section 3.1-3.5 have been met for -that Covered Code, and if You include a notice stating that -the Source Code version of the Covered Code is available -under the terms of this License, including a description of -how and where You have fulfilled the obligations of Section -3.2. The notice must be conspicuously included in any notice -in an Executable version, related documentation or -collateral in which You describe recipients'' rights relating -to the Covered Code. You may distribute the Executable -version of Covered Code under a license of Your choice, -which may contain terms different from this License, -provided that You are in compliance with the terms of this -License and that the license for the Executable version does -not attempt to limit or alter the recipient''s rights in the -Source Code version from the rights set forth in this -License. If You distribute the Executable version under a -different license You must make it absolutely clear that any -terms which differ from this License are offered by You -alone, not by the Initial Developer or any Contributor. You -hereby agree to indemnify the Initial Developer and every -Contributor for any liability incurred by the Initial -Developer or such Contributor as a result of any such terms -You offer. - If you distribute executable versions containing -Covered Code, you must reproduce the notice in Exhibit B in -the documentation and/or other materials provided with the -product. - - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code -with other code not governed by the terms of this License -and distribute the Larger Work as a single product. In such -a case, You must make sure the requirements of this License -are fulfilled for the Covered Code. - -4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. - - If it is impossible for You to comply with any of the -terms of this License with respect to some or all of the -Covered Code due to statute or regulation then You must: (a) -comply with the terms of this License to the maximum extent -possible; (b) cite the statute or regulation that prohibits -you from adhering to the license; and (c) describe the -limitations and the code they affect. Such description must -be included in the LEGAL file described in Section 3.4 and -must be included with all distributions of the Source Code. -Except to the extent prohibited by statute or regulation, -such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. You -must submit this LEGAL file to Cygnus for review, and You -will not be able use the covered code in any means until -permission is granted from Cygnus to allow for the inability -to comply due to statute or regulation. - -5. APPLICATION OF THIS LICENSE. - - This License applies to code to which the Initial -Developer has attached the notice in Exhibit A, and to -related Covered Code. - Cygnus may include Covered Code in products without -such additional products becoming subject to the terms of -this License, and may license such additional products on -different terms from those contained in this License. - Cygnus may license the Source Code of Cygnus''s Branded -Code without Cygnus''s Branded Code becoming subject to the -terms of this License, and may license Cygnus''s Branded Code -on different terms from those contained in this License. -Contact Cygnus for details of alternate licensing terms -available. - -6. VERSIONS OF THE LICENSE. - - 6.1. New Versions. - Cygnus may publish revised and/or new versions of the -License from time to time. Each version will be given a -distinguishing version number. - - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular -version of the License, You may always continue to use it -under the terms of that version. You may also choose to use -such Covered Code under the terms of any subsequent version -of the License published by Cygnus. No one other than Cygnus -has the right to modify the terms applicable to Covered Code -beyond what is granted under this and subsequent Licenses. - - 6.3. Derivative Works. - If you create or use a modified version of this License -(which you may only do in order to apply it to code which is -not already Covered Code governed by this License), you must -(a) rename Your license so that the phrases "ECOS", "eCos", -"Cygnus", "CPL" or any confusingly similar phrase do not -appear anywhere in your license and (b) otherwise make it -clear that your version of the license contains terms which -differ from the eCos Public License and Cygnus Public -License. (Filling in the name of the Initial Developer, -Original Code or Contributor in the notice described in -Exhibit A shall not of themselves be deemed to be -modifications of this License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS -IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT -THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A -PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO -THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. -SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU -(NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME -THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. -THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF -THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED -HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - This License and the rights granted hereunder will -terminate automatically if You fail to comply with terms -herein and fail to cure such breach within 30 days of -becoming aware of the breach. All sublicenses to the Covered -Code which are properly granted shall survive any -termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this -License shall survive. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, -WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, -SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY -DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH -PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY -INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF -ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR -LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR -MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR -LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE -POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY -SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY -RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT -APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS -DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR -CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY -NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a "commercial item," as that term -is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of -"commercial computer software" and "commercial computer -software documentation," as such terms are used in 48 -C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 -and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all -U.S. Government End Users acquire Covered Code with only -those rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement -concerning subject matter hereof. If any provision of this -License is held to be unenforceable, such provision shall be -reformed only to the extent necessary to make it -enforceable. This License shall be governed by California -law provisions (except to the extent applicable law, if any, -provides otherwise), excluding its conflict-of-law -provisions. With respect to disputes in which at least one -party is a citizen of, or an entity chartered or registered -to do business in, the United States of America: (a) unless -otherwise agreed in writing, all disputes relating to this -License (excepting any dispute relating to intellectual -property rights) shall be subject to final and binding -arbitration, with the losing party paying all costs of -arbitration; (b) any arbitration relating to this Agreement -shall be held in Santa Clara County, California, under the -auspices of JAMS/EndDispute; and (c) any litigation relating -to this Agreement shall be subject to the jurisdiction of -the Federal Courts of the Northern District of California, -with venue lying in Santa Clara County, California, with the -losing party responsible for costs, including without -limitation, court costs and reasonable attorneys fees and -expenses. The application of the United Nations Convention -on Contracts for the International Sale of Goods is -expressly excluded. Any law or regulation which provides -that the language of a contract shall be construed against -the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. - - Except in cases where another Contributor has failed to -comply with Section 3.4, You are responsible for damages -arising, directly or indirectly, out of Your utilization of -rights under this License, based on the number of copies of -Covered Code you made available, the revenues you received -from utilizing such rights, and other relevant factors. You -agree to work with affected parties to distribute -responsibility on an equitable basis. - -13. ADDITIONAL TERMS APPLICABLE TO THE CYGNUS ECOS PUBLIC -LICENSE. - - Nothing in this License shall be interpreted to -prohibit Cygnus from licensing under different terms than -this License any code which Cygnus otherwise would have a -right to license. - - Cygnus and logo - This License does not grant any -rights to use the trademark Cygnus, the Cygnus logo, -eCos logo, even if such marks are included in the Original -Code. You may contact Cygnus for permission to display the -Cygnus and eCos marks in either the documentation or the -Executable version beyond that required in Exhibit B. - - Inability to Comply Due to Contractual Obligation - To -the extent that Cygnus is limited contractually from making -third party code available under this License, Cygnus may -choose to integrate such third party code into Covered Code -without being required to distribute such third party code -in Source Code form, even if such third party code would -otherwise be considered "Modifications" under this License. - -EXHIBIT A. - -"The contents of this file are subject to the Cygnus eCos Public License -Version 1.0 (the "License"); you may not use this file except in -compliance with the License. You may obtain a copy of the License at -http://sourceware.cygnus.com/ecos - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations under -the License. - -The Original Code is eCos - Embedded Cygnus Operating System, released -September 30, 1998. - -The Initial Developer of the Original Code is Cygnus. Portions created -by Cygnus are Copyright (C) 1998 Cygnus Solutions. All Rights Reserved." - -EXHIBIT B. - -Part of the software embedded in this product is eCos - -Embedded Cygnus Operating System, a trademark of Cygnus -Solutions. Portions created by Cygnus are Copyright (C) 1998 -Cygnus Solutions (http://www.cygnus.com). All Rights -Reserved. - -THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY CYGNUS -SOLUTIONS 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 AUTHOR 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/cygnus-ecos-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/cygnus-ecos-1.0.yml deleted file mode 100644 index 392a3cdf792..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/cygnus-ecos-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ecosrh-1.0 -notes: this is a license from fossology license reference Cygnus-eCos-1.0 (CYGNUS ECOS PUBLIC - LICENSE Version 1.0) http://ecos.sourceware.org/docs-1.1/tutorials/ecos-tutorial/cygnus-ecos-public-license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/d-fsl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/d-fsl-1.0.txt deleted file mode 100644 index 8f74a861417..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/d-fsl-1.0.txt +++ /dev/null @@ -1,147 +0,0 @@ -Deutsche Freie Software Lizenz - -(c) Ministerium für Wissenschaft und Forschung Nordrhein-Westfalen 2004 - -Erstellt von Axel Metzger und Till Jaeger, Institut für Rechtsfragen der Freien und Open Source Software - (http://www.ifross.de). - -Präambel - -Software ist mehr als ein Wirtschaftsgut. Sie ist die technische Grundlage der Informationsgesellschaft. Die Frage der Teilhabe der Allgemeinheit ist deswegen von besonderer Bedeutung. Herkömmlich lizenzierte Programme werden nur im Object Code vertrieben, der Nutzer darf das Programm weder verändern noch weitergeben. Das Lizenzmodell der Freien Software (synonym "Open Source Software") gewährt Ihnen dagegen umfassende Freiheiten im Umgang mit dem Programm. Die Deutsche Freie Software Lizenz folgt diesem Lizenzmodell. Sie gewährt Ihnen das Recht, das Programm in umfassender Weise zu nutzen. Es ist Ihnen gestattet, das Programm nach Ihren Vorstellungen zu verändern, in veränderter oder unveränderter Form zu vervielfältigen, zu verbreiten und öffentlich zugänglich zu machen. Diese Rechte werden unentgeltlich eingeräumt. - -Die Deutsche Freie Software Lizenz verbindet die Rechtseinräumung allerdings mit Pflichten, die dem Zweck dienen, das freie Zirkulieren des Programms und aller veröffentlichten Fortentwicklungen zu sichern. Wenn Sie das Programm verbreiten oder öffentlich zugänglich machen, dann müssen Sie jedem, der das Programm von Ihnen erhält, eine Kopie dieser Lizenz mitliefern und den Zugriff auf den Source Code ermöglichen. Eine weitere Pflicht betrifft Fortentwicklungen des Programms. Änderungen am Programm, die Sie öffentlich verbreiten oder zugänglich machen, müssen nach den Bestimmungen dieser Lizenz frei gegeben werden. - -Die Deutsche Freie Software Lizenz nimmt auf die besonderen Anforderungen des deutschen und europäischen Rechts Rücksicht. Sie ist zweisprachig gestaltet und damit auch auf den internationalen Vertrieb ausgerichtet. - -§ 0 Definitionen - -Dokumentation: Die Beschreibung des Aufbaus und/oder der Struktur der Programmierung und/oder der Funktionalitäten des Programms, unabhängig davon, ob sie im Source Code oder gesondert vorgenommen wird. - -Lizenz: Die zwischen dem Lizenzgeber und Ihnen geschlossene Vereinbarung mit dem Inhalt der "Deutschen Freien Software Lizenz" bzw. das Angebot hierzu. - -Lizenznehmer: Jede natürliche oder juristische Person, die die Lizenz angenommen hat. - -Programm: Jedes Computerprogramm, das von den Rechtsinhabern nach den Bestimmungen dieser Lizenz verbreitet oder öffentlich zugänglich gemacht worden ist. - -Object Code: Die maschinenlesbare, übersetzte Form des Programms. - -Öffentlich: Nicht nur an einen bestimmten Personenkreis gerichtet, der persönlich oder durch die Zugehörigkeit zu einer juristischen Person oder einem öffentlichen Träger miteinander verbunden ist. - -Öffentlich zugänglich machen: Die öffentliche Weitergabe des Programms in unkörperlicher Form, insbesondere das Bereithalten zum Download in Datennetzen. - -Rechtsinhaber: Der bzw. die Urheber oder sonstigen Inhaber der ausschließlichen Nutzungsrechte an dem Programm. - -Source Code: Die für Menschen lesbare, in Programmiersprache dargestellte Form des Programms. - -Verändern: Jede Erweiterung, Kürzung und Bearbeitung des Programms, insbesondere Weiterentwicklungen. - -Verbreiten: Die öffentliche Weitergabe körperlicher Vervielfältigungsstücke, insbesondere auf Datenträgern oder in Verbindung mit Hardware. - -Vollständiger Source Code: Der Source Code in der für die Erstellung bzw. die Bearbeitung benutzten Form zusammen mit den zur Übersetzung und Installation erforderlichen Konfigurationsdateien und Software-Werkzeugen, sofern diese in der benötigten Form nicht allgemein gebräuchlich (z.B. Standard-Kompiler) oder für jedermann lizenzgebührenfrei im Internet abrufbar sind. - -§ 1 Rechte - -(1) Sie dürfen das Programm in unveränderter Form vervielfältigen, verbreiten und öffentlich zugänglich machen. - -(2) Sie dürfen das Programm verändern und entsprechend veränderte Versionen vervielfältigen, verbreiten und öffentlich zugänglich machen. Gestattet ist auch die Kombination des Programms oder Teilen hiervon mit anderen Programmen. - -(3) Sie erhalten die Rechte unentgeltlich. - -§ 2 Pflichten beim Vertrieb - -(1) Wenn Sie das Programm verbreiten oder öffentlich zugänglich machen, sei es in unveränderter oder veränderter Form, sei es in einer Kombination mit anderen Programmen oder in Verbindung mit Hardware, dann müssen sie mitliefern: -1. alle Vermerke im Source Code und/oder Object Code, die auf diese Lizenz hinweisen; -2. alle Vermerke im Source Code und/oder Object Code, die über die Urheber des Programms Auskunft geben; -3. einen für den Empfänger deutlich wahrnehmbaren Hinweis auf diese Lizenz und die Internetadresse http://www.d-fsl.de; -4. den vollständigen Text dieser Lizenz in deutlich wahrnehmbarer Weise. - -(2) Wenn bei der Installation des Programms und/oder beim Programmstart Lizenz- und/oder Vertragsbedingungen angezeigt werden, dann müssen -1. diese Lizenz, -2. ein Hinweis auf diese Lizenz und -3. ein Hinweis auf den oder die Rechtsinhaber an den ersten unter dieser Lizenz nutzbaren Programmbestandteilen -ebenfalls angezeigt werden. - -(3) Sie dürfen die Nutzung des Programms nicht von Pflichten oder Bedingungen abhängig machen, die nicht in dieser Lizenz vorgesehen sind. - -(4) Sofern Sie mit dem Programm eine Dokumentation erhalten haben, muss diese Dokumentation entsprechend mitgeliefert werden, es sei denn, die freie Mitlieferung der Dokumentation ist Ihnen aufgrund der Lizenz für die Dokumentation nicht gestattet. - -§ 3 Weitere Pflichten beim Vertrieb veränderter Versionen - -(1) Veränderte Versionen des Programms dürfen Sie nur unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zugänglich machen, so dass Dritte das veränderte Programm insgesamt unter dieser Lizenz nutzen können. - -(2) Wird das Programm oder ein Teil hiervon mit einem anderen Programm kombiniert, gilt auch die Kombination insgesamt als eine veränderte Version des Programms, es sei denn, das andere Programm ist formal und inhaltlich eigenständig. Ein anderes Programm ist dann als eigenständig anzusehen, wenn es die folgenden Voraussetzungen alle erfüllt: -1. Der Source Code der kombinierten Programme muss jeweils in eigenen Dateien vorhanden sein, die keine Bestandteile des anderen Teils enthalten, die über die zur Programmkombination üblichen und erforderlichen Informationen über den anderen Teil hinausgehen, wobei der Source Code des anderen Programms nicht mitgeliefert werden muss. -2. Der mit dem Programm kombinierte Teil muss auch dann sinnvoll nutzbar sein, wenn er nicht mit dem Programm kombiniert wird, und zwar entweder alleine oder mit sonstigen Programmen. Was als "sinnvoll nutzbar" anzusehen ist, richtet sich nach der Auffassung der betroffenen Fachkreise. Zu den betroffenen Fachkreisen gehören alle Personen, die das Programm oder Programme mit vergleichbarer Funktionalität entwickeln, benutzen, verbreiten oder öffentlich zugänglich machen. - -(3) Wenn Sie das Programm oder einen Teil hiervon - verändert oder unverändert - zusammen mit einem anderen Programm verbreiten oder öffentlich zugänglich machen, das unter der GNU General Public License (GPL) lizenziert wird, darf das Programm auch unter den Bedingungen der GPL genutzt werden, sofern es mit dem anderen Programm ein "derivative work" im Sinne der GPL bildet. Dabei sollen die Hinweise auf diese Lizenz entfernt und durch einen Hinweis auf die GPL ersetzt werden. Ob bei der Zusammenstellung ein "derivate work" im Sinne der GPL entsteht, beurteilt sich nach Ziffer 2 b) der GPL. Diese Bestimmung lautet: "You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License." Die GPL kann abgerufen werden unter http://www.fsf.org/licenses/gpl. - -(4) Wenn Sie das Programm in einer veränderten Form verbreiten oder öffentlich zugänglich machen, müssen Sie im Source Code einen Hinweis mit den Änderungen aufnehmen und mit dem Datum der Änderung versehen. Der Hinweis muss erkennen lassen, welche Änderungen vorgenommen wurden und bestehende Vermerke, die über die Urheber des Programms Auskunft geben, übernehmen. Dies gilt unabhängig davon, ob Sie einen eigenen Urhebervermerk hinzufügen. Anstelle eines Hinweises im Source Code können Sie auch ein Versionskontrollsystem verwenden oder weiterführen, sofern dieses mitverbreitet wird oder öffentlich zugänglich ist. - -(5) Sie dürfen von Dritten für die Einräumung eines einfachen Nutzungsrechts an veränderten Versionen des Programms kein Entgelt verlangen. - -(6) Wenn Sie an der veränderten Version des Programms ein anderes Schutzrecht als ein Urheberrecht erwerben, insbesondere ein Patent oder Gebrauchsmuster, lizenzieren Sie dieses Schutzrecht für veränderte und unveränderte Versionen des Programms in dem Umfang, der erforderlich ist, um die Rechte aus dieser Lizenz wahrnehmen zu können. - -§ 4 Weitere Pflichten beim Vertrieb im Object Code - -(1) Wenn Sie das Programm nur im Object Code verbreiten, dann müssen Sie zusätzlich zu den in § 2 und § 3 geregelten Pflichten entweder -1. den vollständigen Source Code im Internet öffentlich zugänglich machen und bei der Verbreitung des Object Codes deutlich auf die vollständige Internetadresse hinweisen, unter der der Source Code abgerufen werden kann oder -2. den vollständigen Source Code auf einem hierfür üblichen Datenträger unter Beachtung der §§ 2 und 3 mitverbreiten. - -(2) Wenn Sie das Programm im Object Code öffentlich zugänglich machen, dann müssen Sie zusätzlich zu den in § 2 und § 3 geregelten Pflichten den vollständigen Source Code im Internet öffentlich zugänglich machen und dabei deutlich auf die vollständige Internetadresse hinweisen. - -(3) Sofern Sie mit dem Programm eine Dokumentation erhalten haben, muss diese Dokumentation entsprechend der Absätze 1 und 2 mitgeliefert werden, es sei denn, die freie Mitlieferung der Dokumentation ist Ihnen aufgrund der Lizenz für die Dokumentation nicht gestattet. - -§ 5 Vertragsschluss - -(1) Mit dieser Lizenz wird Ihnen und jeder anderen Person ein Angebot auf Abschluss eines Vertrages über die Nutzung des Programms unter den Bedingungen der Deutschen Freien Softwarelizenz unterbreitet. - -(2) Sie dürfen das Programm nach den jeweils anwendbaren gesetzlichen Vorschriften bestimmungsgemäß benutzen, ohne dass es der Annahme dieser Lizenz bedarf. Dieses Recht umfasst in der Europäischen Union und in den meisten anderen Rechtsordnungen insbesondere die folgenden Befugnisse: -1. das Programm ablaufen zu lassen sowie die Erstellung von hierfür erforderlichen Vervielfältigungen im Haupt- und Arbeitsspeicher; -2. das Erstellen einer Sicherungskopie; -3. die Fehlerberichtigung; -4. die Weitergabe einer rechtmäßig erworbenen körperlichen Kopie des Programms. - -(3) Sie erklären Ihre Zustimmung zum Abschluss dieser Lizenz, indem Sie das Programm verbreiten, öffentlich zugänglich machen, verändern oder in einer Weise vervielfältigen, die über die bestimmungsgemäße Nutzung im Sinne von Absatz 2 hinausgeht. Ab diesem Zeitpunkt ist diese Lizenz als rechtlich verbindlicher Vertrag zwischen den Rechtsinhabern und Ihnen geschlossen, ohne dass es eines Zugangs der Annahmeerklärung bei den Rechtsinhabern bedarf. - -(4) Sie und jeder andere Lizenznehmer erhalten die Rechte aus dieser Lizenz direkt von den Rechtsinhabern. Eine Unterlizenzierung oder Übertragung der Rechte ist nicht gestattet. - -§ 6 Beendigung der Rechte bei Zuwiderhandlung - -(1) Jede Verletzung Ihrer Verpflichtungen aus dieser Lizenz führt zu einer automatischen Beendigung Ihrer Rechte aus dieser Lizenz. - -(2) Die Rechte Dritter, die das Programm oder Rechte an dem Programm von Ihnen erhalten haben, bleiben hiervon unberührt. - -§ 7 Haftung und Gewährleistung - -(1) Für entgegenstehende Rechte Dritter haften die Rechtsinhaber nur, sofern sie Kenntnis von diesen Rechten hatten, ohne Sie zu informieren. - -(2) Die Haftung für Fehler und sonstige Mängel des Programms richtet sich nach den außerhalb dieser Lizenz getroffenen Vereinbarungen zwischen Ihnen und den Rechtsinhabern oder, wenn eine solche Vereinbarung nicht existiert, nach den gesetzlichen Regelungen. - -§ 8 Verträge mit Dritten - -(1) Diese Lizenz regelt nur die Beziehung zwischen Ihnen und den Rechtsinhabern. Sie ist nicht Bestandteil der Verträge zwischen Ihnen und Dritten. - -(2) Die Lizenz beschränkt Sie nicht in der Freiheit, mit Dritten, die von Ihnen Kopien des Programms erhalten oder Leistungen in Anspruch nehmen, die im Zusammenhang mit dem Programm stehen, Verträge beliebigen Inhalts zu schließen, sofern Sie dabei Ihren Verpflichtungen aus dieser Lizenz nachkommen und die Rechte der Dritten aus dieser Lizenz nicht beeinträchtigt werden. Insbesondere dürfen Sie für die Überlassung des Programms oder sonstige Leistungen ein Entgelt verlangen. - -(3) Diese Lizenz verpflichtet Sie nicht, das Programm an Dritte weiterzugeben. Es steht Ihnen frei zu entscheiden, wem Sie das Programm zugänglich machen. Sie dürfen aber die weitere Nutzung durch Dritte nicht durch den Einsatz technischer Schutzmaßnahmen, insbesondere durch den Einsatz von Kopierschutzvorrichtungen jeglicher Art, verhindern oder erschweren. Eine passwortgeschützte Zugangsbeschränkung oder die Nutzung in einem Intranet wird nicht als technische Schutzmaßnahme angesehen. - -§ 9 Text der Lizenz - -(1) Diese Lizenz ist in deutscher und englischer Sprache abgefasst. Beide Fassungen sind gleich verbindlich. Es wird unterstellt, dass die in der Lizenz verwandten Begriffe in beiden Fassungen dieselbe Bedeutung haben. Ergeben sich dennoch Unterschiede, so ist die Bedeutung maßgeblich, welche die Fassungen unter Berücksichtigung des Ziels und Zwecks der Lizenz am besten miteinander in Einklang bringt. - -(2) Der Lizenzrat der Deutschen Freien Software Lizenz kann mit verbindlicher Wirkung neue Versionen der Lizenz in Kraft setzen, soweit dies erforderlich und zumutbar ist. Neue Versionen der Lizenz werden auf der Internetseite http://www.d-fsl.de mit einer eindeutigen Versionsnummer veröffentlicht. Die neue Version der Lizenz erlangt für Sie verbindliche Wirkung, wenn Sie von deren Veröffentlichung Kenntnis genommen haben. Gesetzliche Rechtsbehelfe gegen die Änderung der Lizenz werden durch die vorstehenden Bestimmungen nicht beschränkt. - -(3) Sie dürfen diese Lizenz in unveränderter Form vervielfältigen, verbreiten und öffentlich zugänglich machen. - -§ 10 Anwendbares Recht - -Auf diese Lizenz findet deutsches Recht Anwendung. - - -Anhang: Wie unterstellen Sie ein Programm der Deutschen Freien Software Lizenz? -Um jedermann den Abschluss dieser Lizenz zu ermöglichen, wird empfohlen, das Programm mit folgendem Hinweis auf die Lizenz zu versehen: - -"Copyright (C) 20[jj] [Name des Rechtsinhabers]. - -Dieses Programm kann durch jedermann gemäß den Bestimmungen der Deutschen Freien Software Lizenz genutzt werden. - -Die Lizenz kann unter http://www.d-fsl.de abgerufen werden." \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/d-fsl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/d-fsl-1.0.yml deleted file mode 100644 index e82a4e1b06c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/d-fsl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - d-fsl-1.0-de -notes: this is a license from fossology license reference D-FSL-1.0 (GNU General Public License) - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/docbook.txt b/tests/licensedcode/data/more_licenses/licenses/docbook.txt deleted file mode 100644 index cdca65f30d9..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/docbook.txt +++ /dev/null @@ -1,131 +0,0 @@ -GNU Free Documentation License - -Version 1.1, March 2000 - -Copyright (C) 2000 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -PREAMBLE - -The purpose of this License is to make a manual, textbook, or other written document "free" in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others. - -This License is a kind of "copyleft", which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software. - -We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference. - -APPLICABILITY AND DEFINITIONS - -This License applies to any manual or other work that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. The "Document", below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as "you". - -A "Modified Version" of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language. - -A "Secondary Section" is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document''s overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (For example, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them. - -The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. - -The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. - -A "Transparent" copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, whose contents can be viewed and edited directly and straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup has been designed to thwart or discourage subsequent modification by readers is not Transparent. A copy that is not "Transparent" is called "Opaque". - -Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML designed for human modification. Opaque formats include PostScript, PDF, proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML produced by some word processors for output purposes only. - -The "Title Page" means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, "Title Page" means the text near the most prominent appearance of the work''s title, preceding the beginning of the body of the text. - -VERBATIM COPYING - -You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3. - -You may also lend copies, under the same conditions stated above, and you may publicly display copies. - -COPYING IN QUANTITY - -If you publish printed copies of the Document numbering more than 100, and the Document''s license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects. - -If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages. - -If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a publicly-accessible computer-network location containing a complete Transparent copy of the Document, free of added material, which the general network-using public has access to download anonymously at no charge using public-standard network protocols. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public. - -It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document. - -MODIFICATIONS - -You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version: - -Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission. - -List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has less than five). - -State on the Title page the name of the publisher of the Modified Version, as the publisher. - -Preserve all the copyright notices of the Document. - -Add an appropriate copyright notice for your modifications adjacent to the other copyright notices. - -Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below. - -Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document''s license notice. - -Include an unaltered copy of this License. - -Preserve the section entitled "History", and its title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section entitled "History" in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence. - -Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the "History" section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission. - -In any section entitled "Acknowledgements" or "Dedications", preserve the section''s title, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein. - -Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles. - -Delete any section entitled "Endorsements". Such a section may not be included in the Modified Version. - -Do not retitle any existing section as "Endorsements" or to conflict in title with any Invariant Section. - -If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version''s license notice. These titles must be distinct from any other section titles. - -You may add a section entitled "Endorsements", provided it contains nothing but endorsements of your Modified Version by various parties--for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard. - -You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one. - -The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version. - -COMBINING DOCUMENTS - -You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice. - -The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work. - -In the combination, you must combine any sections entitled "History" in the various original documents, forming one section entitled "History"; likewise combine any sections entitled "Acknowledgements", and any sections entitled "Dedications". You must delete all sections entitled "Endorsements." - -COLLECTIONS OF DOCUMENTS - -You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects. - -You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document. - -AGGREGATION WITH INDEPENDENT WORKS - -A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, does not as a whole count as a Modified Version of the Document, provided no compilation copyright is claimed for the compilation. Such a compilation is called an "aggregate", and this License does not apply to the other self-contained works thus compiled with the Document, on account of their being thus compiled, if they are not themselves derivative works of the Document. - -If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one quarter of the entire aggregate, the Document''s Cover Texts may be placed on covers that surround only the Document within the aggregate. Otherwise they must appear on covers around the whole aggregate. - -TRANSLATION - -Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License provided that you also include the original English version of this License. In case of a disagreement between the translation and the original English version of this License, the original English version will prevail. - -TERMINATION - -You may not copy, modify, sublicense, or distribute the Document except as expressly provided for under this License. Any other attempt to copy, modify, sublicense or distribute the Document is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -FUTURE REVISIONS OF THIS LICENSE - -The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/. - -Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. - -How to use this License for your documents - -To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page: - -Copyright (c) YEAR YOUR NAME. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. A copy of the license is included in the section entitled "GNU Free Documentation License". - -If you have no Invariant Sections, write "with no Invariant Sections" instead of saying which ones are invariant. If you have no Front-Cover Texts, write "no Front-Cover Texts" instead of "Front-Cover Texts being LIST"; likewise for Back-Cover Texts. - -If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/docbook.yml b/tests/licensedcode/data/more_licenses/licenses/docbook.yml deleted file mode 100644 index 0190582f53a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/docbook.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gfdl-1.1 -notes: this is a license from fossology license reference Docbook (GNU Free Documentation License - 1.1) http://www.docbook.org/tdg/en/html/aph.html diff --git a/tests/licensedcode/data/more_licenses/licenses/ecl-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/ecl-2.0.txt deleted file mode 100644 index 396a1b174b1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ecl-2.0.txt +++ /dev/null @@ -1,74 +0,0 @@ -Educational Community License -Version 2.0, April 2007 - -The Educational Community License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to change the scope of the patent grant in section 3 to be specific to the needs of the education communities using this license. The original Apache 2.0 license can be found at: http://www.apache.org/licenses/LICENSE-2.0 - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. Any patent license granted hereby with respect to contributions by an individual employed by an institution or organization is limited to patent claims where the individual that is the author of the Work is also the inventor of the patent claims licensed, and where the organization or institution has the right to grant such license under applicable grant and research funding agreements. No other express or implied licenses are granted. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of this License; and - -You must cause any modified files to carry prominent notices stating that You changed the files; and - -You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) 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. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Educational Community License to your work - -To apply the Educational Community License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don''t include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] Licensed under the -Educational Community License, Version 2.0 (the "License"); you may -not use this file except in compliance with the License. You may -obtain a copy of the License at - -http://www.osedu.org/licenses/ECL-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an "AS IS" -BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -or implied. See the License for the specific language governing -permissions and limitations under the License. diff --git a/tests/licensedcode/data/more_licenses/licenses/ecl-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/ecl-2.0.yml deleted file mode 100644 index 291e170b019..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ecl-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ecl-2.0 -notes: this is a license from fossology license reference ECL-2.0 (Educational Community License - 2.0) http://opensource.org/licenses/ecl2.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/efl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/efl-1.0.txt deleted file mode 100644 index 016734e4021..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/efl-1.0.txt +++ /dev/null @@ -1,23 +0,0 @@ -Eiffel Forum License, version 1 - -Permission is hereby granted to use, copy, modify and/or distribute -this package, provided that: - - - copyright notices are retained unchanged - - - any distribution of this package, whether modified or not, - includes this file - -Permission is hereby also granted to distribute binary programs which -depend on this package, provided that: - - - if the binary program depends on a modified version of this - package, you must publicly release the modified version of this - package - -THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. 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 AUTHORS BE LIABLE TO ANY PARTY FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/efl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/efl-1.0.yml deleted file mode 100644 index d5aaea05387..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/efl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - efl-1.0 -notes: this is a license from fossology license reference EFL-1.0 (Eiffel Forum License 1.0) - http://www.eiffel-nice.org/license/forum.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/efl-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/efl-2.0.txt deleted file mode 100644 index cb69830cb82..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/efl-2.0.txt +++ /dev/null @@ -1,22 +0,0 @@ - Eiffel Forum License, version 2 - - 1. Permission is hereby granted to use, copy, modify and/or - distribute this package, provided that: - * copyright notices are retained unchanged, - * any distribution of this package, whether modified or not, - includes this license text. - 2. Permission is hereby also granted to distribute binary programs - which depend on this package. If the binary program depends on a - modified version of this package, you are encouraged to publicly - release the modified version of this package. - -*********************** - -THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. 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 AUTHORS BE LIABLE TO ANY PARTY FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE. - -*********************** \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/efl-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/efl-2.0.yml deleted file mode 100644 index 933ad0fbc0c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/efl-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - efl-2.0 -notes: this is a license from fossology license reference EFL-2.0 (Eiffel Forum License 2.0) - http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/epinions.txt b/tests/licensedcode/data/more_licenses/licenses/epinions.txt deleted file mode 100644 index e2c0f20db8d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/epinions.txt +++ /dev/null @@ -1,23 +0,0 @@ -1. License. If Epinions, Inc. makes available to you a logo for downloading, Epinions hereby grants to you a nonexclusive, nonassignable, nonsublicenseable, royalty-free license to display one of the Epinions logos above, including the associated trademark(s) and HTML code (collectively, the "Logo") for the sole purpose of (a) linking to the Epinions.com home page, your personal profile page, or your affiliate home page, or (b) if you are a member of the press, including the Logo in an article that references Epinions. If Epinions makes available to you for downloading HTML code that calls on its servers, Epinions hereby grants to you a nonexclusive, nonassignable, nonsublicenseable, royalty-free license to use the HTML code above (the "Code") without modification for the sole purpose of calling on Epinions'' servers to include the associated Logo on your site. - -2. Restrictions. - -2.1 If you are using the license described in Section 1(a), you must use the Logo as an active hypertext link only to a page enumerated there. You may not frame Epinions.com, cause the link to create a new browser window (unless such window occupies 100% of the user''s screen and appears above all other browser windows), or otherwise cause users to display the site in a distorted fashion. - -2.2 You may display the Logo only in the form and at the size provided to you. You may not modify or alter the Logo or Code in any way, including size, proportions, colors, elements, type or any other respect. You may not animate, morph or otherwise distort the Logo''s perspective or dimensional appearance, nor may you use screen shots of your pages (to the extent that the Logo appears in the screen shot) in any other medium (except as permitted by Section 1(b)). If Epinions provides you with a substitute version of the Logo, you shall replace the Logo as soon as reasonably possible. - -2.3 The Logo shall be surrounded by a reasonable amount of empty space, and you may not use the Logo in conjunction with other logos or marks in a way that would create a combination mark. You may not use the Logo in a way that suggests that Epinions endorses or sponsors your site. The Logo may not appear larger or more prominently than other branding on the page on which it is displayed. - -2.4 You may not use the Logo in any way that tarnishes, blurs or dilutes the quality of Epinions'' trademarks or any associated goodwill. Without limiting the foregoing, you shall not display the Logo on any pages that contain infringing or illegal content. - -2.5 You acknowledge Epinions'' sole and exclusive ownership of the Logo and the Code, and you shall not take any action inconsistent with such ownership, such as adopting, using, registering, or attempting to register any logo or trademark confusingly similar to the Logo. All use of or goodwill associated with the Logo shall inure to Epinions'' benefit. You may not use the Logo or Code in any manner not expressly authorized under this Agreement. - -3. Termination. Epinions may terminate this Agreement or the trademark or Code license at any time for any reason or no reason. You may terminate this Agreement at any time for any reason or no reason. This Agreement and your license automatically terminates if you breach any provision of this Agreement. In the event of termination, (a) you shall immediately remove the Logo or Code from your site and otherwise cease using the Logo and Code, and (b) Sections 3-7 shall survive. - -4. No Warranty. THE LOGO AND CODE IS PROVIDED "AS IS." EPINIONS DISCLAIMS ALL WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. Some states do not allow the disclaimer of implied warranties, so the foregoing disclaimer may not apply to you. This warranty gives you specific legal rights and you may also have other legal rights which vary from state to state. - -5. Liability Limits. EPINIONS DISCLAIMS ALL CONSEQUENTIAL, INCIDENTAL OR SPECIAL DAMAGES OR LOST PROFITS ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, THE CODE OR THE LOGO (HOWEVER ARISING, INCLUDING NEGLIGENCE). EPINIONS'' TOTAL LIABILITY TO YOU IS LIMITED TO $1,000. Some states do not allow the foregoing limitations of liability, so they may not apply to you. - -6. Entire Agreement/Amendment. This Agreement constitutes the entire agreement, and supersede the provisions of any other agreements or understandings (oral or written), between the parties with respect to the Logo and Code. However, this Agreement does not modify in any respect the Epinions Member Agreement or associated documents. This Agreement may be amended only by a writing physically signed by both Epinions and you. Notwithstanding the foregoing, Epinions may modify the Agreement in its sole discretion by notifying you by email of any proposed changes, which changes shall be effective upon when a notice is sent to your email address. If you do not agree with any amendments, you may terminate your license to the Logo or Code. - -7. General. This Agreement is governed in all respects by the laws of the State of California as such laws are applied to agreements entered into and to be performed entirely within California between California residents. Both parties submit to personal jurisdiction in California and further agree that any cause of action arising under this Agreement shall be brought exclusively in a court in San Mateo County, California. Epinions shall be excused for any failure to perform to the extent that its performance is prevented by any reason outside of its control. No agency, partnership, joint venture, employment or franchise relationship is intended or created by this Agreement. If any portion of this Agreement is deemed unenforceable, that portion shall be enforced to the maximum extent possible and the remaining portions of the Agreement shall be given full effect. Epinions'' failure to act in a particular circumstance does not waive the ability to act with respect to that circumstance or similar circumstances. diff --git a/tests/licensedcode/data/more_licenses/licenses/epinions.yml b/tests/licensedcode/data/more_licenses/licenses/epinions.yml deleted file mode 100644 index 044868d5cb6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/epinions.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - proprietary-license -notes: this is a license from fossology license reference Epinions (Epinions License) http://www.epinions.com/about/show_~logos#license diff --git a/tests/licensedcode/data/more_licenses/licenses/epl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/epl-1.0.txt deleted file mode 100644 index 3057eed8f2d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/epl-1.0.txt +++ /dev/null @@ -1,70 +0,0 @@ -Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT''S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -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. -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -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. -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. -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. -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. -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -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; -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -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. -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation 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. - -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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/epl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/epl-1.0.yml deleted file mode 100644 index b2caa80f8be..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/epl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - epl-1.0 -notes: this is a license from fossology license reference EPL-1.0 (Eclipse Public License 1.0) - http://www.eclipse.org/legal/epl-v10.html diff --git a/tests/licensedcode/data/more_licenses/licenses/erlpl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/erlpl-1.1.txt deleted file mode 100644 index d7f36d4942e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/erlpl-1.1.txt +++ /dev/null @@ -1,286 +0,0 @@ -ERLANG PUBLIC LICENSE -Version 1.1 - -1. Definitions. - -1.1. ``Contributor'''' means each entity that creates or contributes to -the creation of Modifications. - -1.2. ``Contributor Version'''' means the combination of the Original -Code, prior Modifications used by a Contributor, and the Modifications -made by that particular Contributor. - -1.3. ``Covered Code'''' means the Original Code or Modifications or the -combination of the Original Code and Modifications, in each case -including portions thereof. - -1.4. ``Electronic Distribution Mechanism'''' means a mechanism generally -accepted in the software development community for the electronic -transfer of data. - -1.5. ``Executable'''' means Covered Code in any form other than Source -Code. - -1.6. ``Initial Developer'''' means the individual or entity identified -as the Initial Developer in the Source Code notice required by Exhibit -A. - -1.7. ``Larger Work'''' means a work which combines Covered Code or -portions thereof with code not governed by the terms of this License. - -1.8. ``License'''' means this document. - -1.9. ``Modifications'''' means any addition to or deletion from the -substance or structure of either the Original Code or any previous -Modifications. When Covered Code is released as a series of files, a -Modification is: - -A. Any addition to or deletion from the contents of a file containing -Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or -previous Modifications. - -1.10. ``Original Code'''' means Source Code of computer software code -which is described in the Source Code notice required by Exhibit A as -Original Code, and which, at the time of its release under this -License is not already Covered Code governed by this License. - -1.11. ``Source Code'''' means the preferred form of the Covered Code for -making modifications to it, including all modules it contains, plus -any associated interface definition files, scripts used to control -compilation and installation of an Executable, or a list of source -code differential comparisons against either the Original Code or -another well known, available Covered Code of the Contributor''s -choice. The Source Code can be in a compressed or archival form, -provided the appropriate decompression or de-archiving software is -widely available for no charge. - -1.12. ``You'''' means an individual or a legal entity exercising rights -under, and complying with all of the terms of, this License. For legal -entities,``You'''' includes any entity which controls, is controlled by, -or is under common control with You. For purposes of this definition, -``control'''' means (a) the power, direct or indirect, to cause the -direction or management of such entity, whether by contract or -otherwise, or (b) ownership of fifty percent (50%) or more of the -outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) to use, reproduce, modify, display, perform, sublicense and -distribute the Original Code (or portions thereof) with or without -Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial -Developer, to make, have made, use and sell (``Utilize'''') the -Original Code (or portions thereof), but solely to the extent that -any such patent is reasonably necessary to enable You to Utilize -the Original Code (or portions thereof) and not to any greater -extent that may be necessary to Utilize further Modifications or -combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) to use, reproduce, modify, display, perform, sublicense and -distribute the Modifications created by such Contributor (or -portions thereof) either on an unmodified basis, with other -Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, -to Utilize the Contributor Version (or portions thereof), but -solely to the extent that any such patent is reasonably necessary -to enable You to Utilize the Contributor Version (or portions -thereof), and not to any greater extent that may be necessary to -Utilize further Modifications or combinations. - -3. Distribution Obligations. - -3.1. Application of License. -The Modifications which You contribute are governed by the terms of -this License, including without limitation Section 2.2. The Source -Code version of Covered Code may be distributed only under the terms -of this License, and You must include a copy of this License with -every copy of the Source Code You distribute. You may not offer or -impose any terms on any Source Code version that alters or restricts -the applicable version of this License or the recipients'' rights -hereunder. However, You may include an additional document offering -the additional rights described in Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You contribute must be made available in Source -Code form under the terms of this License either on the same media as -an Executable version or via an accepted Electronic Distribution -Mechanism to anyone to whom you made an Executable version available; -and if made available via Electronic Distribution Mechanism, must -remain available for at least twelve (12) months after the date it -initially became available, or at least six (6) months after a -subsequent version of that particular Modification has been made -available to such recipients. You are responsible for ensuring that -the Source Code version remains available even if the Electronic -Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a -file documenting the changes You made to create that Covered Code and -the date of any change. You must include a prominent statement that -the Modification is derived, directly or indirectly, from Original -Code provided by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any notice in an -Executable version or related documentation in which You describe the -origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual property -right in particular functionality or code (or its utilization -under this License), you must include a text file with the source -code distribution titled ``LEGAL'''' which describes the claim and -the party making the claim in sufficient detail that a recipient -will know whom to contact. If you obtain such knowledge after You -make Your Modification available as described in Section 3.2, You -shall promptly modify the LEGAL file in all copies You make -available thereafter and shall take other steps (such as notifying -appropriate mailing lists or newsgroups) reasonably calculated to -inform those who received the Covered Code that new knowledge has -been obtained. - -(b) Contributor APIs. -If Your Modification is an application programming interface and -You own or control patents which are reasonably necessary to -implement that API, you must also include this information in the -LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source -Code, and this License in any documentation for the Source Code, where -You describe recipients'' rights relating to Covered Code. If You -created one or more Modification(s), You may add your name as a -Contributor to the notice described in Exhibit A. If it is not -possible to put such notice in a particular Source Code file due to -its structure, then you must include such notice in a location (such -as a relevant directory file) where a user would be likely to look for -such a notice. You may choose to offer, and to charge a fee for, -warranty, support, indemnity or liability obligations to one or more -recipients of Covered Code. However, You may do so only on Your own -behalf, and not on behalf of the Initial Developer or any -Contributor. You must make it absolutely clear than any such warranty, -support, indemnity or liability obligation is offered by You alone, -and You hereby agree to indemnify the Initial Developer and every -Contributor for any liability incurred by the Initial Developer or -such Contributor as a result of warranty, support, indemnity or -liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the -requirements of Section 3.1-3.5 have been met for that Covered Code, -and if You include a notice stating that the Source Code version of -the Covered Code is available under the terms of this License, -including a description of how and where You have fulfilled the -obligations of Section 3.2. The notice must be conspicuously included -in any notice in an Executable version, related documentation or -collateral in which You describe recipients'' rights relating to the -Covered Code. You may distribute the Executable version of Covered -Code under a license of Your choice, which may contain terms different -from this License, provided that You are in compliance with the terms -of this License and that the license for the Executable version does -not attempt to limit or alter the recipient''s rights in the Source -Code version from the rights set forth in this License. If You -distribute the Executable version under a different license You must -make it absolutely clear that any terms which differ from this License -are offered by You alone, not by the Initial Developer or any -Contributor. You hereby agree to indemnify the Initial Developer and -every Contributor for any liability incurred by the Initial Developer -or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code -not governed by the terms of this License and distribute the Larger -Work as a single product. In such a case, You must make sure the -requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Code due to statute -or regulation then You must: (a) comply with the terms of this License -to the maximum extent possible; and (b) describe the limitations and -the code they affect. Such description must be included in the LEGAL -file described in Section 3.4 and must be included with all -distributions of the Source Code. Except to the extent prohibited by -statute or regulation, such description must be sufficiently detailed -for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has -attached the notice in Exhibit A, and to related Covered Code. - -6. CONNECTION TO MOZILLA PUBLIC LICENSE - -This Erlang License is a derivative work of the Mozilla Public -License, Version 1.0. It contains terms which differ from the Mozilla -Public License, Version 1.0. - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'''' BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR -NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF -THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE -IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER -CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR -CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART -OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER -EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. -This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. All -sublicenses to the Covered Code which are properly granted shall -survive any termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this License -shall survive. - -9. DISCLAIMER OF LIABILITY -Any utilization of Covered Code shall not cause the Initial Developer -or any Contributor to be liable for any damages (neither direct nor -indirect). - -10. MISCELLANEOUS -This License represents the complete agreement concerning the subject -matter hereof. If any provision is held to be unenforceable, such -provision shall be reformed only to the extent necessary to make it -enforceable. This License shall be construed by and in accordance with -the substantive laws of Sweden. Any dispute, controversy or claim -arising out of or relating to this License, or the breach, termination -or invalidity thereof, shall be subject to the exclusive jurisdiction -of Swedish courts, with the Stockholm City Court as the first -instance. - -EXHIBIT A. - -``The contents of this file are subject to the Erlang Public License, -Version 1.1, (the "License"); you may not use this file except in -compliance with the License. You should have received a copy of the -Erlang Public License along with this software. If not, it can be -retrieved via the world wide web at http://www.erlang.org/. - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -the License for the specific language governing rights and limitations -under the License. - -The Initial Developer of the Original Code is Ericsson Utvecklings AB. -Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings -AB. All Rights Reserved. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/erlpl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/erlpl-1.1.yml deleted file mode 100644 index db1186aff95..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/erlpl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - erlangpl-1.1 -notes: this is a license from fossology license reference ErlPL-1.1 (Erlang Public License v1.1) - http://www.erlang.org/EPLICENSE diff --git a/tests/licensedcode/data/more_licenses/licenses/eudatagrid.txt b/tests/licensedcode/data/more_licenses/licenses/eudatagrid.txt deleted file mode 100644 index fa5e4b2e305..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/eudatagrid.txt +++ /dev/null @@ -1,25 +0,0 @@ -EU DataGrid Software License - -Copyright (c) 2001 EU DataGrid. All rights reserved. - -This software includes voluntary contributions made to the EU DataGrid. For more information on the EU DataGrid, please see http://www.eu-datagrid.org/. - -Installation, use, reproduction, display, modification and redistribution of this software, with or without modification, in source and binary forms, are permitted. Any exercise of rights under this license by you or your sub-licensees is subject to the following conditions: - -1. Redistributions of this software, with or without modification, must reproduce the above copyright notice and the above license statement as well as this list of conditions, in the software, the user documentation and any other materials provided with the software. - -2. The user documentation, if any, included with a redistribution, must include the following notice: "This product includes software developed by the EU DataGrid (http://www.eu-datagrid.org/)." - -Alternatively, if that is where third-party acknowledgments normally appear, this acknowledgment must be reproduced in the software itself. - -3. The names "EDG", "EDG Toolkit", and "EU DataGrid Project" may not be used to endorse or promote software, or products derived therefrom, except with prior written permission by hep-project-grid-edg-license@cern.ch. - -4. You are under no obligation to provide anyone with any bug fixes, patches, upgrades or other modifications, enhancements or derivatives of the features,functionality or performance of this software that you may develop. However, if you publish or distribute your modifications, enhancements or derivative works without contemporaneously requiring users to enter into a separate written license agreement, then you are deemed to have granted participants in the EU DataGrid a worldwide, non-exclusive, royalty-free, perpetual license to install, use, reproduce, display, modify, redistribute and sub-license your modifications, enhancements or derivative works, whether in binary or source code form, under the license conditions stated in this list of conditions. - -5. DISCLAIMER - -THIS SOFTWARE IS PROVIDED BY THE EU DATAGRID AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE OR USE ARE DISCLAIMED. THE EU DATAGRID AND CONTRIBUTORS MAKE NO REPRESENTATION THAT THE SOFTWARE, MODIFICATIONS, ENHANCEMENTS OR DERIVATIVE WORKS THEREOF, WILL NOT INFRINGE ANY PATENT, COPYRIGHT, TRADE SECRET OR OTHER PROPRIETARY RIGHT. - -6. LIMITATION OF LIABILITY - -THE EU DATAGRID AND CONTRIBUTORS SHALL HAVE NO LIABILITY TO LICENSEE OR OTHER PERSONS FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF USE, DATA OR PROFITS, OR BUSINESS INTERRUPTION, HOWEVER CAUSED AND ON ANY THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR OTHERWISE, ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. diff --git a/tests/licensedcode/data/more_licenses/licenses/eudatagrid.yml b/tests/licensedcode/data/more_licenses/licenses/eudatagrid.yml deleted file mode 100644 index 589319c4b30..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/eudatagrid.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - eu-datagrid -notes: this is a license from fossology license reference EUDatagrid (EU DataGrid Software License) - http://www.opensource.org/licenses/eudatagrid.php diff --git a/tests/licensedcode/data/more_licenses/licenses/fedoracla.txt b/tests/licensedcode/data/more_licenses/licenses/fedoracla.txt deleted file mode 100644 index 9c186a16e12..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/fedoracla.txt +++ /dev/null @@ -1,25 +0,0 @@ -The Fedora Project - -Individual Contributor License Agreement (CLA) - -http://fedoraproject.org/wiki/Legal/Licenses/CLA - -Thank you for your interest in The Fedora Project (the "Project"). In order to clarify the intellectual property license granted with Contributions from any person or entity, Red Hat, Inc. ("Red Hat"), as maintainer of the Project, must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for Your protection as a Contributor as well as the protection of the Project and its users; it does not change your rights to use your own Contributions for any other purpose. - -You and the Project hereby accept and agree to the following terms and conditions: - -1. Contributors and Contributions. -A. The Project and any individual or legal entity that voluntarily submits to the Project a Contribution are collectively addressed herein as "Contributors". For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. -B. A "Contribution" is any original work, including any modification or addition to an existing work, that has been submitted for inclusion in, or documentation of, any of the products owned or managed by the Project, where such work originates from that particular Contributor or from some entity acting on behalf of that Contributor. -C. A Contribution is "submitted" when any form of electronic, verbal, or written communication is sent to the Project, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Project for the purpose of discussing or improving software or documentation of the Project, but excluding communication that is conspicuously marked or otherwise designated in writing by you as "Not a Contribution." -D. Any Contribution submitted by you to the Project shall be under the terms and conditions of this License, without any additional terms or conditions, unless you explicitly state otherwise in the submission. -2. Contributor Grant of License. You hereby grant to Red Hat, Inc., on behalf of the Project, and to recipients of software distributed by the Project: -(a) a perpetual, non-exclusive, worldwide, fully paid-up, royalty free, irrevocable copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute your Contribution and such derivative works; and, -(b) a perpetual, non-exclusive, worldwide, fully paid-up, royalty free, irrevocable (subject to Section 3) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer your Contribution and derivative works thereof, where such license applies only to those patent claims licensable by you that are necessarily infringed by your Contribution alone or by combination of your Contribution with the work to which you submitted the Contribution. Except for the license granted in this section, you reserve all right, title and interest in and to your Contributions. -3. Reciprocity. As of the date any such litigation is filed, your patent grant shall immediately terminate with respect to any party that institutes patent litigation against you (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the work to which you have contributed, constitutes direct or contributory patent infringement. -4. You represent that you are legally entitled to grant the above license. If your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to the Project, or that your employer has executed a separate Corporate CLA with the Project. -5. You represent that each of your Contributions is your original creation (see section 7 for submissions on behalf of others). You represent that your Contribution submission(s) include complete details of any third-party license or other restriction (including, but not limited to, related copyright, patents and trademarks) of which you are personally aware and which are associated with any part of your Contribution. -6. You are not expected to provide support for your Contributions, except to the extent you desire to provide support. You may provide support for free, for a fee, or not at all. Your Contributions are 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 NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. -7. Should you wish to submit work that is not your original creation, you may submit it to the Project separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here] ". -8. You agree to notify the Project of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect. -9. The Project is under no obligations to accept and include every contribution.. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/fedoracla.yml b/tests/licensedcode/data/more_licenses/licenses/fedoracla.yml deleted file mode 100644 index 5302b5784f7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/fedoracla.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - generic-cla -notes: this is a license from fossology license reference FedoraCLA (Fedora Individual Contributor - License Agreement) http://fedoraproject.org/wiki/Legal/Licenses/CLA diff --git a/tests/licensedcode/data/more_licenses/licenses/flora-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/flora-1.1.txt deleted file mode 100644 index 193c83331ba..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/flora-1.1.txt +++ /dev/null @@ -1,91 +0,0 @@ -Flora License - -Version 1.1, April, 2013 - -http://floralicense.org/license - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -"Tizen Certified Platform" shall mean a software platform that complies with the standards set forth in the Tizen Compliance Specification and passes the Tizen Compliance Tests as defined from time to time by the Tizen Technical Steering Group and certified by the Tizen Association or its designated agent. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work solely as incorporated into a Tizen Certified Platform, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work solely as incorporated into a Tizen Certified Platform to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof pursuant to the copyright license above, in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of this License; and -You must cause any modified files to carry prominent notices stating that You changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License and your own copyright statement or terms and conditions do not conflict the conditions stated in this License including section 3. -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) 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. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Flora License to your work - -To apply the Flora License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don''''t include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - - - Licensed under the Flora License, Version 1.1 (the "License"); - - you may not use this file except in compliance with the License. - - You may obtain a copy of the License at - - - - http://floralicense.org/license - - - - Unless required by applicable law or agreed to in writing, software - - distributed under the License is distributed on an "AS IS" BASIS, - - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - - See the License for the specific language governing permissions and - - limitations under the License. - -Change Log - - * Version 1.1, April, 2013 - -The term "Compatibility Definition Document" has been changed to "Tizen Compliance Specification" -The term "Compatibility Test Suites" has been changed to "Tizen Compliance Tests" -Clarified 4.4 condition on Licensee''''s own copyright to derivative works or modifications \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/flora-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/flora-1.1.yml deleted file mode 100644 index 389752b2bd1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/flora-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - flora-1.1 -notes: this is a license from fossology license reference Flora-1.1 (Flora License version 1.1) - http://floralicense.org/license diff --git a/tests/licensedcode/data/more_licenses/licenses/frameworx-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/frameworx-1.0.txt deleted file mode 100644 index 25a466073c7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/frameworx-1.0.txt +++ /dev/null @@ -1,58 +0,0 @@ -THE FRAMEWORX OPEN LICENSE 1.0 -This License Agreement, The Frameworx Open License 1.0, has been entered into between The Frameworx Company and you, the licensee hereunder, effective as of Your acceptance of the Frameworx Code Base or an Downstream Distribution (each as defined below). -AGREEMENT BACKGROUND -The Frameworx Company is committed to the belief that open source software results in better quality, greater technical and product innovation in the market place and a more empowered and productive developer and end-user community. Our objective is to ensure that the Frameworx Code Base, and the source code for improvements and innovations to it, remain free and open to the community. To further these beliefs and objectives, we are distributing the Frameworx Code Base, without royalties and in source code form, to the community pursuant to this License Agreement. -AGREEMENT TERMS -The Frameworx Company and You have agreed as follows: - -1. Definitions. The following terms have the following respective meanings: - -(a) Frameworx Code Base means the software developed by The Frameworx Company and made available under this License Agreement - -(b) Downstream Distribution means any direct or indirect release, distribution or remote availability of software (i) that directly or indirectly contains, or depends for its intended functioning on, the Frameworx Code Base or any portion or element thereof and (ii) in which rights to use and distribute such Frameworx Code Base software depend, directly or indirectly, on the License provided in Section 2 below. - -(c) "Source Code" to any software means the preferred form for making modifications to that software, including any associated documentation, interface definition files and compilation or installation scripts, or any version thereof that has been compressed or archived, and can be reconstituted, using an appropriate and generally available archival or compression technology. - -(d) Value-Added Services means any commercial or fee-based software-related service, including without limitation: system or application development or consulting; technical or end-user support or training; distribution maintenance, configuration or versioning; or outsourced, hosted or network-based application services.2. License Grant. Subject to the terms and conditions hereof, The Frameworx Company hereby grants You a non-exclusive license (the License), subject to third party intellectual property claims, and for no fee other than a nominal charge reflecting the costs of physical distribution, to: - -(a) use the Frameworx Code Base, in either Source Code or machine-readable form; - -(b) make modifications, additions and deletions to the content or structure of the Frameworx Code Base; or - -(c) create larger works or derivative works including the Frameworx Code Base or any portion or element thereof; and - -(d) release, distribute or make available, either generally or to any specific third-party, any of the foregoing in Source Code or binary form. - -3. License Conditions. The grant of the License under Section 1 hereof, and your exercise of all rights in connection with this License Agreement, will remain subject to the following terms and conditions, as well as to the other provisions hereof: - -(a) Complete Source Code for any Downstream Distribution directly or indirectly made by You that contains, or depends for its intended functionality on, the Frameworx Code Base, or any portion or element thereof, shall be made freely available to all users thereof on terms and conditions no more restrictive, and no less favorable for any user (including, without limitation, with regard to Source Code availability and royalty-free use) than those terms and conditions provided in this License Agreement. - -(b) Any Value-Added Services that you offer or provide, directly or indirectly, in relation to any Downstream Distribution shall be offered and provided on commercial terms that are reasonably commensurate to the fair market value of such Value-Added Services. In addition, the terms and conditions on which any such Value Added Services are so offered or provided shall be consistent with, and shall fully support, the intent and purpose of this License Agreement.(c) All Downstream Distributions shall: - - (i) include all portions and elements of the Frameworx Code Base required to build the Source Code of such Downstream Distribution into a fully functional machine-executable system, or additional build scripts or comparable software necessary and sufficient for such purposes; - - (ii) include, in each file containing any portion or element of the Frameworx Code Base, the following identifying legend: This file contains software that has been made available under The Frameworx Open License 1.0. Use and distribution hereof are subject to the restrictions set forth therein. - - (iii) include all other copyright notices, authorship credits, warranty disclaimers (including that provided in Section 6 below), legends, documentation, annotations and comments contained in the Frameworx Code Base as provided to You hereunder; - - (iv) contain an unaltered copy of the html file named frameworx_community_invitation.html included within the Frameworx Code Base that acknowledges new users and provides them with information on the Frameworx Code Base community; - - (v) contain an unaltered copy of the text file named the_frameworx_license.txt included within the Frameworx Code Base that includes a text copy of the form of this License Agreement; and - - (vi) prominently display to any viewer or user of the Source Code of such Open Downstream Distribution, in the place and manner normally used for such displays, the following legend: - -Source code licensed under from The Frameworx Company is contained herein, and such source code has been obtained either under The Frameworx Open License, or another license granted by The Frameworx Company. Use and distribution hereof is subject to the restrictions provided in the relevant such license and to the copyrights of the licensor thereunder. A copy of The Frameworx Open License is provided in a file named the_frameworx_license.txt and included herein, and may also be available for inspection at http://www.frameworx.com.4. Restrictions on Open Downstream Distributions. Each Downstream Distribution made by You, and by any party directly or indirectly obtaining rights to the Frameworx Code Base through You, shall be made subject to a license grant or agreement to the extent necessary so that each distributee under that Downstream Distribution will be subject to the same restrictions on re-distribution and use as are binding on You hereunder. You may satisfy this licensing requirement either by: - -(a) requiring as a condition to any Downstream Distribution made by you, or by any direct or indirect distributee of Your Downstream Distribution (or any portion or element thereof), that each distributee under the relevant Downstream Distribution obtain a direct license (on the same terms and conditions as those in this License Agreement) from The Frameworx Company; or - -(b) sub-licensing all (and not less than all) of Your rights and obligations hereunder to that distributee, including (without limitation) Your obligation to require distributees to be bound by license restrictions as contemplated by this Section 4 above. - -The Frameworx Company hereby grants to you all rights to sub-license your rights hereunder as necessary to fully effect the intent and purpose of this Section 4 above, provided, however, that your rights and obligations hereunder shall be unaffected by any such sublicensing. In addition, The Frameworx Company expressly retains all rights to take all appropriate action (including legal action) against any such direct or indirect sub-licensee to ensure its full compliance with the intent and purposes of this License Agreement. - -5. Intellectual Property. Except as expressly provided herein, this License Agreement preserves and respects Your and The Frameworx Companys respective intellectual property rights, including, in the case of The Frameworx Company, its copyrights and patent rights relating to the Frameworx Code Base.6. Warranty Disclaimer. THE SOFTWARE LICENSED HEREUNDER IS PROVIDED ``AS IS.'''' ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT, ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE LICENSOR OF THIS SOFTWARE, 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. - -7. License Violation. The License, and all of your rights thereunder, shall be deemed automatically terminated and void as of any Downstream Distribution directly or indirectly made or facilitated by You that violates the provisions of this License Agreement, provided, however, that this License Agreement shall survive any such termination in order to remedy the effects of such violation. This License Agreement shall be binding on the legal successors and assigns of the parties hereto. - -Your agreement to the foregoing as of the date hereof has been evidenced by your acceptance of the relevant software distribution hereunder. - -(C) THE FRAMEWORX COMPANY 2003 diff --git a/tests/licensedcode/data/more_licenses/licenses/frameworx-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/frameworx-1.0.yml deleted file mode 100644 index ceb850ef403..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/frameworx-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - frameworx-1.0 -notes: this is a license from fossology license reference Frameworx-1.0 (Frameworx Open License - 1.0) http://opensource.org/licenses/frameworx.php diff --git a/tests/licensedcode/data/more_licenses/licenses/ftl.txt b/tests/licensedcode/data/more_licenses/licenses/ftl.txt deleted file mode 100644 index a3be3c80082..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ftl.txt +++ /dev/null @@ -1,169 +0,0 @@ - The FreeType Project LICENSE - ---------------------------- - - 2006-Jan-27 - - Copyright 1996-2002, 2006 by - David Turner, Robert Wilhelm, and Werner Lemberg - - - -Introduction -============ - - The FreeType Project is distributed in several archive packages; - some of them may contain, in addition to the FreeType font engine, - various tools and contributions which rely on, or relate to, the - FreeType Project. - - This license applies to all files found in such packages, and - which do not fall under their own explicit license. The license - affects thus the FreeType font engine, the test programs, - documentation and makefiles, at the very least. - - This license was inspired by the BSD, Artistic, and IJG - (Independent JPEG Group) licenses, which all encourage inclusion - and use of free software in commercial and freeware products - alike. As a consequence, its main points are that: - - o We don''t promise that this software works. However, we will be - interested in any kind of bug reports. (`as is'' distribution) - - o You can use this software for whatever you want, in parts or - full form, without having to pay us. (`royalty-free'' usage) - - o You may not pretend that you wrote this software. If you use - it, or only parts of it, in a program, you must acknowledge - somewhere in your documentation that you have used the - FreeType code. (`credits'') - - We specifically permit and encourage the inclusion of this - software, with or without modifications, in commercial products. - We disclaim all warranties covering The FreeType Project and - assume no liability related to The FreeType Project. - - - Finally, many people asked us for a preferred form for a - credit/disclaimer to use in compliance with this license. We thus - encourage you to use the following text: - - """ - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. - """ - - Please replace with the value from the FreeType version you - actually use. - - -Legal Terms -=========== - -0. Definitions --------------- - - Throughout this license, the terms `package'', `FreeType Project'', - and `FreeType archive'' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project'', be they named as alpha, - beta or final release. - - `You'' refers to the licensee, or person using the project, where - `using'' is a generic term including compiling the project''s source - code as well as linking it to form a `program'' or `executable''. - This program is referred to as `a program using the FreeType - engine''. - - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. - - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. - -1. No Warranty --------------- - - THE FREETYPE PROJECT IS PROVIDED `AS IS'' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. - -2. Redistribution ------------------ - - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: - - o Redistribution of source code must retain this license file - (`FTL.TXT'') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. - - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn''t mandatory. - - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. - -3. Advertising --------------- - - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. - - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project'', `FreeType Engine'', - `FreeType library'', or `FreeType Distribution''. - - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. - -4. Contacts ------------ - - There are two mailing lists related to FreeType: - - o freetype@nongnu.org - - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven''t found anything to help you in the documentation. - - o freetype-devel@nongnu.org - - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. - - Our home page can be found at - - http://www.freetype.org - - ---- end of FTL.TXT --- \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ftl.yml b/tests/licensedcode/data/more_licenses/licenses/ftl.yml deleted file mode 100644 index 246f81f3992..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ftl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - freetype -notes: this is a license from fossology license reference FTL (Freetype Project License) http://www.freetype.org/FTL.TXT diff --git a/tests/licensedcode/data/more_licenses/licenses/gnuplot.txt b/tests/licensedcode/data/more_licenses/licenses/gnuplot.txt deleted file mode 100644 index c31930f2c41..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gnuplot.txt +++ /dev/null @@ -1,14 +0,0 @@ -Copyright 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley - -Permission to use, copy, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. - -Permission to modify the software is granted, but not the right to distribute the complete modified source code. Modifications are to be distributed as patches to the released version. Permission to distribute binaries produced by compiling modified sources is granted, provided you - - 1. distribute the corresponding source modifications from the released version in the form of a patch file along with the binaries, - 2. add special version identification to distinguish your version in addition to the base release version number, - 3. provide your name and address as the primary contact for the support of your modified version, and - 4. retain our contact information in regard to use of the base software. - -Permission to distribute the released version of the source code along with corresponding source modifications in the form of a patch file is granted with same provisions 2 through 4 for binary distributions. - -This software is provided "as is" without express or implied warranty to the extent permitted by applicable law. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gnuplot.yml b/tests/licensedcode/data/more_licenses/licenses/gnuplot.yml deleted file mode 100644 index c9cdc2d8f90..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gnuplot.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - gnuplot -notes: this is a license from fossology license reference gnuplot (gnuplot License) https://fedoraproject.org/wiki/Licensing/Gnuplot diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0+.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-1.0+.txt deleted file mode 100644 index f1728fca562..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0+.txt +++ /dev/null @@ -1,250 +0,0 @@ -GNU General Public License, version 1 - -GNU GENERAL PUBLIC LICENSE -Version 1, February 1989 - -Copyright (C) 1989 Free Software Foundation, Inc. -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -Preamble - -The license agreements of most software companies try to keep users -at the mercy of those companies. By contrast, our General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. The -General Public License applies to the Free Software Foundation''s -software and to any other program whose authors commit to using it. -You can use it for your programs, too. - -When we speak of free software, we are referring to freedom, not -price. Specifically, the General Public License is designed to make -sure that you have the freedom to give away or sell copies of free -software, that you receive source code or can get it if you want it, -that you can change the software or use pieces of it in new free -programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - -For example, if you distribute copies of a such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must tell them their rights. - -We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - -Also, for each author''s protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors'' reputations. - -The precise terms and conditions for copying, distribution and -modification follow. - -GNU GENERAL PUBLIC LICENSE -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any program or other work which -contains a notice placed by the copyright holder saying it may be -distributed under the terms of this General Public License. The -"Program", below, refers to any such program or work, and a "work based -on the Program" means either the Program or any work containing the -Program or a portion of it, either verbatim or with modifications. Each -licensee is addressed as "you". - -1. You may copy and distribute verbatim copies of the Program''s source -code as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this -General Public License and to the absence of any warranty; and give any -other recipients of the Program a copy of this General Public License -along with the Program. You may charge a fee for the physical act of -transferring a copy. - -2. You may modify your copy or copies of the Program or any portion of -it, and copy and distribute such modifications under the terms of Paragraph -1 above, provided that you also do the following: - -a) cause the modified files to carry prominent notices stating that -you changed the files and the date of any change; and - -b) cause the whole of any work that you distribute or publish, that -in whole or in part contains the Program or any part thereof, either -with or without modifications, to be licensed at no charge to all -third parties under the terms of this General Public License (except -that you may choose to grant warranty protection to some or all -third parties, at your option). - -c) If the modified program normally reads commands interactively when -run, you must cause it, when started running for such interactive use -in the simplest and most usual way, to print or display an -announcement including an appropriate copyright notice and a notice -that there is no warranty (or else, saying that you provide a -warranty) and that users may redistribute the program under these -conditions, and telling the user how to view a copy of this General -Public License. - -d) You may charge a fee for the physical act of transferring a -copy, and you may at your option offer warranty protection in -exchange for a fee. - -Mere aggregation of another independent work with the Program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other work under the scope of these terms. - -3. You may copy and distribute the Program (or a portion or derivative of -it, under Paragraph 2) in object code or executable form under the terms of -Paragraphs 1 and 2 above provided that you also do one of the following: - -a) accompany it with the complete corresponding machine-readable -source code, which must be distributed under the terms of -Paragraphs 1 and 2 above; or, - -b) accompany it with a written offer, valid for at least three -years, to give any third party free (except for a nominal charge -for the cost of distribution) a complete machine-readable copy of the -corresponding source code, to be distributed under the terms of -Paragraphs 1 and 2 above; or, - -c) accompany it with the information you received as to where the -corresponding source code may be obtained. (This alternative is -allowed only for noncommercial distribution and only if you -received the program in object code or executable form alone.) - -Source code for a work means the preferred form of the work for making -modifications to it. For an executable file, complete source code means -all the source code for all modules it contains; but, as a special -exception, it need not include source code for modules which are standard -libraries that accompany the operating system on which the executable -file runs, or for standard header files or definitions files that -accompany that operating system. - -4. You may not copy, modify, sublicense, distribute or transfer the -Program except as expressly provided under this General Public License. -Any attempt otherwise to copy, modify, sublicense, distribute or transfer -the Program is void, and will automatically terminate your rights to use -the Program under this License. However, parties who have received -copies, or rights to use copies, from you under this General Public -License will not have their licenses terminated so long as such parties -remain in full compliance. - -5. By copying, distributing or modifying the Program (or any work based -on the Program) you indicate your acceptance of this license to do so, -and all its terms and conditions. - -6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the original -licensor to copy, distribute or modify the Program subject to these -terms and conditions. You may not impose any further restrictions on the -recipients'' exercise of the rights granted herein. - -7. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of the license which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -the license, you may choose any version ever published by the Free Software -Foundation. - -8. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - -NO WARRANTY - -9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - -10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -Appendix: How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest -possible use to humanity, the best way to achieve this is to make it -free software which everyone can redistribute and change under these -terms. - -To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey -the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - -Copyright (C) 19yy - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - -Gnomovision version 69, Copyright (C) 19xx name of author -Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w''. -This is free software, and you are welcome to redistribute it -under certain conditions; type `show c'' for details. - -The hypothetical commands `show w'' and `show c'' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w'' and `show -c''; they could even be mouse-clicks or menu items--whatever suits your -program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in the -program `Gnomovision'' (a program to direct compilers to make passes -at assemblers) written by James Hacker. - -, 1 April 1989 -Ty Coon, President of Vice - -That''s all there is to it! \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0+.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-1.0+.yml deleted file mode 100644 index 7a5345f0357..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0+.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-1.0 -notes: this is a license from fossology license reference - GPL-1.0+ (GNU General Public License v1.0 or later) http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-1.0.txt deleted file mode 100644 index 6c80ff95c16..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0.txt +++ /dev/null @@ -1,250 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 - - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The license agreements of most software companies try to keep users -at the mercy of those companies. By contrast, our General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. The -General Public License applies to the Free Software Foundation''s -software and to any other program whose authors commit to using it. -You can use it for your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Specifically, the General Public License is designed to make -sure that you have the freedom to give away or sell copies of free -software, that you receive source code or can get it if you want it, -that you can change the software or use pieces of it in new free -programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of a such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must tell them their rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author''s protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors'' reputations. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any program or other work which -contains a notice placed by the copyright holder saying it may be -distributed under the terms of this General Public License. The -"Program", below, refers to any such program or work, and a "work based -on the Program" means either the Program or any work containing the -Program or a portion of it, either verbatim or with modifications. Each -licensee is addressed as "you". - - 1. You may copy and distribute verbatim copies of the Program''s source -code as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this -General Public License and to the absence of any warranty; and give any -other recipients of the Program a copy of this General Public License -along with the Program. You may charge a fee for the physical act of -transferring a copy. - - 2. You may modify your copy or copies of the Program or any portion of -it, and copy and distribute such modifications under the terms of Paragraph -1 above, provided that you also do the following: - - a) cause the modified files to carry prominent notices stating that - you changed the files and the date of any change; and - - b) cause the whole of any work that you distribute or publish, that - in whole or in part contains the Program or any part thereof, either - with or without modifications, to be licensed at no charge to all - third parties under the terms of this General Public License (except - that you may choose to grant warranty protection to some or all - third parties, at your option). - - c) If the modified program normally reads commands interactively when - run, you must cause it, when started running for such interactive use - in the simplest and most usual way, to print or display an - announcement including an appropriate copyright notice and a notice - that there is no warranty (or else, saying that you provide a - warranty) and that users may redistribute the program under these - conditions, and telling the user how to view a copy of this General - Public License. - - d) You may charge a fee for the physical act of transferring a - copy, and you may at your option offer warranty protection in - exchange for a fee. - -Mere aggregation of another independent work with the Program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other work under the scope of these terms. - - 3. You may copy and distribute the Program (or a portion or derivative of -it, under Paragraph 2) in object code or executable form under the terms of -Paragraphs 1 and 2 above provided that you also do one of the following: - - a) accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of - Paragraphs 1 and 2 above; or, - - b) accompany it with a written offer, valid for at least three - years, to give any third party free (except for a nominal charge - for the cost of distribution) a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of - Paragraphs 1 and 2 above; or, - - c) accompany it with the information you received as to where the - corresponding source code may be obtained. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form alone.) - -Source code for a work means the preferred form of the work for making -modifications to it. For an executable file, complete source code means -all the source code for all modules it contains; but, as a special -exception, it need not include source code for modules which are standard -libraries that accompany the operating system on which the executable -file runs, or for standard header files or definitions files that -accompany that operating system. - - 4. You may not copy, modify, sublicense, distribute or transfer the -Program except as expressly provided under this General Public License. -Any attempt otherwise to copy, modify, sublicense, distribute or transfer -the Program is void, and will automatically terminate your rights to use -the Program under this License. However, parties who have received -copies, or rights to use copies, from you under this General Public -License will not have their licenses terminated so long as such parties -remain in full compliance. - - 5. By copying, distributing or modifying the Program (or any work based -on the Program) you indicate your acceptance of this license to do so, -and all its terms and conditions. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the original -licensor to copy, distribute or modify the Program subject to these -terms and conditions. You may not impose any further restrictions on the -recipients'' exercise of the rights granted herein. - - 7. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of the license which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -the license, you may choose any version ever published by the Free Software -Foundation. - - 8. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - Appendix: How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to humanity, the best way to achieve this is to make it -free software which everyone can redistribute and change under these -terms. - - To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey -the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) 19yy - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 1, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19xx name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w''. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c'' for details. - -The hypothetical commands `show w'' and `show c'' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w'' and `show -c''; they could even be mouse-clicks or menu items--whatever suits your -program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - program `Gnomovision'' (a program to direct compilers to make passes - at assemblers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -That''s all there is to it! \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-1.0.yml deleted file mode 100644 index 2ca3a5f03ff..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-1.0 -notes: this is a license from fossology license reference GPL-1.0 (GNU General Public License - 1.0) http://www.gnu.org/licenses/gpl-1.0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-bison-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-bison-exception.txt deleted file mode 100644 index faed14decd7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-bison-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v2+ text here - -Bison Exception - -As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn''t itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - -This special exception was added by the Free Software Foundation in version 2.2 of Bison. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-bison-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-bison-exception.yml deleted file mode 100644 index c1f9776e796..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-bison-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0-plus WITH bison-exception-2.2 -notes: this is a license from fossology license reference GPL-2.0+-with-bison-exception (GNU - General Public License v2.0+ w/Bison exception) diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-classpath-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-classpath-exception.txt deleted file mode 100644 index daa0abad44d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-classpath-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v2+ text here - -Class Path Exception - -Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. - -As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-classpath-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-classpath-exception.yml deleted file mode 100644 index 64c867bded2..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+-with-classpath-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0-plus WITH classpath-exception-2.0 -notes: this is a license from fossology license reference - GPL-2.0+-with-classpath-exception (GPL-2.0+-with-classpath-exception) diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+.txt deleted file mode 100644 index 03bffc5f1da..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+.txt +++ /dev/null @@ -1,130 +0,0 @@ -GNU GENERAL PUBLIC LICENSE - -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation''s software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. - -Also, for each author''s protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors'' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone''s free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program''s source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. -b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. -c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: - -a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) -The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients'' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the program''s name and an idea of what it does. -Copyright (C) yyyy name of author - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this when it starts in an interactive mode: - -Gnomovision version 69, Copyright (C) year name of author -Gnomovision comes with ABSOLUTELY NO WARRANTY; for details -type `show w''. This is free software, and you are welcome -to redistribute it under certain conditions; type `show c'' -for details. -The hypothetical commands `show w'' and `show c'' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w'' and `show c''; they could even be mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright -interest in the program `Gnomovision'' -(which makes passes at compilers) written -by James Hacker. - -signature of Ty Coon, 1 April 1989 -Ty Coon, President of Vice -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+.yml deleted file mode 100644 index 63a34aff764..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0+.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0 -notes: this is a license from fossology license reference - GPL-2.0+ (GNU General Public License v2.0 or later) http://www.opensource.org/licenses/GPL-2.0 diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-bison-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-bison-exception.txt deleted file mode 100644 index 56924a537ef..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-bison-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v2 text here - -Bison Exception - -As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn''t itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - -This special exception was added by the Free Software Foundation in version 2.2 of Bison. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-bison-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-bison-exception.yml deleted file mode 100644 index 6459ec85b0f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-bison-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0 WITH bison-exception-2.2 -notes: this is a license from fossology license reference - GPL-2.0-with-bison-exception (GNU General Public License v2.0 w/Bison exception) diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-classpath-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-classpath-exception.txt deleted file mode 100644 index aa7345a4019..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-classpath-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v2 license text here - -Class Path Exception - -Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. - -As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-classpath-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-classpath-exception.yml deleted file mode 100644 index 4ae9a65da0e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-classpath-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0 WITH classpath-exception-2.0 -notes: this is a license from fossology license reference GPL-2.0-with-classpath-exception (GNU - General Public License v2.0 w/Classpath exception) http://www.gnu.org/software/classpath/license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-font-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-font-exception.txt deleted file mode 100644 index 33ddba4b7f0..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-font-exception.txt +++ /dev/null @@ -1,5 +0,0 @@ -insert GPL v2 text here - -Font Exception - -As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-font-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-font-exception.yml deleted file mode 100644 index d4a7f045553..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-font-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0 WITH font-exception-gpl -notes: this is a license from fossology license reference GPL-2.0-with-font-exception (GNU General - Public License v2.0 w/Font exception) http://www.gnu.org/licenses/gpl-faq.html#FontException diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-gcc-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-gcc-exception.txt deleted file mode 100644 index a049778a9a2..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-gcc-exception.txt +++ /dev/null @@ -1,4 +0,0 @@ -insert GPL v2 text here - -GCC Linking Exception -In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combine executable.) \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-gcc-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-gcc-exception.yml deleted file mode 100644 index e13dcdc3f5e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-2.0-with-gcc-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-2.0 WITH gcc-linking-exception-2.0 -notes: this is a license from fossology license reference GPL-2.0-with-GCC-exception (GNU General - Public License v2.0 w/GCC Runtime Library exception) diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-bison-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-bison-exception.txt deleted file mode 100644 index f5bae9f0d61..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-bison-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v3+ text here - -Bison Exception - -As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn''t itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - -This special exception was added by the Free Software Foundation in version 2.2 of Bison. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-bison-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-bison-exception.yml deleted file mode 100644 index b967ec2daf3..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-bison-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-3.0-plus WITH bison-exception-2.2 -notes: this is a license from fossology license reference - GPL-3.0+-with-bison-exception (GNU General Public License v3.0+ w/Bison exception) diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-classpath-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-classpath-exception.txt deleted file mode 100644 index c66e20b6107..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-classpath-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v3+ license text here - -Class Path Exception - -Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. - -As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-classpath-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-classpath-exception.yml deleted file mode 100644 index 96e311d7cfb..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0+-with-classpath-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-3.0-plus WITH classpath-exception-2.0 -notes: this is a license from fossology license reference GPL-3.0+-with-classpath-exception - (GPL-3.0+-with-classpath-exception) diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-autoconf-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-autoconf-exception.txt deleted file mode 100644 index 931f8b412d5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-autoconf-exception.txt +++ /dev/null @@ -1,26 +0,0 @@ -insert GPL v3 text here - -AUTOCONF CONFIGURE SCRIPT EXCEPTION - -Version 3.0, 18 August 2009 - -Copyright © 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -This Exception is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. - -The purpose of this Exception is to allow distribution of Autoconf''s typical output under terms of the recipient''s choice (including proprietary). - -0. Definitions. -"Covered Code" is the source or object code of a version of Autoconf that is a covered work under this License. - -"Normally Copied Code" for a version of Autoconf means all parts of its Covered Code which that version can copy from its code (i.e., not from its input file) into its minimally verbose, non-debugging and non-tracing output. - -"Ineligible Code" is Covered Code that is not Normally Copied Code. - -1. Grant of Additional Permission. -You have permission to propagate output of Autoconf, even if such propagation would otherwise violate the terms of GPLv3. However, if by modifying Autoconf you cause any Ineligible Code of the version you received to become Normally Copied Code of your modified version, then you void this Exception for the resulting covered work. If you convey that resulting covered work, you must remove this Exception in accordance with the second paragraph of Section 7 of GPLv3. - -2. No Weakening of Autoconf Copyleft. -The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of Autoconf. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-autoconf-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-autoconf-exception.yml deleted file mode 100644 index 63c7ef2222c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-autoconf-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-3.0 WITH autoconf-exception-3.0 -notes: this is a license from fossology license reference GPL-3.0-with-autoconf-exception (GNU - General Public License v3.0 w/Autoconf exception) http://www.gnu.org/licenses/autoconf-exception-3.0.html diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-bison-exception.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-bison-exception.txt deleted file mode 100644 index 5fce5ebaae3..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-bison-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v3 text here - -Bison Exception - -As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn''t itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - -This special exception was added by the Free Software Foundation in version 2.2 of Bison. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-bison-exception.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-bison-exception.yml deleted file mode 100644 index 9cbdae44c9b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0-with-bison-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-3.0 WITH bison-exception-2.2 -notes: this is a license from fossology license reference GPL-3.0-with-bison-exception (GNU - General Public License v3.0 w/Bison exception) diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0.txt b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0.txt deleted file mode 100644 index b75b2fbf771..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0.txt +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers'' and authors'' protection, the GPL clearly explains -that there is no warranty for this free software. For both users'' and -authors'' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users'' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work''s -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users'' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work''s -users, your or third parties'' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program''s source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation''s users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party''s predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor''s "contributor version". - - A contributor''s "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor''s essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient''s use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others'' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy''s -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w''. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c'' for details. - -The hypothetical commands `show w'' and `show c'' should show the appropriate -parts of the General Public License. Of course, your program''s commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0.yml b/tests/licensedcode/data/more_licenses/licenses/gpl-3.0.yml deleted file mode 100644 index a3fb8c3c1e0..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gpl-3.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gpl-3.0 -notes: this is a license from fossology license reference - GPL-3.0 (GNU General Public License 3.0) http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/gsoap-1.3b.txt b/tests/licensedcode/data/more_licenses/licenses/gsoap-1.3b.txt deleted file mode 100644 index 9b847c7dcb4..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gsoap-1.3b.txt +++ /dev/null @@ -1,158 +0,0 @@ -gSOAP Public License -Version 1.3b -The gSOAP public license is derived from the Mozilla Public License (MPL1.1). The sections that were deleted from the original MPL1.1 text are 1.0.1, 2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last sentence), and 3.6 (simplified). -1 DEFINITIONS. - - sep 0mm -1.0.1. -1.1. "Contributor" - means each entity that creates or contributes to the creation of Modifications. -1.2. "Contributor Version" - means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. -1.3. "Covered Code" - means the Original Code, or Modifications or the combination of the Original Code, and Modifications, in each case including portions thereof. -1.4. "Electronic Distribution Mechanism" - means a mechanism generally accepted in the software development community for the electronic transfer of data. -1.5. "Executable" - means Covered Code in any form other than Source Code. -1.6. "Initial Developer" - means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. -1.7. "Larger Work" - means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. -1.8. "License" - means this document. -1.8.1. "Licensable" - means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.9. "Modifications" - means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - - sep 0mm - A. - Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - B. - Any new file that contains any part of the Original Code, or previous Modifications. - -1.10. "Original Code" - means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. -1.10.1. "Patent Claims" - means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. -1.11. "Source Code" - means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. -1.12. "You" (or "Your") - means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2 SOURCE CODE LICENSE. - - sep 0mm -2.1. The Initial Developer Grant. - - The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - - sep 0mm - (a) - under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and - (b) - under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell ("offer to sell and import") the Original Code, Modifications, or portions thereof, but solely to the extent that any such patent is reasonably necessary to enable You to utilize, alone or in combination with other software, the Original Code, Modifications, or any combination or portions thereof. - (c) - (d) - -2.2. Contributor Grant. - - Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - - sep 0mm - (a) - under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and - (b) - under patents now or hereafter owned or controlled by Contributor, to make, have made, use and sell ("offer to sell and import") the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to utilize, alone or in combination with other software, the Contributor Version (or portions thereof). - (c) - (d) - -3 DISTRIBUTION OBLIGATIONS. - - sep 0mm -3.1. Application of License. - - The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients'' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. -3.2. Availability of Source Code. - - Any Modification created by You will be provided to the Initial Developer in Source Code form and are subject to the terms of the License. -3.3. Description of Modifications. - - You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. -3.4. Intellectual Property Matters. - - sep 0mm - (a) Third Party Claims. - If Contributor has knowledge that a license under a third party''s intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - (b) Contributor APIs. - If Contributor''s Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. - (c) Representations. - Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor''s Modifications are Contributor''s original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. - - You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients'' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. -3.6. Distribution of Executable Versions. - - You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient''s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. If you distribute executable versions containing Covered Code as part of a product, you must reproduce the notice in Exhibit B in the documentation and/or other materials provided with the product. -3.7. Larger Works. - - You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. -3.8. Restrictions. - - You may not remove any product identification, copyright, proprietary notices or labels from gSOAP. - -4 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. -5 APPLICATION OF THIS LICENSE. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. -6 VERSIONS OF THE LICENSE. - - sep 0mm -6.1. New Versions. - - Grantor may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. -6.2. Effect of New Versions. - - Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License. -6.3. Derivative Works. - - If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrase "gSOAP" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the gSOAP Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7 DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND ANY WARRANTY THAT MAY ARISE BY REASON OF TRADE USAGE, CUSTOM, OR COURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, YOU ACKNOWLEDGE THAT THE SOFTWARE IS PROVIDED "AS IS" AND THAT THE AUTHORS DO NOT WARRANT THE SOFTWARE WILL RUN UNINTERRUPTED OR ERROR FREE. LIMITED LIABILITY THE ENTIRE RISK AS TO RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. UNDER NO CIRCUMSTANCES WILL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND OR NATURE WHATSOEVER, WHETHER BASED ON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, ARISING OUT OF OR IN ANY WAY RELATED TO THE SOFTWARE, EVEN IF THE AUTHORS HAVE BEEN ADVISED ON THE POSSIBILITY OF SUCH DAMAGE OR IF SUCH DAMAGE COULD HAVE BEEN REASONABLY FORESEEN, AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY EXCLUSIVE REMEDY PROVIDED. SUCH LIMITATION ON DAMAGES INCLUDES, BUT IS NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, LOST PROFITS, LOSS OF DATA OR SOFTWARE, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION OR IMPAIRMENT OF OTHER GOODS. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR THE COSTS OF PROCUREMENT OF SUBSTITUTE SOFTWARE OR SERVICES. YOU ACKNOWLEDGE THAT THIS SOFTWARE IS NOT DESIGNED FOR USE IN ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS SUCH AS OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR CONTROL, OR LIFE-CRITICAL APPLICATIONS. THE AUTHORS EXPRESSLY DISCLAIM ANY LIABILITY RESULTING FROM USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS AND ACCEPTS NO LIABILITY IN RESPECT OF ANY ACTIONS OR CLAIMS BASED ON THE USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS BY YOU. FOR PURPOSES OF THIS PARAGRAPH, THE TERM "LIFE-CRITICAL APPLICATION" MEANS AN APPLICATION IN WHICH THE FUNCTIONING OR MALFUNCTIONING OF THE SOFTWARE MAY RESULT DIRECTLY OR INDIRECTLY IN PHYSICAL INJURY OR LOSS OF HUMAN LIFE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. -8 TERMINATION. - - sep 0mm -8.1. - This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -8.2. -8.3. - If You assert a patent infringement claim against Participant alleging that such Participant''s Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. -8.4. - In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9 LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. -10 U.S. GOVERNMENT END USERS. -11 MISCELLANEOUS. -12 RESPONSIBILITY FOR CLAIMS. -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. -EXHIBIT A. -"The contents of this file are subject to the gSOAP Public License Version 1.3 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - - http://www.cs.fsu.edu/~engelen/soaplicense.html - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. -The Original Code of the gSOAP Software is: stdsoap.h, stdsoap2.h, stdsoap.c, stdsoap2.c, stdsoap.cpp, stdsoap2.cpp, soapcpp2.h, soapcpp2.c, soapcpp2_lex.l, soapcpp2_yacc.y, error2.h, error2.c, symbol2.c, init2.c, soapdoc2.html, and soapdoc2.pdf, httpget.h, httpget.c, stl.h, stldeque.h, stllist.h, stlvector.h, stlset.h. -The Initial Developer of the Original Code is Robert A. van Engelen. Portions created by Robert A. van Engelen are Copyright (C) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved. -Contributor(s): - -"________________________." - -[Note: The text of this Exhibit A may differ slightly form the text of the notices in the Source Code files of the Original code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] -EXHIBIT B. -"Part of the software embedded in this product is gSOAP software. -Portions created by gSOAP are Copyright (C) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved. -THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC 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 AUTHOR 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/tests/licensedcode/data/more_licenses/licenses/gsoap-1.3b.yml b/tests/licensedcode/data/more_licenses/licenses/gsoap-1.3b.yml deleted file mode 100644 index 52362cf352f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/gsoap-1.3b.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - gsoap-1.3b -notes: this is a license from fossology license reference gSOAP-1.3b (gSOAP Public License 1.3b) - http://www.cs.fsu.edu/~engelen/license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/helix.realnetworks-eula.txt b/tests/licensedcode/data/more_licenses/licenses/helix.realnetworks-eula.txt deleted file mode 100644 index 9fd6dd34e86..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/helix.realnetworks-eula.txt +++ /dev/null @@ -1,39 +0,0 @@ -Helix DNA Technology Binary Research Use License - -REDISTRIBUTION NOT PERMITTED - -This Helix DNA Technology Binary Research Use License ("License") is a legal agreement between You and RealNetworks, Inc. and its suppliers and licensors (collectively, "RealNetworks") for the binary versions of the Helix DNA Compiled Binaries distributed under this License ("Software"), which are made available from the "Helix DNA Compiled Binaries" section of the www.helixcommunity.org Web site. "You" means an individual, or a legal entity acting by and through an individual or individuals, exercising rights either under this License. For legal entities, "You" includes any entity that by majority voting interest controls, is controlled by, or is under common control with You. The terms and conditions for this License are as follows: - -By clicking on or accepting the "I AGREE TO THE ABOVE LICENSE TERMS" option below, or by installing, copying or otherwise using the Software, You agree to be bound by the terms of this License Agreement. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE AGREEMENT, CLICK THE "I DO NOT AGREE TO THE ABOVE LICENSE TERMS" BUTTON AND/OR DO NOT INSTALL THE SOFTWARE. - -YOU AGREE THAT YOUR USE OF THE SOFTWARE ACKNOWLEDGES THAT YOU HAVE READ THIS LICENSE, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. - -1. GRANT OF LICENSE FOR INTERNAL RESEARCH AND DEVELOPMENT WORK. Subject to the restrictions set forth herein, RealNetworks hereby grants to You a non-exclusive, non-sublicensable, personal license to use the Software in object code and any accompanying documentation ("Documentation") solely for Your internal, non-commercial evaluation and research use, provided that You may only install and use a reasonable number of copies of the Software on computers owned or controlled by You and located on Your premises. As part of such use You may combine the Software with other Helix software properly licensed to You under the terms of the RealNetworks Community Source License Agreement or the RealNetworks Public Source License Agreement, but You may not otherwise create derivative works of the Software or Documentation. - -2. LICENSE RESTRICTIONS. - -a) You may not: (i) permit other individuals to use the Software except under the terms listed above; (ii) modify, translate, reverse engineer, decompile, disassemble or use any other method (including "clean room" development) to learn the source code of the Software (except to the extent that this restriction is expressly prohibited by law); (iii) rent, lease, transfer, or otherwise transfer rights to the Software or Documentation; (iv) remove any proprietary notices or labels on the Software or Documentation; (v) use the Software to encode, reproduce or copy any material or intellectual property You do not have the right to encode, reproduce, or copy; (vi) use the Software to develop any application that has the capability of transcoding or converting RealAudio or RealVideo Files into any other file format ("Transcode" means to alter the current encoding or form of media files that was decoded from its original form, including by way of example but not limited to by way of example but not limited to: decompression of an audio or video stream and recompression using a different compression algorithm); or (vii) make available to any third party the results of any evaluation or testing of the Software by You under this License. Any such forbidden use shall immediately terminate Your license to the Software. - -b) You agree that You shall only use the Software and Documentation in a manner that complies with all applicable laws in the jurisdictions in which You use the Software and Documentation, including, but not limited to, applicable restrictions concerning copyright and other intellectual property rights. - -c) You may not use the Software in an attempt to, or in conjunction with, any device, program or service designed to circumvent technological measures employed to control access to, or the rights in, a digital media content file or other work protected by the copyright laws of any jurisdiction. - -d) Certain components of the Software may embody a serial copying management system required by the laws of the United States. You may not circumvent or attempt to circumvent this system by any means. - -3. COPIES OF SOFTWARE AND ENHANCEMENTS. This license does not grant You any right to any enhancement or update. - -4. TITLE. Title, ownership, rights, and intellectual property rights in and to the Software and Documentation shall remain in RealNetworks. The Software is protected by the copyright laws of the United States and international copyright treaties. Title, ownership rights and intellectual property rights in and to the content accessed through the Software including the content contained in the Software media demonstration files shall be retained by the applicable content owner and may be protected by applicable copyright or other law. This license gives You no rights to such content. - -5. DISCLAIMER OF WARRANTY & LIMIT OF LIABILITY. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, REALNETWORKS FURTHER DISCLAIMS ALL WARRANTIES, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF THE USE OR PERFORMANCE OF THE SOFTWARE AND DOCUMENTATION REMAINS WITH YOU. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL REALNETWORKS OR ITS SUPPLIERS BE LIABLE FOR ANY CONSEQUENTIAL, INCIDENTAL, INDIRECT, SPECIAL, PUNITIVE, OR OTHER DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) ARISING OUT OF THIS LICENSE OR THE USE OF OR INABILITY TO USE THE PRODUCT, EVEN IF REALNETWORKS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. REALNETWORKS'' TOTAL LIABLITY FOR ANY DIRECT DAMAGES SHALL NOT EXCEED FIVE DOLLARS ($5.00). BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. - -6. INDEMNIFICATION. This Software is intended for use only with properly licensed media, content and content creation tools. It is Your responsibility to ascertain whether any copyright, patent or other licenses are necessary and to obtain any licenses to such media and content. You agree to use only those materials for which You have the necessary patent, copyright and other permissions, licenses, and/or clearances. You agree to hold harmless, indemnify and defend RealNetworks, its officers, directors and employees, from and against any losses, damages, fines and expenses (including attorneys'' fees and costs) arising out of or relating to any claims that You have encoded, copied, compressed, enabled the "Allow Recording" feature, enabled the "Allow Download" feature, or copied, used, published, displayed, or transmitted any content or materials (other than materials provided by RealNetworks specifically for Your use) in connection with the Software in violation of another party''s rights If You are importing the Software from the United States, You shall indemnify and hold RealNetworks harmless from and against any import and export duties or other claims arising from such importation. - -7. TERMINATION. This License and Your right to use this Software automatically terminate if You fail to comply with any material provision of this License. RealNetworks may terminate this License at any time by delivering notice to You and You may terminate this License at any time by destroying or erasing Your copy of the Software. Upon termination of this License, You agree to destroy or erase the Software. - -8. NO ASSIGNMENT. This License is personal to You, and may not be assigned without RealNetworks'' express written consent. - -9. U.S. GOVERNMENT RESTRICTED RIGHTS. U.S. GOVERNMENT RESTRICTED RIGHTS: This Software and documentation are provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the Government is subject to restrictions set forth in subparagraphs (a) through (d) of the Commercial Computer Software--Restricted Rights at FAR 52.227-19 when applicable, or in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013, and in similar clauses in the NASA FAR supplement, as applicable. Manufacturer is RealNetworks, Inc./2601 Elliott, Suite 1000/Seattle, Washington 98121. You are responsible for complying with all trade regulations and laws both foreign and domestic. You acknowledge that none of the Software or underlying information or technology may be downloaded or otherwise exported or re-exported (i) into (or to a national or resident of) Cuba, Iraq, Libya, Sudan, North Korea, Iran, Syria or any other country subject to a U.S. embargo; or (ii) to anyone on the U.S. Treasury Department''s list of Specially Designated Nationals or the U.S. Commerce Department''s Denied Parties List or Entity List. By using the Software You are agreeing to the foregoing and are representing and warranting that (i) no U.S. federal agency has suspended, revoked, or denied You export privileges, (ii) You are not located in or under the control of a national or resident of any such country or on any such list, and (iii) You will not export or re-export the Software to any prohibited county, or to any prohibited person, entity, or end-user as specified by U.S. export controls. - -10. MISCELLANEOUS. This License Agreement shall constitute the complete and exclusive agreement between us. A separate written agreement with respect to the subject matter hereof shall supersede this instrument to the extent indicated in such separate agreement. This License Agreement may not be modified except in a writing duly signed by an authorized representative of RealNetworks and You. If any provision of this License Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable, and such decision shall not affect the enforceability of such provision under other circumstances, or of the remaining provisions hereof under all circumstances. This License Agreement shall be governed by the laws of the State of Washington without regard to conflicts of law provisions and You consent to the exclusive jurisdiction of the state and federal courts sitting in the State of Washington. This License Agreement will not be governed by the United Nations Convention of Contracts for the International Sale of Goods, the application of which is hereby expressly excluded. - -Copyright ©1995-2002 RealNetworks, Inc. and/or its suppliers. 2601 Elliott Avenue, Suite 1000, Seattle, Washington 98121 U.S.A. The Software may incorporate one or more of the following patents: U.S. Patent #5,917,835; U.S. Patent # 5,854,858; U.S. Patent # 5,917,954. Other U.S. patents pending. All rights reserved. RealNetworks, Helix, RealAudio, and RealVideo are trademarks or registered trademarks of RealNetworks, Inc. diff --git a/tests/licensedcode/data/more_licenses/licenses/helix.realnetworks-eula.yml b/tests/licensedcode/data/more_licenses/licenses/helix.realnetworks-eula.yml deleted file mode 100644 index f05d123e58e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/helix.realnetworks-eula.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - helix -notes: this is a license from fossology license reference Helix.RealNetworks-EULA (Helix DNA - Technology Binary Research Use License) https://helixcommunity.org/beula/ diff --git a/tests/licensedcode/data/more_licenses/licenses/hp.txt b/tests/licensedcode/data/more_licenses/licenses/hp.txt deleted file mode 100644 index 12e1f4c8a35..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/hp.txt +++ /dev/null @@ -1,16 +0,0 @@ -HP SOFTWARE LICENSE TERMS -NO COMMERCIALIZATION, LIMITED DISTRIBUTION PERMITTED - - -THE TERM "SOFTWARE" REFERS TO THIS CODE (WHETHER SOURCE OR OBJECT CODE), ANY COMPONENT OR MODULE THEREOF, ANY INFORMATION (INCLUDING ANY DOCUMENTATION) PROVIDED IN CONNECTION WITH THE SOFTWARE, AND ANY DERIVATIVE OF THESE THINGS. BY DOWNLOADING, ACCESSING OR USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSING AGREEMENT. THE SOFTWARE AND EACH OF ITS COMPONENTS ARE PROTECTED UNDER COPYRIGHT LAWS. HEWLETT-PACKARD COMPANY ("HP") RESERVES ALL RIGHTS EXCEPT THOSE EXPRESSLY GRANTED BY THIS LICENSE AGREEMENT. - -(C) HEWLETT-PACKARD COMPANY, 2004. - -HP IS AGREEING TO LET YOU DOWNLOAD AND USE THE SOFTWARE UNDER THE TERMS OF THIS AGREEMENT WITHOUT ANY FINANCIAL CHARGE. YOU THEREFORE AGREE TO WAIVE ANY AND ALL DAMAGES AGAINST HP RELATING TO DOWNLOAD OR USE OF THE SOFTWARE, OR TO ANY ACT OR OMISSION ON THE PART OF HP, ITS OFFICERS, DIRECTORS, VENDORS, SUPPLIERS, EMPLOYEES OR AGENTS IN CONNECTION WITH THE SOFTWARE. THE BARGAIN BASIS FOR HP''S AGREEMENT TO PERMIT YOUR DOWNLOAD OR USE OF THE SOFTWARE DOES NOT REFLECT ANY ASSUMPTION OF LIABILITY OR DAMAGES ON HP''S BEHALF; IF YOU DO NOT AGREE TO THIS CONDITION AND TO THE OTHER TERMS AND CONDITIONS OF THIS AGREEMENT, YOUR SOLE REMEDY IS TO NOT DOWNLOAD AND TO NOT USE THE SOFTWARE. HP REPRESENTS, AND YOU ACKNOWLEDGE, THAT THE SOFTWARE IS EXPERIMENTAL IN NATURE, IS NOT OF PRODUCT QUALITY, AND MAY HAVE BUGS OR ERRORS, AND THAT ITS SAFETY IS NOT REPRESENTED; IT SHALL BE SOLELY UP TO YOU AND ANY USER TO DETERMINE WHETHER THE SOFTWARE MAY BE SAFELY OR RELIABLY USED FOR ANY PURPOSE. THESE CONDITIONS, AS WELL AS ALL OF THE CONDITIONS STATED BELOW, ARE OF MATERIAL INDUCEMENT FOR HP TO RELEASE THE SOFTWARE; THAT IS TO SAY, WITHOUT A DAMAGES RELEASE AND RELEASE AND DISCLAIMER OF OTHER RIGHTS AND REMEDIES, HP REPRESENTS THAT IT WOULD NOT RELEASE THE SOFTWARE TO YOU. HP DISCLAIMS, AND YOU HEREBY WAIVE, ANY AND ALL WARRANTIES WITH RESPECT TO THE SOFTWARE, INCLUDING WITHOUT LIMITATION ANY WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE, OR MERCHANTABILITY. - -YOU MAY USE THE SOFTWARE FOR NON-COMMERCIAL USE, AT YOUR SOLE RISK AND DISCRETION. "NON-COMMERCIAL USE" MEANS THAT YOU MAY USE THE SOFTWARE FOR PERSONAL USE OR RESEARCH OR ACADEMIC PURPOSES, BUT THAT YOU MAY NOT, DIRECTLY OR INDIRECTLY, (A) INCORPORATE THIS SOFTWARE INTO ANY PRODUCT OFFERED FOR SALE, OR USE THE SOFTWARE TO PROVIDE A SERVICE FOR WHICH A FEE IS CHARGED, (B) SELL ANY PRODUCT OR SERVICE DESIGNED SPECIALLY TO INTERFACE WITH, OR TO ACT AS A MODULE SPECIALLY ADAPTED TO FUNCTION WITH, THE SOFTWARE, OR (C) CHARGE ANY FEE IN CONNECTION WITH THE SOFTWARE. SUBJECT TO THESE LIMITATIONS, YOU MAY MAKE COPIES AND DERIVATIVE WORKS OF THE SOFTWARE AND DISTRIBUTE SUCH COPIES TO OTHER PERSONS PROVIDED THAT SUCH COPIES AND RELATED DISTRIBUTION ARE ACCOMPANIED BY HP''S COPYRIGHT NOTICE AND THIS AGREEMENT AND ARE SUBJECT TO THE TERMS OF THIS AGREEMENT, VERBATIM. - -HP SHALL HAVE NO OBLIGATION TO PROVIDE SUPPORT OR MAINTENANCE FOR, OR TO PROVIDE ANY UPDATES TO, THE SOFTWARE. HP SHALL HAVE NO OBLIGATION TO RESPOND TO QUESTIONS OR TO PROVIDE INFORMATION REGARDING THE SOFTWARE. -THIS AGREEMENT AND ALL MATTERS REGARDING THE SOFTWARE SHALL BE INTERPRETED EXCLUSIVELY BY APPLYING THE LAWS OF THE STATE OF DELAWARE, USA, WITHOUT REGARD TO ITS CONFLICT OF LAWS PRINCIPLES. -ANY VIOLATION OF THIS AGREEMENT AND THESE TERMS WILL BE DEEMED TO CAUSE HP IRREPARABLE HARM. -THESE CONDITIONS SHALL APPLY EVEN IF YOU ADVISE HP TO THE CONTRARY IN WRITING OR OTHERWISE; THIS AGREEMENT MAY NOT BE CONTRADICTED OR ALTERED, EXCEPT BY A WRITTEN AMENDMENT THAT BOTH SPECIFICALLY REFERENCES THIS AGREEMENT AND IS SIGNED BY AN AUTHORIZED REPRESENTATIVE OF HP. diff --git a/tests/licensedcode/data/more_licenses/licenses/hp.yml b/tests/licensedcode/data/more_licenses/licenses/hp.yml deleted file mode 100644 index ccd424ebf2b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/hp.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - hp -notes: this is a license from fossology license reference HP (HP Software License Terms) http://h30097.www3.hp.com/hp_sw_license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/hpnd.txt b/tests/licensedcode/data/more_licenses/licenses/hpnd.txt deleted file mode 100644 index 4652b8581b8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/hpnd.txt +++ /dev/null @@ -1,7 +0,0 @@ -Historical Permission Notice and Disclaimer - - - -Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies[,] [and] that both [that] [the] copyright notice and this permission notice appear in supporting documentation[, and that the name [of] [or ] not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission]. [ makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.] - -[ DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS[,][.] IN NO EVENT SHALL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.] \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/hpnd.yml b/tests/licensedcode/data/more_licenses/licenses/hpnd.yml deleted file mode 100644 index 27731606483..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/hpnd.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - historical -notes: this is a license from fossology license reference HPND (Historic Permission Notice and - Disclaimer) http://www.opensource.org/licenses/HPND diff --git a/tests/licensedcode/data/more_licenses/licenses/ijg.txt b/tests/licensedcode/data/more_licenses/licenses/ijg.txt deleted file mode 100644 index b7ac2997dde..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ijg.txt +++ /dev/null @@ -1,88 +0,0 @@ -Independent JPEG Group License - - -LEGAL ISSUES -============ - -In plain English: - -1. We don''t promise that this software works. (But if you find any bugs, -please let us know!) -2. You can use this software for whatever you want. You don''t have to pay us. -3. You may not pretend that you wrote this software. If you use it in a -program, you must acknowledge somewhere in your documentation that -you''ve used the IJG code. - -In legalese: - -The authors make NO WARRANTY or representation, either express or implied, -with respect to this software, its quality, accuracy, merchantability, or -fitness for a particular purpose. This software is provided "AS IS", and you, -its user, assume the entire risk as to its quality and accuracy. - -This software is copyright (C) 1991-1998, Thomas G. Lane. -All Rights Reserved except as specified below. - -Permission is hereby granted to use, copy, modify, and distribute this -software (or portions thereof) for any purpose, without fee, subject to these -conditions: -(1) If any part of the source code for this software is distributed, then this -README file must be included, with this copyright and no-warranty notice -unaltered; and any additions, deletions, or changes to the original files -must be clearly indicated in accompanying documentation. -(2) If only executable code is distributed, then the accompanying -documentation must state that "this software is based in part on the work of -the Independent JPEG Group". -(3) Permission for use of this software is granted only if the user accepts -full responsibility for any undesirable consequences; the authors accept -NO LIABILITY for damages of any kind. - -These conditions apply to any software derived from or based on the IJG code, -not just to the unmodified library. If you use our work, you ought to -acknowledge us. - -Permission is NOT granted for the use of any IJG author''s name or company name -in advertising or publicity relating to this software or products derived from -it. This software may be referred to only as "the Independent JPEG Group''s -software". - -We specifically permit and encourage the use of this software as the basis of -commercial products, provided that all warranty or liability claims are -assumed by the product vendor. - - -ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, -sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. -ansi2knr.c is NOT covered by the above copyright and conditions, but instead -by the usual distribution terms of the Free Software Foundation; principally, -that you must include source code if you redistribute it. (See the file -ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part -of any program generated from the IJG code, this does not limit you more than -the foregoing paragraphs do. - -The Unix configuration script "configure" was produced with GNU Autoconf. -It is copyright by the Free Software Foundation but is freely distributable. -The same holds for its supporting scripts (config.guess, config.sub, -ltconfig, ltmain.sh). Another support script, install-sh, is copyright -by M.I.T. but is also freely distributable. - -It appears that the arithmetic coding option of the JPEG spec is covered by -patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot -legally be used without obtaining one or more licenses. For this reason, -support for arithmetic coding has been removed from the free JPEG software. -(Since arithmetic coding provides only a marginal gain over the unpatented -Huffman mode, it is unlikely that very many implementations will support it.) -So far as we are aware, there are no patent restrictions on the remaining -code. - -The IJG distribution formerly included code to read and write GIF files. -To avoid entanglement with the Unisys LZW patent, GIF reading support has -been removed altogether, and the GIF writer has been simplified to produce -"uncompressed GIFs". This technique does not use the LZW algorithm; the -resulting GIF files are larger than usual, but are readable by all standard -GIF decoders. - -We are required to state that -"The Graphics Interchange Format(c) is the Copyright property of -CompuServe Incorporated. GIF(sm) is a Service Mark property of -CompuServe Incorporated." \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ijg.yml b/tests/licensedcode/data/more_licenses/licenses/ijg.yml deleted file mode 100644 index 939693f0cae..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ijg.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ijg -notes: this is a license from fossology license reference IJG (Independent JPEG Group License) - http://spdx.org/licenses/IJG#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/imlib2.txt b/tests/licensedcode/data/more_licenses/licenses/imlib2.txt deleted file mode 100644 index e7458f62595..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/imlib2.txt +++ /dev/null @@ -1,33 +0,0 @@ -Imlib2 License - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies of the Software and its Copyright notices. In addition publicly -documented acknowledgment must be given that this software has been used if no -source code of this software is made available publicly. Making the source -available publicly means including the source for this software with the -distribution, or a method to get this software via some reasonable mechanism -(electronic transfer via a network or media) as well as making an offer to -supply the source on request. This Copyright notice serves as an offer to -supply the source on on request as well. Instead of this, supplying -acknowledgments of use of this software in either Copyright notices, Manuals, -Publicity and Marketing documents or any documentation provided with any -product containing this software. This License does not apply to any software -that links to the libraries provided by this software (statically or -dynamically), but only to the software provided. - -Please see the COPYING-PLAIN for a plain-english explanation of this notice -and its intent. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/imlib2.yml b/tests/licensedcode/data/more_licenses/licenses/imlib2.yml deleted file mode 100644 index 6581a095448..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/imlib2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - imlib2 -notes: this is a license from fossology license reference Imlib2 (Imlib2 License) http://spdx.org/licenses/Imlib2#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/intel-acpi.txt b/tests/licensedcode/data/more_licenses/licenses/intel-acpi.txt deleted file mode 100644 index 7f92d12cc5c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/intel-acpi.txt +++ /dev/null @@ -1,21 +0,0 @@ -ACPI - Software License Agreement - -Software License Agreement IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. - -Do not use or load this software and any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. - - 1. COPYRIGHT NOTICE Some or all of this work - Copyright © 1999-2005, Intel Corp. All rights reserved. - 2. LICENSE - 2.1. This is your license from Intel Corp. under its intellectual property rights. You may have additional license terms from the party that provided you this software, covering your right to use that party''s intellectual property rights. - 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a copy of the source code appearing in this file ("Covered Code") an irrevocable, perpetual, worldwide license under Intel''s copyrights in the base code distributed originally by Intel ("Original Intel Code") to copy, make derivatives, distribute, use and display any portion of the Covered Code in any form, with the right to sublicense such rights; and - 2.3. Intel grants Licensee a non-exclusive and non-transferable patent license (with the right to sublicense), under only those claims of Intel patents that are infringed by the Original Intel Code, to make, use, sell, offer to sell, and import the Covered Code and derivative works thereof solely to the minimum extent necessary to exercise the above copyright license, and in no event shall the patent license extend to any additions to or modifications of the Original Intel Code. No other license or right is granted directly or by implication, estoppel or otherwise; The above copyright and patent license is granted only if the following conditions are met: - 3. CONDITIONS - 3.1. Redistribution of Source with Rights to Further Distribute Source. Redistribution of source code of any substantial portion of the Covered Code or modification with rights to further distribute source must include the above Copyright Notice, the above License, this list of Conditions, and the following Disclaimer and Export Compliance provision. In addition, Licensee must cause all Covered Code to which Licensee contributes to contain a file documenting the changes Licensee made to create that Covered Code and the date of any change. Licensee must include in that file the documentation of any changes made by any predecessor Licensee. Licensee must include a prominent statement that the modification is derived, directly or indirectly, from Original Intel Code. - 3.2. Redistribution of Source with no Rights to Further Distribute Source. Redistribution of source code of any substantial portion of the Covered Code or modification without rights to further distribute source must include the following Disclaimer and Export Compliance provision in the documentation and/or other materials provided with distribution. In addition, Licensee may not authorize further sublicense of source of any portion of the Covered Code, and must include terms to the effect that the license from Licensee to its licensee is limited to the intellectual property embodied in the software Licensee provides to its licensee, and not to intellectual property embodied in modifications its licensee may make. - 3.3. Redistribution of Executable. Redistribution in executable form of any substantial portion of the Covered Code or modification must reproduce the above Copyright Notice, and the following Disclaimer and Export Compliance provision in the documentation and/or other materials provided with the distribution. - 3.4. Intel retains all right, title, and interest in and to the Original Intel Code. - 3.5. Neither the name Intel nor any other trademark owned or controlled by Intel shall be used in advertising or otherwise to promote the sale, use or other dealings in products derived from or relating to the Covered Code without prior written authorization from Intel. - 4. DISCLAIMER AND EXPORT COMPLIANCE - 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. - 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. - 4.3. Licensee shall not export, either directly or indirectly, any of this software or system incorporating such software without first obtaining any required license or other approval from the U. S. Department of Commerce or any other agency or department of the United States Government. In the event Licensee exports any such software from the United States or re-exports any such software from a foreign destination, Licensee shall ensure that the distribution and export/re-export of the software is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations. Licensee agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, software, or service, directly or indirectly, to any country for which the United States government or any agency thereof requires an export license, other governmental approval, or letter of assurance, without first obtaining such license, approval or letter. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/intel-acpi.yml b/tests/licensedcode/data/more_licenses/licenses/intel-acpi.yml deleted file mode 100644 index a27717923ea..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/intel-acpi.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - intel-acpi -notes: this is a license from fossology license reference Intel-ACPI (Intel ACPI Software License - Agreement) https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement diff --git a/tests/licensedcode/data/more_licenses/licenses/intel.txt b/tests/licensedcode/data/more_licenses/licenses/intel.txt deleted file mode 100644 index ebfd9751e8a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/intel.txt +++ /dev/null @@ -1,11 +0,0 @@ -Intel Open Source License - - -Copyright (c) 1996-2000 Intel Corporation All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -• Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -• 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. -• Neither the name of the Intel Corporation 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 INTEL 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. EXPORT LAWS: THIS LICENSE ADDS NO RESTRICTIONS TO THE EXPORT LAWS OF YOUR JURISDICTION. It is licensee''s responsibility to comply with any export regulations applicable in licensee''s jurisdiction. Under CURRENT (May 2000) U.S. export regulations this software is eligible for export from the U.S. and can be downloaded by or otherwise exported or reexported worldwide EXCEPT to U.S. embargoed destinations which include Cuba, Iraq, Libya, North Korea, Iran, Syria, Sudan, Afghanistan and any other country to which the U.S. has embargoed goods and services. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/intel.yml b/tests/licensedcode/data/more_licenses/licenses/intel.yml deleted file mode 100644 index 5ec5e3db504..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/intel.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - intel-bsd-export-control -notes: this is a license from fossology license reference Intel (Intel Open Source License) - http://opensource.org/licenses/Intel diff --git a/tests/licensedcode/data/more_licenses/licenses/ipa.txt b/tests/licensedcode/data/more_licenses/licenses/ipa.txt deleted file mode 100644 index 3a8a343ecbb..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ipa.txt +++ /dev/null @@ -1,93 +0,0 @@ -IPA Font License Agreement v1.0 - - -The Licensor provides the Licensed Program (as defined in Article 1 below) under the terms of this license agreement ("Agreement"). Any use, reproduction or distribution of the Licensed Program, or any exercise of rights under this Agreement by a Recipient (as defined in Article 1 below) constitutes the Recipient''s acceptance of this Agreement. - - -Article 1 (Definitions) - -1. "Digital Font Program" shall mean a computer program containing, or used to render or display fonts. - -2. "Licensed Program" shall mean a Digital Font Program licensed by the Licensor under this Agreement. - -3. "Derived Program" shall mean a Digital Font Program created as a result of a modification, addition, deletion, replacement or any other adaptation to or of a part or all of the Licensed Program, and includes a case where a Digital Font Program newly created by retrieving font information from a part or all of the Licensed Program or Embedded Fonts from a Digital Document File with or without modification of the retrieved font information. - -4. "Digital Content" shall mean products provided to end users in the form of digital data, including video content, motion and/or still pictures, TV programs or other broadcasting content and products consisting of character text, pictures, photographic images, graphic symbols and/or the like. - -5. "Digital Document File" shall mean a PDF file or other Digital Content created by various software programs in which a part or all of the Licensed Program becomes embedded or contained in the file for the display of the font ("Embedded Fonts"). Embedded Fonts are used only in the display of characters in the particular Digital Document File within which they are embedded, and shall be distinguished from those in any Digital Font Program, which may be used for display of characters outside that particular Digital Document File. - -6. "Computer" shall include a server in this Agreement. - -7. "Reproduction and Other Exploitation" shall mean reproduction, transfer, distribution, lease, public transmission, presentation, exhibition, adaptation and any other exploitation. - -8. "Recipient" shall mean anyone who receives the Licensed Program under this Agreement, including one that receives the Licensed Program from a Recipient. - - - -Article 2 (Grant of License) - -The Licensor grants to the Recipient a license to use the Licensed Program in any and all countries in accordance with each of the provisions set forth in this Agreement. However, any and all rights underlying in the Licensed Program shall be held by the Licensor. In no sense is this Agreement intended to transfer any right relating to the Licensed Program held by the Licensor except as specifically set forth herein or any right relating to any trademark, trade name, or service mark to the Recipient. - - - -1. The Recipient may install the Licensed Program on any number of Computers and use the same in accordance with the provisions set forth in this Agreement. - -2. The Recipient may use the Licensed Program, with or without modification in printed materials or in Digital Content as an expression of character texts or the like. - -3. The Recipient may conduct Reproduction and Other Exploitation of the printed materials and Digital Content created in accordance with the preceding Paragraph, for commercial or non-commercial purposes and in any form of media including but not limited to broadcasting, communication and various recording media. - -4. If any Recipient extracts Embedded Fonts from a Digital Document File to create a Derived Program, such Derived Program shall be subject to the terms of this agreement. - -5. If any Recipient performs Reproduction or Other Exploitation of a Digital Document File in which Embedded Fonts of the Licensed Program are used only for rendering the Digital Content within such Digital Document File then such Recipient shall have no further obligations under this Agreement in relation to such actions. - -6. The Recipient may reproduce the Licensed Program as is without modification and transfer such copies, publicly transmit or otherwise redistribute the Licensed Program to a third party for commercial or non-commercial purposes ("Redistribute"), in accordance with the provisions set forth in Article 3 Paragraph 2. - -7. The Recipient may create, use, reproduce and/or Redistribute a Derived Program under the terms stated above for the Licensed Program: provided, that the Recipient shall follow the provisions set forth in Article 3 Paragraph 1 when Redistributing the Derived Program. - - -Article 3 (Restriction) - -The license granted in the preceding Article shall be subject to the following restrictions: - - -1. If a Derived Program is Redistributed pursuant to Paragraph 4 and 7 of the preceding Article, the following conditions must be met : - -(1) The following must be also Redistributed together with the Derived Program, or be made available online or by means of mailing mechanisms in exchange for a cost which does not exceed the total costs of postage, storage medium and handling fees: - -(a) a copy of the Derived Program; and - -(b) any additional file created by the font developing program in the course of creating the Derived Program that can be used for further modification of the Derived Program, if any. - -(2) It is required to also Redistribute means to enable recipients of the Derived Program to replace the Derived Program with the Licensed Program first released under this License (the "Original Program"). Such means may be to provide a difference file from the Original Program, or instructions setting out a method to replace the Derived Program with the Original Program. - -(3) The Recipient must license the Derived Program under the terms and conditions of this Agreement. - -(4) No one may use or include the name of the Licensed Program as a program name, font name or file name of the Derived Program. - -(5) Any material to be made available online or by means of mailing a medium to satisfy the requirements of this paragraph may be provided, verbatim, by any party wishing to do so. - -2. If the Recipient Redistributes the Licensed Program pursuant to Paragraph 6 of the preceding Article, the Recipient shall meet all of the following conditions: - -(1) The Recipient may not change the name of the Licensed Program. - -(2) The Recipient may not alter or otherwise modify the Licensed Program. - -(3) The Recipient must attach a copy of this Agreement to the Licensed Program. - -3. THIS LICENSED PROGRAM IS PROVIDED BY THE LICENSOR "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTY AS TO THE LICENSED PROGRAM OR ANY DERIVED PROGRAM, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXTENDED, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO; PROCUREMENT OF SUBSTITUTED GOODS OR SERVICE; DAMAGES ARISING FROM SYSTEM FAILURE; LOSS OR CORRUPTION OF EXISTING DATA OR PROGRAM; 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 INSTALLATION, USE, THE REPRODUCTION OR OTHER EXPLOITATION OF THE LICENSED PROGRAM OR ANY DERIVED PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -4. The Licensor is under no obligation to respond to any technical questions or inquiries, or provide any other user support in connection with the installation, use or the Reproduction and Other Exploitation of the Licensed Program or Derived Programs thereof. - - -Article 4 (Termination of Agreement) - -1. The term of this Agreement shall begin from the time of receipt of the Licensed Program by the Recipient and shall continue as long as the Recipient retains any such Licensed Program in any way. - -2. Notwithstanding the provision set forth in the preceding Paragraph, in the event of the breach of any of the provisions set forth in this Agreement by the Recipient, this Agreement shall automatically terminate without any notice. In the case of such termination, the Recipient may not use or conduct Reproduction and Other Exploitation of the Licensed Program or a Derived Program: provided that such termination shall not affect any rights of any other Recipient receiving the Licensed Program or the Derived Program from such Recipient who breached this Agreement. - - -Article 5 (Governing Law) - -1. IPA may publish revised and/or new versions of this License. In such an event, the Recipient may select either this Agreement or any subsequent version of the Agreement in using, conducting the Reproduction and Other Exploitation of, or Redistributing the Licensed Program or a Derived Program. Other matters not specified above shall be subject to the Copyright Law of Japan and other related laws and regulations of Japan. - -2. This Agreement shall be construed under the laws of Japan. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ipa.yml b/tests/licensedcode/data/more_licenses/licenses/ipa.yml deleted file mode 100644 index c28b800fa06..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ipa.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ipa-font -notes: this is a license from fossology license reference IPA (IPA Font License) http://www.opensource.org/licenses/IPA diff --git a/tests/licensedcode/data/more_licenses/licenses/ipl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/ipl-1.0.txt deleted file mode 100644 index 1d2935df847..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ipl-1.0.txt +++ /dev/null @@ -1,67 +0,0 @@ -IBM Public License Version 1.0 -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT''S ACCEPTANCE OF THIS AGREEMENT. -1. DEFINITIONS - -"Contribution" means: - - 1. in the case of International Business Machines Corporation ("IBM"), the Original Program, and - 2. in the case of each Contributor, - 1. changes to the Program, and - 2. additions to the Program; - 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. - -"Contributor" means IBM and any other entity that distributes the Program. -"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. - -"Original Program" means the original version of the software accompanying this Agreement as released by IBM, including source code, object code and documentation, if any. - -"Program" means the Original Program and Contributions. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. -2. GRANT OF RIGHTS - - 1. 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. - 2. 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. - 3. 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. - 4. 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. - -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - - 1. it complies with the terms and conditions of this Agreement; and - 2. its license agreement: - 1. 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; - 2. effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - 3. states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - - 2. - 4. 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. - -When the Program is made available in source code form: - - 1. it must be made available under this Agreement; and - 2. a copy of this Agreement must be included with each copy of the Program. - -Each Contributor must include the following in a conspicuous location in the Program: - - Copyright (C) 1996, 1999 International Business Machines Corporation and others. All Rights Reserved. - -In addition, 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. -4. COMMERCIAL DISTRIBUTION - -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. - - -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. -5. NO WARRANTY -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. -6. DISCLAIMER OF LIABILITY -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. -7. GENERAL -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. - -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. 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. - -IBM may publish new versions (including revisions) of this Agreement from time to time. 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. No one other than IBM has the right to modify this Agreement. 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. - -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. diff --git a/tests/licensedcode/data/more_licenses/licenses/ipl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/ipl-1.0.yml deleted file mode 100644 index 1bb7695d1ae..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ipl-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ibmpl-1.0 -notes: this is a license from fossology license reference IPL-1.0 (IBM Public License 1.0) http://www.opensource.org/licenses/ibmpl.php diff --git a/tests/licensedcode/data/more_licenses/licenses/jabber-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/jabber-1.0.txt deleted file mode 100644 index 61b882f1847..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/jabber-1.0.txt +++ /dev/null @@ -1,149 +0,0 @@ -Jabber Open Source License -Version 1.0 - -This Jabber Open Source License (the "License") applies to Jabber Server and related software products as well as any updates or maintenance releases of that software ("Jabber Products") that are distributed by Jabber.Com, Inc. ("Licensor"). Any Jabber Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. - -Preamble - -This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. - -This License complies with the Open Source Definition and has been approved by Open Source Initiative. Software distributed under this License may be marked as "OSI Certified Open Source Software." - -This License provides that: - -1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. - -2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) - -3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) - -4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others. - -5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn''t work properly or causes you any injury or damages. - -6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code. - -7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. - -You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. - -Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. - -New versions of this License may be published from time to time. You may choose to continue to use the license terms in this version of the License or those from the new version. However, only the Licensor has the right to change the License terms as they apply to the Licensed Product. - -This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. - -License Terms - -1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: - -a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. - -b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. - -2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: -Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. -Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. -3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein.No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. - -4. Your Obligations Regarding Distribution. - -a. Application of This License to Your Modifications.As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients'' rights hereunder.However, you may include an additional document offering the additional rights described in Section 4(e). - -b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of said Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -c. Description of Modifications. You must cause any Modifications that you create or to which you contribute, and which you distribute, to contain a file documenting the additions, changes or deletions you made to create or contribute to those Modifications, and the dates of any such additions, changes or deletions. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Product and include the names of the Licensor and any Contributor to the Licensed Product in (i) the Source Code and (ii) in any notice displayed by a version of the Licensed Product you distribute or in related documentation in which you describe the origin or ownership of the Licensed Product.You may not modify or delete any preexisting copyright notices in the Licensed Product. - -d. Intellectual Property Matters. - - i. Third Party Claims. If you have knowledge that a license to a third party''s intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. - - ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - - iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. - -e. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients'' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product.If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product.However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. - -f. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(e) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), (iii) you retain all existing copyright notices in the Licensed Product, and (iv) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. - -g. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. - -5. Inability to Comply Due to Statute or Regulation.If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect.Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. - -6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. - -7. Versions of This License. - -a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. - -b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. - -c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. - -8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -9. Termination. - -a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. - -b. Termination Upon Assertion of Patent Infringement.If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. - -c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. - -d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. - -10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. - -13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa Clara County, California, with the losing party responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -14. Definition of You in This License.You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, control means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. - -Contributor:Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) - -Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) - -License:This Jabber Open Source License. (See first paragraph of License) - -Licensed Product:Any Jabber Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) - -Licensor:Jabber.Com, Inc. (See first paragraph of License) - -Licensed Product:Any Jabber Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) - -Licensor:Jabber.Com, Inc. (See first paragraph of License) - -Modifications:Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) - -Notice:The notice contained in Exhibit A. (See Section 4(e)) - -Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) - -You:This term is defined in Section 14 of this License. - -EXHIBIT A - -The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any nereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. - -License: - -The contents of this file are subject to the Jabber Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.jabber.com/license/ or at http://www.opensource.org/. - -Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -Copyrights: - -Portions created by or assigned to Jabber.com, Inc. are Copyright (c) 1999-2000 Jabber.com, Inc. All Rights Reserved. Contact information for Jabber.com, Inc. is available at http://www.jabber.com/. - -Portions Copyright (c) 1998-1999 Jeremie Miller. - -Acknowledgements - -Special thanks to the Jabber Open Source Contributors for their suggestions and support of Jabber. - -Modifications: \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/jabber-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/jabber-1.0.yml deleted file mode 100644 index 6aec9dbaf85..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/jabber-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - josl-1.0 -notes: this is a license from fossology license reference Jabber-1.0 (Jabber Open Source License) - http://www.opensource.org/licenses/jabberpl.php diff --git a/tests/licensedcode/data/more_licenses/licenses/jisp.yml b/tests/licensedcode/data/more_licenses/licenses/jisp.yml index 3345b5e0b4e..93143f6ccca 100644 --- a/tests/licensedcode/data/more_licenses/licenses/jisp.yml +++ b/tests/licensedcode/data/more_licenses/licenses/jisp.yml @@ -1,5 +1,4 @@ license_expressions: - - nilsson-historical - - libpng + - libmng-2007 notes: this is a license from fossology license reference JISP (Java Index Serialization Package) https://svn.apache.org/repos/asf/forrest/branches/PDF_IMAGE_BRANCH/legal/LICENSE.jisp diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0+.txt b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0+.txt deleted file mode 100644 index 85ece6e0656..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0+.txt +++ /dev/null @@ -1,171 +0,0 @@ -GNU LIBRARY GENERAL PUBLIC LICENSE - -Version 2, June 1991 - -Copyright (C) 1991 Free Software Foundation, Inc. -51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the library GPL. It is -numbered 2 because it goes with version 2 of the ordinary GPL.] -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library. - -Also, for each distributor''s protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors'' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone''s free use or not licensed at all. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don''t assume that anything in it is the same as in the ordinary license. - -The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such. - -Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better. - -However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, while the latter only works together with the library. - -Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Library General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library''s complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also compile or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer''s own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) -b) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. -c) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. -d) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients'' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Library General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Libraries - -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library''s name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the -Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, -Boston, MA 02110-1301, USA. -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library `Frob'' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That''s all there is to it! \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0+.yml b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0+.yml deleted file mode 100644 index 93f73883a43..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0+.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lgpl-2.0 -notes: this is a license from fossology license reference - LGPL-2.0+ (GNU Library General Public License v2 or later) http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0.txt deleted file mode 100644 index 60450b9a13b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0.txt +++ /dev/null @@ -1,171 +0,0 @@ -GNU LIBRARY GENERAL PUBLIC LICENSE - -Version 2, June 1991 - -Copyright (C) 1991 Free Software Foundation, Inc. -51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the library GPL. It is -numbered 2 because it goes with version 2 of the ordinary GPL.] -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library. - -Also, for each distributor''s protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors'' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone''s free use or not licensed at all. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don''t assume that anything in it is the same as in the ordinary license. - -The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such. - -Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better. - -However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, while the latter only works together with the library. - -Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Library General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library''s complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also compile or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer''s own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) -b) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. -c) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. -d) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients'' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Library General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Libraries - -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library''s name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the -Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, -Boston, MA 02110-1301, USA. -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library `Frob'' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That''s all there is to it! \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0.yml deleted file mode 100644 index a1cdb20d08a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lgpl-2.0 -notes: this is a license from fossology license reference LGPL-2.0 (GNU Library General Public - License v2 only) http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1+.txt b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1+.txt deleted file mode 100644 index 21981672744..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1+.txt +++ /dev/null @@ -1,175 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE - -Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts -as the successor of the GNU Library Public License, version 2, hence -the version number 2.1.] - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. - -When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. - -To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. - -To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author''s reputation will not be affected by problems that might be introduced by others. - -Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. - -When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. - -We call this license the "Lesser" General Public License because it does Less to protect the user''s freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. - -For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. - -In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. - -Although the Lesser General Public License is Less protective of the users'' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library''s complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer''s own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) -b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user''s computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. -c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. -d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. -e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients'' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Libraries - -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library''s name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library `Frob'' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That''s all there is to it! \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1+.yml b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1+.yml deleted file mode 100644 index dc221f1e0e6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1+.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lgpl-2.1 -notes: this is a license from fossology license reference LGPL-2.1+ (GNU Lesser General Public - License v2.1 or later) http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1.txt b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1.txt deleted file mode 100644 index 25ca48fae7f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1.txt +++ /dev/null @@ -1,175 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE - -Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. - -When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. - -To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. - -To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author''s reputation will not be affected by problems that might be introduced by others. - -Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. - -When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. - -We call this license the "Lesser" General Public License because it does Less to protect the user''s freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. - -For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. - -In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. - -Although the Lesser General Public License is Less protective of the users'' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library''s complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. - -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. - -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. - -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. - -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer''s own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) - -b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user''s computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. - -c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. - -d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. - -e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. - -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. - -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. - -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients'' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Libraries - -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library''s name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library ''Frob'' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That''s all there is to it! \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1.yml b/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1.yml deleted file mode 100644 index b6fa16ff944..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-2.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lgpl-2.1 -notes: this is a license from fossology license reference - LGPL-2.1 (GNU Lesser General Public License v2.1 only) http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0+.txt b/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0+.txt deleted file mode 100644 index e0ef4b25323..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0+.txt +++ /dev/null @@ -1,165 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE -Version 3, 29 June 2007 - -Copyright (C) 2007 Free Software Foundation, Inc. -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - - -This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - -0. Additional Definitions. - -As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - -"The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - -An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - -A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - -The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - -The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - -1. Exception to Section 3 of the GNU GPL. - -You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - -2. Conveying Modified Versions. - -If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - -a) under this License, provided that you make a good faith effort to -ensure that, in the event an Application does not supply the -function or data, the facility still operates, and performs -whatever part of its purpose remains meaningful, or - -b) under the GNU GPL, with none of the additional permissions of -this License applicable to that copy. - -3. Object Code Incorporating Material from Library Header Files. - -The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - -a) Give prominent notice with each copy of the object code that the -Library is used in it and that the Library and its use are -covered by this License. - -b) Accompany the object code with a copy of the GNU GPL and this license -document. - -4. Combined Works. - -You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - -a) Give prominent notice with each copy of the Combined Work that -the Library is used in it and that the Library and its use are -covered by this License. - -b) Accompany the Combined Work with a copy of the GNU GPL and this license -document. - -c) For a Combined Work that displays copyright notices during -execution, include the copyright notice for the Library among -these notices, as well as a reference directing the user to the -copies of the GNU GPL and this license document. - -d) Do one of the following: - -0) Convey the Minimal Corresponding Source under the terms of this -License, and the Corresponding Application Code in a form -suitable for, and under terms that permit, the user to -recombine or relink the Application with a modified version of -the Linked Version to produce a modified Combined Work, in the -manner specified by section 6 of the GNU GPL for conveying -Corresponding Source. - -1) Use a suitable shared library mechanism for linking with the -Library. A suitable mechanism is one that (a) uses at run time -a copy of the Library already present on the user''s computer -system, and (b) will operate properly with a modified version -of the Library that is interface-compatible with the Linked -Version. - -e) Provide Installation Information, but only if you would otherwise -be required to provide such information under section 6 of the -GNU GPL, and only to the extent that such information is -necessary to install and execute a modified version of the -Combined Work produced by recombining or relinking the -Application with a modified version of the Linked Version. (If -you use option 4d0, the Installation Information must accompany -the Minimal Corresponding Source and Corresponding Application -Code. If you use option 4d1, you must provide the Installation -Information in the manner specified by section 6 of the GNU GPL -for conveying Corresponding Source.) - -5. Combined Libraries. - -You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - -a) Accompany the combined library with a copy of the same work based -on the Library, uncombined with any other library facilities, -conveyed under the terms of this License. - -b) Give prominent notice with the combined library that part of it -is a work based on the Library, and explaining where to find the -accompanying uncombined form of the same work. - -6. Revised Versions of the GNU Lesser General Public License. - -The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - -If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy''s public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0+.yml b/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0+.yml deleted file mode 100644 index b31f164d284..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0+.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lgpl-3.0 -notes: this is a license from fossology license reference LGPL-3.0+ (GNU Lesser General Public - License v3.0 or later) http://www.gnu.org/licenses/lgpl-3.0-standalone.html diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0.txt b/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0.txt deleted file mode 100644 index 936fa61a5d4..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0.txt +++ /dev/null @@ -1,165 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - - This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - - 0. Additional Definitions. - - As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - - "The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - - An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - - A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - - The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - - The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - - 1. Exception to Section 3 of the GNU GPL. - - You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - - 2. Conveying Modified Versions. - - If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - - a) under this License, provided that you make a good faith effort to - ensure that, in the event an Application does not supply the - function or data, the facility still operates, and performs - whatever part of its purpose remains meaningful, or - - b) under the GNU GPL, with none of the additional permissions of - this License applicable to that copy. - - 3. Object Code Incorporating Material from Library Header Files. - - The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - - a) Give prominent notice with each copy of the object code that the - Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the object code with a copy of the GNU GPL and this license - document. - - 4. Combined Works. - - You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - - a) Give prominent notice with each copy of the Combined Work that - the Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the Combined Work with a copy of the GNU GPL and this license - document. - - c) For a Combined Work that displays copyright notices during - execution, include the copyright notice for the Library among - these notices, as well as a reference directing the user to the - copies of the GNU GPL and this license document. - - d) Do one of the following: - - 0) Convey the Minimal Corresponding Source under the terms of this - License, and the Corresponding Application Code in a form - suitable for, and under terms that permit, the user to - recombine or relink the Application with a modified version of - the Linked Version to produce a modified Combined Work, in the - manner specified by section 6 of the GNU GPL for conveying - Corresponding Source. - - 1) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (a) uses at run time - a copy of the Library already present on the user''s computer - system, and (b) will operate properly with a modified version - of the Library that is interface-compatible with the Linked - Version. - - e) Provide Installation Information, but only if you would otherwise - be required to provide such information under section 6 of the - GNU GPL, and only to the extent that such information is - necessary to install and execute a modified version of the - Combined Work produced by recombining or relinking the - Application with a modified version of the Linked Version. (If - you use option 4d0, the Installation Information must accompany - the Minimal Corresponding Source and Corresponding Application - Code. If you use option 4d1, you must provide the Installation - Information in the manner specified by section 6 of the GNU GPL - for conveying Corresponding Source.) - - 5. Combined Libraries. - - You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - - a) Accompany the combined library with a copy of the same work based - on the Library, uncombined with any other library facilities, - conveyed under the terms of this License. - - b) Give prominent notice with the combined library that part of it - is a work based on the Library, and explaining where to find the - accompanying uncombined form of the same work. - - 6. Revised Versions of the GNU Lesser General Public License. - - The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - - Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - - If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy''s public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0.yml b/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0.yml deleted file mode 100644 index 65d2b04e70f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lgpl-3.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lgpl-3.0 -notes: this is a license from fossology license reference - LGPL-3.0 (GNU Lesser General Public License 3.0) http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/libpng.txt b/tests/licensedcode/data/more_licenses/licenses/libpng.txt deleted file mode 100644 index 1d36d34046f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/libpng.txt +++ /dev/null @@ -1,110 +0,0 @@ -This copy of the libpng notices is provided for your convenience. In case of -any discrepancy between this copy and the notices in the file png.h that is -included in the libpng distribution, the latter shall prevail. - -COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: - -If you modify libpng you may insert additional notices immediately following -this sentence. - -This code is released under the libpng license. - -libpng versions 1.2.6, August 15, 2004, through 1.4.5, December 9, 2010, are -Copyright (c) 2004, 2006-2010 Glenn Randers-Pehrson, and are -distributed according to the same disclaimer and license as libpng-1.2.5 -with the following individual added to the list of Contributing Authors - -Cosmin Truta - -libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are -Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are -distributed according to the same disclaimer and license as libpng-1.0.6 -with the following individuals added to the list of Contributing Authors - -Simon-Pierre Cadieux -Eric S. Raymond -Gilles Vollant - -and with the following additions to the disclaimer: - -There is no warranty against interference with your enjoyment of the -library or against infringement. There is no warranty that our -efforts or the library will fulfill any of your particular purposes -or needs. This library is provided with all faults, and the entire -risk of satisfactory quality, performance, accuracy, and effort is with -the user. - -libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are -Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are -distributed according to the same disclaimer and license as libpng-0.96, -with the following individuals added to the list of Contributing Authors: - -Tom Lane -Glenn Randers-Pehrson -Willem van Schaik - -libpng versions 0.89, June 1996, through 0.96, May 1997, are -Copyright (c) 1996, 1997 Andreas Dilger -Distributed according to the same disclaimer and license as libpng-0.88, -with the following individuals added to the list of Contributing Authors: - -John Bowler -Kevin Bracey -Sam Bushell -Magnus Holmgren -Greg Roelofs -Tom Tanner - -libpng versions 0.5, May 1995, through 0.88, January 1996, are -Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. - -For the purposes of this copyright and license, "Contributing Authors" -is defined as the following set of individuals: - -Andreas Dilger -Dave Martindale -Guy Eric Schalnat -Paul Schmidt -Tim Wegner - -The PNG Reference Library is supplied "AS IS". The Contributing Authors -and Group 42, Inc. disclaim all warranties, expressed or implied, -including, without limitation, the warranties of merchantability and of -fitness for any purpose. The Contributing Authors and Group 42, Inc. -assume no liability for direct, indirect, incidental, special, exemplary, -or consequential damages, which may result from the use of the PNG -Reference Library, even if advised of the possibility of such damage. - -Permission is hereby granted to use, copy, modify, and distribute this -source code, or portions hereof, for any purpose, without fee, subject -to the following restrictions: - -1. The origin of this source code must not be misrepresented. - -2. Altered versions must be plainly marked as such and must not -be misrepresented as being the original source. - -3. This Copyright notice may not be removed or altered from any -source or altered source distribution. - -The Contributing Authors and Group 42, Inc. specifically permit, without -fee, and encourage the use of this source code as a component to -supporting the PNG file format in commercial products. If you use this -source code in a product, acknowledgment is not required but would be -appreciated. - - -A "png_get_copyright" function is available, for convenient use in "about" -boxes and the like: - -printf("%s",png_get_copyright(NULL)); - -Also, the PNG logo (in PNG format, of course) is supplied in the -files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). - -Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a -certification mark of the Open Source Initiative. - -Glenn Randers-Pehrson -glennrp at users.sourceforge.net -December 9, 2010 \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/libpng.yml b/tests/licensedcode/data/more_licenses/licenses/libpng.yml deleted file mode 100644 index 79570ae8744..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/libpng.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - libpng -notes: this is a license from fossology license reference Libpng (libpng License) http://www.libpng.org/pub/png/src/libpng-LICENSE.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/logica-osl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/logica-osl-1.0.txt deleted file mode 100644 index 4d19bf2669c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/logica-osl-1.0.txt +++ /dev/null @@ -1,61 +0,0 @@ -Logica Open Source License Version 1.0 -Copyright (c) 1996-2001 Logica Mobile Networks Limited, all rights reserved. - -Logica Mobile Networks Limited ("Logica") is the owner of the rights -in the software programs ("Software"). In the following text, the term -"you" or "your" refers to you as an individual and/or (as the case may be) -to the legal entity to which the Software has been supplied. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided all copies and partial copies -made and/or distributed (in whatever form) and all associated documentation -and other material must acknowledge Logica''s rights by the inclusion -of the following notice: - -"Copyright (c) 1996-2001 Logica Mobile Networks Limited; -this product includes software developed by Logica by whom copyright -and know-how are retained, all rights reserved." - -The location of such notice shall be such that it is clearly displayed -and readable to any person accessing the Software. - - -Any use, copying or distribution of the Software is subject to the following: - -* Your rights in respect of the Software are confined to the non-exclusive - and non-assignable license expressed herein. If you breach any of these - term and conditions then your license may be terminated. - -* The copyright and other intellectual property rights in and in connection - with the Software are and shall remain the exclusive property of Logica - or its third party licensors. You must not remove or alter any copyright - or other proprietary notice on any of the software. - - -To the extent permitted by law and in the absence of a formal written contract -between you and Logica the following limitations and exclusions also apply: - -* The Software is supplied and licensed on an "as is" basis without any - warranty or representation from Logica of any kind. - -* Conditions, warranties and representations that might be attributed - to Logica or the Software (including, but not limited to, any implied - condition or warranty relating to merchantability, fitness, suitability - or quality) are excluded. - -* In no event shall Logica be liable in respect of or in connection - with the supply, licensing, use or distribution of the software in any - form for any direct, special, indirect or consequential loss or damages - or for any loss of use, loss of data or of profits or for any business - interruption or loss of goodwill. - -* Logica shall have no obligation to fix any defect or deficiency - in the Software and Logica shall have no liability for any consequences - (direct or consequential) that may arise from any such defect or deficiency. - -* Logica''s maximum liability (if any) in relation to the licensing, - provision and/or performance of the Software shall not exceed the price - you paid to secure your license. - -The laws of Ireland shall apply to these terms and conditions and shall -govern every aspect of the supply and licensing of the Software. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/logica-osl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/logica-osl-1.0.yml deleted file mode 100644 index e98dadb23e2..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/logica-osl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - logica-1.0 -notes: this is a license from fossology license reference Logica-OSL-1.0 (Logica Open Source - License Version 1.0) https://github.com/OpenSmpp/opensmpp/blob/master/LICENSE_LOGICA diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/lppl-1.0.txt deleted file mode 100644 index 681dcb2b546..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.0.txt +++ /dev/null @@ -1,211 +0,0 @@ -LaTeX Project Public License -============================ - -LPPL Version 1.0 1999-03-01 - -Copyright 1999 LaTeX3 Project - Everyone is permitted to copy and distribute verbatim copies - of this license document, but modification is not allowed. - - -Preamble -======== - -The LaTeX Project Public License (LPPL) is the license under which the -base LaTeX distribution is distributed. As described below you may use -this licence for any software that you wish to distribute. - -It may be particularly suitable if your software is TeX related (such -as a LaTeX package file) but it may be used for any software, even if -it is unrelated to TeX. - -To use this license, the files of your distribution should have an -explicit copyright notice giving your name and the year, together -with a reference to this license. - -A typical example would be - - %% pig.sty - %% Copyright 2001 M. Y. Name - - % This program can redistributed and/or modified under the terms - % of the LaTeX Project Public License Distributed from CTAN - % archives in directory macros/latex/base/lppl.txt; either - % version 1 of the License, or (at your option) any later version. - -Given such a notice in the file, the conditions of this document would -apply, with: - -`The Program'' referring to the software `pig.sty'' and -`The Copyright Holder'' referring to the person `M. Y. Name''. - -To see a real example, see the file legal.txt which carries the -copyright notice for the base latex distribution. - -This license gives terms under which files of The Program may be -distributed and modified. Individual files may have specific further -constraints on modification, but no file should have restrictions on -distribution other than those specified below. -This is to ensure that a distributor wishing to distribute a complete -unmodified copy of The Program need only check the conditions in this -file, and does not need to check every file in The Program for extra -restrictions. If you do need to modify the distribution terms of some -files, do not refer to this license, instead distribute The Program -under a different license. You may use the parts of the text of LPPL as -a model for your own license, but your license should not directly refer -to the LPPL or otherwise give the impression that The Program is -distributed under the LPPL. - - - -The LaTeX Project Public License -================================ -Terms And Conditions For Copying, Distribution And Modification -=============================================================== - - -WARRANTY -======== - -There is no warranty for The Program, to the extent permitted by -applicable law. Except when otherwise stated in writing, The -Copyright Holder provides The Program `as is'' without warranty of any -kind, either expressed or implied, including, but not limited to, the -implied warranties of merchantability and fitness for a particular -purpose. The entire risk as to the quality and performance of the -program is with you. Should The Program prove defective, you assume -the cost of all necessary servicing, repair or correction. - -In no event unless required by applicable law or agreed to in writing -will The Copyright Holder, or any of the individual authors named in -the source for The Program, be liable to you for damages, including -any general, special, incidental or consequential damages arising out -of any use of The Program or out of inability to use The Program -(including but not limited to loss of data or data being rendered -inaccurate or losses sustained by you or by third parties as a result -of a failure of The Program to operate with any other programs), even -if such holder or other party has been advised of the possibility of -such damages. - - -DISTRIBUTION -============ - -Redistribution of unchanged files is allowed provided that all files -that make up the distribution of The Program are distributed. -In particular this means that The Program has to be distributed -including its documentation if documentation was part of the original -distribution. - -The distribution of The Program will contain a prominent file -listing all the files covered by this license. - -If you receive only some of these files from someone, complain! - -The distribution of changed versions of certain files included in the -The Program, and the reuse of code from The Program, are allowed -under the following restrictions: - - * It is allowed only if the legal notice in the file does not - expressly forbid it. - See note below, under "Conditions on individual files". - - * You rename the file before you make any changes to it, unless the - file explicitly says that renaming is not required. Any such changed - files must be distributed under a license that forbids distribution - of those files, and any files derived from them, under the names used - by the original files in the distribution of The Program. - - * You change any `identification string'' in The Program to clearly - indicate that the file is not part of the standard system. - - * If The Program includes an `error report address'' so that errors - may be reported to The Copyright Holder, or other specified - addresses, this address must be changed in any modified versions of - The Program, so that reports for files not maintained by the - original program maintainers are directed to the maintainers of the - changed files. - - * You acknowledge the source and authorship of the original version - in the modified file. - - * You also distribute the unmodified version of the file or - alternatively provide sufficient information so that the - user of your modified file can be reasonably expected to be - able to obtain an original, unmodified copy of The Program. - For example, you may specify a URL to a site that you expect - will freely provide the user with a copy of The Program (either - the version on which your modification is based, or perhaps a - later version). - - * If The Program is intended to be used with, or is based on, LaTeX, - then files with the following file extensions which have special - meaning in LaTeX Software, have special modification rules under the - license: - - - Files with extension `.ins'' (installation files): these files may - not be modified at all because they contain the legal notices - that are placed in the generated files. - - - Files with extension `.fd'' (LaTeX font definitions files): these - files are allowed to be modified without changing the name, but - only to enable use of all available fonts and to prevent attempts - to access unavailable fonts. However, modified files are not - allowed to be distributed in place of original files. - - - Files with extension `.cfg'' (configuration files): these files - can be created or modified to enable easy configuration of the - system. The documentation in cfgguide.tex in the base LaTeX - distribution describes when it makes sense to modify or generate - such files. - - -The above restrictions are not intended to prohibit, and hence do -not apply to, the updating, by any method, of a file so that it -becomes identical to the latest version of that file in The Program. - -======================================================================== - -NOTES -===== - -We believe that these requirements give you the freedom you to make -modifications that conform with whatever technical specifications you -wish, whilst maintaining the availability, integrity and reliability of -The Program. If you do not see how to achieve your goal whilst -adhering to these requirements then read the document cfgguide.tex -in the base LaTeX distribution for suggestions. - -Because of the portability and exchangeability aspects of systems -like LaTeX, The LaTeX3 Project deprecates the distribution of -non-standard versions of components of LaTeX or of generally available -contributed code for them but such distributions are permitted under the -above restrictions. - -The document modguide.tex in the base LaTeX distribution details -the reasons for the legal requirements detailed above. -Even if The Program is unrelated to LaTeX, the argument in -modguide.tex may still apply, and should be read before -a modified version of The Program is distributed. - - -Conditions on individual files -============================== - -The individual files may bear additional conditions which supersede -the general conditions on distribution and modification contained in -this file. If there are any such files, the distribution of The -Program will contain a prominent file that lists all the exceptional -files. - -Typical examples of files with more restrictive modification -conditions would be files that contain the text of copyright notices. - - * The conditions on individual files differ only in the - extent of *modification* that is allowed. - - * The conditions on *distribution* are the same for all the files. - Thus a (re)distributor of a complete, unchanged copy of The Program - need meet only the conditions in this file; it is not necessary to - check the header of every file in the distribution to check that a - distribution meets these requirements. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/lppl-1.0.yml deleted file mode 100644 index 8ef2e929644..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lppl-1.0 -notes: this is a license from fossology license reference LPPL-1.0 (LaTeX Project Public License - 1.0) http://www.latex-project.org/lppl/lppl-1-0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/lppl-1.1.txt deleted file mode 100644 index c66e3fbae0e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.1.txt +++ /dev/null @@ -1,313 +0,0 @@ -The LaTeX Project Public License -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - -LPPL Version 1.1 1999-07-10 - -Copyright 1999 LaTeX3 Project - Everyone is allowed to distribute verbatim copies of this - license document, but modification of it is not allowed. - - -PREAMBLE -======== - -The LaTeX Project Public License (LPPL) is the license under which the -base LaTeX distribution is distributed. - -You may use this license for any program that you have written and wish -to distribute. This license may be particularly suitable if your -program is TeX-related (such as a LaTeX package), but you may use it -even if your program is unrelated to TeX. The section `WHETHER AND HOW -TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE'', below, gives instructions, -examples, and recommendations for authors who are considering -distributing their programs under this license. - -In this license document, `The Program'' refers to any program -distributed under this license. - -This license gives conditions under which The Program may be distributed -and conditions under which modified versions of The Program may be -distributed. Individual files of The Program may bear supplementary -and/or superseding conditions on modification of themselves and on the -distribution of modified versions of themselves, but *no* file of The -Program may bear supplementary or superseding conditions on the -distribution of an unmodified copy of the file. A distributor wishing -to distribute a complete, unmodified copy of The Program therefore -needs to check the conditions only in this license and nowhere else. - -Activities other than distribution and/or modification of The Program -are not covered by this license; they are outside its scope. In -particular, the act of running The Program is not restricted. - -We, the LaTeX3 Project, believe that the conditions below give you -the freedom to make and distribute modified versions of The Program -that conform with whatever technical specifications you wish while -maintaining the availability, integrity, and reliability of -The Program. If you do not see how to achieve your goal while -meeting these conditions, then read the document `cfgguide.tex'' -in the base LaTeX distribution for suggestions. - - -CONDITIONS ON DISTRIBUTION AND MODIFICATION -=========================================== - -You may distribute a complete, unmodified copy of The Program. -Distribution of only part of The Program is not allowed. - -You may not modify in any way a file of The Program that bears a legal -notice forbidding modification of that file. - -You may distribute a modified file of The Program if, and only if, the -following eight conditions are met: - - 1. You must meet any additional conditions borne by the file on the - distribution of a modified version of the file as described below - in the subsection `Additional Conditions on Individual Files of - The Program''. - - 2. If the file is a LaTeX software file, then you must meet any - applicable additional conditions on the distribution of a modified - version of the file that are described below in the subsection - `Additional Conditions on LaTeX Software Files''. - - 3. You must not distribute the modified file with the filename of the - original file. - - 4. In the modified file, you must acknowledge the authorship and - name of the original file, and the name (if any) of the program - which contains it. - - 5. You must change any identification string in the file to indicate - clearly that the modified file is not part of The Program. - - 6. You must change any addresses in the modified file for the - reporting of errors in the file or in The Program generally to - ensure that reports for files no longer maintained by the original - maintainers will be directed to the maintainers of the modified - files. - - 7. You must distribute the modified file under a license that forbids - distribution both of the modified file and of any files derived - from the modified file with the filename of the original file. - - 8. You must do either (A) or (B): - - (A) distribute a copy of The Program (that is, a complete, - unmodified copy of The Program) together with the modified - file; if your distribution of the modified file is made by - offering access to copy the modified file from a designated - place, then offering equivalent access to copy The Program - from the same place meets this condition, even though third - parties are not compelled to copy The Program along with the - modified file; - - (B) provide to those who receive the modified file information - that is sufficient for them to obtain a copy of The Program; - for example, you may provide a Uniform Resource Locator (URL) - for a site that you expect will provide them with a copy of - The Program free of charge (either the version from which - your modification is derived, or perhaps a later version). - -Note that in the above, `distribution'' of a file means making the -file available to others by any means. This includes, for instance, -installing the file on any machine in such a way that the file is -accessible by users other than yourself. `Modification'' of a file -means any procedure that produces a derivative file under any -applicable law -- that is, a file containing the original file or -a significant portion of it, either verbatim or with modifications -and/or translated into another language. - -Changing the name of a file is considered to be a modification of -the file. - -The distribution conditions in this license do not have to be -applied to files that have been modified in accordance with the -above conditions. Note, however, that Condition 7. does apply to -any such modified file. - -The conditions above are not intended to prohibit, and hence do not -apply to, the updating, by any method, of a file so that it becomes -identical to the latest version of that file of The Program. - - - -A Recommendation on Modification Without Distribution ------------------------------------------------------ - -It is wise never to modify a file of The Program, even for your own -personal use, without also meeting the above eight conditions for -distributing the modified file. While you might intend that such -modified files will never be distributed, often this will happen by -accident -- you may forget that you have modified the file; or it may -not occur to you when allowing others to access the modified file -that you are thus distributing it and violating the conditions of -this license. It is usually in your best interest to keep your copy -of The Program identical with the public one. Many programs provide -ways to control the behavior of that program without altering its -licensed files. - - -Additional Conditions on Individual Files of The Program --------------------------------------------------------- - -An individual file of The Program may bear additional conditions that -supplement and/or supersede the conditions in this license if, and only -if, such additional conditions exclusively concern modification of the -file or distribution of a modified version of the file. The conditions -on individual files of The Program therefore may differ only with -respect to the kind and extent of modification of those files that -is allowed, and with respect to the distribution of modified versions -of those files. - - -Additional Conditions on LaTeX Software Files ---------------------------------------------- - -If a file of The Program is intended to be used with LaTeX (that is, -if it is a LaTeX software file), then the following additional -conditions, which supplement and/or supersede the conditions -above, apply to the file according to its filename extension: - - - You may not modify any file with filename extension `.ins'' since - these are installation files containing the legal notices that are - placed in the files they generate. - - - You may distribute modified versions of files with filename - extension `.fd'' (LaTeX font definition files) under the standard - conditions of the LPPL as described above. You may also distribute - such modified LaTeX font definition files with their original names - provided that: - (1) the only changes to the original files either enable use of - available fonts or prevent attempts to access unavailable fonts; - (2) you also distribute the original, unmodified files (TeX input - paths can be used to control which set of LaTeX font definition - files is actually used by TeX). - - - You may distribute modified versions of files with filename - extension `.cfg'' (configuration files) with their original names. - The Program may (and usually will) specify the range of commands - that are allowed in a particular configuration file. - -Because of portability and exchangeability issues in LaTeX software, -The LaTeX3 Project deprecates the distribution of modified versions of -components of LaTeX or of generally available contributed code for them, -but such distribution can meet the conditions of this license. - - -NO WARRANTY -=========== - -There is no warranty for The Program. Except when otherwise stated in -writing, The Copyright Holder provides The Program `as is'', without -warranty of any kind, either expressed or implied, including, but not -limited to, the implied warranties of merchantability and fitness for -a particular purpose. The entire risk as to the quality and performance -of The Program is with you. Should The Program prove defective, you -assume the cost of all necessary servicing, repair, or correction. - -In no event unless agreed to in writing will The Copyright Holder, or -any author named in the files of The Program, or any other party who may -distribute and/or modify The Program as permitted below, be liable to -you for damages, including any general, special, incidental or -consequential damages arising out of any use of The Program or out of -inability to use The Program (including, but not limited to, loss of -data, data being rendered inaccurate, or losses sustained by anyone as -a result of any failure of The Program to operate with any other -programs), even if The Copyright Holder or said author or said other -party has been advised of the possibility of such damages. - - -WHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE -========================================================= - -This section contains important instructions, examples, and -recommendations for authors who are considering distributing their -programs under this license. These authors are addressed as `you'' in -this section. - - -Choosing This License or Another License ----------------------------------------- - -If for any part of your program you want or need to use *distribution* -conditions that differ from those in this license, then do not refer to -this license anywhere in your program but instead distribute your -program under a different license. You may use the text of this license -as a model for your own license, but your license should not refer to -the LPPL or otherwise give the impression that your program is -distributed under the LPPL. - -The document `modguide.tex'' in the base LaTeX distribution explains -the motivation behind the conditions of this license. It explains, -for example, why distributing LaTeX under the GNU General Public -License (GPL) was considered inappropriate. Even if your program is -unrelated to LaTeX, the discussion in `modguide.tex'' may still be -relevant, and authors intending to distribute their programs under any -license are encouraged to read it. - - -How to Use This License ------------------------ - -To use this license, place in each of the files of your program both -an explicit copyright notice including your name and the year and also -a statement that the distribution and/or modification of the file is -constrained by the conditions in this license. - -Here is an example of such a notice and statement: - - %% pig.dtx - %% Copyright 2001 M. Y. Name - % - % This program may be distributed and/or modified under the - % conditions of the LaTeX Project Public License, either version 1.1 - % of this license or (at your option) any later version. - % The latest version of this license is in - % http://www.latex-project.org/lppl.txt - % and version 1.1 or later is part of all distributions of LaTeX - % version 1999/06/01 or later. - % - % This program consists of the files pig.dtx and pig.ins - -Given such a notice and statement in a file, the conditions given in -this license document would apply, with `The Program'' referring to the -two files `pig.dtx'' and `pig.ins'', and `The Copyright Holder'' referring -to the person `M. Y. Name''. - - -Important Recommendations -------------------------- - - Defining What Constitutes The Program - - The LPPL requires that distributions of The Program contain all the - files of The Program. It is therefore important that you provide a - way for the licensee to determine which files constitute The Program. - This could, for example, be achieved by explicitly listing all the - files of The Program near the copyright notice of each file or by - using a line like - - % This program consists of all files listed in manifest.txt. - - in that place. In the absence of an unequivocal list it might be - impossible for the licensee to determine what is considered by you - to comprise The Program. - - Noting Exceptional Files - - If The Program contains any files bearing additional conditions on - modification, or on distribution of modified versions, of those - files (other than those listed in `Additional Conditions on LaTeX - Software Files''), then it is recommended that The Program contain a - prominent file that defines the exceptional conditions, and either - lists the exceptional files or defines one or more categories of - exceptional files. - - Files containing the text of a license (such as this file) are - often examples of files bearing more restrictive conditions on - modification. LaTeX configuration files (with filename extension - `.cfg'') are examples of files bearing less restrictive conditions - on the distribution of a modified version of the file. The - additional conditions on LaTeX software given above are examples - of declaring a category of files bearing exceptional additional - conditions. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/lppl-1.1.yml deleted file mode 100644 index eac1af1a59f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lppl-1.1 -notes: this is a license from fossology license reference LPPL-1.1 (LaTeX Project Public License - 1.1) http://www.latex-project.org/lppl/lppl-1-1.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.2.txt b/tests/licensedcode/data/more_licenses/licenses/lppl-1.2.txt deleted file mode 100644 index b7bceca5012..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.2.txt +++ /dev/null @@ -1,315 +0,0 @@ -The LaTeX Project Public License -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - -LPPL Version 1.2 1999-09-03 - -Copyright 1999 LaTeX3 Project - Everyone is allowed to distribute verbatim copies of this - license document, but modification of it is not allowed. - - -PREAMBLE -======== - -The LaTeX Project Public License (LPPL) is the license under which the -base LaTeX distribution is distributed. - -You may use this license for any program that you have written and wish -to distribute. This license may be particularly suitable if your -program is TeX-related (such as a LaTeX package), but you may use it -even if your program is unrelated to TeX. The section `WHETHER AND HOW -TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE'', below, gives instructions, -examples, and recommendations for authors who are considering -distributing their programs under this license. - -In this license document, `The Program'' refers to any program -distributed under this license. - -This license gives conditions under which The Program may be distributed -and conditions under which modified versions of The Program may be -distributed. Individual files of The Program may bear supplementary -and/or superseding conditions on modification of themselves and on the -distribution of modified versions of themselves, but *no* file of The -Program may bear supplementary or superseding conditions on the -distribution of an unmodified copy of the file. A distributor wishing -to distribute a complete, unmodified copy of The Program therefore -needs to check the conditions only in this license and nowhere else. - -Activities other than distribution and/or modification of The Program -are not covered by this license; they are outside its scope. In -particular, the act of running The Program is not restricted. - -We, the LaTeX3 Project, believe that the conditions below give you -the freedom to make and distribute modified versions of The Program -that conform with whatever technical specifications you wish while -maintaining the availability, integrity, and reliability of -The Program. If you do not see how to achieve your goal while -meeting these conditions, then read the document `cfgguide.tex'' -in the base LaTeX distribution for suggestions. - - -CONDITIONS ON DISTRIBUTION AND MODIFICATION -=========================================== - -You may distribute a complete, unmodified copy of The Program. -Distribution of only part of The Program is not allowed. - -You may not modify in any way a file of The Program that bears a legal -notice forbidding modification of that file. - -You may distribute a modified file of The Program if, and only if, the -following eight conditions are met: - - 1. You must meet any additional conditions borne by the file on the - distribution of a modified version of the file as described below - in the subsection `Additional Conditions on Individual Files of - The Program''. - - 2. If the file is a LaTeX software file, then you must meet any - applicable additional conditions on the distribution of a modified - version of the file that are described below in the subsection - `Additional Conditions on LaTeX Software Files''. - - 3. You must not distribute the modified file with the filename of the - original file. - - 4. In the modified file, you must acknowledge the authorship and - name of the original file, and the name (if any) of the program - which contains it. - - 5. You must change any identification string in the file to indicate - clearly that the modified file is not part of The Program. - - 6. You must change any addresses in the modified file for the - reporting of errors in the file or in The Program generally to - ensure that reports for files no longer maintained by the original - maintainers will be directed to the maintainers of the modified - files. - - 7. You must distribute the modified file under a license that forbids - distribution both of the modified file and of any files derived - from the modified file with the filename of the original file. - - 8. You must do either (A) or (B): - - (A) distribute a copy of The Program (that is, a complete, - unmodified copy of The Program) together with the modified - file; if your distribution of the modified file is made by - offering access to copy the modified file from a designated - place, then offering equivalent access to copy The Program - from the same place meets this condition, even though third - parties are not compelled to copy The Program along with the - modified file; - - (B) provide to those who receive the modified file information - that is sufficient for them to obtain a copy of The Program; - for example, you may provide a Uniform Resource Locator (URL) - for a site that you expect will provide them with a copy of - The Program free of charge (either the version from which - your modification is derived, or perhaps a later version). - -Note that in the above, `distribution'' of a file means making the -file available to others by any means. This includes, for instance, -installing the file on any machine in such a way that the file is -accessible by users other than yourself. `Modification'' of a file -means any procedure that produces a derivative file under any -applicable law -- that is, a file containing the original file or -a significant portion of it, either verbatim or with modifications -and/or translated into another language. - -Changing the name of a file (other than as necessitated by the file -conventions of the target file systems) is considered to be a -modification of the file. - -The distribution conditions in this license do not have to be -applied to files that have been modified in accordance with the -above conditions. Note, however, that Condition 7. does apply to -any such modified file. - -The conditions above are not intended to prohibit, and hence do not -apply to, the updating, by any method, of a file so that it becomes -identical to the latest version of that file of The Program. - - - -A Recommendation on Modification Without Distribution ------------------------------------------------------ - -It is wise never to modify a file of The Program, even for your own -personal use, without also meeting the above eight conditions for -distributing the modified file. While you might intend that such -modified files will never be distributed, often this will happen by -accident -- you may forget that you have modified the file; or it may -not occur to you when allowing others to access the modified file -that you are thus distributing it and violating the conditions of -this license. It is usually in your best interest to keep your copy -of The Program identical with the public one. Many programs provide -ways to control the behavior of that program without altering its -licensed files. - - -Additional Conditions on Individual Files of The Program --------------------------------------------------------- - -An individual file of The Program may bear additional conditions that -supplement and/or supersede the conditions in this license if, and only -if, such additional conditions exclusively concern modification of the -file or distribution of a modified version of the file. The conditions -on individual files of The Program therefore may differ only with -respect to the kind and extent of modification of those files that -is allowed, and with respect to the distribution of modified versions -of those files. - - -Additional Conditions on LaTeX Software Files ---------------------------------------------- - -If a file of The Program is intended to be used with LaTeX (that is, -if it is a LaTeX software file), then the following additional -conditions, which supplement and/or supersede the conditions -above, apply to the file according to its filename extension: - - - You may not modify any file with filename extension `.ins'' since - these are installation files containing the legal notices that are - placed in the files they generate. - - - You may distribute modified versions of files with filename - extension `.fd'' (LaTeX font definition files) under the standard - conditions of the LPPL as described above. You may also distribute - such modified LaTeX font definition files with their original names - provided that: - (1) the only changes to the original files either enable use of - available fonts or prevent attempts to access unavailable fonts; - (2) you also distribute the original, unmodified files (TeX input - paths can be used to control which set of LaTeX font definition - files is actually used by TeX). - - - You may distribute modified versions of files with filename - extension `.cfg'' (configuration files) with their original names. - The Program may (and usually will) specify the range of commands - that are allowed in a particular configuration file. - -Because of portability and exchangeability issues in LaTeX software, -The LaTeX3 Project deprecates the distribution of modified versions of -components of LaTeX or of generally available contributed code for them, -but such distribution can meet the conditions of this license. - - -NO WARRANTY -=========== - -There is no warranty for The Program. Except when otherwise stated in -writing, The Copyright Holder provides The Program `as is'', without -warranty of any kind, either expressed or implied, including, but not -limited to, the implied warranties of merchantability and fitness for -a particular purpose. The entire risk as to the quality and performance -of The Program is with you. Should The Program prove defective, you -assume the cost of all necessary servicing, repair, or correction. - -In no event unless agreed to in writing will The Copyright Holder, or -any author named in the files of The Program, or any other party who may -distribute and/or modify The Program as permitted above, be liable to -you for damages, including any general, special, incidental or -consequential damages arising out of any use of The Program or out of -inability to use The Program (including, but not limited to, loss of -data, data being rendered inaccurate, or losses sustained by anyone as -a result of any failure of The Program to operate with any other -programs), even if The Copyright Holder or said author or said other -party has been advised of the possibility of such damages. - - -WHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE -========================================================= - -This section contains important instructions, examples, and -recommendations for authors who are considering distributing their -programs under this license. These authors are addressed as `you'' in -this section. - - -Choosing This License or Another License ----------------------------------------- - -If for any part of your program you want or need to use *distribution* -conditions that differ from those in this license, then do not refer to -this license anywhere in your program but instead distribute your -program under a different license. You may use the text of this license -as a model for your own license, but your license should not refer to -the LPPL or otherwise give the impression that your program is -distributed under the LPPL. - -The document `modguide.tex'' in the base LaTeX distribution explains -the motivation behind the conditions of this license. It explains, -for example, why distributing LaTeX under the GNU General Public -License (GPL) was considered inappropriate. Even if your program is -unrelated to LaTeX, the discussion in `modguide.tex'' may still be -relevant, and authors intending to distribute their programs under any -license are encouraged to read it. - - -How to Use This License ------------------------ - -To use this license, place in each of the files of your program both -an explicit copyright notice including your name and the year and also -a statement that the distribution and/or modification of the file is -constrained by the conditions in this license. - -Here is an example of such a notice and statement: - - %% pig.dtx - %% Copyright 2001 M. Y. Name - % - % This program may be distributed and/or modified under the - % conditions of the LaTeX Project Public License, either version 1.2 - % of this license or (at your option) any later version. - % The latest version of this license is in - % http://www.latex-project.org/lppl.txt - % and version 1.2 or later is part of all distributions of LaTeX - % version 1999/12/01 or later. - % - % This program consists of the files pig.dtx and pig.ins - -Given such a notice and statement in a file, the conditions given in -this license document would apply, with `The Program'' referring to the -two files `pig.dtx'' and `pig.ins'', and `The Copyright Holder'' referring -to the person `M. Y. Name''. - - -Important Recommendations -------------------------- - - Defining What Constitutes The Program - - The LPPL requires that distributions of The Program contain all the - files of The Program. It is therefore important that you provide a - way for the licensee to determine which files constitute The Program. - This could, for example, be achieved by explicitly listing all the - files of The Program near the copyright notice of each file or by - using a line like - - % This program consists of all files listed in manifest.txt. - - in that place. In the absence of an unequivocal list it might be - impossible for the licensee to determine what is considered by you - to comprise The Program. - - Noting Exceptional Files - - If The Program contains any files bearing additional conditions on - modification, or on distribution of modified versions, of those - files (other than those listed in `Additional Conditions on LaTeX - Software Files''), then it is recommended that The Program contain a - prominent file that defines the exceptional conditions, and either - lists the exceptional files or defines one or more categories of - exceptional files. - - Files containing the text of a license (such as this file) are - often examples of files bearing more restrictive conditions on - modification. LaTeX configuration files (with filename extension - `.cfg'') are examples of files bearing less restrictive conditions - on the distribution of a modified version of the file. The - additional conditions on LaTeX software given above are examples - of declaring a category of files bearing exceptional additional - conditions. - diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.2.yml b/tests/licensedcode/data/more_licenses/licenses/lppl-1.2.yml deleted file mode 100644 index a5d88439799..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lppl-1.2 -notes: this is a license from fossology license reference LPPL-1.2 (LaTeX Project Public License - 1.2) http://www.latex-project.org/lppl/lppl-1-2.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3a.txt b/tests/licensedcode/data/more_licenses/licenses/lppl-1.3a.txt deleted file mode 100644 index 0be58820ad1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3a.txt +++ /dev/null @@ -1,404 +0,0 @@ -The LaTeX Project Public License -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - -LPPL Version 1.3a 2004-10-01 - -Copyright 1999 2002-04 LaTeX3 Project - Everyone is allowed to distribute verbatim copies of this - license document, but modification of it is not allowed. - - -PREAMBLE -======== - -The LaTeX Project Public License (LPPL) is the primary license under -which the the LaTeX kernel and the base LaTeX packages are distributed. - -You may use this license for any work of which you hold the copyright -and which you wish to distribute. This license may be particularly -suitable if your work is TeX-related (such as a LaTeX package), but -you may use it with small modifications even if your work is unrelated -to TeX. - -The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE'', -below, gives instructions, examples, and recommendations for authors -who are considering distributing their works under this license. - -This license gives conditions under which a work may be distributed -and modified, as well as conditions under which modified versions of -that work may be distributed. - -We, the LaTeX3 Project, believe that the conditions below give you -the freedom to make and distribute modified versions of your work -that conform with whatever technical specifications you wish while -maintaining the availability, integrity, and reliability of -that work. If you do not see how to achieve your goal while -meeting these conditions, then read the document `cfgguide.tex'' -and `modguide.tex'' in the base LaTeX distribution for suggestions. - - -DEFINITIONS -=========== - -In this license document the following terms are used: - - `Work'' - Any work being distributed under this License. - - `Derived Work'' - Any work that under any applicable law is derived from the Work. - - `Modification'' - Any procedure that produces a Derived Work under any applicable - law -- for example, the production of a file containing an - original file associated with the Work or a significant portion of - such a file, either verbatim or with modifications and/or - translated into another language. - - `Modify'' - To apply any procedure that produces a Derived Work under any - applicable law. - - `Distribution'' - Making copies of the Work available from one person to another, in - whole or in part. Distribution includes (but is not limited to) - making any electronic components of the Work accessible by - file transfer protocols such as FTP or HTTP or by shared file - systems such as Sun''s Network File System (NFS). - - `Compiled Work'' - A version of the Work that has been processed into a form where it - is directly usable on a computer system. This processing may - include using installation facilities provided by the Work, - transformations of the Work, copying of components of the Work, or - other activities. Note that modification of any installation - facilities provided by the Work constitutes modification of the Work. - - `Current Maintainer'' - A person or persons nominated as such within the Work. If there is - no such explicit nomination then it is the `Copyright Holder'' under - any applicable law. - - `Base Interpreter'' - A program or process that is normally needed for running or - interpreting a part or the whole of the Work. - A Base Interpreter may depend on external components but these - are not considered part of the Base Interpreter provided that each - external component clearly identifies itself whenever it is used - interactively. Unless explicitly specified when applying the - license to the Work, the only applicable Base Interpreter is a - "LaTeX-Format". - - - -CONDITIONS ON DISTRIBUTION AND MODIFICATION -=========================================== - -1. Activities other than distribution and/or modification of the Work -are not covered by this license; they are outside its scope. In -particular, the act of running the Work is not restricted and no -requirements are made concerning any offers of support for the Work. - -2. You may distribute a complete, unmodified copy of the Work as you -received it. Distribution of only part of the Work is considered -modification of the Work, and no right to distribute such a Derived -Work may be assumed under the terms of this clause. - -3. You may distribute a Compiled Work that has been generated from a -complete, unmodified copy of the Work as distributed under Clause 2 -above, as long as that Compiled Work is distributed in such a way that -the recipients may install the Compiled Work on their system exactly -as it would have been installed if they generated a Compiled Work -directly from the Work. - -4. If you are the Current Maintainer of the Work, you may, without -restriction, modify the Work, thus creating a Derived Work. You may -also distribute the Derived Work without restriction, including -Compiled Works generated from the Derived Work. Derived Works -distributed in this manner by the Current Maintainer are considered to -be updated versions of the Work. - -5. If you are not the Current Maintainer of the Work, you may modify -your copy of the Work, thus creating a Derived Work based on the Work, -and compile this Derived Work, thus creating a Compiled Work based on -the Derived Work. - -6. If you are not the Current Maintainer of the Work, you may -distribute a Derived Work provided the following conditions are met -for every component of the Work unless that component clearly states -in the copyright notice that it is exempt from that condition. Only -the Current Maintainer is allowed to add such statements of exemption -to a component of the Work. - - a. If a component of this Derived Work can be a direct replacement - for a component of the Work when that component is used with the - Base Interpreter, then, wherever this component of the Work - identifies itself to the user when used interactively with that - Base Interpreter, the replacement component of this Derived Work - clearly and unambiguously identifies itself as a modified version - of this component to the user when used interactively with that - Base Interpreter. - - b. Every component of the Derived Work contains prominent notices - detailing the nature of the changes to that component, or a - prominent reference to another file that is distributed as part - of the Derived Work and that contains a complete and accurate log - of the changes. - - c. No information in the Derived Work implies that any persons, - including (but not limited to) the authors of the original version - of the Work, provide any support, including (but not limited to) - the reporting and handling of errors, to recipients of the - Derived Work unless those persons have stated explicitly that - they do provide such support for the Derived Work. - - d. You distribute at least one of the following with the Derived Work: - - 1. A complete, unmodified copy of the Work; - if your distribution of a modified component is made by - offering access to copy the modified component from a - designated place, then offering equivalent access to copy - the Work from the same or some similar place meets this - condition, even though third parties are not compelled to - copy the Work along with the modified component; - - 2. Information that is sufficient to obtain a complete, unmodified - copy of the Work. - -7. If you are not the Current Maintainer of the Work, you may -distribute a Compiled Work generated from a Derived Work, as long as -the Derived Work is distributed to all recipients of the Compiled -Work, and as long as the conditions of Clause 6, above, are met with -regard to the Derived Work. - -8. The conditions above are not intended to prohibit, and hence do -not apply to, the modification, by any method, of any component so that it -becomes identical to an updated version of that component of the Work as -it is distributed by the Current Maintainer under Clause 4, above. - -9. Distribution of the Work or any Derived Work in an alternative -format, where the Work or that Derived Work (in whole or in part) is -then produced by applying some process to that format, does not relax or -nullify any sections of this license as they pertain to the results of -applying that process. - -10. a. A Derived Work may be distributed under a different license - provided that license itself honors the conditions listed in - Clause 6 above, in regard to the Work, though it does not have - to honor the rest of the conditions in this license. - - b. If a Derived Work is distributed under this license, that - Derived Work must provide sufficient documentation as part of - itself to allow each recipient of that Derived Work to honor the - restrictions in Clause 6 above, concerning changes from the Work. - -11. This license places no restrictions on works that are unrelated to -the Work, nor does this license place any restrictions on aggregating -such works with the Work by any means. - -12. Nothing in this license is intended to, or may be used to, prevent -complete compliance by all parties with all applicable laws. - - -NO WARRANTY -=========== - -There is no warranty for the Work. Except when otherwise stated in -writing, the Copyright Holder provides the Work `as is'', without -warranty of any kind, either expressed or implied, including, but not -limited to, the implied warranties of merchantability and fitness for -a particular purpose. The entire risk as to the quality and performance -of the Work is with you. Should the Work prove defective, you -assume the cost of all necessary servicing, repair, or correction. - -In no event unless required by applicable law or agreed to in writing -will The Copyright Holder, or any author named in the components of -the Work, or any other party who may distribute and/or modify the Work -as permitted above, be liable to you for damages, including any -general, special, incidental or consequential damages arising out of -any use of the Work or out of inability to use the Work (including, -but not limited to, loss of data, data being rendered inaccurate, or -losses sustained by anyone as a result of any failure of the Work to -operate with any other programs), even if the Copyright Holder or said -author or said other party has been advised of the possibility of such -damages. - - -MAINTENANCE OF THE WORK -======================= - -The Work has the status `author-maintained'' if the Copyright Holder -explicitly and prominently states near the primary copyright notice in -the Work that the Work can only be maintained by the Copyright Holder -or simply that is `author-maintained''. - -The Work has the status `maintained'' if there is a Current Maintainer -who has indicated in the Work that they are willing to receive error -reports for the Work (for example, by supplying a valid e-mail -address). It is not required for the Current Maintainer to acknowledge -or act upon these error reports. - -The Work changes from status `maintained'' to `unmaintained'' if there -is no Current Maintainer, or the person stated to be Current -Maintainer of the work cannot be reached through the indicated means -of communication for a period of six months, and there are no other -significant signs of active maintenance. - -You can become the Current Maintainer of the Work by agreement with -any existing Current Maintainer to take over this role. - -If the Work is unmaintained, you can become the Current Maintainer of -the Work through the following steps: - - 1. Make a reasonable attempt to trace the Current Maintainer (and - the Copyright Holder, if the two differ) through the means of - an Internet or similar search. - - 2. If this search is successful, then enquire whether the Work - is still maintained. - - a. If it is being maintained, then ask the Current Maintainer - to update their communication data within one month. - - b. If the search is unsuccessful or no action to resume active - maintenance is taken by the Current Maintainer, then announce - within the pertinent community your intention to take over - maintenance. (If the Work is a LaTeX work, this could be - done, for example, by posting to comp.text.tex.) - - 3a. If the Current Maintainer is reachable and agrees to pass - maintenance of the Work to you, then this takes effect - immediately upon announcement. - - b. If the Current Maintainer is not reachable and the Copyright - Holder agrees that maintenance of the Work be passed to you, - then this takes effect immediately upon announcement. - - 4. If you make an `intention announcement'' as described in 2b. above - and after three months your intention is challenged neither by - the Current Maintainer nor by the Copyright Holder nor by other - people, then you may arrange for the Work to be changed so as - to name you as the (new) Current Maintainer. - - 5. If the previously unreachable Current Maintainer becomes - reachable once more within three months of a change completed - under the terms of 3b) or 4), then that Current Maintainer must - become or remain the Current Maintainer upon request provided - they then update their communication data within one month. - -A change in the Current Maintainer does not, of itself, alter the fact -that the Work is distributed under the LPPL license. - -If you become the Current Maintainer of the Work, you should -immediately provide, within the Work, a prominent and unambiguous -statement of your status as Current Maintainer. You should also -announce your new status to the same pertinent community as -in 2b) above. - - -WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE -====================================================== - -This section contains important instructions, examples, and -recommendations for authors who are considering distributing their -works under this license. These authors are addressed as `you'' in -this section. - -Choosing This License or Another License ----------------------------------------- - -If for any part of your work you want or need to use *distribution* -conditions that differ significantly from those in this license, then -do not refer to this license anywhere in your work but, instead, -distribute your work under a different license. You may use the text -of this license as a model for your own license, but your license -should not refer to the LPPL or otherwise give the impression that -your work is distributed under the LPPL. - -The document `modguide.tex'' in the base LaTeX distribution explains -the motivation behind the conditions of this license. It explains, -for example, why distributing LaTeX under the GNU General Public -License (GPL) was considered inappropriate. Even if your work is -unrelated to LaTeX, the discussion in `modguide.tex'' may still be -relevant, and authors intending to distribute their works under any -license are encouraged to read it. - -A Recommendation on Modification Without Distribution ------------------------------------------------------ - -It is wise never to modify a component of the Work, even for your own -personal use, without also meeting the above conditions for -distributing the modified component. While you might intend that such -modifications will never be distributed, often this will happen by -accident -- you may forget that you have modified that component; or -it may not occur to you when allowing others to access the modified -version that you are thus distributing it and violating the conditions -of this license in ways that could have legal implications and, worse, -cause problems for the community. It is therefore usually in your -best interest to keep your copy of the Work identical with the public -one. Many works provide ways to control the behavior of that work -without altering any of its licensed components. - -How to Use This License ------------------------ - -To use this license, place in each of the components of your work both -an explicit copyright notice including your name and the year the work -was authored and/or last substantially modified. Include also a -statement that the distribution and/or modification of that -component is constrained by the conditions in this license. - -Here is an example of such a notice and statement: - - %% pig.dtx - %% Copyright 2003 M. Y. Name - % - % This work may be distributed and/or modified under the - % conditions of the LaTeX Project Public License, either version 1.3 - % of this license or (at your option) any later version. - % The latest version of this license is in - % http://www.latex-project.org/lppl.txt - % and version 1.3 or later is part of all distributions of LaTeX - % version 2003/12/01 or later. - % - % This work has the LPPL maintenance status "maintained". - % - % This Current Maintainer of this work is M. Y. Name. - % - % This work consists of the files pig.dtx and pig.ins - % and the derived file pig.sty. - -Given such a notice and statement in a file, the conditions -given in this license document would apply, with the `Work'' referring -to the three files `pig.dtx'', `pig.ins'', and `pig.sty'' (the last being -generated from `pig.dtx'' using `pig.ins''), the `Base Interpreter'' -referring to any "LaTeX-Format", and both `Copyright Holder'' and -`Current Maintainer'' referring to the person `M. Y. Name''. - -If you do not want the Maintenance section of LPPL to apply to your -Work, change "maintained" above into "author-maintained". -However, we recommend that you use "maintained" as the Maintenance -section was added in order to ensure that your Work remains useful to -the community even when you can no longer maintain and support it -yourself. - - -Important Recommendations -------------------------- - - Defining What Constitutes the Work - - The LPPL requires that distributions of the Work contain all the - files of the Work. It is therefore important that you provide a - way for the licensee to determine which files constitute the Work. - This could, for example, be achieved by explicitly listing all the - files of the Work near the copyright notice of each file or by - using a line such as: - - % This work consists of all files listed in manifest.txt. - - in that place. In the absence of an unequivocal list it might be - impossible for the licensee to determine what is considered by you - to comprise the Work and, in such a case, the licensee would be - entitled to make reasonable conjectures as to which files comprise - the Work. diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3a.yml b/tests/licensedcode/data/more_licenses/licenses/lppl-1.3a.yml deleted file mode 100644 index 717ee242a5b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3a.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lppl-1.3a -notes: this is a license from fossology license reference LPPL-1.3a (LaTeX Project Public License - 1.3a) http://www.latex-project.org/lppl/lppl-1-3a.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3c.txt b/tests/licensedcode/data/more_licenses/licenses/lppl-1.3c.txt deleted file mode 100644 index 80a2f736912..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3c.txt +++ /dev/null @@ -1,415 +0,0 @@ -The LaTeX Project Public License -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - -LPPL Version 1.3c 2008-05-04 - -Copyright 1999 2002-2008 LaTeX3 Project - Everyone is allowed to distribute verbatim copies of this - license document, but modification of it is not allowed. - - -PREAMBLE -======== - -The LaTeX Project Public License (LPPL) is the primary license under -which the LaTeX kernel and the base LaTeX packages are distributed. - -You may use this license for any work of which you hold the copyright -and which you wish to distribute. This license may be particularly -suitable if your work is TeX-related (such as a LaTeX package), but -it is written in such a way that you can use it even if your work is -unrelated to TeX. - -The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE'', -below, gives instructions, examples, and recommendations for authors -who are considering distributing their works under this license. - -This license gives conditions under which a work may be distributed -and modified, as well as conditions under which modified versions of -that work may be distributed. - -We, the LaTeX3 Project, believe that the conditions below give you -the freedom to make and distribute modified versions of your work -that conform with whatever technical specifications you wish while -maintaining the availability, integrity, and reliability of -that work. If you do not see how to achieve your goal while -meeting these conditions, then read the document `cfgguide.tex'' -and `modguide.tex'' in the base LaTeX distribution for suggestions. - - -DEFINITIONS -=========== - -In this license document the following terms are used: - - `Work'' - Any work being distributed under this License. - - `Derived Work'' - Any work that under any applicable law is derived from the Work. - - `Modification'' - Any procedure that produces a Derived Work under any applicable - law -- for example, the production of a file containing an - original file associated with the Work or a significant portion of - such a file, either verbatim or with modifications and/or - translated into another language. - - `Modify'' - To apply any procedure that produces a Derived Work under any - applicable law. - - `Distribution'' - Making copies of the Work available from one person to another, in - whole or in part. Distribution includes (but is not limited to) - making any electronic components of the Work accessible by - file transfer protocols such as FTP or HTTP or by shared file - systems such as Sun''s Network File System (NFS). - - `Compiled Work'' - A version of the Work that has been processed into a form where it - is directly usable on a computer system. This processing may - include using installation facilities provided by the Work, - transformations of the Work, copying of components of the Work, or - other activities. Note that modification of any installation - facilities provided by the Work constitutes modification of the Work. - - `Current Maintainer'' - A person or persons nominated as such within the Work. If there is - no such explicit nomination then it is the `Copyright Holder'' under - any applicable law. - - `Base Interpreter'' - A program or process that is normally needed for running or - interpreting a part or the whole of the Work. - - A Base Interpreter may depend on external components but these - are not considered part of the Base Interpreter provided that each - external component clearly identifies itself whenever it is used - interactively. Unless explicitly specified when applying the - license to the Work, the only applicable Base Interpreter is a - `LaTeX-Format'' or in the case of files belonging to the - `LaTeX-format'' a program implementing the `TeX language''. - - - -CONDITIONS ON DISTRIBUTION AND MODIFICATION -=========================================== - -1. Activities other than distribution and/or modification of the Work -are not covered by this license; they are outside its scope. In -particular, the act of running the Work is not restricted and no -requirements are made concerning any offers of support for the Work. - -2. You may distribute a complete, unmodified copy of the Work as you -received it. Distribution of only part of the Work is considered -modification of the Work, and no right to distribute such a Derived -Work may be assumed under the terms of this clause. - -3. You may distribute a Compiled Work that has been generated from a -complete, unmodified copy of the Work as distributed under Clause 2 -above, as long as that Compiled Work is distributed in such a way that -the recipients may install the Compiled Work on their system exactly -as it would have been installed if they generated a Compiled Work -directly from the Work. - -4. If you are the Current Maintainer of the Work, you may, without -restriction, modify the Work, thus creating a Derived Work. You may -also distribute the Derived Work without restriction, including -Compiled Works generated from the Derived Work. Derived Works -distributed in this manner by the Current Maintainer are considered to -be updated versions of the Work. - -5. If you are not the Current Maintainer of the Work, you may modify -your copy of the Work, thus creating a Derived Work based on the Work, -and compile this Derived Work, thus creating a Compiled Work based on -the Derived Work. - -6. If you are not the Current Maintainer of the Work, you may -distribute a Derived Work provided the following conditions are met -for every component of the Work unless that component clearly states -in the copyright notice that it is exempt from that condition. Only -the Current Maintainer is allowed to add such statements of exemption -to a component of the Work. - - a. If a component of this Derived Work can be a direct replacement - for a component of the Work when that component is used with the - Base Interpreter, then, wherever this component of the Work - identifies itself to the user when used interactively with that - Base Interpreter, the replacement component of this Derived Work - clearly and unambiguously identifies itself as a modified version - of this component to the user when used interactively with that - Base Interpreter. - - b. Every component of the Derived Work contains prominent notices - detailing the nature of the changes to that component, or a - prominent reference to another file that is distributed as part - of the Derived Work and that contains a complete and accurate log - of the changes. - - c. No information in the Derived Work implies that any persons, - including (but not limited to) the authors of the original version - of the Work, provide any support, including (but not limited to) - the reporting and handling of errors, to recipients of the - Derived Work unless those persons have stated explicitly that - they do provide such support for the Derived Work. - - d. You distribute at least one of the following with the Derived Work: - - 1. A complete, unmodified copy of the Work; - if your distribution of a modified component is made by - offering access to copy the modified component from a - designated place, then offering equivalent access to copy - the Work from the same or some similar place meets this - condition, even though third parties are not compelled to - copy the Work along with the modified component; - - 2. Information that is sufficient to obtain a complete, - unmodified copy of the Work. - -7. If you are not the Current Maintainer of the Work, you may -distribute a Compiled Work generated from a Derived Work, as long as -the Derived Work is distributed to all recipients of the Compiled -Work, and as long as the conditions of Clause 6, above, are met with -regard to the Derived Work. - -8. The conditions above are not intended to prohibit, and hence do not -apply to, the modification, by any method, of any component so that it -becomes identical to an updated version of that component of the Work as -it is distributed by the Current Maintainer under Clause 4, above. - -9. Distribution of the Work or any Derived Work in an alternative -format, where the Work or that Derived Work (in whole or in part) is -then produced by applying some process to that format, does not relax or -nullify any sections of this license as they pertain to the results of -applying that process. - -10. a. A Derived Work may be distributed under a different license - provided that license itself honors the conditions listed in - Clause 6 above, in regard to the Work, though it does not have - to honor the rest of the conditions in this license. - - b. If a Derived Work is distributed under a different license, that - Derived Work must provide sufficient documentation as part of - itself to allow each recipient of that Derived Work to honor the - restrictions in Clause 6 above, concerning changes from the Work. - -11. This license places no restrictions on works that are unrelated to -the Work, nor does this license place any restrictions on aggregating -such works with the Work by any means. - -12. Nothing in this license is intended to, or may be used to, prevent -complete compliance by all parties with all applicable laws. - - -NO WARRANTY -=========== - -There is no warranty for the Work. Except when otherwise stated in -writing, the Copyright Holder provides the Work `as is'', without -warranty of any kind, either expressed or implied, including, but not -limited to, the implied warranties of merchantability and fitness for a -particular purpose. The entire risk as to the quality and performance -of the Work is with you. Should the Work prove defective, you assume -the cost of all necessary servicing, repair, or correction. - -In no event unless required by applicable law or agreed to in writing -will The Copyright Holder, or any author named in the components of the -Work, or any other party who may distribute and/or modify the Work as -permitted above, be liable to you for damages, including any general, -special, incidental or consequential damages arising out of any use of -the Work or out of inability to use the Work (including, but not limited -to, loss of data, data being rendered inaccurate, or losses sustained by -anyone as a result of any failure of the Work to operate with any other -programs), even if the Copyright Holder or said author or said other -party has been advised of the possibility of such damages. - - -MAINTENANCE OF THE WORK -======================= - -The Work has the status `author-maintained'' if the Copyright Holder -explicitly and prominently states near the primary copyright notice in -the Work that the Work can only be maintained by the Copyright Holder -or simply that it is `author-maintained''. - -The Work has the status `maintained'' if there is a Current Maintainer -who has indicated in the Work that they are willing to receive error -reports for the Work (for example, by supplying a valid e-mail -address). It is not required for the Current Maintainer to acknowledge -or act upon these error reports. - -The Work changes from status `maintained'' to `unmaintained'' if there -is no Current Maintainer, or the person stated to be Current -Maintainer of the work cannot be reached through the indicated means -of communication for a period of six months, and there are no other -significant signs of active maintenance. - -You can become the Current Maintainer of the Work by agreement with -any existing Current Maintainer to take over this role. - -If the Work is unmaintained, you can become the Current Maintainer of -the Work through the following steps: - - 1. Make a reasonable attempt to trace the Current Maintainer (and - the Copyright Holder, if the two differ) through the means of - an Internet or similar search. - - 2. If this search is successful, then enquire whether the Work - is still maintained. - - a. If it is being maintained, then ask the Current Maintainer - to update their communication data within one month. - - b. If the search is unsuccessful or no action to resume active - maintenance is taken by the Current Maintainer, then announce - within the pertinent community your intention to take over - maintenance. (If the Work is a LaTeX work, this could be - done, for example, by posting to comp.text.tex.) - - 3a. If the Current Maintainer is reachable and agrees to pass - maintenance of the Work to you, then this takes effect - immediately upon announcement. - - b. If the Current Maintainer is not reachable and the Copyright - Holder agrees that maintenance of the Work be passed to you, - then this takes effect immediately upon announcement. - - 4. If you make an `intention announcement'' as described in 2b. above - and after three months your intention is challenged neither by - the Current Maintainer nor by the Copyright Holder nor by other - people, then you may arrange for the Work to be changed so as - to name you as the (new) Current Maintainer. - - 5. If the previously unreachable Current Maintainer becomes - reachable once more within three months of a change completed - under the terms of 3b) or 4), then that Current Maintainer must - become or remain the Current Maintainer upon request provided - they then update their communication data within one month. - -A change in the Current Maintainer does not, of itself, alter the fact -that the Work is distributed under the LPPL license. - -If you become the Current Maintainer of the Work, you should -immediately provide, within the Work, a prominent and unambiguous -statement of your status as Current Maintainer. You should also -announce your new status to the same pertinent community as -in 2b) above. - - -WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE -====================================================== - -This section contains important instructions, examples, and -recommendations for authors who are considering distributing their -works under this license. These authors are addressed as `you'' in -this section. - -Choosing This License or Another License ----------------------------------------- - -If for any part of your work you want or need to use *distribution* -conditions that differ significantly from those in this license, then -do not refer to this license anywhere in your work but, instead, -distribute your work under a different license. You may use the text -of this license as a model for your own license, but your license -should not refer to the LPPL or otherwise give the impression that -your work is distributed under the LPPL. - -The document `modguide.tex'' in the base LaTeX distribution explains -the motivation behind the conditions of this license. It explains, -for example, why distributing LaTeX under the GNU General Public -License (GPL) was considered inappropriate. Even if your work is -unrelated to LaTeX, the discussion in `modguide.tex'' may still be -relevant, and authors intending to distribute their works under any -license are encouraged to read it. - -A Recommendation on Modification Without Distribution ------------------------------------------------------ - -It is wise never to modify a component of the Work, even for your own -personal use, without also meeting the above conditions for -distributing the modified component. While you might intend that such -modifications will never be distributed, often this will happen by -accident -- you may forget that you have modified that component; or -it may not occur to you when allowing others to access the modified -version that you are thus distributing it and violating the conditions -of this license in ways that could have legal implications and, worse, -cause problems for the community. It is therefore usually in your -best interest to keep your copy of the Work identical with the public -one. Many works provide ways to control the behavior of that work -without altering any of its licensed components. - -How to Use This License ------------------------ - -To use this license, place in each of the components of your work both -an explicit copyright notice including your name and the year the work -was authored and/or last substantially modified. Include also a -statement that the distribution and/or modification of that -component is constrained by the conditions in this license. - -Here is an example of such a notice and statement: - - %% pig.dtx - %% Copyright 2005 M. Y. Name - % - % This work may be distributed and/or modified under the - % conditions of the LaTeX Project Public License, either version 1.3 - % of this license or (at your option) any later version. - % The latest version of this license is in - % http://www.latex-project.org/lppl.txt - % and version 1.3 or later is part of all distributions of LaTeX - % version 2005/12/01 or later. - % - % This work has the LPPL maintenance status `maintained''. - % - % The Current Maintainer of this work is M. Y. Name. - % - % This work consists of the files pig.dtx and pig.ins - % and the derived file pig.sty. - -Given such a notice and statement in a file, the conditions -given in this license document would apply, with the `Work'' referring -to the three files `pig.dtx'', `pig.ins'', and `pig.sty'' (the last being -generated from `pig.dtx'' using `pig.ins''), the `Base Interpreter'' -referring to any `LaTeX-Format'', and both `Copyright Holder'' and -`Current Maintainer'' referring to the person `M. Y. Name''. - -If you do not want the Maintenance section of LPPL to apply to your -Work, change `maintained'' above into `author-maintained''. -However, we recommend that you use `maintained'', as the Maintenance -section was added in order to ensure that your Work remains useful to -the community even when you can no longer maintain and support it -yourself. - -Derived Works That Are Not Replacements ---------------------------------------- - -Several clauses of the LPPL specify means to provide reliability and -stability for the user community. They therefore concern themselves -with the case that a Derived Work is intended to be used as a -(compatible or incompatible) replacement of the original Work. If -this is not the case (e.g., if a few lines of code are reused for a -completely different task), then clauses 6b and 6d shall not apply. - - -Important Recommendations -------------------------- - - Defining What Constitutes the Work - - The LPPL requires that distributions of the Work contain all the - files of the Work. It is therefore important that you provide a - way for the licensee to determine which files constitute the Work. - This could, for example, be achieved by explicitly listing all the - files of the Work near the copyright notice of each file or by - using a line such as: - - % This work consists of all files listed in manifest.txt. - - in that place. In the absence of an unequivocal list it might be - impossible for the licensee to determine what is considered by you - to comprise the Work and, in such a case, the licensee would be - entitled to make reasonable conjectures as to which files comprise - the Work. diff --git a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3c.yml b/tests/licensedcode/data/more_licenses/licenses/lppl-1.3c.yml deleted file mode 100644 index 33c67f0e312..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/lppl-1.3c.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - lppl-1.3c -notes: this is a license from fossology license reference LPPL-1.3c (LaTeX Project Public License - 1.3c) http://www.latex-project.org/lppl/lppl-1-3c.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/metrolink-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/metrolink-1.0.txt deleted file mode 100644 index 3e820d7a329..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/metrolink-1.0.txt +++ /dev/null @@ -1,91 +0,0 @@ -METRO LINK PUBLIC LICENSE -MOTIF GRAPHICAL USER INTERFACE SOFTWARE -Version 1.00 - - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS METRO LINK PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT''S ACCEPTANCE OF THIS AGREEMENT. -1. DEFINITIONS -"Contribution" means: - -in the case of METRO LINK, INCORPORATED ("METRO LINK"), the Metro Link Program, and - -in the case of each Contributor, - -changes to the Program, and -additions to the Program; - -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. - -"Contributor" means The Open Group, METRO LINK and any other entity that distributes the Program. - -"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. - -"Open Source" programs mean software for the source code is available without confidential or trade secret restrictions and for which the source code and object code are available for distribution without license charges. - -"Metro Link Program" means the original version of the software accompanying this Agreement as released by METRO LINK, including source code, object code and documentation, if any. - -"Program" means the Metro Link Program and Contributions. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -The rights granted under this license are limited solely to distribution and sublicensing of the Contribution(s) on, with or for operating systems which are themselves Open Source programs. - -Subject to the terms of this Agreement, The Open Group Public License Agreement attached hereto (“The Open Group Agreement”) and the limitations of this Section 2, 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. - -Subject to the terms of this Agreement, The Open Group Agreement and this Section 2, 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. - - -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. - -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. - - -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: -it complies with the terms and conditions of this Agreement and The Open Group Agreement; and - -its license agreement: - - -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; -effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -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. - -When the Program is made available in source code form: -it must be made available under this Agreement and the Open Group Agreement; and - -a copy of this Agreement must be included with each copy of the Program. - - -Each Contributor must include the following in a conspicuous location in the Program: -Copyright (C) May, 2000 The Open Group, Metro Link, Incorporated and others. All Rights Reserved - -In addition, 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. -4. COMMERCIAL DISTRIBUTION -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. -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. -5. NO WARRANTY -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. -6. DISCLAIMER OF LIABILITY -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. -7. GENERAL -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. - -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. - -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. - -METRO LINK may publish new versions (including revisions) of this Agreement from time to time. 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. No one other than METRO LINK has the right to modify this Agreement. 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. - -This Agreement is governed by the laws of the State of Florida 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/metrolink-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/metrolink-1.0.yml deleted file mode 100644 index 15d2ca0b33b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/metrolink-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - metrolink-1.0 -notes: this is a license from fossology license reference MetroLink-1.0 (Metro Link User Interface - Software License 1.0) http://www.opengroup.org/openmotif/supporters/metrolink/license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/mit-advertising.txt b/tests/licensedcode/data/more_licenses/licenses/mit-advertising.txt deleted file mode 100644 index 0796507b22a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mit-advertising.txt +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (C) 2000-2008 Carsten Haitzler, Geoff Harrison and various contributors Copyright (C) 2004-2008 Kim Woelders - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies of the Software, its documentation and marketing & publicity materials, and acknowledgment shall be given in the documentation, materials and software packages that this Software was used. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mit-advertising.yml b/tests/licensedcode/data/more_licenses/licenses/mit-advertising.yml deleted file mode 100644 index 6dba4841a03..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mit-advertising.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - enlightenment -notes: this is a license from fossology license reference MIT-advertising (Enlightenment License - (e16)) https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising diff --git a/tests/licensedcode/data/more_licenses/licenses/mit-feh.txt b/tests/licensedcode/data/more_licenses/licenses/mit-feh.txt deleted file mode 100644 index eb069f2921e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mit-feh.txt +++ /dev/null @@ -1,5 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies of the Software and its documentation and acknowledgment shall be given in the documentation and software packages that this Software was used. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mit-feh.yml b/tests/licensedcode/data/more_licenses/licenses/mit-feh.yml deleted file mode 100644 index 900e85166ac..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mit-feh.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - mit-ack -notes: this is a license from fossology license reference MIT-feh (feh License) https://fedoraproject.org/wiki/Licensing/MIT#feh diff --git a/tests/licensedcode/data/more_licenses/licenses/mit.txt b/tests/licensedcode/data/more_licenses/licenses/mit.txt deleted file mode 100644 index 3c3ca551d65..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mit.txt +++ /dev/null @@ -1,17 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mit.yml b/tests/licensedcode/data/more_licenses/licenses/mit.yml deleted file mode 100644 index 433b0c71c2d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - mit -notes: this is a license from fossology license reference MIT (MIT License) http://www.opensource.org/licenses/mit-license.php diff --git a/tests/licensedcode/data/more_licenses/licenses/mitnfa.txt b/tests/licensedcode/data/more_licenses/licenses/mitnfa.txt deleted file mode 100644 index 3c08d76eb3e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mitnfa.txt +++ /dev/null @@ -1,7 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -Distributions of all or part of the Software intended to be used by the recipients as they would use the unmodified Software, containing modifications that substantially alter, remove, or disable functionality of the Software, outside of the documented configuration mechanisms provided by the Software, shall be modified such that the Original Author''s bug reporting email addresses and urls are either replaced with the contact information of the parties responsible for the changes, or removed entirely. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mitnfa.yml b/tests/licensedcode/data/more_licenses/licenses/mitnfa.yml deleted file mode 100644 index cf8d1e94503..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mitnfa.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - mit-no-false-attribs -notes: this is a license from fossology license reference MITNFA (MIT +no-false-attribs license) - https://fedoraproject.org/wiki/Licensing/MITNFA diff --git a/tests/licensedcode/data/more_licenses/licenses/motosoto.txt b/tests/licensedcode/data/more_licenses/licenses/motosoto.txt deleted file mode 100644 index b934fbb0e7e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/motosoto.txt +++ /dev/null @@ -1,420 +0,0 @@ -MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1 -This Motosoto Open Source License (the "License") applies to "Community -Portal Server" and related software products as well as any updatesor -maintenance releases of that software ("Motosoto Products") that are -distributed by Motosoto.Com B.V. ("Licensor"). Any Motosoto -Product licensed pursuant to this License is a "Licensed Product." Licensed -Product, in its entirety, is protected by Dutch copyright law. -This -License identifies the terms under which you may use, copy, distribute or modify -Licensed Product and has been submitted to the Open Software Initiative (OSI) -for approval. - -Preamble - -This Preamble is intended to describe, in plain English, the nature and scope of -this License. However, this Preamble is not a part of this license. The legal -effect of this License is dependent only upon the terms of the License and not -this Preamble. -This License complies with the Open Source Definition and has been approved by -Open Source Initiative. Software distributed under this License may be marked -as "OSI Certified Open Source Software." - -This License provides that: - -1. You may use, sell or give away the Licensed Product, alone or as a -component of an aggregate software distribution containing -programs from several different sources. No royalty or other fee is -required. - -2. Both Source Code and executable versions of the Licensed Product, -including Modifications made by previous Contributors, are -available for your use. (The terms "Licensed Product," "Modifications," -"Contributors" and "Source Code" are defined in the License.) - -3. You are allowed to make Modifications to the Licensed Product, and you -can create Derivative Works from it. (The term "Derivative -Works" is defined in the License.) - -4. By accepting the Licensed Product under the provisions of this License, -you agree that any Modifications you make to the Licensed -Product and then distribute are governed by the provisions of this -License. In particular, you must make the Source Code of your -Modifications available to others. - -5. You may use the Licensed Product for any purpose, but the Licensor is -not providing you any warranty whatsoever, nor is the Licensor -accepting any liability in the event that the Licensed Product doesn''t -work properly or causes you any injury or damages. - -6. If you sublicense the Licensed Product or Derivative Works, you may -charge fees for warranty or support, or for accepting indemnity -or liability obligations to your customers. You cannot charge for the -Source Code. - -7. If you assert any patent claims against the Licensor relating to the -Licensed Product, or if you breach any terms of the License, your -rights to the Licensed Product under this License automatically -terminate. - -You may use this License to distribute your own Derivative Works, in which -case the provisions of this License will apply to your Derivative -Works just as they do to the original Licensed Product. - -Alternatively, you may distribute your Derivative Works under any other -OSI-approved Open Source license, or under a proprietary license of -your choice. If you use any license other than this License, however, you must -continue to fulfill the requirements of this License (including the -provisions relating to publishing the Source Code) for those portions of your -Derivative Works that consist of the Licensed Product, including -the files containing Modifications. - -New versions of this License may be published from time to time. You may -choose to continue to use the license terms in this version of the -License or those from the new version. However, only the Licensor has the right -to change the License terms as they apply to the Licensed -Product. -This License relies on precise definitions for certain terms. Those terms are -defined when they are first used, and the definitions are repeated for -your convenience in a Glossary at the end of the License. - -License Terms - -1. Grant of License From Licensor. - -Licensor -hereby grants you a world-wide, royalty-free, non-exclusive license, subject to -third -party intellectual property claims, to do the following: - -a. Use, reproduce, modify, display, perform, sublicense and -distribute Licensed Product or portions thereof (including -Modifications as hereinafter defined), in both Source Code or as -an executable program. "Source Code" means the preferred -form for making modifications to the Licensed Product, including -all modules contained therein, plus any associated -interface definition files, scripts used to control compilation -and installation of an executable program, or a list of -differential comparisons against the Source Code of the Licensed -Product. - -b. Create Derivative Works (as that term is defined under Dutch -copyright law) of Licensed Product by adding to or deleting -from the substance or structure of said Licensed Product. - -c. Under claims of patents now or hereafter owned or controlled -by Licensor, to make, use, sell, offer for sale, have made, -and/or otherwise dispose of Licensed Product or portions thereof, -but solely to the extent that any such claim is necessary to -enable you to make, use, sell, offer for sale, have made, and/or -otherwise dispose of Licensed Product or portions thereof or -Derivative Works thereof. - -2. Grant of License to Modifications From -Contributor. - -"Modifications" means any additions to or -deletions from the substance or -structure of (i) a file containing Licensed Product, or (ii) any new file -that contains any part of Licensed Product. Hereinafter in this -License, the term "Licensed Product" shall include all previous -Modifications that you receive from any Contributor. By -application of the provisions in Section 4(a) below, each person or -entity who created or contributed to the creation of, and distributed, -a Modification (a "Contributor") hereby grants you a world-wide, -royalty-free, non-exclusive license, subject to third party -intellectual property claims, to do the following: - -a. Use, reproduce, modify, display, perform, sublicense and -distribute any Modifications created by such Contributor or -portions thereof, in both Source Code or as an executable program, -either on an unmodified basis or as part of Derivative -Works. - -b. Under claims of patents now or hereafter owned or controlled by -Contributor, to make, use, sell, offer for sale, have made, -and/or otherwise dispose of Modifications or portions thereof, but -solely to the extent that any such claim is necessary to -enable you to make, use, sell, offer for sale, have made, and/or -otherwise dispose of Modifications or portions thereof or -Derivative Works thereof. - -3. Exclusions From License Grant. - -Nothing in -this License shall be deemed to grant any rights to trademarks, copyrights, -patents, -trade secrets or any other intellectual property of Licensor or any -Contributor except as expressly stated herein. No patent license is -granted separate from the Licensed Product, for code that you delete from -the Licensed Product, or for combinations of the Licensed -Product with other software or hardware. No right is granted to the -trademarks of Licensor or any Contributor even if such marks are -included in the Licensed Product. Nothing in this License shall be -interpreted to prohibit Licensor from licensing under different -terms from this License any code that Licensor otherwise would have a -right to license. - -4. Your Obligations Regarding Distribution. - -a. Application of This License to Your -Modifications. As an express condition for your use of the Licensed -Product, you -hereby agree that any Modifications that you create or to which -you contribute, and which you distribute, are governed by the -terms of this License including, without limitation, Section 2. -Any Modifications that you create or to which you contribute -may be distributed only under the terms of this License or a -future version of this License released under Section 7. You must -include a copy of this License with every copy of the -Modifications you distribute. You agree not to offer or impose any -terms on any Source Code or executable version of the Licensed -Product or Modifications that alter or restrict the applicable -version of this License or the recipients'' rights hereunder. -However, you may include an additional document offering the -additional rights described in Section 4(e). - -b. Availability of Source Code. You must make -available, under the terms of this License, the Source Code of the Licensed -Product and any Modifications that you distribute, either on the -same media as you distribute any executable or other form -of the Licensed Product, or via a mechanism generally accepted in -the software development community for the electronic -transfer of data (an "Electronic Distribution Mechanism"). The -Source Code for any version of Licensed Product or -Modifications that you distribute must remain available for at -least twelve (12) months after the date it initially became -available, or at least six (6) months after a subsequent version -of said Licensed Product or Modifications has been made -available. You are responsible for ensuring that the Source Code -version remains available even if the Electronic Distribution -Mechanism is maintained by a third party. - -c. Description of Modifications. You must cause any -Modifications that you create or to which you contribute, and which -you distribute, to contain a file documenting the additions, -changes or deletions you made to create or contribute to those -Modifications, and the dates of any such additions, changes or -deletions. You must include a prominent statement that the -Modifications are derived, directly or indirectly, from the -Licensed Product and include the names of the Licensor and any -Contributor to the Licensed Product in (i) the Source Code and -(ii) in any notice displayed by a version of the Licensed -Product you distribute or in related documentation in which you -describe the origin or ownership of the Licensed Product. -You may not modify or delete any preexisting copyright notices in -the Licensed Product. - -d. Intellectual Property Matters. - -i. Third Party Claims. If you have -knowledge that a license to a third party''s intellectual property right is -required -to exercise the rights granted by this License, you must -include a text file with the Source Code distribution titled -"LEGAL" that describes the claim and the party making the -claim in sufficient detail that a recipient will know -whom to contact. If you obtain such knowledge after you make -any Modifications available as described in Section -4(b), you shall promptly modify the LEGAL file in all copies -you make available thereafter and shall take other -steps (such as notifying appropriate mailing lists or -newsgroups) reasonably calculated to inform those who -received the Licensed Product from you that new knowledge -has been obtained. - -ii. Contributor APIs. If your -Modifications include an application programming interface ("API") and you have -knowledge of patent licenses that are reasonably necessary -to implement that API, you must also include this -information in the LEGAL file. - -iii. Representations. You represent that, -except as disclosed pursuant to 4(d)(i) above, you believe that any -Modifications you distribute are your original creations and -that you have sufficient rights to grant the rights -conveyed by this License. - -e. Required Notices. You must duplicate this -License in any documentation you provide along with the Source Code of any -Modifications you create or to which you contribute, and which you -distribute, wherever you describe recipients'' rights -relating to Licensed Product. You must duplicate the notice -contained in Exhibit A (the "Notice") in each file of the Source -Code of any copy you distribute of the Licensed Product. If you -created a Modification, you may add your name as a -Contributor to the Notice. If it is not possible to put the Notice -in a particular Source Code file due to its structure, then -you must include such Notice in a location (such as a relevant -directory file) where a user would be likely to look for such a -notice. You may choose to offer, and charge a fee for, warranty, -support, indemnity or liability obligations to one or more -recipients of Licensed Product. However, you may do so only on -your own behalf, and not on behalf of the Licensor or any -Contributor. You must make it clear that any such warranty, -support, indemnity or liability obligation is offered by you -alone, and you hereby agree to indemnify the Licensor and every -Contributor for any liability incurred by the Licensor or such -Contributor as a result of warranty, support, indemnity or -liability terms you offer. - -f. Distribution of Executable Versions. You may -distribute Licensed Product as an executable program under a license of -your choice that may contain terms different from this License -provided (i) you have satisfied the requirements of Sections -4(a) through 4(e) for that distribution, (ii) you include a -conspicuous notice in the executable version, related documentation -and collateral materials stating that the Source Code version of -the Licensed Product is available under the terms of this -License, including a description of how and where you have -fulfilled the obligations of Section 4(b), (iii) you retain all -existing copyright notices in the Licensed Product, and (iv) you -make it clear that any terms that differ from this License are -offered by you alone, not by Licensor or any Contributor. You -hereby agree to indemnify the Licensor and every Contributor -for any liability incurred by Licensor or such Contributor as a -result of any terms you offer. - -g. Distribution of Derivative Works. You may -create Derivative Works (e.g., combinations of some or all of the Licensed -Product with other code) and distribute the Derivative Works as -products under any other license you select, with the -proviso that the requirements of this License are fulfilled for -those portions of the Derivative Works that consist of the -Licensed Product or any Modifications thereto. - -5. Inability to Comply Due to Statute or -Regulation. - -If it is impossible for you to comply with any of -the terms of this License with -respect to some or all of the Licensed Product due to statute, judicial -order, or regulation, then you must (i) comply with the terms of -this License to the maximum extent possible, (ii) cite the statute or -regulation that prohibits you from adhering to the License, and -(iii) describe the limitations and the code they affect. Such description -must be included in the LEGAL file described in Section 4(d), -and must be included with all distributions of the Source Code. Except to -the extent prohibited by statute or regulation, such -description must be sufficiently detailed for a recipient of ordinary -skill at computer programming to be able to understand it. - -6. Application of This License. - -This License -applies to code to which Licensor or Contributor has attached the Notice in -Exhibit A, -which is incorporated herein by this reference. - -7. Versions of This License. - -a. Version. The Motosoto Open Source License is -derived from the Jabber Open Source License. All changes are related to -applicable law and the location of court. - -b. New Versions. Licensor may publish from time to -time revised and/or new versions of the License. - -c. Effect of New Versions. Once Licensed Product -has been published under a particular version of the License, you may always -continue to use it under the terms of that version. You may also -choose to use such Licensed Product under the terms of any -subsequent version of the License published by Licensor. No one -other than Lic ensor has the right to modify the terms -applicable to Licensed Product created under this License. - -d. Derivative Works of this License. If you -create or use a modified version of this License, which you may do only in -order to -apply it to software that is not already a Licensed Product under -this License, you must rename your license so that it is not -confusingly similar to this License, and must make it clear that -your license contains terms that differ from this License. In -so naming your license, you may not use any trademark of Licensor -or any Contributor. - -8. Disclaimer of Warranty. - -LICENSED PRODUCT IS -PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT -WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT -LIMITATION, WARRANTIES -THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A -PARTICULAR PURPOSE OR -NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LICENSED PRODUCT IS -WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU -(AND NOT THE LICENSOR OR -ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR -OR CORRECTION. THIS -DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO -USE OF LICENSED -PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -9. Termination. - -a. Automatic Termination Upon Breach. This -license and the rights granted hereunder will terminate automatically if you -fail to comply with the terms herein and fail to cure such breach -within thirty (30) days of becoming aware of the breach. -All sublicenses to the Licensed Product that are properly granted -shall survive any termination of this license. Provisions -that, by their nature, must remain in effect beyond the -termination of this License, shall survive. - -b. Termination Upon Assertion of Patent -Infringement. If you initiate litigation by asserting a patent -infringement claim -(excluding declaratory judgment actions) against Licensor or a -Contributor (Licensor or Contributor against whom you file -such an action is referred to herein as "Respondent") alleging -that Licensed Product directly or indirectly infringes any -patent, then any and all rights granted by such Respondent to you -under Sections 1 or 2 of this License shall terminate -prospectively upon sixty (60) days notice from Respondent (the -"Notice Period") unless within that Notice Period you -either agree in writing (i) to pay Respondent a mutually agreeable -reasonably royalty for your past or future use of Licensed -Product made by such Respondent, or (ii) withdraw your litigation -claim with respect to Licensed Product against such -Respondent. If within said Notice Period a reasonable royalty and -payment arrangement are not mutually agreed upon in -writing by the parties or the litigation claim is not withdrawn, -the rights granted by Licensor to you under Sections 1 and 2 -automatically terminate at the expiration of said Notice -Period. - -c. Reasonable Value of This License. If you assert a -patent infringement claim against Respondent alleging that Licensed -Product directly or indirectly infringes any patent where such -claim is resolved (such as by license or settlement) prior to -the initiation of patent infringement litigation, then the -reasonable value of the licenses granted by said Respondent under -Sections 1 and 2 shall be taken into account in determining the -amount or value of any payment or license. - -d. No Retroactive Effect of Termination. In the -event of termination under Sections 9(a) or 9(b) above, all end user license -agreements (excluding licenses to distributors and reselle rs) -that have been validly granted by you or any distributor -hereunder prior to termination shall survive -termination. - -10. Limitation of Liability. - -UNDER NO -CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT -(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY -CONTRIBUTOR, OR ANY -DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, -BE LIABLE TO ANY PERSON -FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY -CHARACTER INCLUDING, -WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER -FAILURE OR -MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF -SUCH PARTY SHALL -HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF -LIABILITY SHALL NOT -APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH -PARTY \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/motosoto.yml b/tests/licensedcode/data/more_licenses/licenses/motosoto.yml deleted file mode 100644 index 0557cb463c9..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/motosoto.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - motosoto-0.9.1 -notes: this is a license from fossology license reference Motosoto (Motosoto License) http://www.opensource.org/licenses/motosoto.php diff --git a/tests/licensedcode/data/more_licenses/licenses/mpich2.txt b/tests/licensedcode/data/more_licenses/licenses/mpich2.txt deleted file mode 100644 index 4c119e2626d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpich2.txt +++ /dev/null @@ -1,18 +0,0 @@ -COPYRIGHT - -The following is a notice of limited availability of the code, and disclaimer which must be included in the prologue of the code and in all source listings of the code. - -Copyright Notice -+ 2002 University of Chicago - -Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. This software was authored by: - -Argonne National Laboratory Group W. Gropp: (630) 252-4318; FAX: (630) 252-5986; e-mail: gropp@mcs.anl.gov E. Lusk: (630) 252-7852; FAX: (630) 252-5986; e-mail: lusk@mcs.anl.gov Mathematics and Computer Science Division Argonne National Laboratory, Argonne IL 60439 - -GOVERNMENT LICENSE - -Portions of this material resulted from work developed under a U.S. Government Contract and are subject to the following license: the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly. - -DISCLAIMER - -This computer code material was prepared, in part, as an account of work sponsored by an agency of the United States Government. Neither the United States, nor the University of Chicago, nor any of their employees, makes any warranty express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately owned rights. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mpich2.yml b/tests/licensedcode/data/more_licenses/licenses/mpich2.yml deleted file mode 100644 index ef3bfc43c6c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpich2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - mpich -notes: this is a license from fossology license reference mpich2 (mpich2 License) https://fedoraproject.org/wiki/Licensing/MIT diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/mpl-1.0.txt deleted file mode 100644 index e876f660c71..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-1.0.txt +++ /dev/null @@ -1,107 +0,0 @@ -MOZILLA PUBLIC LICENSE -Version 1.0 - -1. Definitions. - -1.1. ``Contributor'''' means each entity that creates or contributes to the creation of Modifications. -1.2. ``Contributor Version'''' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. ``Covered Code'''' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. ``Electronic Distribution Mechanism'''' means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. ``Executable'''' means Covered Code in any form other than Source Code. - -1.6. ``Initial Developer'''' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. ``Larger Work'''' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. ``License'''' means this document. - -1.9. ``Modifications'''' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10. ``Original Code'''' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.11. ``Source Code'''' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. ``You'''' means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, ``You'''' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, ``control'''' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (``Utilize'''') the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -3. Distribution Obligations. -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients'' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled ``LEGAL'''' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. -If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients'' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients'' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient''s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. -6. Versions of the License. -6.1. New Versions. -Netscape Communications Corporation (``Netscape'''') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works. -If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases ``Mozilla'''', ``MOZILLAPL'''', ``MOZPL'''', ``Netscape'''', ``NPL'''' or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'''' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. -8. TERMINATION. -This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -9. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. -10. U.S. GOVERNMENT END USERS. -The Covered Code is a ``commercial item,'''' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer software'''' and ``commercial computer software documentation,'''' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. -11. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. -12. RESPONSIBILITY FOR CLAIMS. -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. -EXHIBIT A. -``The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is ________________________. Portions created by ______________________ are Copyright (C) ______ _______________________. All Rights Reserved. - -Contributor(s): ______________________________________. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/mpl-1.0.yml deleted file mode 100644 index bb72aff7003..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - mpl-1.0 -notes: this is a license from fossology license reference MPL-1.0 (Mozilla Public License 1.0) - http://www.mozilla.org/MPL/MPL-1.0.html diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/mpl-1.1.txt deleted file mode 100644 index d2a97e6352e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-1.1.txt +++ /dev/null @@ -1,183 +0,0 @@ -Mozilla Public License Version 1.1 - -1. Definitions. - -1.0.1. "Commercial Use" -means distribution or otherwise making the Covered Code available to a third party. -1.1. "Contributor" -means each entity that creates or contributes to the creation of Modifications. -1.2. "Contributor Version" -means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. -1.3. "Covered Code" -means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. -1.4. "Electronic Distribution Mechanism" -means a mechanism generally accepted in the software development community for the electronic transfer of data. -1.5. "Executable" -means Covered Code in any form other than Source Code. -1.6. "Initial Developer" -means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. -1.7. "Larger Work" -means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. -1.8. "License" -means this document. -1.8.1. "Licensable" -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.9. "Modifications" -means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: -Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. -Any new file that contains any part of the Original Code or previous Modifications. -1.10. "Original Code" -means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. -1.10.1. "Patent Claims" -means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. -1.11. "Source Code" -means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. -1.12. "You" (or "Your") -means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. -2. Source Code License. - -2.1. The Initial Developer Grant. - -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and -under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). -the licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. -Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. -2.2. Contributor Grant. - -Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - -under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and -under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). -the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first makes Commercial Use of the Covered Code. -Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. -3. Distribution Obligations. - -3.1. Application of License. - -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients'' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2. Availability of Source Code. - -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. - -You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims - -If Contributor has knowledge that a license under a third party''s intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs - -If Contributor''s Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. - -(c) Representations. - -Contributor represents that, except as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor''s Modifications are Contributor''s original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. - -You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients'' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. - -You may distribute Covered Code in Executable form only if the requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients'' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient''s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. - -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions - -Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2. Effect of New Versions - -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works - -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. Termination - -8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: - -such Participant''s Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. -any software, hardware, or device, other than such Participant''s Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. -8.3. If You assert a patent infringement claim against Participant alleging that such Participant''s Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. government end users - -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. Miscellaneous - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys'' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. Responsibility for claims - -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. Multiple-licensed code - -Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. - -Exhibit A - Mozilla Public License. - -"The contents of this file are subject to the Mozilla Public License -Version 1.1 (the "License"); you may not use this file except in -compliance with the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL/ - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations -under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is ________________________. -Portions created by ______________________ are Copyright (C) ______ -_______________________. All Rights Reserved. - -Contributor(s): ______________________________________. - -Alternatively, the contents of this file may be used under the terms -of the _____ license (the "[___] License"), in which case the -provisions of [______] License are applicable instead of those -above. If you wish to allow use of your version of this file only -under the terms of the [____] License and not to allow others to use -your version of this file under the MPL, indicate your decision by -deleting the provisions above and replace them with the notice and -other provisions required by the [___] License. If you do not delete -the provisions above, a recipient may use your version of this file -under either the MPL or the [___] License." -NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/mpl-1.1.yml deleted file mode 100644 index 2f7587695f5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - mpl-1.1 -notes: this is a license from fossology license reference MPL-1.1 (Mozilla Public License 1.1) - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0-no-copyleft-exception.txt b/tests/licensedcode/data/more_licenses/licenses/mpl-2.0-no-copyleft-exception.txt deleted file mode 100644 index 5d8ef67da4d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0-no-copyleft-exception.txt +++ /dev/null @@ -1,373 +0,0 @@ -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" -means each individual or legal entity that creates, contributes to -the creation of, or owns Covered Software. - -1.2. "Contributor Version" -means the combination of the Contributions of others (if any) used -by a Contributor and that particular Contributor''s Contribution. - -1.3. "Contribution" -means Covered Software of a particular Contributor. - -1.4. "Covered Software" -means Source Code Form to which the initial Contributor has attached -the notice in Exhibit A, the Executable Form of such Source Code -Form, and Modifications of such Source Code Form, in each case -including portions thereof. - -1.5. "Incompatible With Secondary Licenses" -means - -(a) that the initial Contributor has attached the notice described -in Exhibit B to the Covered Software; or - -(b) that the Covered Software was made available under the terms of -version 1.1 or earlier of the License, but not also under the -terms of a Secondary License. - -1.6. "Executable Form" -means any form of the work other than Source Code Form. - -1.7. "Larger Work" -means a work that combines Covered Software with other material, in -a separate file or files, that is not Covered Software. - -1.8. "License" -means this document. - -1.9. "Licensable" -means having the right to grant, to the maximum extent possible, -whether at the time of the initial grant or subsequently, any and -all of the rights conveyed by this License. - -1.10. "Modifications" -means any of the following: - -(a) any file in Source Code Form that results from an addition to, -deletion from, or modification of the contents of Covered -Software; or - -(b) any new file in Source Code Form that contains any Covered -Software. - -1.11. "Patent Claims" of a Contributor -means any patent claim(s), including without limitation, method, -process, and apparatus claims, in any patent Licensable by such -Contributor that would be infringed, but for the grant of the -License, by the making, using, selling, offering for sale, having -made, import, or transfer of either its Contributions or its -Contributor Version. - -1.12. "Secondary License" -means either the GNU General Public License, Version 2.0, the GNU -Lesser General Public License, Version 2.1, the GNU Affero General -Public License, Version 3.0, or any later versions of those -licenses. - -1.13. "Source Code Form" -means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") -means an individual or a legal entity exercising rights under this -License. For legal entities, "You" includes any entity that -controls, is controlled by, or is under common control with You. For -purposes of this definition, "control" means (a) the power, direct -or indirect, to cause the direction or management of such entity, -whether by contract or otherwise, or (b) ownership of more than -fifty percent (50%) of the outstanding shares or beneficial -ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) -Licensable by such Contributor to use, reproduce, make available, -modify, display, perform, distribute, and otherwise exploit its -Contributions, either on an unmodified basis, with Modifications, or -as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer -for sale, have made, import, and otherwise transfer either its -Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; -or - -(b) for infringements caused by: (i) Your and any other third party''s -modifications of Covered Software, or (ii) the combination of its -Contributions with other software (except as part of its Contributor -Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of -its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients'' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code -Form, as described in Section 3.1, and You must inform recipients of -the Executable Form how they can obtain a copy of such Source Code -Form by reasonable means in a timely manner, at a charge no more -than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this -License, or sublicense it under different terms, provided that the -license for the Executable Form does not attempt to limit or alter -the recipients'' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party''s negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party''s ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - -This Source Code Form is subject to the terms of the Mozilla Public -License, v. 2.0. If a copy of the MPL was not distributed with this -file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - -This Source Code Form is "Incompatible With Secondary Licenses", as -defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0-no-copyleft-exception.yml b/tests/licensedcode/data/more_licenses/licenses/mpl-2.0-no-copyleft-exception.yml deleted file mode 100644 index d296e049a9a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0-no-copyleft-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - mpl-2.0 -notes: this is a license from fossology license reference MPL-2.0-no-copyleft-exception (Mozilla - Public License 2.0 (no copyleft exception)) https://spdx.org/licenses/MPL-2.0-no-copyleft-exception diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/mpl-2.0.txt deleted file mode 100644 index dad3be127c5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0.txt +++ /dev/null @@ -1,144 +0,0 @@ -Mozilla Public License Version 2.0 - -1. Definitions - -1.1. "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - -1.2. "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor''s Contribution. - -1.3. "Contribution" means Covered Software of a particular Contributor. - -1.4. "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - -1.5. "Incompatible With Secondary Licenses" means - -(a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - -(b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - -1.6. "Executable Form" means any form of the work other than Source Code Form. - -1.7. "Larger Work" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - -1.8. "License" means this document. - -1.9. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - -1.10. "Modifications" means any of the following: - -(a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - -(b) any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. - -2.2. Effective Date -The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. - -2.3. Limitations on Grant Scope -The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - -(a) for any code that a Contributor has removed from Covered Software; or - -(b) for infringements caused by: (i) Your and any other third party''s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of its Contributions. - -This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). - -2.4. Subsequent Licenses -No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - -2.5. Representation -Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use -This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - -3. Responsibilities - -3.1. Distribution of Source Form -All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients'' rights in the Source Code Form. - -3.2. Distribution of Executable Form -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients'' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work -You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). - -3.4. Notices -You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms -You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - -4. Inability to Comply Due to Statute or Regulation -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - -6. Disclaimer of Warranty -Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - -7. Limitation of Liability -Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party''s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation -Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party''s ability to bring cross-claims or counter-claims. - -9. Miscellaneous -This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. - -10. Versions of the License - -10.1. New Versions -Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. - -10.2. Effect of New Versions -You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - -10.3. Modified Versions -If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses -If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/mpl-2.0.yml deleted file mode 100644 index 270f455fdcb..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mpl-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - mpl-2.0 -notes: this is a license from fossology license reference MPL-2.0 (Mozilla Public License 2.0) - http://www.mozilla.org/MPL/2.0/ diff --git a/tests/licensedcode/data/more_licenses/licenses/ms-pl.txt b/tests/licensedcode/data/more_licenses/licenses/ms-pl.txt deleted file mode 100644 index 34538a77668..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ms-pl.txt +++ /dev/null @@ -1,18 +0,0 @@ -Microsoft Public License (Ms-PL) - - -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. - -1. Definitions -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. A "contribution" is the original software, or any additions or changes to the software. A "contributor" is any person that distributes its contribution under this license. "Licensed patents" are a contributor''s patent claims that read directly on its contribution. - -2. Grant of Rights -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. - -3. Conditions and Limitations -(A) No Trademark License- This license does not grant you rights to use any contributors'' name, logo, or trademarks. -(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ms-pl.yml b/tests/licensedcode/data/more_licenses/licenses/ms-pl.yml deleted file mode 100644 index 68a9459027d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ms-pl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ms-pl -notes: this is a license from fossology license reference MS-PL (Microsoft Public License) http://www.microsoft.com/opensource/licenses.mspx diff --git a/tests/licensedcode/data/more_licenses/licenses/ms-rl.txt b/tests/licensedcode/data/more_licenses/licenses/ms-rl.txt deleted file mode 100644 index f3e481103a2..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ms-rl.txt +++ /dev/null @@ -1,21 +0,0 @@ -Microsoft Reciprocal License (Ms-RL) - -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. - -1. Definitions -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. -A "contribution" is the original software, or any additions or changes to the software. -A "contributor" is any person that distributes its contribution under this license. -"Licensed patents" are a contributor''s patent claims that read directly on its contribution. - -2. Grant of Rights -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. - -3. Conditions and Limitations -(A) Reciprocal Grants- For any file you distribute that contains code from the software (in source code or binary format), you must provide recipients the source code to that file along with a copy of this license, which license will govern that file. You may license other files that are entirely your own work and do not contain code from the software under any terms you choose. -(B) No Trademark License- This license does not grant you rights to use any contributors'' name, logo, or trademarks. -(C) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -(D) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -(E) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -(F) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ms-rl.yml b/tests/licensedcode/data/more_licenses/licenses/ms-rl.yml deleted file mode 100644 index 8778df09c6f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ms-rl.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ms-rl -notes: this is a license from fossology license reference MS-RL (Microsoft Reciprocal License) - http://www.microsoft.com/opensource/licenses.mspx diff --git a/tests/licensedcode/data/more_licenses/licenses/mtll.txt b/tests/licensedcode/data/more_licenses/licenses/mtll.txt deleted file mode 100644 index 685bedb3da5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mtll.txt +++ /dev/null @@ -1,24 +0,0 @@ -Software License for MTL - -Copyright (c) 2007 The Trustees of Indiana University. -2008 Dresden University of Technology and the Trustees of Indiana University. -2010 SimuNova UG (haftungsbeschränkt), www.simunova.com. -All rights reserved. -Authors: Peter Gottschling and Andrew Lumsdaine - -This file is part of the Matrix Template Library - -Dresden University of Technology -- short TUD -- and Indiana University -- short IU -- have the exclusive rights to license this product under the following license. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. All redistributions of source code must retain the above copyright notice, the list of authors in the original source code, this list of conditions and the disclaimer listed in this license; - 2. All redistributions in binary form must reproduce the above copyright notice, this list of conditions and the disclaimer listed in this license in the documentation and/or other materials provided with the distribution; - 3. Any documentation included with all redistributions must include the following acknowledgement: - "This product includes software developed at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, and Dresden University of Technology. For technical information contact Andrew Lumsdaine at the Pervasive Technology Labs at Indiana University. For administrative and license questions contact the Advanced Research and Technology Institute at 1100 Waterway Blvd. Indianapolis, Indiana 46202, phone 317-274-5905, fax 317-274-5902." - Alternatively, this acknowledgement may appear in the software itself, and wherever such third-party acknowledgments normally appear. - 4. The name "MTL" shall not be used to endorse or promote products derived from this software without prior written permission from IU or TUD. For written permission, please contact Indiana University Advanced Research & Technology Institute. - 5. Products derived from this software may not be called "MTL", nor may "MTL" appear in their name, without prior written permission of Indiana University Advanced Research & Technology Institute. - -TUD and IU provide no reassurances that the source code provided does not infringe the patent or any other intellectual property rights of any other entity. TUD and IU disclaim any liability to any recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. - -LICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED "AS IS" FOR WHICH NO WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. DRESDEN UNIVERSITY OF TECHNOLOGY AND INDIANA UNIVERSITY GIVE NO WARRANTIES AND MAKE NO REPRESENTATION THAT SOFTWARE IS FREE OF INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR OTHER PROPRIETARY RIGHTS. DRESDEN UNIVERSITY OF TECHNOLOGY AND INDIANA UNIVERSITY MAKE NO WARRANTIES THAT SOFTWARE IS FREE FROM "BUGS", "VIRUSES", "TROJAN HORSES", "TRAP DOORS", "WORMS", OR OTHER HARMFUL CODE. LICENSEE ASSUMES THE ENTIRE RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS, AND TO THE PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mtll.yml b/tests/licensedcode/data/more_licenses/licenses/mtll.yml deleted file mode 100644 index 164248abd8c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mtll.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - mtll -notes: this is a license from fossology license reference MTLL (Matrix Template Library License) - https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License diff --git a/tests/licensedcode/data/more_licenses/licenses/multics.txt b/tests/licensedcode/data/more_licenses/licenses/multics.txt deleted file mode 100644 index 77c6e339c1b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/multics.txt +++ /dev/null @@ -1,38 +0,0 @@ -Multics License - -Historical Background - -This edition of the Multics software materials and documentation is -provided and donated to Massachusetts Institute of Technology by Group -BULL including BULL HN Information Systems Inc. as a contribution to -computer science knowledge. This donation is made also to give evidence -of the common contributions of Massachusetts Institute of Technology, -Bell Laboratories, General Electric, Honeywell Information Systems -Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems -Inc. to the development of this operating system. Multics development -was initiated by Massachusetts Institute of Technology Project MAC -(1963-1970), renamed the MIT Laboratory for Computer Science and -Artificial Intelligence in the mid 1970s, under the leadership of -Professor Fernando Jose Corbato. Users consider that Multics provided the -best software architecture for managing computer hardware properly and -for executing programs. Many subsequent operating systems incorporated -Multics principles. Multics was distributed in 1975 to 2000 by Group -Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as -successor in interest by change in name only to Honeywell Bull Inc. and -Honeywell Information Systems Inc. . - ------------------------------------------------------------ - -Permission to use, copy, modify, and distribute these programs and their -documentation for any purpose and without fee is hereby granted,provided -that the below copyright notice and historical background appear in all -copies and that both the copyright notice and historical background and -this permission notice appear in supporting documentation, and that -the names of MIT, HIS, BULL or BULL HN not be used in advertising or -publicity pertaining to distribution of the programs without specific -prior written permission. -Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information -Systems Inc. -Copyright 2006 by BULL HN Information Systems Inc. -Copyright 2006 by Bull SAS -All Rights Reserved \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/multics.yml b/tests/licensedcode/data/more_licenses/licenses/multics.yml deleted file mode 100644 index 9eb3623a0b5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/multics.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - multics -notes: this is a license from fossology license reference Multics (Multics License) http://www.opensource.org/licenses/Multics diff --git a/tests/licensedcode/data/more_licenses/licenses/mup.txt b/tests/licensedcode/data/more_licenses/licenses/mup.txt deleted file mode 100644 index 598a6175de6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mup.txt +++ /dev/null @@ -1,11 +0,0 @@ -Copyright (c) 1995-2012 by Arkkra Enterprises. 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. Any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation. including the reasons for the changes, and the names of those who made the modifications. - -DISCLAIMER - -THIS SOFTWARE IS PROVIDED "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 AUTHORS 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/mup.yml b/tests/licensedcode/data/more_licenses/licenses/mup.yml deleted file mode 100644 index d67efb0bd60..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/mup.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - mup -notes: this is a license from fossology license reference Mup (Mup License) https://fedoraproject.org/wiki/Licensing/Mup diff --git a/tests/licensedcode/data/more_licenses/licenses/nasa-1.3.txt b/tests/licensedcode/data/more_licenses/licenses/nasa-1.3.txt deleted file mode 100644 index f5ec7f2123d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nasa-1.3.txt +++ /dev/null @@ -1,299 +0,0 @@ -NASA OPEN SOURCE AGREEMENT VERSION 1.3 -THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, -REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN -COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT -AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT -AGENCY"). THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT -AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT -DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO -USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT -SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, -ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN -THIS AGREEMENT. - -Government Agency: _____________________________________ - -Government Agency Original Software Designation: ______________ - -Government Agency Original Software Title: ____________________ - -User Registration Requested. Please Visit http://__________________ - -Government Agency Point of Contact for Original Software: ___________________ -________________________________________________ - -1. DEFINITIONS - -A. "Contributor" means Government Agency, as the developer of the -Original Software, and any entity that makes a Modification. - -B. "Covered Patents" mean patent claims licensable by a Contributor -that are necessarily infringed by the use or sale of its Modification -alone or when combined with the Subject Software. - -C. "Display" means the showing of a copy of the Subject Software, -either directly or by means of an image, or any other device. - -D. "Distribution" means conveyance or transfer of the Subject -Software, regardless of means, to another. - -E. "Larger Work" means computer software that combines Subject -Software, or portions thereof, with software separate from the Subject -Software that is not governed by the terms of this Agreement. - -F. "Modification" means any alteration of, including addition to or -deletion from, the substance or structure of either the Original -Software or Subject Software, and includes derivative works, as that -term is defined in the Copyright Statute, 17 USC 101. However, the -act of including Subject Software as part of a Larger Work does not in -and of itself constitute a Modification. - -G. "Original Software" means the computer software first released -under this Agreement by Government Agency with Government Agency -designation ______________ and entitled -_____________________________________________, including source code, -object code and accompanying documentation, if any. - -H. "Recipient" means anyone who acquires the Subject Software under -this Agreement, including all Contributors. - -I. "Redistribution" means Distribution of the Subject Software after a -Modification has been made. - -J. "Reproduction" means the making of a counterpart, image or copy of -the Subject Software. - -K. "Sale" means the exchange of the Subject Software for money or -equivalent value. - -L. "Subject Software" means the Original Software, Modifications, or -any respective parts thereof. - -M. "Use" means the application or employment of the Subject Software -for any purpose. - -2. GRANT OF RIGHTS - -A. Under Non-Patent Rights: Subject to the terms and conditions of -this Agreement, each Contributor, with respect to its own contribution -to the Subject Software, hereby grants to each Recipient a -non-exclusive, world-wide, royalty-free license to engage in the -following activities pertaining to the Subject Software: - -1. Use - -2. Distribution - -3. Reproduction - -4. Modification - -5. Redistribution - -6. Display - -B. Under Patent Rights: Subject to the terms and conditions of this -Agreement, each Contributor, with respect to its own contribution to -the Subject Software, hereby grants to each Recipient under Covered -Patents a non-exclusive, world-wide, royalty-free license to engage in -the following activities pertaining to the Subject Software: - - -1. Use - -2. Distribution - -3. Reproduction - -4. Sale - -5. Offer for Sale - -C. The rights granted under Paragraph B. also apply to the combination -of a Contributor''s Modification and the Subject Software if, at the -time the Modification is added by the Contributor, the addition of -such Modification causes the combination to be covered by the Covered -Patents. It does not apply to any other combinations that include a -Modification. - -D. The rights granted in Paragraphs A. and B. allow the Recipient to -sublicense those same rights. Such sublicense must be under the same -terms and conditions of this Agreement. - -3. OBLIGATIONS OF RECIPIENT - -A. Distribution or Redistribution of the Subject Software must be made -under this Agreement except for additions covered under paragraph 3H. - -1. Whenever a Recipient distributes or redistributes the Subject -Software, a copy of this Agreement must be included with each copy -of the Subject Software; and - -2. If Recipient distributes or redistributes the Subject Software in -any form other than source code, Recipient must also make the -source code freely available, and must provide with each copy of -the Subject Software information on how to obtain the source code -in a reasonable manner on or through a medium customarily used for -software exchange. - -B. Each Recipient must ensure that the following copyright notice -appears prominently in the Subject Software: - -[Government Agency will insert the applicable copyright notice in each -agreement accompanying the initial distribution of original software -and remove this bracketed language.] - -[The following copyright notice will be used if created by a -contractor pursuant to Government Agency contract and rights obtained -from creator by assignment. Government Agency will insert the year -and its Agency designation and remove the bracketed language.] -Copyright " {YEAR} United States Government as represented by ______ -_________________________. All Rights Reserved. - -[The following copyright notice will be used if created by civil -servants only. Government Agency will insert the year and its Agency -designation and remove the bracketed language.] Copyright " {YEAR} -United States Government as represented by _____________ -_____________________________. No copyright is claimed in the United -States under Title 17, U.S.Code. All Other Rights Reserved. - -C. Each Contributor must characterize its alteration of the Subject -Software as a Modification and must identify itself as the originator -of its Modification in a manner that reasonably allows subsequent -Recipients to identify the originator of the Modification. In -fulfillment of these requirements, Contributor must include a file -(e.g., a change log file) that describes the alterations made and the -date of the alterations, identifies Contributor as originator of the -alterations, and consents to characterization of the alterations as a -Modification, for example, by including a statement that the -Modification is derived, directly or indirectly, from Original -Software provided by Government Agency. Once consent is granted, it -may not thereafter be revoked. - -D. A Contributor may add its own copyright notice to the Subject -Software. Once a copyright notice has been added to the Subject -Software, a Recipient may not remove it without the express permission -of the Contributor who added the notice. - -E. A Recipient may not make any representation in the Subject Software -or in any promotional, advertising or other material that may be -construed as an endorsement by Government Agency or by any prior -Recipient of any product or service provided by Recipient, or that may -seek to obtain commercial advantage by the fact of Government Agency''s -or a prior Recipient''s participation in this Agreement. - -F. In an effort to track usage and maintain accurate records of the -Subject Software, each Recipient, upon receipt of the Subject -Software, is requested to register with Government Agency by visiting -the following website: ______________________________. Recipient''s -name and personal information shall be used for statistical purposes -only. Once a Recipient makes a Modification available, it is requested -that the Recipient inform Government Agency at the web site provided -above how to access the Modification. - -[Alternative paragraph for use when a web site for release and -monitoring of subject software will not be supported by releasing -Government Agency] In an effort to track usage and maintain accurate -records of the Subject Software, each Recipient, upon receipt of the -Subject Software, is requested to provide Government Agency, by e-mail -to the Government Agency Point of Contact listed in clause 5.F., the -following information: ______________________________. Recipient''s -name and personal information shall be used for statistical purposes -only. Once a Recipient makes a Modification available, it is requested -that the Recipient inform Government Agency, by e-mail to the -Government Agency Point of Contact listed in clause 5.F., how to -access the Modification. - -G. Each Contributor represents that that its Modification is believed -to be Contributor''s original creation and does not violate any -existing agreements, regulations, statutes or rules, and further that -Contributor has sufficient rights to grant the rights conveyed by this -Agreement. - -H. A Recipient may choose to offer, and to charge a fee for, warranty, -support, indemnity and/or liability obligations to one or more other -Recipients of the Subject Software. A Recipient may do so, however, -only on its own behalf and not on behalf of Government Agency or any -other Recipient. Such a Recipient must make it absolutely clear that -any such warranty, support, indemnity and/or liability obligation is -offered by that Recipient alone. Further, such Recipient agrees to -indemnify Government Agency and every other Recipient for any -liability incurred by them as a result of warranty, support, indemnity -and/or liability offered by such Recipient. - -I. A Recipient may create a Larger Work by combining Subject Software -with separate software not governed by the terms of this agreement and -distribute the Larger Work as a single product. In such case, the -Recipient must make sure Subject Software, or portions thereof, -included in the Larger Work is subject to this Agreement. - -J. Notwithstanding any provisions contained herein, Recipient is -hereby put on notice that export of any goods or technical data from -the United States may require some form of export license from the -U.S. Government. Failure to obtain necessary export licenses may -result in criminal liability under U.S. laws. Government Agency -neither represents that a license shall not be required nor that, if -required, it shall be issued. Nothing granted herein provides any -such export license. - -4. DISCLAIMER OF WARRANTIES AND LIABILITIES; WAIVER AND INDEMNIFICATION - -A. No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY -WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, -INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SUBJECT SOFTWARE -WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM -INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL BE ERROR -FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO -THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, -CONSTITUTE AN ENDORSEMENT BY GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT -OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, SOFTWARE PRODUCTS OR ANY -OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. -FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES -REGARDING THIRD-PARTY SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, -AND DISTRIBUTES IT "AS IS." - -B. Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS -AGAINST THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND -SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF RECIPIENT''S USE OF -THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, -EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM -PRODUCTS BASED ON, OR RESULTING FROM, RECIPIENT''S USE OF THE SUBJECT -SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD HARMLESS THE UNITED -STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY -PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT''S SOLE -REMEDY FOR ANY SUCH MATTER SHALL BE THE IMMEDIATE, UNILATERAL -TERMINATION OF THIS AGREEMENT. - -5. GENERAL TERMS - -A. Termination: This Agreement and the rights granted hereunder will -terminate automatically if a Recipient fails to comply with these -terms and conditions, and fails to cure such noncompliance within -thirty (30) days of becoming aware of such noncompliance. Upon -termination, a Recipient agrees to immediately cease use and -distribution of the Subject Software. All sublicenses to the Subject -Software properly granted by the breaching Recipient shall survive any -such termination of this Agreement. - -B. Severability: 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. - -C. Applicable Law: This Agreement shall be subject to United States -federal law only for all purposes, including, but not limited to, -determining the validity of this Agreement, the meaning of its -provisions and the rights, obligations and remedies of the parties. - -D. Entire Understanding: This Agreement constitutes the entire -understanding and agreement of the parties relating to release of the -Subject Software and may not be superseded, modified or amended except -by further written agreement duly executed by the parties. - -E. Binding Authority: By accepting and using the Subject Software -under this Agreement, a Recipient affirms its authority to bind the -Recipient to all terms and conditions of this Agreement and that that -Recipient hereby agrees to all terms and conditions herein. - -F. Point of Contact: Any Recipient contact with Government Agency is -to be directed to the designated representative as follows: \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/nasa-1.3.yml b/tests/licensedcode/data/more_licenses/licenses/nasa-1.3.yml deleted file mode 100644 index 20605f771a1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nasa-1.3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - nasa-1.3 -notes: this is a license from fossology license reference NASA-1.3 (NASA Open Source Agreement - 1.3) http://www.opensource.org/licenses/nasa1.3.php diff --git a/tests/licensedcode/data/more_licenses/licenses/naumen.txt b/tests/licensedcode/data/more_licenses/licenses/naumen.txt deleted file mode 100644 index cad32dd8c12..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/naumen.txt +++ /dev/null @@ -1,48 +0,0 @@ -NAUMEN Public License -This software is Copyright (c) NAUMEN (tm) and Contributors. -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 in 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. The name NAUMEN (tm) must not be used to -endorse or promote products derived from this software without prior -written permission from NAUMEN. - -4. The right to distribute this software or to use it for any -purpose does not give you the right to use Servicemarks (sm) -or Trademarks (tm) of NAUMEN. - -5. If any files originating from NAUMEN or Contributors are modified, you must -cause the modified files to carry prominent notices stating -that you changed the files and the date of any change. - -Disclaimer: - -THIS SOFTWARE IS PROVIDED BY NAUMEN "AS IS" AND ANY EXPRESSED -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 NAUMEN -OR ITS 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. - -This software consists of contributions made by NAUMEN -and Contributors. Specific attributions are listed in the -accompanying credits file. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/naumen.yml b/tests/licensedcode/data/more_licenses/licenses/naumen.yml deleted file mode 100644 index 4b2df4b39b9..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/naumen.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - naumen -notes: this is a license from fossology license reference Naumen (Naumen Public License) http://www.opensource.org/licenses/naumen.php diff --git a/tests/licensedcode/data/more_licenses/licenses/nbpl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/nbpl-1.0.txt deleted file mode 100644 index 592ee309ed0..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nbpl-1.0.txt +++ /dev/null @@ -1,122 +0,0 @@ -The Net Boolean Public License - -Version 1, 22 August 1998 -Copyright 1998, Net Boolean Incorporated, Redwood City, California, USA -All Rights Reserved. - -Note: - This license is derived from the "Artistic License" as distributed - with the Perl Programming Language. Its terms are different from - those of the "Artistic License." - -PREAMBLE - -The intent of this document is to state the conditions under which a -Package may be copied, such that the Copyright Holder maintains some -semblance of artistic control over the development of the package, -while giving the users of the package the right to use and distribute -the Package in a more-or-less customary fashion, plus the right to make -reasonable modifications. - -Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - - "You" is you, if you''re thinking about copying or distributing - this Package. - - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you -duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain or from the Copyright Holder. A Package -modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided -that you insert a prominent notice in each changed file stating how and -when you changed that file, and provided that you do at least ONE of the -following: - - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or -executable form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - - c) accompany any non-standard executables with their corresponding - Standard Version executables, giving the non-standard executables - non-standard names, and clearly documenting the differences in manual - pages (or equivalent), together with instructions on where to get - the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this -Package. You may charge any fee you choose for support of this Package. -You may not charge a fee for this Package itself. However, -you may distribute this Package in aggregate with other (possibly -commercial) programs as part of a larger (possibly commercial) software -distribution provided that you do not advertise this Package as a -product of your own. - -6. The scripts and library files supplied as input to or produced as -output from the programs of this Package do not automatically fall -under the copyright of this Package, but belong to whomever generated -them, and may be sold commercially, and may be aggregated with this -Package. - -7. C subroutines supplied by you and linked into this Package in order -to emulate subroutines and variables of the language defined by this -Package shall not be considered part of this Package, but are the -equivalent of input as in Paragraph 6, provided these subroutines do -not change the language in any way that would cause it to fail the -regression tests for the language. - -8. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/nbpl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/nbpl-1.0.yml deleted file mode 100644 index addb86fac9b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nbpl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - nbpl-1.0 -notes: this is a license from fossology license reference NBPL-1.0 (Net Boolean Public License - v1) http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894 diff --git a/tests/licensedcode/data/more_licenses/licenses/npl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/npl-1.0.txt deleted file mode 100644 index 9c7caa94ae8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/npl-1.0.txt +++ /dev/null @@ -1,138 +0,0 @@ -NETSCAPE PUBLIC LICENSE -Version 1.0 - -1. Definitions. - -1.1. ``Contributor'''' means each entity that creates or contributes to the creation of Modifications. -1.2. ``Contributor Version'''' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. ``Covered Code'''' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. ``Electronic Distribution Mechanism'''' means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. ``Executable'''' means Covered Code in any form other than Source Code. - -1.6. ``Initial Developer'''' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. ``Larger Work'''' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. ``License'''' means this document. - -1.9. ``Modifications'''' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10. ``Original Code'''' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.11. ``Source Code'''' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. ``You'''' means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, ``You'''' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, ``control'''' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (``Utilize'''') the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -3. Distribution Obligations. -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients'' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled ``LEGAL'''' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. -If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients'' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients'' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient''s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. -6. Versions of the License. -6.1. New Versions. -Netscape Communications Corporation (``Netscape'''') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works. -If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases ``Mozilla'''', ``MOZILLAPL'''', ``MOZPL'''', ``Netscape'''', ``NPL'''' or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'''' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. -8. TERMINATION. -This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -9. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. -10. U.S. GOVERNMENT END USERS. -The Covered Code is a ``commercial item,'''' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer software'''' and ``commercial computer software documentation,'''' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. -11. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. -12. RESPONSIBILITY FOR CLAIMS. -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. -AMENDMENTS -Additional Terms applicable to the Netscape Public License. -I. Effect. -These additional terms described in this Netscape Public License -- Amendments shall apply to the Mozilla Communicator client code and to all Covered Code under this License. - -II. ``Netscape''s Branded Code'''' means Covered Code that Netscape distributes and/or permits others to distribute under one or more trademark(s) which are controlled by Netscape but which are not licensed for use under this License. - -III. Netscape and logo. -This License does not grant any rights to use the trademark ``Netscape'''', the ``Netscape N and horizon'''' logo or the Netscape lighthouse logo, even if such marks are included in the Original Code. - -IV. Inability to Comply Due to Contractual Obligation. -Prior to licensing the Original Code under this License, Netscape has licensed third party code for use in Netscape''s Branded Code. To the extent that Netscape is limited contractually from making such third party code available under this License, Netscape may choose to reintegrate such code into Covered Code without being required to distribute such code in Source Code form, even if such code would otherwise be considered ``Modifications'''' under this License. - -V. Use of Modifications and Covered Code by Initial Developer. - -V.1. In General. -The obligations of Section 3 apply to Netscape, except to the extent specified in this Amendment, Section V.2 and V.3. - -V.2. Other Products. -Netscape may include Covered Code in products other than the Netscape''s Branded Code which are released by Netscape during the two (2) years following the release date of the Original Code, without such additional products becoming subject to the terms of this License, and may license such additional products on different terms from those contained in this License. - -V.3. Alternative Licensing. -Netscape may license the Source Code of Netscape''s Branded Code, including Modifications incorporated therein, without such additional products becoming subject to the terms of this License, and may license such additional products on different terms from those contained in this License. - -VI. Arbitration and Litigation. -Notwithstanding the limitations of Section 11 above, the provisions regarding arbitration and litigation in Section 11(a), (b) and (c) of the License shall apply to all disputes relating to this License. - -EXHIBIT A. -``The contents of this file are subject to the Netscape Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/NPL/ -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is Mozilla Communicator client code, released March 31, 1998. - -The Initial Developer of the Original Code is Netscape Communications Corporation. Portions created by Netscape are Copyright (C) 1998 Netscape Communications Corporation. All Rights Reserved. - -Contributor(s): ______________________________________.'''' - - - -[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. This is due to time constraints encountered in simultaneously finalizing the License and in preparing the Original Code for release. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/npl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/npl-1.0.yml deleted file mode 100644 index 147b9f96011..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/npl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - npl-1.0 -notes: this is a license from fossology license reference NPL-1.0 (Netscape Public License 1.0) - http://www.mozilla.org/MPL/NPL-1.0.html diff --git a/tests/licensedcode/data/more_licenses/licenses/nposl-3.0.txt b/tests/licensedcode/data/more_licenses/licenses/nposl-3.0.txt deleted file mode 100644 index e0d7c4f0605..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nposl-3.0.txt +++ /dev/null @@ -1,59 +0,0 @@ -Non-Profit Open Software License ("Non-Profit OSL") 3.0 - -This Non-Profit Open Software License ("Non-Profit OSL") version 3.0 (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: - -Licensed under the Non-Profit Open Software License version 3.0 - -1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: - -a) to reproduce the Original Work in copies, either alone or as part of a collective work; - -b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Non-Profit Open Software License or as provided in section 17(d); - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor''s trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. The Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. - -9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. - -12) Attorneys'' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys'' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Open Software License" or "OSL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. - -17) Non-Profit Amendment. The name of this amended version of the Open Software License ("OSL 3.0") is "Non-Profit Open Software License 3.0". The original OSL 3.0 license has been amended as follows: - -(a) Licensor represents and declares that it is a not-for-profit organization that derives no revenue whatsoever from the distribution of the Original Work or Derivative Works thereof, or from support or services relating thereto. - -(b) The first sentence of Section 7 ["Warranty of Provenance"] of OSL 3.0 has been stricken. For Original Works licensed under this Non-Profit OSL 3.0, LICENSOR OFFERS NO WARRANTIES WHATSOEVER. - -(c) In the first sentence of Section 8 ["Limitation of Liability"] of this Non-Profit OSL 3.0, the list of damages for which LIABILITY IS LIMITED now includes "direct" damages. - -(d) The proviso in Section 1(c) of this License now refers to this "Non-Profit Open Software License" rather than the "Open Software License". You may distribute or communicate the Original Work or Derivative Works thereof under this Non-Profit OSL 3.0 license only if You make the representation and declaration in paragraph (a) of this Section 17. Otherwise, You shall distribute or communicate the Original Work or Derivative Works thereof only under the OSL 3.0 license and You shall publish clear licensing notices so stating. Also by way of clarification, this License does not authorize You to distribute or communicate works under this Non-Profit OSL 3.0 if You received them under the original OSL 3.0 license. - -(e) Original Works licensed under this license shall reference "Non-Profit OSL 3.0" in licensing notices to distinguish them from works licensed under the original OSL 3.0 license. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/nposl-3.0.yml b/tests/licensedcode/data/more_licenses/licenses/nposl-3.0.yml deleted file mode 100644 index cffc9b4c72f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nposl-3.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - nosl-3.0 -notes: this is a license from fossology license reference NPOSL-3.0 (Non-Profit Open Software - License 3.0) http://www.opensource.org/licenses/NOSL3.0 diff --git a/tests/licensedcode/data/more_licenses/licenses/nrl.txt b/tests/licensedcode/data/more_licenses/licenses/nrl.txt deleted file mode 100644 index 6eb6ead6cc1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nrl.txt +++ /dev/null @@ -1,65 +0,0 @@ -NRL License - -COPYRIGHT NOTICE - -All of the documentation and software included in this software -distribution from the US Naval Research Laboratory (NRL) are copyrighted by -their respective developers. - -Portions of the software are derived from the Net/2 and 4.4-Lite Berkeley -Software Distributions (BSD) of the University of California at Berkeley -and those portions are copyright by The Regents of the University of -California. All Rights Reserved. The UC Berkeley Copyright and License -agreement is binding on those portions of the software. In all cases, the -NRL developers have retained the original UC Berkeley copyright and license -notices in the respective files in accordance with the UC Berkeley -copyrights and license. - -Portions of this software and documentation were developed at NRL by -various people. Those developers have each copyrighted the portions that -they developed at NRL and have assigned All Rights for those portions to -NRL. Outside the USA, NRL has copyright on some of the software developed -at NRL. The affected files all contain specific copyright notices and those -notices must be retained in any derived work. - -NRL LICENSE - -NRL grants permission for redistribution and use in source and binary -forms, with or without modification, of the software and documentation -created at NRL provided that the following conditions are met: - -1. All terms of the UC Berkeley copyright and license must be followed. -2. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -3. 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. -4. All advertising materials mentioning features or use of this software - must display the following acknowledgements: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - This product includes software developed at the Information - Technology Division, US Naval Research Laboratory. - -5. Neither the name of the NRL nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THE SOFTWARE PROVIDED BY NRL IS PROVIDED BY NRL 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 NRL 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. - -The views and conclusions contained in the software and documentation -are those of the authors and should not be interpreted as representing -official policies, either expressed or implied, of the US Naval -Research Laboratory (NRL). \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/nrl.yml b/tests/licensedcode/data/more_licenses/licenses/nrl.yml deleted file mode 100644 index 98d77029032..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/nrl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - nrl -notes: this is a license from fossology license reference NRL (NRL License) http://web.mit.edu/network/isakmp/nrllicense.html diff --git a/tests/licensedcode/data/more_licenses/licenses/ntp.yml b/tests/licensedcode/data/more_licenses/licenses/ntp.yml index 0153a323b11..4322498f24b 100644 --- a/tests/licensedcode/data/more_licenses/licenses/ntp.yml +++ b/tests/licensedcode/data/more_licenses/licenses/ntp.yml @@ -1,3 +1,3 @@ license_expressions: - - ntpl + - mit-old-style-no-advert notes: this is a license from fossology license reference NTP (NTP License) http://www.opensource.org/licenses/NTP diff --git a/tests/licensedcode/data/more_licenses/licenses/odbl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/odbl-1.0.txt deleted file mode 100644 index 06e83c90f75..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/odbl-1.0.txt +++ /dev/null @@ -1,540 +0,0 @@ -## ODC Open Database License (ODbL) - -### Preamble - -The Open Database License (ODbL) is a license agreement intended to -allow users to freely share, modify, and use this Database while -maintaining this same freedom for others. Many databases are covered by -copyright, and therefore this document licenses these rights. Some -jurisdictions, mainly in the European Union, have specific rights that -cover databases, and so the ODbL addresses these rights, too. Finally, -the ODbL is also an agreement in contract for users of this Database to -act in certain ways in return for accessing this Database. - -Databases can contain a wide variety of types of content (images, -audiovisual material, and sounds all in the same database, for example), -and so the ODbL only governs the rights over the Database, and not the -contents of the Database individually. Licensors should use the ODbL -together with another license for the contents, if the contents have a -single set of rights that uniformly covers all of the contents. If the -contents have multiple sets of different rights, Licensors should -describe what rights govern what contents together in the individual -record or in some other way that clarifies what rights apply. - -Sometimes the contents of a database, or the database itself, can be -covered by other rights not addressed here (such as private contracts, -trade mark over the name, or privacy rights / data protection rights -over information in the contents), and so you are advised that you may -have to consult other documents or clear other rights before doing -activities not covered by this License. - ------- - -The Licensor (as defined below) - -and - -You (as defined below) - -agree as follows: - -### 1.0 Definitions of Capitalised Words - -"Collective Database" – Means this Database in unmodified form as part -of a collection of independent databases in themselves that together are -assembled into a collective whole. A work that constitutes a Collective -Database will not be considered a Derivative Database. - -"Convey" – As a verb, means Using the Database, a Derivative Database, -or the Database as part of a Collective Database in any way that enables -a Person to make or receive copies of the Database or a Derivative -Database. Conveying does not include interaction with a user through a -computer network, or creating and Using a Produced Work, where no -transfer of a copy of the Database or a Derivative Database occurs. -"Contents" – The contents of this Database, which includes the -information, independent works, or other material collected into the -Database. For example, the contents of the Database could be factual -data or works such as images, audiovisual material, text, or sounds. - -"Database" – A collection of material (the Contents) arranged in a -systematic or methodical way and individually accessible by electronic -or other means offered under the terms of this License. - -"Database Directive" – Means Directive 96/9/EC of the European -Parliament and of the Council of 11 March 1996 on the legal protection -of databases, as amended or succeeded. - -"Database Right" – Means rights resulting from the Chapter III ("sui -generis") rights in the Database Directive (as amended and as transposed -by member states), which includes the Extraction and Re-utilisation of -the whole or a Substantial part of the Contents, as well as any similar -rights available in the relevant jurisdiction under Section 10.4. - -"Derivative Database" – Means a database based upon the Database, and -includes any translation, adaptation, arrangement, modification, or any -other alteration of the Database or of a Substantial part of the -Contents. This includes, but is not limited to, Extracting or -Re-utilising the whole or a Substantial part of the Contents in a new -Database. - -"Extraction" – Means the permanent or temporary transfer of all or a -Substantial part of the Contents to another medium by any means or in -any form. - -"License" – Means this license agreement and is both a license of rights -such as copyright and Database Rights and an agreement in contract. - -"Licensor" – Means the Person that offers the Database under the terms -of this License. - -"Person" – Means a natural or legal person or a body of persons -corporate or incorporate. - -"Produced Work" – a work (such as an image, audiovisual material, text, -or sounds) resulting from using the whole or a Substantial part of the -Contents (via a search or other query) from this Database, a Derivative -Database, or this Database as part of a Collective Database. - -"Publicly" – means to Persons other than You or under Your control by -either more than 50% ownership or by the power to direct their -activities (such as contracting with an independent consultant). - -"Re-utilisation" – means any form of making available to the public all -or a Substantial part of the Contents by the distribution of copies, by -renting, by online or other forms of transmission. - -"Substantial" – Means substantial in terms of quantity or quality or a -combination of both. The repeated and systematic Extraction or -Re-utilisation of insubstantial parts of the Contents may amount to the -Extraction or Re-utilisation of a Substantial part of the Contents. - -"Use" – As a verb, means doing any act that is restricted by copyright -or Database Rights whether in the original medium or any other; and -includes without limitation distributing, copying, publicly performing, -publicly displaying, and preparing derivative works of the Database, as -well as modifying the Database as may be technically necessary to use it -in a different mode or format. - -"You" – Means a Person exercising rights under this License who has not -previously violated the terms of this License with respect to the -Database, or who has received express permission from the Licensor to -exercise rights under this License despite a previous violation. - -Words in the singular include the plural and vice versa. - -### 2.0 What this License covers - -2.1. Legal effect of this document. This License is: - -a. A license of applicable copyright and neighbouring rights; - -b. A license of the Database Right; and - -c. An agreement in contract between You and the Licensor. - -2.2 Legal rights covered. This License covers the legal rights in the -Database, including: - -a. Copyright. Any copyright or neighbouring rights in the Database. -The copyright licensed includes any individual elements of the -Database, but does not cover the copyright over the Contents -independent of this Database. See Section 2.4 for details. Copyright -law varies between jurisdictions, but is likely to cover: the Database -model or schema, which is the structure, arrangement, and organisation -of the Database, and can also include the Database tables and table -indexes; the data entry and output sheets; and the Field names of -Contents stored in the Database; - -b. Database Rights. Database Rights only extend to the Extraction and -Re-utilisation of the whole or a Substantial part of the Contents. -Database Rights can apply even when there is no copyright over the -Database. Database Rights can also apply when the Contents are removed -from the Database and are selected and arranged in a way that would -not infringe any applicable copyright; and - -c. Contract. This is an agreement between You and the Licensor for -access to the Database. In return you agree to certain conditions of -use on this access as outlined in this License. - -2.3 Rights not covered. - -a. This License does not apply to computer programs used in the making -or operation of the Database; - -b. This License does not cover any patents over the Contents or the -Database; and - -c. This License does not cover any trademarks associated with the -Database. - -2.4 Relationship to Contents in the Database. The individual items of -the Contents contained in this Database may be covered by other rights, -including copyright, patent, data protection, privacy, or personality -rights, and this License does not cover any rights (other than Database -Rights or in contract) in individual Contents contained in the Database. -For example, if used on a Database of images (the Contents), this -License would not apply to copyright over individual images, which could -have their own separate licenses, or one single license covering all of -the rights over the images. - -### 3.0 Rights granted - -3.1 Subject to the terms and conditions of this License, the Licensor -grants to You a worldwide, royalty-free, non-exclusive, terminable (but -only under Section 9) license to Use the Database for the duration of -any applicable copyright and Database Rights. These rights explicitly -include commercial use, and do not exclude any field of endeavour. To -the extent possible in the relevant jurisdiction, these rights may be -exercised in all media and formats whether now known or created in the -future. - -The rights granted cover, for example: - -a. Extraction and Re-utilisation of the whole or a Substantial part of -the Contents; - -b. Creation of Derivative Databases; - -c. Creation of Collective Databases; - -d. Creation of temporary or permanent reproductions by any means and -in any form, in whole or in part, including of any Derivative -Databases or as a part of Collective Databases; and - -e. Distribution, communication, display, lending, making available, or -performance to the public by any means and in any form, in whole or in -part, including of any Derivative Database or as a part of Collective -Databases. - -3.2 Compulsory license schemes. For the avoidance of doubt: - -a. Non-waivable compulsory license schemes. In those jurisdictions in -which the right to collect royalties through any statutory or -compulsory licensing scheme cannot be waived, the Licensor reserves -the exclusive right to collect such royalties for any exercise by You -of the rights granted under this License; - -b. Waivable compulsory license schemes. In those jurisdictions in -which the right to collect royalties through any statutory or -compulsory licensing scheme can be waived, the Licensor waives the -exclusive right to collect such royalties for any exercise by You of -the rights granted under this License; and, - -c. Voluntary license schemes. The Licensor waives the right to collect -royalties, whether individually or, in the event that the Licensor is -a member of a collecting society that administers voluntary licensing -schemes, via that society, from any exercise by You of the rights -granted under this License. - -3.3 The right to release the Database under different terms, or to stop -distributing or making available the Database, is reserved. Note that -this Database may be multiple-licensed, and so You may have the choice -of using alternative licenses for this Database. Subject to Section -10.4, all other rights not expressly granted by Licensor are reserved. - -### 4.0 Conditions of Use - -4.1 The rights granted in Section 3 above are expressly made subject to -Your complying with the following conditions of use. These are important -conditions of this License, and if You fail to follow them, You will be -in material breach of its terms. - -4.2 Notices. If You Publicly Convey this Database, any Derivative -Database, or the Database as part of a Collective Database, then You -must: - -a. Do so only under the terms of this License or another license -permitted under Section 4.4; - -b. Include a copy of this License (or, as applicable, a license -permitted under Section 4.4) or its Uniform Resource Identifier (URI) -with the Database or Derivative Database, including both in the -Database or Derivative Database and in any relevant documentation; and - -c. Keep intact any copyright or Database Right notices and notices -that refer to this License. - -d. If it is not possible to put the required notices in a particular -file due to its structure, then You must include the notices in a -location (such as a relevant directory) where users would be likely to -look for it. - -4.3 Notice for using output (Contents). Creating and Using a Produced -Work does not require the notice in Section 4.2. However, if you -Publicly Use a Produced Work, You must include a notice associated with -the Produced Work reasonably calculated to make any Person that uses, -views, accesses, interacts with, or is otherwise exposed to the Produced -Work aware that Content was obtained from the Database, Derivative -Database, or the Database as part of a Collective Database, and that it -is available under this License. - -a. Example notice. The following text will satisfy notice under -Section 4.3: - -Contains information from DATABASE NAME, which is made available -here under the Open Database License (ODbL). - -DATABASE NAME should be replaced with the name of the Database and a -hyperlink to the URI of the Database. "Open Database License" should -contain a hyperlink to the URI of the text of this License. If -hyperlinks are not possible, You should include the plain text of the -required URI''s with the above notice. - -4.4 Share alike. - -a. Any Derivative Database that You Publicly Use must be only under -the terms of: - -i. This License; - -ii. A later version of this License similar in spirit to this -License; or - -iii. A compatible license. - -If You license the Derivative Database under one of the licenses -mentioned in (iii), You must comply with the terms of that license. - -b. For the avoidance of doubt, Extraction or Re-utilisation of the -whole or a Substantial part of the Contents into a new database is a -Derivative Database and must comply with Section 4.4. - -c. Derivative Databases and Produced Works. A Derivative Database is -Publicly Used and so must comply with Section 4.4. if a Produced Work -created from the Derivative Database is Publicly Used. - -d. Share Alike and additional Contents. For the avoidance of doubt, -You must not add Contents to Derivative Databases under Section 4.4 a -that are incompatible with the rights granted under this License. - -e. Compatible licenses. Licensors may authorise a proxy to determine -compatible licenses under Section 4.4 a iii. If they do so, the -authorised proxy''s public statement of acceptance of a compatible -license grants You permission to use the compatible license. - - -4.5 Limits of Share Alike. The requirements of Section 4.4 do not apply -in the following: - -a. For the avoidance of doubt, You are not required to license -Collective Databases under this License if You incorporate this -Database or a Derivative Database in the collection, but this License -still applies to this Database or a Derivative Database as a part of -the Collective Database; - -b. Using this Database, a Derivative Database, or this Database as -part of a Collective Database to create a Produced Work does not -create a Derivative Database for purposes of Section 4.4; and - -c. Use of a Derivative Database internally within an organisation is -not to the public and therefore does not fall under the requirements -of Section 4.4. - -4.6 Access to Derivative Databases. If You Publicly Use a Derivative -Database or a Produced Work from a Derivative Database, You must also -offer to recipients of the Derivative Database or Produced Work a copy -in a machine readable form of: - -a. The entire Derivative Database; or - -b. A file containing all of the alterations made to the Database or -the method of making the alterations to the Database (such as an -algorithm), including any additional Contents, that make up all the -differences between the Database and the Derivative Database. - -The Derivative Database (under a.) or alteration file (under b.) must be -available at no more than a reasonable production cost for physical -distributions and free of charge if distributed over the internet. - -4.7 Technological measures and additional terms - -a. This License does not allow You to impose (except subject to -Section 4.7 b.) any terms or any technological measures on the -Database, a Derivative Database, or the whole or a Substantial part of -the Contents that alter or restrict the terms of this License, or any -rights granted under it, or have the effect or intent of restricting -the ability of any person to exercise those rights. - -b. Parallel distribution. You may impose terms or technological -measures on the Database, a Derivative Database, or the whole or a -Substantial part of the Contents (a "Restricted Database") in -contravention of Section 4.74 a. only if You also make a copy of the -Database or a Derivative Database available to the recipient of the -Restricted Database: - -i. That is available without additional fee; - -ii. That is available in a medium that does not alter or restrict -the terms of this License, or any rights granted under it, or have -the effect or intent of restricting the ability of any person to -exercise those rights (an "Unrestricted Database"); and - -iii. The Unrestricted Database is at least as accessible to the -recipient as a practical matter as the Restricted Database. - -c. For the avoidance of doubt, You may place this Database or a -Derivative Database in an authenticated environment, behind a -password, or within a similar access control scheme provided that You -do not alter or restrict the terms of this License or any rights -granted under it or have the effect or intent of restricting the -ability of any person to exercise those rights. - -4.8 Licensing of others. You may not sublicense the Database. Each time -You communicate the Database, the whole or Substantial part of the -Contents, or any Derivative Database to anyone else in any way, the -Licensor offers to the recipient a license to the Database on the same -terms and conditions as this License. You are not responsible for -enforcing compliance by third parties with this License, but You may -enforce any rights that You have over a Derivative Database. You are -solely responsible for any modifications of a Derivative Database made -by You or another Person at Your direction. You may not impose any -further restrictions on the exercise of the rights granted or affirmed -under this License. - -### 5.0 Moral rights - -5.1 Moral rights. This section covers moral rights, including any rights -to be identified as the author of the Database or to object to treatment -that would otherwise prejudice the author''s honour and reputation, or -any other derogatory treatment: - -a. For jurisdictions allowing waiver of moral rights, Licensor waives -all moral rights that Licensor may have in the Database to the fullest -extent possible by the law of the relevant jurisdiction under Section -10.4; - -b. If waiver of moral rights under Section 5.1 a in the relevant -jurisdiction is not possible, Licensor agrees not to assert any moral -rights over the Database and waives all claims in moral rights to the -fullest extent possible by the law of the relevant jurisdiction under -Section 10.4; and - -c. For jurisdictions not allowing waiver or an agreement not to assert -moral rights under Section 5.1 a and b, the author may retain their -moral rights over certain aspects of the Database. - -Please note that some jurisdictions do not allow for the waiver of moral -rights, and so moral rights may still subsist over the Database in some -jurisdictions. - -### 6.0 Fair dealing, Database exceptions, and other rights not affected - -6.1 This License does not affect any rights that You or anyone else may -independently have under any applicable law to make any use of this -Database, including without limitation: - -a. Exceptions to the Database Right including: Extraction of Contents -from non-electronic Databases for private purposes, Extraction for -purposes of illustration for teaching or scientific research, and -Extraction or Re-utilisation for public security or an administrative -or judicial procedure. - -b. Fair dealing, fair use, or any other legally recognised limitation -or exception to infringement of copyright or other applicable laws. - -6.2 This License does not affect any rights of lawful users to Extract -and Re-utilise insubstantial parts of the Contents, evaluated -quantitatively or qualitatively, for any purposes whatsoever, including -creating a Derivative Database (subject to other rights over the -Contents, see Section 2.4). The repeated and systematic Extraction or -Re-utilisation of insubstantial parts of the Contents may however amount -to the Extraction or Re-utilisation of a Substantial part of the -Contents. - -### 7.0 Warranties and Disclaimer - -7.1 The Database is licensed by the Licensor "as is" and without any -warranty of any kind, either express, implied, or arising by statute, -custom, course of dealing, or trade usage. Licensor specifically -disclaims any and all implied warranties or conditions of title, -non-infringement, accuracy or completeness, the presence or absence of -errors, fitness for a particular purpose, merchantability, or otherwise. -Some jurisdictions do not allow the exclusion of implied warranties, so -this exclusion may not apply to You. - -### 8.0 Limitation of liability - -8.1 Subject to any liability that may not be excluded or limited by law, -the Licensor is not liable for, and expressly excludes, all liability -for loss or damage however and whenever caused to anyone by any use -under this License, whether by You or by anyone else, and whether caused -by any fault on the part of the Licensor or not. This exclusion of -liability includes, but is not limited to, any special, incidental, -consequential, punitive, or exemplary damages such as loss of revenue, -data, anticipated profits, and lost business. This exclusion applies -even if the Licensor has been advised of the possibility of such -damages. - -8.2 If liability may not be excluded by law, it is limited to actual and -direct financial loss to the extent it is caused by proved negligence on -the part of the Licensor. - -### 9.0 Termination of Your rights under this License - -9.1 Any breach by You of the terms and conditions of this License -automatically terminates this License with immediate effect and without -notice to You. For the avoidance of doubt, Persons who have received the -Database, the whole or a Substantial part of the Contents, Derivative -Databases, or the Database as part of a Collective Database from You -under this License will not have their licenses terminated provided -their use is in full compliance with this License or a license granted -under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will -survive any termination of this License. - -9.2 If You are not in breach of the terms of this License, the Licensor -will not terminate Your rights under it. - -9.3 Unless terminated under Section 9.1, this License is granted to You -for the duration of applicable rights in the Database. - -9.4 Reinstatement of rights. If you cease any breach of the terms and -conditions of this License, then your full rights under this License -will be reinstated: - -a. Provisionally and subject to permanent termination until the 60th -day after cessation of breach; - -b. Permanently on the 60th day after cessation of breach unless -otherwise reasonably notified by the Licensor; or - -c. Permanently if reasonably notified by the Licensor of the -violation, this is the first time You have received notice of -violation of this License from the Licensor, and You cure the -violation prior to 30 days after your receipt of the notice. - -Persons subject to permanent termination of rights are not eligible to -be a recipient and receive a license under Section 4.8. - -9.5 Notwithstanding the above, Licensor reserves the right to release -the Database under different license terms or to stop distributing or -making available the Database. Releasing the Database under different -license terms or stopping the distribution of the Database will not -withdraw this License (or any other license that has been, or is -required to be, granted under the terms of this License), and this -License will continue in full force and effect unless terminated as -stated above. - -### 10.0 General - -10.1 If any provision of this License is held to be invalid or -unenforceable, that must not affect the validity or enforceability of -the remainder of the terms and conditions of this License and each -remaining provision of this License shall be valid and enforced to the -fullest extent permitted by law. - -10.2 This License is the entire agreement between the parties with -respect to the rights granted here over the Database. It replaces any -earlier understandings, agreements or representations with respect to -the Database. - -10.3 If You are in breach of the terms of this License, You will not be -entitled to rely on the terms of this License or to complain of any -breach by the Licensor. - -10.4 Choice of law. This License takes effect in and will be governed by -the laws of the relevant jurisdiction in which the License terms are -sought to be enforced. If the standard suite of rights granted under -applicable copyright law and Database Rights in the relevant -jurisdiction includes additional rights not granted under this License, -these additional rights are granted in this License in order to meet the -terms of this License. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/odbl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/odbl-1.0.yml deleted file mode 100644 index f34fc016174..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/odbl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - odbl-1.0 -notes: this is a license from fossology license reference ODbL-1.0 (ODC Open Database License - v1.0) http://www.opendatacommons.org/licenses/odbl/1.0/ diff --git a/tests/licensedcode/data/more_licenses/licenses/ofl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/ofl-1.0.txt deleted file mode 100644 index 3ee0cb9a3ee..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ofl-1.0.txt +++ /dev/null @@ -1,87 +0,0 @@ -SIL OPEN FONT LICENSE - -Version 1.0 - 22 November 2005 - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of cooperative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide an open -framework in which fonts may be shared and improved in partnership with -others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and sold with any software provided that the font -names of derivative works are changed. The fonts and derivatives, -however, cannot be released under any other type of license. - -DEFINITIONS -"Font Software" refers to any and all of the following: - -font files -data files -source code -build scripts -documentation -"Reserved Font Name" refers to the Font Software name as seen by -users and any other names as specified after the copyright statement. - -"Standard Version" refers to the collection of Font Software -components as distributed by the Copyright Holder. - -"Modified Version" refers to any derivative font software made by -adding to, deleting, or substituting — in part or in whole -- -any of the components of the Standard Version, by changing formats -or by porting the Font Software to a new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Standard or Modified Versions, may be sold by itself. - -2) Standard or Modified Versions of the Font Software may be bundled, -redistributed and sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s), in part or in whole, unless explicit written permission is -granted by the Copyright Holder. This restriction applies to all -references stored in the Font Software, such as the font menu name and -other font description fields, which are used to differentiate the -font from others. - -4) The name(s) of the Copyright Holder or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed using this license, and may not be distributed -under any other license. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ofl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/ofl-1.0.yml deleted file mode 100644 index 65dead49c48..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ofl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ofl-1.0 -notes: this is a license from fossology license reference OFL-1.0 (SIL Open Font License 1.0) - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web diff --git a/tests/licensedcode/data/more_licenses/licenses/ofl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/ofl-1.1.txt deleted file mode 100644 index 83fada24318..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ofl-1.1.txt +++ /dev/null @@ -1,86 +0,0 @@ -SIL OPEN FONT LICENSE - -Version 1.1 - 26 February 2007 - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting — in part or in whole — any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ofl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/ofl-1.1.yml deleted file mode 100644 index d121bfbaba1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ofl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ofl-1.1 -notes: this is a license from fossology license reference OFL-1.1 (SIL Open Font License 1.1) - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web diff --git a/tests/licensedcode/data/more_licenses/licenses/ogtsl.txt b/tests/licensedcode/data/more_licenses/licenses/ogtsl.txt deleted file mode 100644 index 4e18c3d7a44..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ogtsl.txt +++ /dev/null @@ -1,118 +0,0 @@ -The Open Group Test Suite License - -Preamble - -The intent of this document is to state the conditions under which -a Package may be copied, such that the Copyright Holder maintains -some semblance of artistic control over the development of the -package, while giving the users of the package the right to use and -distribute the Package in a more-or-less customary fashion, plus -the right to make reasonable modifications. - -Testing is essential for proper development and maintenance of -standards-based products. - -For buyers: adequate conformance testing leads to reduced -integration costs and protection of investments in applications, -software and people. - -For software developers: conformance testing of platforms and -middleware greatly reduces the cost of developing and maintaining -multi-platform application software. - -For suppliers: In-depth testing increases customer satisfaction and -keeps development and support costs in check. API conformance is -highly measurable and suppliers who claim it must be able to -substantiate that claim. - -As such, since these are benchmark measures of conformance, we feel -the integrity of test tools is of importance. In order to preserve -the integrity of the existing conformance modes of this test -package and to permit recipients of modified versions of this -package to run the original test modes, this license requires that -the original test modes be preserved. - -If you find a bug in one of the standards mode test cases, please -let us know so we can feed this back into the original, and also -raise any specification issues with the appropriate bodies (for -example the POSIX committees). - -Definitions: - -"Package" refers to the collection of files distributed by the -Copyright Holder, and derivatives of that collection of files -created through textual modification. -"Standard Version" refers to such a Package if it has not been -modified, or has been modified in accordance with the wishes -of the Copyright Holder. -"Copyright Holder" is whoever is named in the copyright or -copyrights for the package. "You" is you, if you''re thinking -about copying or distributing this Package. -"Reasonable copying fee" is whatever you can justify on the -basis of media cost, duplication charges, time of people -involved, and so on. (You will not be required to justify it -to the Copyright Holder, but only to the computing community -at large as a market that must bear the fee.) -"Freely Available" means that no fee is charged for the item -itself, though there may be fees involved in handling the -item. It also means that recipients of the item may -redistribute it under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of -the Standard Version of this Package without restriction, provided -that you duplicate all of the original copyright notices and -associated disclaimers. - -2. You may apply bug fixes, portability fixes and other -modifications derived from the Public Domain or from the Copyright -Holder. A Package modified in such a way shall still be considered -the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, -provided that you insert a prominent notice in each changed file -stating how and when you changed that file, and provided that you -do at least the following: - -rename any non-standard executables and testcases so the -names do not conflict with standard executables and -testcases, which must also be provided, and provide a -separate manual page for each non-standard executable and -testcase that clearly documents how it differs from the -Standard Version. - -4. You may distribute the programs of this Package in object code -or executable form, provided that you do at least the following: - -accompany any non-standard executables and testcases with -their corresponding Standard Version executables and -testcases, giving the non-standard executables and -testcases non-standard names, and clearly documenting the -differences in manual pages (or equivalent), together with -instructions on where to get the Standard Version. - -5. You may charge a reasonable copying fee for any distribution of -this Package. You may charge any fee you choose for support of this -Package. You may not charge a fee for this Package itself. However, -you may distribute this Package in aggregate with other (possibly -commercial) programs as part of a larger (possibly commercial) -software distribution provided that you do not advertise this -Package as a product of your own. - -6. The scripts and library files supplied as input to or produced -as output from the programs of this Package do not automatically -fall under the copyright of this Package, but belong to whomever -generated them, and may be sold commercially, and may be aggregated -with this Package. - -7.Subroutines supplied by you and linked into this Package shall -not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or -promote products derived from this software without specific prior -written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ogtsl.yml b/tests/licensedcode/data/more_licenses/licenses/ogtsl.yml deleted file mode 100644 index 6eca3b97399..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ogtsl.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - opengroup -notes: this is a license from fossology license reference OGTSL (Open Group Test Suite License) - http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-1.1.txt deleted file mode 100644 index 879c29476e8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.1.txt +++ /dev/null @@ -1,122 +0,0 @@ -The OpenLDAP Public License - -Version 1.1, 25 August 1998 -Copyright 1998, The OpenLDAP Foundation. -All Rights Reserved. - -Note: - This license is derived from the "Artistic License" as distributed - with the Perl Programming Language. Its terms are different from - those of the "Artistic License." - -PREAMBLE - -The intent of this document is to state the conditions under which a -Package may be copied, such that the Copyright Holder maintains some -semblance of artistic control over the development of the package, -while giving the users of the package the right to use and distribute -the Package in a more-or-less customary fashion, plus the right to make -reasonable modifications. - -Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - - "You" is you, if you''re thinking about copying or distributing - this Package. - - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you -duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain or from the Copyright Holder. A Package -modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided -that you insert a prominent notice in each changed file stating how and -when you changed that file, and provided that you do at least ONE of the -following: - - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or -executable form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - - c) accompany any non-standard executables with their corresponding - Standard Version executables, giving the non-standard executables - non-standard names, and clearly documenting the differences in manual - pages (or equivalent), together with instructions on where to get - the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this -Package. You may charge any fee you choose for support of this Package. -You may not charge a fee for this Package itself. However, -you may distribute this Package in aggregate with other (possibly -commercial) programs as part of a larger (possibly commercial) software -distribution provided that you do not advertise this Package as a -product of your own. - -6. The scripts and library files supplied as input to or produced as -output from the programs of this Package do not automatically fall -under the copyright of this Package, but belong to whomever generated -them, and may be sold commercially, and may be aggregated with this -Package. - -7. C subroutines supplied by you and linked into this Package in order -to emulate subroutines and variables of the language defined by this -Package shall not be considered part of this Package, but are the -equivalent of input as in Paragraph 6, provided these subroutines do -not change the language in any way that would cause it to fail the -regression tests for the language. - -8. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-1.1.yml deleted file mode 100644 index 7667647d05c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-1.1 -notes: this is a license from fossology license reference OLDAP-1.1 (Open LDAP Public License - v1.1) http://spdx.org/licenses/OLDAP-1.1#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.2.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-1.2.txt deleted file mode 100644 index 0f90e6faa61..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.2.txt +++ /dev/null @@ -1,131 +0,0 @@ -The OpenLDAP Public License - -Version 1.2, 1 September 1998 -Copyright 1998, The OpenLDAP Foundation. -All Rights Reserved. - -Note: - This license is derived from the "Artistic License" as distributed - with the Perl Programming Language. As differences may exist, - the complete license should be read. - -PREAMBLE - -The intent of this document is to state the conditions under which -a Package may be copied, such that the Copyright Holder maintains -some semblance of artistic control over the development of the -package, while giving the users of the package the right to use -and distribute the Package in a more-or-less customary fashion, -plus the right to make reasonable modifications. - -Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - - "You" is you, if you''re thinking about copying or distributing - this Package. - - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people - involved, and so on. (You will not be required to justify it - to the Copyright Holder, but only to the computing community - at large as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form -of the Standard Version of this Package without restriction, provided -that you duplicate all of the original copyright notices and -associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain or from the Copyright Holder. A -Package modified in such a way shall still be considered the Standard -Version. - -3. You may otherwise modify your copy of this Package in any way, -provided that you insert a prominent notice in each changed file -stating how and when you changed that file, and provided that you -do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said modifications - to Usenet or an equivalent medium, or placing the modifications - on a major archive site such as uunet.uu.net, or by allowing - the Copyright Holder to include your modifications in the - Standard Version of the Package. - - b) use the modified Package only within your corporation or - organization. - - c) rename any non-standard executables so the names do not - conflict with standard executables, which must also be provided, - and provide a separate manual page for each non-standard - executable that clearly documents how it differs from the - Standard Version. - - d) make other distribution arrangements with the Copyright - Holder. - -4. You may distribute the programs of this Package in object code -or executable form, provided that you do at least ONE of the -following: - - a) distribute a Standard Version of the executables and library - files, together with instructions (in the manual page or - equivalent) on where to get the Standard Version. - - b) accompany the distribution with the machine-readable source - of the Package with your modifications. - - c) accompany any non-standard executables with their corresponding - Standard Version executables, giving the non-standard executables - non-standard names, and clearly documenting the differences in - manual pages (or equivalent), together with instructions on - where to get the Standard Version. - - d) make other distribution arrangements with the Copyright - Holder. - -5. You may charge a reasonable copying fee for any distribution of -this Package. You may charge any fee you choose for support of -this Package. You may not charge a fee for this Package itself. -However, you may distribute this Package in aggregate with other -(possibly commercial) programs as part of a larger (possibly -commercial) software distribution provided that you do not advertise -this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced -as output from the programs of this Package do not automatically -fall under the copyright of this Package, but belong to whomever -generated them, and may be sold commercially, and may be aggregated -with this Package. - -7. C subroutines supplied by you and linked into this Package in -order to emulate subroutines and variables of the language defined -by this Package shall not be considered part of this Package, but -are the equivalent of input as in Paragraph 6, provided these -subroutines do not change the language in any way that would cause -it to fail the regression tests for the language. - -8. The name of the Copyright Holder may not be used to endorse or -promote products derived from this software without specific prior -written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.2.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-1.2.yml deleted file mode 100644 index 865082f460e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-1.2 -notes: this is a license from fossology license reference OLDAP-1.2 (Open LDAP Public License - v1.2) http://spdx.org/licenses/OLDAP-1.2#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.3.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-1.3.txt deleted file mode 100644 index b1ec468011b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.3.txt +++ /dev/null @@ -1,138 +0,0 @@ -The OpenLDAP Public License - -Version 1.3, 17 January 1999 -Copyright 1998-1999, The OpenLDAP Foundation. -All Rights Reserved. - -Note: - This license is derived from the "Artistic License" as distributed - with the Perl Programming Language. As significant differences - exist, the complete license should be read. - -PREAMBLE - -The intent of this document is to state the conditions under which -a Package may be copied, such that the Copyright Holder maintains -some semblance of artistic control over the development of the -package, while giving the users of the package the right to use -and distribute the Package in a more-or-less customary fashion, -plus the right to make reasonable modifications. - -Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - - "You" is you, if you''re thinking about copying or distributing - this Package. - - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people - involved, and so on. (You will not be required to justify it - to the Copyright Holder, but only to the computing community - at large as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form -of the Standard Version of this Package without restriction, provided -that you duplicate all of the original copyright notices and -associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain or from the Copyright Holder. A -Package modified in such a way shall still be considered the Standard -Version. - -3. You may otherwise modify your copy of this Package in any way, -provided that you insert a prominent notice in each changed file -stating how and when you changed that file, and provided that you -do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said modifications - to Usenet or an equivalent medium, or placing the modifications - on a major archive site such as uunet.uu.net, or by allowing - the Copyright Holder to include your modifications in the - Standard Version of the Package. - - b) use the modified Package only within your corporation or - organization. - - c) rename any non-standard executables so the names do not - conflict with standard executables, which must also be provided, - and provide a separate manual page for each non-standard - executable that clearly documents how it differs from the - Standard Version. - - d) make other distribution arrangements with the Copyright - Holder. - -4. You may distribute the programs of this Package in object code -or executable form, provided that you do at least ONE of the -following: - - a) distribute a Standard Version of the executables and library - files, together with instructions (in the manual page or - equivalent) on where to get the Standard Version. - - b) accompany the distribution with the machine-readable source - of the Package with your modifications. - - c) accompany any non-standard executables with their corresponding - Standard Version executables, giving the non-standard executables - non-standard names, and clearly documenting the differences in - manual pages (or equivalent), together with instructions on - where to get the Standard Version. - - d) make other distribution arrangements with the Copyright - Holder. - -5. You may charge a reasonable copying fee for any distribution of -this Package. You may charge any fee you choose for support of -this Package. You may not charge a fee for this Package itself. -However, you may distribute this Package in aggregate with other -(possibly commercial) programs as part of a larger (possibly -commercial) software distribution provided that you do not advertise -this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced -as output from the programs of this Package do not automatically -fall under the copyright of this Package, but belong to whomever -generated them, and may be sold commercially, and may be aggregated -with this Package. - -7. C subroutines supplied by you and linked into this Package in -order to emulate subroutines and variables defined by this Package -shall not be considered part of this Package, but are the equivalent -of input as in Paragraph 6, provided these subroutines do not change -the behavior of the Package in any way that would cause it to fail -the regression tests for the Package. - -8. Software supplied by you and linked with this Package in order -to use subroutines and variables defined by this Package shall not -be considered part of this Package and do not automatically fall -under the copyright of this Package, and the executables produced -by linking your software with this Package may be used and -redistributed without restriction and may be sold commercially. - -9. The name of the Copyright Holder may not be used to endorse or -promote products derived from this software without specific prior -written permission. - -10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.3.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-1.3.yml deleted file mode 100644 index 56f25c650b6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-1.3 -notes: this is a license from fossology license reference OLDAP-1.3 (Open LDAP Public License - v1.3) http://spdx.org/licenses/OLDAP-1.3#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.4.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-1.4.txt deleted file mode 100644 index 909c2d2245c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.4.txt +++ /dev/null @@ -1,140 +0,0 @@ -The OpenLDAP Public License - -Version 1.4, 18 January 1999 -Copyright 1998-1999, The OpenLDAP Foundation. -All Rights Reserved. - -Note: - This license is derived from the "Artistic License" as distributed - with the Perl Programming Language. As significant differences - exist, the complete license should be read. - -PREAMBLE - -The intent of this document is to state the conditions under which -a Package may be copied, such that the Copyright Holder maintains -some semblance of artistic control over the development of the -package, while giving the users of the package the right to use -and distribute the Package in a more-or-less customary fashion, -plus the right to make reasonable modifications. - -Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - - "You" is you, if you''re thinking about copying or distributing - this Package. - - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people - involved, and so on. (You will not be required to justify it - to the Copyright Holder, but only to the computing community - at large as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form -of the Standard Version of this Package without restriction, provided -that you duplicate all of the original copyright notices and -associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain or from the Copyright Holder. A -Package modified in such a way shall still be considered the Standard -Version. - -3. You may otherwise modify your copy of this Package in any way, -provided that you insert a prominent notice in each changed file -stating how and when you changed that file, and provided that you -do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said modifications - to Usenet or an equivalent medium, or placing the modifications - on a major archive site such as uunet.uu.net, or by allowing - the Copyright Holder to include your modifications in the - Standard Version of the Package. - - b) use the modified Package only within your corporation or - organization. - - c) rename any non-standard executables so the names do not - conflict with standard executables, which must also be provided, - and provide a separate manual page for each non-standard - executable that clearly documents how it differs from the - Standard Version. - - d) make other distribution arrangements with the Copyright - Holder. - -4. You may distribute the programs of this Package in object code -or executable form, provided that you do at least ONE of the -following: - - a) distribute a Standard Version of the executables and library - files, together with instructions (in the manual page or - equivalent) on where to get the Standard Version. - - b) accompany the distribution with the machine-readable source - of the Package with your modifications. - - c) accompany any non-standard executables with their corresponding - Standard Version executables, giving the non-standard executables - non-standard names, and clearly documenting the differences in - manual pages (or equivalent), together with instructions on - where to get the Standard Version. - - d) make other distribution arrangements with the Copyright - Holder. - -5. You may charge a reasonable copying fee for any distribution of -this Package. You may charge any fee you choose for support of -this Package. You may not charge a fee for this Package itself. -However, you may distribute this Package in aggregate with other -(possibly commercial) programs as part of a larger (possibly -commercial) software distribution provided that you do not advertise -this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced -as output from the programs of this Package do not automatically -fall under the copyright of this Package, but belong to whomever -generated them, and may be sold commercially, and may be aggregated -with this Package. - -7. C subroutines supplied by you and linked into this Package in -order to emulate subroutines and variables defined by this Package -shall not be considered part of this Package, but are the equivalent -of input as in Paragraph 6, provided these subroutines do not change -the behavior of the Package in any way that would cause it to fail -the regression tests for the Package. - -8. Software supplied by you and linked with this Package in order -to use subroutines and variables defined by this Package shall not -be considered part of this Package and do not automatically fall -under the copyright of this Package. Executables produced -by linking your software with this Package may be used and -redistributed without restriction and may be sold commercially -so long as the primary function of your software is different -than the package itself. - -9. The name of the Copyright Holder may not be used to endorse or -promote products derived from this software without specific prior -written permission. - -10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-1.4.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-1.4.yml deleted file mode 100644 index d0808487255..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-1.4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-1.4 -notes: this is a license from fossology license reference OLDAP-1.4 (Open LDAP Public License - v1.4) http://spdx.org/licenses/OLDAP-1.4#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.1.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.1.txt deleted file mode 100644 index ad1db806a72..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.1.txt +++ /dev/null @@ -1,44 +0,0 @@ -The OpenLDAP Public License - - Version 2.0.1, 21 December 1999 - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. - All Rights Reserved. - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright -statements and notices. Redistributions must also contain a -copy of this document. - -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. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written -permission of the OpenLDAP Foundation. For written permission, -please contact foundation@openldap.org. - -4. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. OpenLDAP is a trademark -of the OpenLDAP Foundation. - -5. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.1.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.1.yml deleted file mode 100644 index f7e8bcf98ac..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.0.1 -notes: this is a license from fossology license reference OLDAP-2.0.1 (Open LDAP Public License - v2.0.1) http://spdx.org/licenses/OLDAP-2.0.1#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.txt deleted file mode 100644 index af8abda58d4..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.txt +++ /dev/null @@ -1,44 +0,0 @@ -The OpenLDAP Public License - - Version 2.0, 7 June 1999 - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. - All Rights Reserved. - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright -statements and notices. Redistributions must also contain a -copy of this document. - -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. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written -permission of the OpenLDAP Foundation. For written permission, -please contact foundation@openldap.org. - -4. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. OpenLDAP is a registered -trademark of the OpenLDAP Foundation. - -5. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.yml deleted file mode 100644 index d910e3d3d2d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.0 -notes: this is a license from fossology license reference OLDAP-2.0 (Open LDAP Public License - v2.0 (or possibly 2.0A and 2.0B)) http://spdx.org/licenses/OLDAP-2.0#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.1.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.1.txt deleted file mode 100644 index c4cfcdb4a99..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.1.txt +++ /dev/null @@ -1,49 +0,0 @@ -The OpenLDAP Public License - - Version 2.1, 29 February 2000 - Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. - All Rights Reserved. - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright -statements and notices. Redistributions must also contain a -copy of this document. - -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. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written -permission of the OpenLDAP Foundation. For written permission, -please contact foundation@openldap.org. - -4. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. OpenLDAP is a trademark -of the OpenLDAP Foundation. - -5. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -6. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent license revision. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.1.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.1.yml deleted file mode 100644 index 79f157b3da8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.1 -notes: this is a license from fossology license reference OLDAP-2.1 (Open LDAP Public License - v2.1) http://spdx.org/licenses/OLDAP-2.1#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.1.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.1.txt deleted file mode 100644 index 2e92af24278..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.1.txt +++ /dev/null @@ -1,50 +0,0 @@ -The OpenLDAP Public License - Version 2.2.1, 1 March 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. Redistributions must also contain a copy of this -document. - -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. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written permission -of the OpenLDAP Foundation. - -4. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. - -5. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -6. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.1.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.1.yml deleted file mode 100644 index 1ca7644a498..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.2.1 -notes: this is a license from fossology license reference OLDAP-2.2.1 (Open LDAP Public License - v2.2.1) http://spdx.org/licenses/OLDAP-2.2.1#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.2.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.2.txt deleted file mode 100644 index 3b91be9aa75..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.2.txt +++ /dev/null @@ -1,51 +0,0 @@ -The OpenLDAP Public License - Version 2.2.2, 28 July 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written permission -of the OpenLDAP Foundation. - -5. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. - -6. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -7. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.2.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.2.yml deleted file mode 100644 index 1a7bcc16e74..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.2.2 -notes: this is a license from fossology license reference OLDAP-2.2.2 (Open LDAP Public License - 2.2.2) http://spdx.org/licenses/OLDAP-2.2.2#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.txt deleted file mode 100644 index f0ddf5a4c50..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.txt +++ /dev/null @@ -1,50 +0,0 @@ -The OpenLDAP Public License - Version 2.2, 1 March 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. Redistributions must also contain a copy of this -document. - -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. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written permission -of the OpenLDAP Foundation. - -4. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. - -5. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -6. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.yml deleted file mode 100644 index 40066910390..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.2 -notes: this is a license from fossology license reference OLDAP-2.2 (Open LDAP Public License - v2.2) http://spdx.org/licenses/OLDAP-2.2#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.3.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.3.txt deleted file mode 100644 index c66aea79205..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.3.txt +++ /dev/null @@ -1,51 +0,0 @@ -The OpenLDAP Public License - Version 2.3, 28 July 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written permission -of the OpenLDAP Foundation. - -5. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. - -6. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -7. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.3.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.3.yml deleted file mode 100644 index 46379f483a1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.3 -notes: this is a license from fossology license reference OLDAP-2.3 (Open LDAP Public License - v2.3) http://spdx.org/licenses/OLDAP-2.3#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.4.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.4.txt deleted file mode 100644 index 12e074bace7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.4.txt +++ /dev/null @@ -1,47 +0,0 @@ -The OpenLDAP Public License - Version 2.4, 8 December 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The names and trademarks of the authors and copyright holders -must not be used in advertising or otherwise to promote the sale, -use or other dealing in this Software without specific, written -prior permission. - -5. Due credit should be given to the OpenLDAP Project. - -6. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.4.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.4.yml deleted file mode 100644 index cd721e338be..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.4 -notes: this is a license from fossology license reference OLDAP-2.4 (Open LDAP Public License - v2.4) http://spdx.org/licenses/OLDAP-2.4#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.5.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.5.txt deleted file mode 100644 index 123a8b475fa..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.5.txt +++ /dev/null @@ -1,48 +0,0 @@ -The OpenLDAP Public License - Version 2.5, 11 May 2001 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The names and trademarks of the authors and copyright holders -must not be used in advertising or otherwise to promote the sale, -use or other dealing in this Software without specific, written -prior permission. - -5. Due credit should be given to the authors of the Software. - -6. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) OR -OWNER(S) OF THE SOFTWARE 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.5.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.5.yml deleted file mode 100644 index a3e7addf243..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.5 -notes: this is a license from fossology license reference OLDAP-2.5 (Open LDAP Public License - v2.5) http://spdx.org/licenses/OLDAP-2.5#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.6.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.6.txt deleted file mode 100644 index 9b55594d3ac..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.6.txt +++ /dev/null @@ -1,46 +0,0 @@ -The OpenLDAP Public License - Version 2.6, 14 June 2001 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The names and trademarks of the authors and copyright holders -must not be used in advertising or otherwise to promote the sale, -use or other dealing in this Software without specific, written -prior permission. - -5. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) OR -OWNER(S) OF THE SOFTWARE 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.6.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.6.yml deleted file mode 100644 index fc4e550e6ef..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.6 -notes: this is a license from fossology license reference OLDAP-2.6 (Open LDAP Public License - v2.6) http://spdx.org/licenses/OLDAP-2.6#licenseText diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.7.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.7.txt deleted file mode 100644 index a61f7cd71a7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.7.txt +++ /dev/null @@ -1,47 +0,0 @@ -The OpenLDAP Public License - Version 2.7, 7 September 2001 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements - and notices, - -2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - -3. Redistributions must contain a verbatim copy of this document. - -The OpenLDAP Foundation may revise this license from time to time. -Each revision is distinguished by a version number. You may use -this Software under terms of this license revision or under the -terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS -CONTRIBUTORS ``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) -OR OWNER(S) OF THE SOFTWARE 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. - -The names of the authors and copyright holders must not be used in -advertising or otherwise to promote the sale, use or other dealing -in this Software without specific, written prior permission. Title -to copyright in this Software shall at all times remain with -copyright holders. - -OpenLDAP is a registered trademark of the OpenLDAP Foundation. - -Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.7.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.7.yml deleted file mode 100644 index 6cbe7e0b071..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.7 -notes: this is a license from fossology license reference OLDAP-2.7 (Open LDAP Public License - v2.7) http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.8.txt b/tests/licensedcode/data/more_licenses/licenses/oldap-2.8.txt deleted file mode 100644 index 2c847357621..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.8.txt +++ /dev/null @@ -1,47 +0,0 @@ -The OpenLDAP Public License - Version 2.8, 17 August 2003 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions in source form must retain copyright statements - and notices, - -2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - -3. Redistributions must contain a verbatim copy of this document. - -The OpenLDAP Foundation may revise this license from time to time. -Each revision is distinguished by a version number. You may use -this Software under terms of this license revision or under the -terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS -CONTRIBUTORS ``AS IS'''' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) -OR OWNER(S) OF THE SOFTWARE 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. - -The names of the authors and copyright holders must not be used in -advertising or otherwise to promote the sale, use or other dealing -in this Software without specific, written prior permission. Title -to copyright in this Software shall at all times remain with copyright -holders. - -OpenLDAP is a registered trademark of the OpenLDAP Foundation. - -Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/oldap-2.8.yml b/tests/licensedcode/data/more_licenses/licenses/oldap-2.8.yml deleted file mode 100644 index f456c0b4bd5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/oldap-2.8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openldap-2.8 -notes: this is a license from fossology license reference OLDAP-2.8 (OpenLDAP Public License - 2.8) http://www.openldap.org/software/release/license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/opengroup.txt b/tests/licensedcode/data/more_licenses/licenses/opengroup.txt deleted file mode 100644 index 81fdfc8c05f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/opengroup.txt +++ /dev/null @@ -1,108 +0,0 @@ -THE OPEN GROUP PUBLIC LICENSE - -MOTIF GRAPHICAL USER INTERFACE SOFTWARE - - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS THE OPEN GROUP PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT''S ACCEPTANCE OF THIS AGREEMENT. - - -DEFINITIONS - -"Contribution" means: - -in the case of The Open Group, L.L.C. ("The Open Group"), the Original Program, and - -in the case of each Contributor, - i. changes to the Program, and - ii. additions to the Program; - -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, even if the separate modules are linked in binary form to the Program, and - ii. are not derivative works of the Program. - -"Contributor" means The Open Group and any other entity that distributes the Program. - -"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. - -"Open Source" programs mean software for which the source code is available without confidential or trade secret restrictions and for which the source code and object code are available for distribution without license charges. -"Original Program" means the original version of the software accompanying this Agreement as released by The Open Group, including source code, object code and documentation, if any. - -"Program" means the Original Program and Contributions. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - - -GRANT OF RIGHTS - -The rights granted under this license are limited solely to distribution and sublicensing of the Contribution(s) on, with, or for operating systems which are themselves Open Source programs. Contact The Open Group for a license allowing distribution and sublicensing of the Original Program on, with, or for operating systems which are not Open Source programs. - -Subject to the terms of this Agreement and the limitations of this Section 2, 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. - - Subject to the terms of this Agreement and the limitations of this Section 2, 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. - -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. - -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. - - -REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a. it complies with the terms and conditions of this Agreement; and - -b. its license agreement: - 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; - ii. effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - iii. states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - 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. - -When the Program is made available in source code form: - -a. it must be made available under this Agreement; and - -b. a copy of this Agreement must be included with each copy of the Program. - -Each Contributor must include the following in a conspicuous location in the Program: - -Copyright (c) {date here}, The Open Group Ltd. and others. All Rights Reserved. - -In addition, 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. - - -COMMERCIAL DISTRIBUTION - -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, subject to the limitations provided in Section 2, 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 defence and any related settlement negotiations. - -The Indemnified Contributor may participate in any such claim at its own expense. - -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. - - -NO WARRANTY - -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. - - -DISCLAIMER OF LIABILITY - -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. - - -GENERAL - -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. - -If Recipient institutes patent litigation or other similar official proceedings to enforce patent rights 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. - -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 non-compliance. 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. - -The Open Group may publish new versions (including revisions) of this Agreement from time to time. 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. No one other than The Open Group has the right to modify this Agreement. 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. - -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. - \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/opengroup.yml b/tests/licensedcode/data/more_licenses/licenses/opengroup.yml deleted file mode 100644 index 9e74f885d2b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/opengroup.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - open-group -notes: this is a license from fossology license reference OpenGroup (The Open Group Public License) - http://www.opengroup.org/openmotif/license/ diff --git a/tests/licensedcode/data/more_licenses/licenses/openmap.txt b/tests/licensedcode/data/more_licenses/licenses/openmap.txt deleted file mode 100644 index e003a404ae7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/openmap.txt +++ /dev/null @@ -1,147 +0,0 @@ -OpenMap Software License Agreement - ---------------------------------- - -This Agreement sets forth the terms and conditions under which -the software known as OpenMap(tm) will be licensed by BBN -Technologies ("BBN") to you ("Licensee"), and by which Derivative -Works (as hereafter defined) of OpenMap will be licensed by you to BBN. - -Definitions: - - "Derivative Work(s)" shall mean any revision, enhancement, - modification, translation, abridgement, condensation or - expansion created by Licensee or BBN that is based upon the - Software or a portion thereof that would be a copyright - infringement if prepared without the authorization of the - copyright owners of the Software or portion thereof. - - "OpenMap" shall mean a programmer''s toolkit for building map - based applications as originally created by BBN, and any - Derivative Works thereof as created by either BBN or Licensee, - but shall include only those Derivative Works BBN has approved - for inclusion into, and BBN has integrated into OpenMap. - - "Standard Version" shall mean OpenMap, as originally created by - BBN. - - "Software" shall mean OpenMap and the Derivative Works created - by Licensee and the collection of files distributed by the - Licensee with OpenMap, and the collection of files created - through textual modifications. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the Derivative Works. - - "Licensee" is you, only if you agree to be bound by the terms - and conditions set forth in this Agreement. - - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people - involved. - - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions that they received it. - -1. BBN maintains all rights, title and interest in and to -OpenMap, including all applicable copyrights, trade secrets, -patents and other intellectual rights therein. Licensee hereby -grants to BBN all right, title and interest into the compilation -of OpenMap. Licensee shall own all rights, title and interest -into the Derivative Works created by Licensee (subject to the -compilation ownership by BBN). - -2. BBN hereby grants to Licensee a royalty free, worldwide right -and license to use, copy, distribute and make Derivative Works of -OpenMap, and sublicensing rights of any of the foregoing in -accordance with the terms and conditions of this Agreement, -provided that you duplicate all of the original copyright notices -and associated disclaimers. - -3. Licensee hereby grants to BBN a royalty free, worldwide right -and license to use, copy, distribute and make Derivative Works of -Derivative Works created by Licensee and sublicensing rights of -any of the foregoing. - -4. Licensee''s right to create Derivative Works in the Software is -subject to Licensee agreement to insert a prominent notice in -each changed file stating how and when you changed that file, and -provided that you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or - placing the modifications on a major archive site and by - providing your modifications to the Copyright Holder. - - b) use the modified Package only within your corporation or - organization. - - c) rename any non-standard executables so the names do not - conflict with standard executables, which must also be - provided, and provide a separate manual page for each - non-standard executable that clearly documents how it - differs from OpenMap. - - d) make other distribution arrangements with the Copyright - Holder. - -5. Licensee may distribute the programs of this Software in -object code or executable form, provided that you do at least ONE -of the following: - - a) distribute an OpenMap version of the executables and - library files, together with instructions (in the manual - page or equivalent) on where to get OpenMap. - - b) accompany the distribution with the machine-readable - source code with your modifications. - - c) accompany any non-standard executables with their - corresponding OpenMap executables, giving the non-standard - executables non-standard names, and clearly documenting - the differences in manual pages (or equivalent), together - with instructions on where to get OpenMap. - - d) make other distribution arrangements with the Copyright - Holder. - -6. You may charge a reasonable copying fee for any distribution -of this Software. You may charge any fee you choose for support -of this Software. You may not charge a fee for this Software -itself. However, you may distribute this Software in aggregate -with other (possibly commercial) programs as part of a larger -(possibly commercial) software distribution provided that you do -not advertise this Software as a product of your own. - -7. The data and images supplied as input to or produced as output -from the Software do not automatically fall under the copyright -of this Software, but belong to whomever generated them, and may -be sold commercially, and may be aggregated with this Software. - -8. BBN makes no representation about the suitability of OpenMap -for any purposes. BBN shall have no duty or requirement to -include any Derivative Works into OpenMap. - -9. Each party hereto represents and warrants that they have the -full unrestricted right to grant all rights and licenses granted -to the other party herein. - -10. THIS PACKAGE IS PROVIDED "AS IS" WITHOUT WARRANTIES OF ANY -KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING (BUT NOT LIMITED TO) -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND -WITHOUT ANY WARRANTIES AS TO NONINFRINGEMENT. - -11. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, -SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER RESULTING -FROM LOSS OF USE OF DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS CONDUCT, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS PACKAGE. - -12. Without limitation of the foregoing, You agree to commit no -act which, directly or indirectly, would violate any U.S. law, -regulation, or treaty, or any other international treaty or -agreement to which the United States adheres or with which the -United States complies, relating to the export or re-export of -any commodities, software, or technical data. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/openmap.yml b/tests/licensedcode/data/more_licenses/licenses/openmap.yml deleted file mode 100644 index 8c1ff968710..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/openmap.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - openmap -notes: this is a license from fossology license reference OpenMap (OpenMap Software License - Agreement) http://openmap.bbn.com/license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/openmarket.txt b/tests/licensedcode/data/more_licenses/licenses/openmarket.txt deleted file mode 100644 index 14a0941a340..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/openmarket.txt +++ /dev/null @@ -1,28 +0,0 @@ -This FastCGI application library source and object code (the -"Software") and its documentation (the "Documentation") are -copyrighted by Open Market, Inc ("Open Market"). The following terms -apply to all files associated with the Software and Documentation -unless explicitly disclaimed in individual files. - -Open Market permits you to use, copy, modify, distribute, and license -this Software and the Documentation for any purpose, provided that -existing copyright notices are retained in all copies and that this -notice is included verbatim in any distributions. No written -agreement, license, or royalty fee is required for any of the -authorized uses. Modifications to this Software and Documentation may -be copyrighted by their authors and need not follow the licensing -terms described here. If modifications to this Software and -Documentation have new licensing terms, the new terms must be clearly -indicated on the first page of each file where they apply. - -OPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE -SOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN -NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY -DAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE -DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR -CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR -LOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS". -OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR -OTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/openmarket.yml b/tests/licensedcode/data/more_licenses/licenses/openmarket.yml deleted file mode 100644 index 41a9128a413..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/openmarket.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - fastcgi-devkit -notes: this is a license from fossology license reference OpenMarket (Open Market License) http://www.fastcgi.com/devkit/LICENSE.TERMS diff --git a/tests/licensedcode/data/more_licenses/licenses/opl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/opl-1.0.txt deleted file mode 100644 index 635e0b05293..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/opl-1.0.txt +++ /dev/null @@ -1,433 +0,0 @@ -OPEN PUBLIC LICENSE - -Version 1.0 - -1. Definitions. - -1.1. "Contributor" means each entity that creates or contributes to -the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original -Code, prior Modifications used by a Contributor, and the -Modifications made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the -combination of the Original Code and Modifications, in each case -including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism -generally accepted in the software development community for the -electronic transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source -Code. - -1.6. "Initial Developer" means the individual or entity identified -as the Initial Developer in the Source Code notice required by -Exhibit A. - -1.7. "Larger Work" means a work, which combines Covered Code or -portions thereof with code not governed by the terms of this -License. - -1.8. "License" means this document and the corresponding addendum -described in section 6.4 below. - -1.9. "Modifications" means any addition to or deletion from the -substance or structure of either the Original Code or any previous -Modifications. When Covered Code is released as a series of files, -a Modification is: - -A. Any addition to or deletion from the contents of a file -containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code -or previous Modifications. - -1.10. "Original Code" means Source Code of computer software code -which is described in the Source Code notice required by Exhibit A -as Original Code, and which, at the time of its release under this -License is not already Covered Code governed by this License. - -1.11. "Source Code" means the preferred form of the Covered Code -for making modifications to it, including all modules it contains, -plus any associated interface definition files, scripts used to -control compilation and installation of an Executable, or a list of -source code differential comparisons against either the Original -Code or another well known, available Covered Code of the -Contributor''s choice. The Source Code can be in a compressed or -archival form, provided the appropriate decompression or -de-archiving software is widely available for no charge. - -1.12. "You" means an individual or a legal entity exercising rights -under, and complying with all of the terms of, this License or a -future version of this License issued under Section 6.1. For legal -entities, "You'''' includes any entity which controls, is controlled -by, or is under common control with You. For purposes of this -definition, "control'''' means (a) the power, direct or indirect, to -cause the direction or management of such entity, whether by -contract or otherwise, or (b) ownership of fifty percent (50%) or -more of the outstanding shares or beneficial ownership of such -entity. - -1.13 "License Author" means Lutris Technologies, Inc. - -2. Source Code License. - -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a worldwide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) under intellectual property rights (other than patent or -trademark) to use, reproduce, modify, display, perform, -sublicense and distribute the Original Code (or portions -thereof) with or without Modifications, or as part of a -Larger Work; and - -(b) under patents now or hereafter owned or controlled by -Initial Developer, to make, have made, use and sell (``offer -to sell and import'''') the Original Code (or portions -thereof), but solely to the extent that any such patent is -reasonably necessary to enable You to Utilize the Original -Code (or portions thereof) and not to any greater extent -that may be necessary to Utilize further Modifications or -combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a worldwide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) under intellectual property rights (other than patent or -trademark) to use, reproduce, modify, display, perform, -sublicense and distribute the Modifications created by such -Contributor (or portions thereof) either on an unmodified -basis, with other Modifications, as Covered Code or as part -of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by -Contributor, to to make, have made, use and sell (``offer to -sell and import'''') the Contributor Version (or portions -thereof), but solely to the extent that any such patent is -reasonably necessary to enable You to Utilize the -Contributor Version (or portions thereof), and not to any -greater extent that may be necessary to Utilize further -Modifications or combinations - -3. Distribution Obligations. - -3.1. Application of License. -The Modifications which You create or to which You contribute are -governed by the terms of this License, including without limitation -Section 2.2. The Source Code version of Covered Code may be -distributed only under the terms of this License or a future -version of this License released under Section 6.1, and You must -include a copy of this License with every copy of the Source Code -You distribute. You may not offer or impose any terms on any Source -Code version that alters or restricts the applicable version of -this License or the recipients'' rights hereunder. However, You may -include an additional document offering the additional rights -described in Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must -be made available, prior to any use, except for internal -development and practice, in Source Code form under the terms of -this License either on the same media as an Executable version or -via an accepted Electronic Distribution Mechanism to anyone to whom -you made an Executable version available; and if made available via -Electronic Distribution Mechanism, must remain available for at -least twelve (12) months after the date it initially became -available, or at least six (6) months after a subsequent version of -that particular Modification has been made available to such -recipients. You shall notify the Initial Developer of the -Modification and the location of the Source Code via the contact -means provided for in the Developer Specific license. Initial -Developer will be acting as maintainer of the Source Code and may -provide an Electronic Distribution mechanism for the Modification -to be made available. - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain -a file documenting the changes You made to create that Covered Code -and the date of any change. You must include a prominent statement -that the Modification is derived, directly or indirectly, from -Original Code provided by the Initial Developer and including the -name of the Initial Developer in (a) the Source Code, and (b) in -any notice in an Executable version or related documentation in -which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual -property right in particular functionality or code (or its -utilization under this License), you must include a text -file with the source code distribution titled "LEGAL" which -describes the claim and the party making the claim in -sufficient detail that a recipient will know whom to -contact. If you obtain such knowledge after You make Your -Modification available as described in Section 3.2, You -shall promptly modify the LEGAL file in all copies You make -available thereafter and shall take other steps (such as -notifying appropriate mailing lists or newsgroups) -reasonably calculated to inform those who received the -Covered Code that new knowledge has been obtained. - -(b) Representations. - -Contributor represents that, except as disclosed pursuant to -Section 3.4(a) above, Contributor believes that -Contributor''s Modifications are Contributor''s original -creation(s) and/or Contributor has sufficient rights to -grant the rights conveyed by this License. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the -Source Code, and this License in any documentation for the Source -Code, where You describe recipients'' rights relating to Covered -Code. If You created one or more Modification(s), You may add your -name as a Contributor to the notice described in Exhibit A. If it -is not possible to put such notice in a particular Source Code file -due to its structure, then you must include such notice in a -location (such as a relevant directory file) where a user would be -likely to look for such a notice. You may choose to offer, and to -charge a fee for, warranty, support, indemnity or liability -obligations to one or more recipients of Covered Code. However, You -may do so only on Your own behalf, and not on behalf of the Initial -Developer or any Contributor. You must make it absolutely clear -that any such warranty, support, indemnity or liability obligation -is offered by You alone, and You hereby agree to indemnify the -Initial Developer and every Contributor for any liability incurred -by the Initial Developer or such Contributor as a result of -warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the -requirements of Section 3.1-3.5 have been met for that Covered -Code, and if You include a notice stating that the Source Code -version of the Covered Code is available under the terms of this -License, including a description of how and where You have -fulfilled the obligations of Section 3.2. The notice must be -conspicuously included in any notice in an Executable version, -related documentation or collateral in which You describe -recipients'' rights relating to the Covered Code. You may distribute -the Executable version of Covered Code under a license of Your -choice, which may contain terms different from this License, -provided that You are in compliance with the terms of this License -and that the license for the Executable version does not attempt to -limit or alter the recipient''s rights in the Source Code version -from the rights set forth in this License. If You distribute the -Executable version under a different license You must make it -absolutely clear that any terms which differ from this License are -offered by You alone, not by the Initial Developer or any -Contributor. You hereby agree to indemnify the Initial Developer -and every Contributor for any liability incurred by the Initial -Developer or such Contributor as a result of any such terms You -offer. If you distribute executable versions containing Covered -Code, you must reproduce the notice in Exhibit B in the -documentation and/or other materials provided with the product. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other -code not governed by the terms of this License and distribute the -Larger Work as a single product. In such a case, You must make sure -the requirements of this License are fulfilled for the Covered -Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Code due to -statute or regulation then You must: (a) comply with the terms of -this License to the maximum extent possible; and (b) Cite all of -the statutes or regulations that prohibit you from complying fully -with this license. (c) describe the limitations and the code they -affect. Such description must be included in the LEGAL file -described in Section 3.4 and must be included with all -distributions of the Source Code. Except to the extent prohibited -by statute or regulation, such description must be sufficiently -detailed for a recipient of ordinary skill to be able to understand -it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has -attached the notice in Exhibit A, and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions. -License Author may publish revised and/or new versions of the -License from time to time. Each version will be given a -distinguishing version number and shall be submitted to -opensource.org for certification. - -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of -the License, You may always continue to use it under the terms of -that version. You may also choose to use such Covered Code under -the terms of any subsequent version of the License published by -Initial Developer. No one other than Initial Developer has the -right to modify the terms applicable to Covered Code created under -this License. - -6.3. Derivative Works. -If you create or use a modified version of this License, except in -association with the required Developer Specific License described -in section 6.4, (which you may only do in order to apply it to code -which is not already Covered Code governed by this License), you -must (a) rename Your license so that the phrases ``Open'''', -``OpenPL'''', ``OPL'''' or any confusingly similar phrase do not appear -anywhere in your license and (b) otherwise make it clear that your -version of the license contains terms which differ from the Open -Public License. (Filling in the name of the Initial Developer, -Original Code or Contributor in the notice described in Exhibit A -shall not of themselves be deemed to be modifications of this -License.) - -6.4. Required Additional Developer Specific License - -This license is a union of the following two parts that should be -found as text files in the same place (directory), in the order of -preeminence: - -[1] A Developer specific license. - -[2] The contents of this file OPL_1_0.TXT, stating the general -licensing policy of the software. - -In case of conflicting dispositions in the parts of this license, -the terms of the lower-numbered part will always be superseded by -the terms of the higher numbered part. - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR -NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF -THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE -DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER -CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR -CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART -OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER -EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - -8.1 Termination upon Breach - -This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. All -sublicenses to the Covered Code, which are properly granted, shall -survive any termination of this License. Provisions that, by their -nature, must remain in effect beyond the termination of this License -shall survive. - - - -8.2. Termination Upon Litigation. If You initiate litigation by -asserting a patent infringement claim (excluding declatory judgment -actions) against Initial Developer or a Contributor (the Initial -Developer or Contributor against whom You file such action is referred -to as "Participant") alleging that: - -(a) such Participant''s Contributor Version directly or -indirectly infringes any patent, then any and all rights -granted by such Participant to You under Sections 2.1 and/or -2.2 of this License shall, upon 60 days notice from Participant -terminate prospectively, unless if within 60 days after receipt -of notice You either: (i) agree in writing to pay Participant a -mutually agreeable reasonable royalty for Your past and future -use of Modifications made by such Participant, or (ii) withdraw -Your litigation claim with respect to the Contributor Version -against such Participant. If within 60 days of notice, a -reasonable royalty and payment arrangement are not mutually -agreed upon in writing by the parties or the litigation claim -is not withdrawn, the rights granted by Participant to You -under Sections 2.1 and/or 2.2 automatically terminate at the -expiration of the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such -Participant''s Contributor Version, directly or indirectly -infringes any patent, then any rights granted to You by such -Participant under Sections 2.1(b) and 2.2(b) are revoked -effective as of the date You first made, used, sold, -distributed, or had made, Modifications made by that -Participant. - -8.3. If You assert a patent infringement claim against Participant -alleging that such Participant''s Contributor Version directly or -indirectly infringes any patent where such claim is resolved (such as -by license or settlement) prior to the initiation of patent -infringement litigation, then the reasonable value of the licenses -granted by such Participant under Sections 2.1 or 2.2 shall be taken -into account in determining the amount or value of any payment or -license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, all -end user license agreements (excluding distributors and resellers) -which have been validly granted by You or any distributor hereunder -prior to termination shall survive termination. - - - -9. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT -(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL -DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, -OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER -PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF -GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND -ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE -BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF -LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY -RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW -PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE -EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO -THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - -The Covered Code is a ``commercial item,'''' as that term is defined in -48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer -software'''' and ``commercial computer software documentation,'''' as such -terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 -C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), -all U.S. Government End Users acquire Covered Code with only those -rights set forth herein. - -11. MISCELLANEOUS. - -This section was intentionally left blank. The contents of this -section are found in the corresponding addendum described above. - -12. RESPONSIBILITY FOR CLAIMS. - -Except in cases where another Contributor has failed to comply with -Section 3.4, You are responsible for damages arising, directly or -indirectly, out of Your utilization of rights under this License, -based on the number of copies of Covered Code you made available, the -revenues you received from utilizing such rights, and other relevant -factors. You agree to work with affected parties to distribute with -Initial Developer responsibility on an equitable basis. - -EXHIBIT A. - -Text for this Exhibit A is found in the corresponding addendum, -described in section 6.4 above, text file provided by the Initial -Developer. This license is not valid or complete with out that -file. - -EXHIBIT B. - -Text for this Exhibit B is found in the corresponding addendum, -described in section 6.4 above, text file provided by the Initial -Developer. This license is not valid or complete with out that -file. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/opl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/opl-1.0.yml deleted file mode 100644 index 259c2c01bab..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/opl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - open-public -notes: this is a license from fossology license reference OPL-1.0 (Open Public License v1.0) - https://fedoraproject.org/wiki/Licensing/Open_Public_License diff --git a/tests/licensedcode/data/more_licenses/licenses/osl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/osl-1.0.txt deleted file mode 100644 index 39937efef08..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/osl-1.0.txt +++ /dev/null @@ -1,164 +0,0 @@ -Open Software License, v 1.0 - -The Open Software License -v. 1.0 - -This Open Software License (the "License") applies to any original -work of authorship (the "Original Work") whose owner (the "Licensor") -has placed the following notice immediately following the copyright -notice for the Original Work: "Licensed under the Open Software -License version 1.0" - -License Terms - -1) Grant of Copyright License. Licensor hereby grants You a -world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable -license to do the following: - -a) to reproduce the Original Work in copies; - -b) to prepare derivative works ("Derivative Works") based upon the -Original Work; - -c) to distribute copies of the Original Work and Derivative Works -to the public, with the proviso that copies of Original Work or -Derivative Works that You distribute shall be licensed under the -Open Software License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, -royalty-free, non-exclusive, perpetual, non-sublicenseable license, -under patent claims owned or controlled by the Licensor that are -embodied in the Original Work as furnished by the Licensor ("Licensed -Claims") to make, use, sell and offer for sale the Original Work. -Licensor hereby grants You a world-wide, royalty-free, non-exclusive, -perpetual, non-sublicenseable license under the Licensed Claims to -make, use, sell and offer for sale Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the -preferred form of the Original Work for making modifications to it and -all available documentation describing how to access and modify the -Original Work. Licensor hereby agrees to provide a machine-readable -copy of the Source Code of the Original Work along with each copy of -the Original Work that Licensor distributes. Licensor reserves the -right to satisfy this obligation by placing a machine-readable copy of -the Source Code in an information repository reasonably calculated to -permit inexpensive and convenient access by You for as long as -Licensor continues to distribute the Original Work, and by publishing -the address of that information repository in a notice immediately -following the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Nothing in this License shall be -deemed to grant any rights to trademarks, copyrights, patents, trade -secrets or any other intellectual property of Licensor except as -expressly stated herein. No patent license is granted to make, use, -sell or offer to sell embodiments of any patent claims other than the -Licensed Claims defined in Section 2. No right is granted to the -trademarks of Licensor even if such marks are included in the Original -Work. Nothing in this License shall be interpreted to prohibit -Licensor from licensing under different terms from this License any -Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use -or distribution of the Original Work or Derivative Works in any way -such that the Original Work or Derivative Works may be accessed or -used by anyone other than You, whether the Original Work or Derivative -Works are distributed to those persons, made available as an -application intended for use over a computer network, or used to -provide services or otherwise deliver content to anyone other than -You. As an express condition for the grants of license hereunder, You -agree that any External Deployment by You shall be deemed a -distribution and shall be licensed to all under the terms of this -License, as prescribed in section 1(c) herein. - -6) Warranty and Disclaimer of Warranty. LICENSOR WARRANTS THAT THE -COPYRIGHT IN AND TO THE ORIGINAL WORK IS OWNED BY THE LICENSOR OR THAT -THE ORIGINAL WORK IS DISTRIBUTED BY LICENSOR UNDER A VALID CURRENT -LICENSE FROM THE COPYRIGHT OWNER. EXCEPT AS EXPRESSLY STATED IN THE -IMMEDIATELY PRECEEDING SENTENCE, THE ORIGINAL WORK IS PROVIDED UNDER -THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR -IMPLIED, INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF -NON-INFRINGEMENT AND WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE -OR FIT FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF -THE ORIGINAL WORK IS WITH YOU. THIS DISCLAIMER OF WARRANTY CONSTITUTES -AN ESSENTIAL PART OF THIS LICENSE. NO LICENSE TO ORIGINAL WORK IS -GRANTED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -7) Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL -THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, -SHALL THE LICENSOR BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, -SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING -AS A RESULT OF THIS LICENSE OR THE USE OF THE ORIGINAL WORK INCLUDING, -WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, -COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL -DAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN INFORMED OF THE -POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT -APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH -PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH -LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR -LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION -AND LIMITATION MAY NOT APPLY TO YOU. - -8) Acceptance and Termination. Nothing else but this License (or -another written agreement between Licensor and You) grants You -permission to create Derivative Works based upon the Original Work, -and any attempt to do so except under the terms of this License (or -another written agreement between Licensor and You) is expressly -prohibited by U.S. copyright law, the equivalent laws of other -countries, and by international treaty. Therefore, by exercising any -of the rights granted to You in Sections 1 and 2 herein, You indicate -Your acceptance of this License and all of its terms and conditions. -This license shall terminate immediately and you may no longer -exercise any of the rights granted to You by this License upon Your -failure to honor the proviso in Section 1(c) herein. - -9) Mutual Termination for Patent Action. This License shall terminate -automatically and You may no longer exercise any of the rights granted -to You by this License if You file a lawsuit in any court alleging -that any OSI Certified open source software that is licensed under any -license containing this "Mutual Termination for Patent Action" clause -infringes any patent claims that are essential to use that software. - -10) Jurisdiction, Venue and Governing Law. You agree that any lawsuit -arising under or relating to this License shall be maintained in the -courts of the jurisdiction wherein the Licensor resides or in which -Licensor conducts its primary business, and under the laws of that -jurisdiction excluding its conflict-of-law provisions. The application -of the United Nations Convention on Contracts for the International -Sale of Goods is expressly excluded. Any use of the Original Work -outside the scope of this License or after its termination shall be -subject to the requirements and penalties of the U.S. Copyright Act, -17 U.S.C. § 101 et seq., the equivalent laws of other countries, and -international treaty. This section shall survive the termination of -this License. - -11) Attorneys Fees. In any action to enforce the terms of this License -or seeking damages relating thereto, the prevailing party shall be -entitled to recover its costs and expenses, including, without -limitation, reasonable attorneys'' fees and costs incurred in -connection with such action, including any appeal of such action. This -section shall survive the termination of this License. - -12) Miscellaneous. This License represents the complete agreement -concerning the subject matter hereof. If any provision of this License -is held to be unenforceable, such provision shall be reformed only to -the extent necessary to make it enforceable. - -13) Definition of "You" in This License. "You" throughout this -License, whether in upper or lower case, means an individual or a -legal entity exercising rights under, and complying with all of the -terms of, this License. For legal entities, "You" includes any entity -that controls, is controlled by, or is under common control with you. -For purposes of this definition, "control" means (i) the power, direct -or indirect, to cause the direction or management of such entity, -whether by contract or otherwise, or (ii) ownership of fifty percent -(50%) or more of the outstanding shares, or (iii) beneficial ownership -of such entity. - -This license is Copyright (C) 2002 Lawrence E. Rosen. All rights -reserved. Permission is hereby granted to copy and distribute this -license without modification. This license may not be modified without -the express written permission of its copyright owner. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/osl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/osl-1.0.yml deleted file mode 100644 index 956fe0a8eb7..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/osl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - osl-1.0 -notes: this is a license from fossology license reference OSL-1.0 (Open Software License 1.0) - http://www.opensource.org/licenses/osl-1.0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/osl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/osl-1.1.txt deleted file mode 100644 index 11b8c0637af..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/osl-1.1.txt +++ /dev/null @@ -1,161 +0,0 @@ - The Open Software License - v. 1.1 - -This Open Software License (the "License") applies to any original work of -authorship (the "Original Work") whose owner (the "Licensor") has placed the -following notice immediately following the copyright notice for the Original -Work: - -Licensed under the Open Software License version 1.1 - -1) Grant of Copyright License. Licensor hereby grants You a world-wide, -royalty-free, non-exclusive, perpetual, non-sublicenseable license to do the -following: - -a) to reproduce the Original Work in copies; - -b) to prepare derivative works ("Derivative Works") based upon the Original -Work; - -c) to distribute copies of the Original Work and Derivative Works to the -public, with the proviso that copies of Original Work or Derivative Works that -You distribute shall be licensed under the Open Software License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, -royalty-free, non-exclusive, perpetual, non-sublicenseable license, under -patent claims owned or controlled by the Licensor that are embodied in the -Original Work as furnished by the Licensor ("Licensed Claims") to make, use, -sell and offer for sale the Original Work. Licensor hereby grants You a -world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license -under the Licensed Claims to make, use, sell and offer for sale Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred -form of the Original Work for making modifications to it and all available -documentation describing how to modify the Original Work. Licensor hereby -agrees to provide a machine-readable copy of the Source Code of the Original -Work along with each copy of the Original Work that Licensor distributes. -Licensor reserves the right to satisfy this obligation by placing a -machine-readable copy of the Source Code in an information repository reasonably -calculated to permit inexpensive and convenient access by You for as long as - Licensor continues to distribute the Original Work, and by publishing the -address of that information repository in a notice immediately following the -copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Nothing in this License shall be deemed to -grant any rights to trademarks, copyrights, patents, trade secrets or any -other intellectual property of Licensor except as expressly stated herein. No -patent license is granted to make, use, sell or offer to sell embodiments of -any patent claims other than the Licensed Claims defined in Section 2. No -right is granted to the trademarks of Licensor even if such marks are included -in the Original Work. Nothing in this License shall be interpreted to prohibit -Licensor from licensing under different terms from this License any Original -Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use or -distribution of the Original Work or Derivative Works in any way such that the -Original Work or Derivative Works may be used by anyone other than You, -whether the Original Work or Derivative Works are distributed to those persons -or made available as an application intended for use over a computer network. -As an express condition for the grants of license hereunder, You agree that -any External Deployment by You of a Derivative Work shall be deemed a -distribution and shall be licensed to all under the terms of this License, as -prescribed in section 1(c) herein. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative -Works that You create, all copyright, patent or trademark notices from the -Source Code of the Original Work, as well as any notices of licensing and any -descriptive text identified therein as an "Attribution Notice." You must cause -the Source Code for any Derivative Works that You create to carry a prominent -Attribution Notice reasonably calculated to inform recipients that You have -modified the Original Work. - -7) Warranty and Disclaimer of Warranty. Licensor warrants that the copyright -in and to the Original Work is owned by the Licensor or that the Original Work -is distributed by Licensor under a valid current license from the copyright -owner. Except as expressly stated in the immediately proceeding sentence, the -Original Work is provided under this License on an "AS IS" BASIS and WITHOUT -WARRANTY, either express or implied, including, without limitation, the -warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. -This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No -license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, -whether in tort (including negligence), contract, or otherwise, shall the -Licensor be liable to any person for any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License -or the use of the Original Work including, without limitation, damages for -loss of goodwill, work stoppage, computer failure or malfunction, or any and -all other commercial damages or losses. This limitation of liability shall not -apply to liability for death or personal injury resulting from Licensor''s -negligence to the extent applicable law prohibits such limitation. Some -jurisdictions do not allow the exclusion or limitation of incidental or -consequential damages, so this exclusion and limitation may not apply to You. - -9) Acceptance and Termination. If You distribute copies of the Original Work -or a Derivative Work, You must make a reasonable effort under the circumstances -to obtain the express and volitional assent of recipients to the terms of this -License. Nothing else but this License (or another written agreement between -Licensor and You) grants You permission to create Derivative Works based upon -the Original Work or to exercise any of the rights granted in Sections 1 herein, -and any attempt to do so except under the terms of this License (or another -written agreement between Licensor and You) is expressly prohibited by U.S. -copyright law, the equivalent laws of other countries, and by international -treaty. Therefore, by exercising any of the rights granted to You in Sections -1 herein, You indicate Your acceptance of this License and all of its terms and -conditions. This License shall terminate immediately and you may no longer -exercise any of the rights granted to You by this License upon Your failure to -honor the proviso in Section 1(c) herein. - -10) Mutual Termination for Patent Action. This License shall terminate -automatically and You may no longer exercise any of the rights granted to You -by this License if You file a lawsuit in any court alleging that any OSI -Certified open source software that is licensed under any license containing -this "Mutual Termination for Patent Action" clause infringes any patent claims -that are essential to use that software. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this -License may be brought only in the courts of a jurisdiction wherein the Licensor -resides or in which Licensor conducts its primary business, and under the laws -of that jurisdiction excluding its conflict-of-law provisions. The application -of the United Nations Convention on Contracts for the International Sale of -Goods is expressly excluded. Any use of the Original Work outside the scope of -this License or after its termination shall be subject to the requirements and -penalties of the U.S. Copyright Act, 17 U.S.C. å¤ 101 et seq., the equivalent -laws of other countries, and international treaty. This section shall survive -the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or -seeking damages relating thereto, the prevailing party shall be entitled to -recover its costs and expenses, including, without limitation, reasonable -attorneys'' fees and costs incurred in connection with such action, including -any appeal of such action. This section shall survive the termination of this -License. - -13) Miscellaneous. This License represents the complete agreement concerning -the subject matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent necessary -to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, -whether in upper or lower case, means an individual or a legal entity exercising -rights under, and complying with all of the terms of, this License. For legal -entities, "You" includes any entity that controls, is controlled by, or is under -common control with you. For purposes of this definition, "control" means (i) -the power, direct or indirect, to cause the direction or management of such -entity, whether by contract or otherwise, or (ii) ownership of fifty percent -(50%) or more of the outstanding shares, or (iii) beneficial ownership of such -entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise -restricted or conditioned by this License or by law, and Licensor promises not -to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. -Permission is hereby granted to copy and distribute this license without -modification. This license may not be modified without the express written -permission of its copyright owner. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/osl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/osl-1.1.yml deleted file mode 100644 index 2407aa058c1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/osl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - osl-1.1 -notes: this is a license from fossology license reference OSL-1.1 (Open Software License 1.1) - http://opensource.linux-mirror.org/licenses/osl-1.1.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/osl-3.0.txt b/tests/licensedcode/data/more_licenses/licenses/osl-3.0.txt deleted file mode 100644 index c95c52968b5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/osl-3.0.txt +++ /dev/null @@ -1,46 +0,0 @@ -Open Software License ("OSL") v. 3.0 -This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: - -Licensed under the Open Software License version 3.0 - -1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: - -a) to reproduce the Original Work in copies, either alone or as part of a collective work; - -b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Open Software License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor''s trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. - -9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. - -12) Attorneys'' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys'' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Open Software License" or "OSL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/osl-3.0.yml b/tests/licensedcode/data/more_licenses/licenses/osl-3.0.yml deleted file mode 100644 index cf06af42b6f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/osl-3.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - osl-3.0 -notes: this is a license from fossology license reference OSL-3.0 (Open Software License 3.0) - http://www.opensource.org/licenses/osl-3.0.php diff --git a/tests/licensedcode/data/more_licenses/licenses/pddl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/pddl-1.0.txt deleted file mode 100644 index 23bc106f380..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/pddl-1.0.txt +++ /dev/null @@ -1,136 +0,0 @@ -Open Data Commons - Public Domain Dedication & License (PDDL) - -Preamble -The Open Data Commons � Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents ("data"), either together or individually. - -Many databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific special rights that cover databases called the "sui generis" database right. Both of these sets of rights, as well as other legal rights used to protect databases and data, can create uncertainty or practical difficulty for those wishing to share databases and their underlying data but retain a limited amount of rights under a "some rights reserved" approach to licensing as outlined in the Science Commons Protocol for Implementing Open Access Data. As a result, this waiver and licence tries to the fullest extent possible to eliminate or fully license any rights that cover this database and data. Any Community Norms or similar statements of use of the database or data do not form a part of this document, and do not act as a contract for access or other terms of use for the database or data. - -The position of the recipient of the work - -Because this document places the database and its contents in or as close as possible within the public domain, there are no restrictions or requirements placed on the recipient by this document. Recipients may use this work commercially, use technical protection measures, combine this data or database with other databases or data, and share their changes and additions or keep them secret. It is not a requirement that recipients provide further users with a copy of this licence or attribute the original creator of the data or database as a source. The goal is to eliminate restrictions held by the original creator of the data and database on the use of it by others. - -The position of the dedicator of the work - -Copyright law, as with most other law under the banner of "intellectual property", is inherently national law. This means that there exists several differences in how copyright and other IP rights can be relinquished, waived or licensed in the many legal jurisdictions of the world. This is despite much harmonisation of minimum levels of protection. The internet and other communication technologies span these many disparate legal jurisdictions and thus pose special difficulties for a document relinquishing and waiving intellectual property rights, including copyright and database rights, for use by the global community. Because of this feature of intellectual property law, this document first relinquishes the rights and waives the relevant rights and claims. It then goes on to license these same rights for jurisdictions or areas of law that may make it difficult to relinquish or waive rights or claims. - -The purpose of this document is to enable rightsholders to place their work into the public domain. Unlike licences for free and open source software, free cultural works, or open content licences, rightsholders will not be able to "dual license" their work by releasing the same work under different licences. This is because they have allowed anyone to use the work in whatever way they choose. Rightsholders therefore can’t re-license it under copyright or database rights on different terms because they have nothing left to license. Doing so creates truly accessible data to build rich applications and advance the progress of science and the arts. - -This document can cover either or both of the database and its contents (the data). Because databases can have a wide variety of content � not just factual data � rightsholders should use the Open Data Commons � Public Domain Dedication & Licence for an entire database and its contents only if everything can be placed under the terms of this document. Because even factual data can sometimes have intellectual property rights, rightsholders should use this licence to cover both the database and its factual data when making material available under this document; even if it is likely that the data would not be covered by copyright or database rights. - -Rightsholders can also use this document to cover any copyright or database rights claims over only a database, and leave the contents to be covered by other licences or documents. They can do this because this document refers to the "Work", which can be either � or both � the database and its contents. As a result, rightsholders need to clearly state what they are dedicating under this document when they dedicate it. - -Just like any licence or other document dealing with intellectual property, rightsholders should be aware that one can only license what one owns. Please ensure that the rights have been cleared to make this material available under this document. - -This document permanently and irrevocably makes the Work available to the public for any use of any kind, and it should not be used unless the rightsholder is prepared for this to happen. - -Part I: Introduction - -The Rightsholder (the Person holding rights or claims over the Work) agrees as follows: - -1.0 Definitions of Capitalised Words - -"Copyright" � Includes rights under copyright and under neighbouring rights and similarly related sets of rights under the law of the relevant jurisdiction under Section 6.4. - -"Data" � The contents of the Database, which includes the information, independent works, or other material collected into the Database offered under the terms of this Document. - -"Database" � A collection of Data arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this Document. - -"Database Right" � Means rights over Data resulting from the Chapter III ("sui generis") rights in the Database Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases) and any future updates as well as any similar rights available in the relevant jurisdiction under Section 6.4. - -"Document" � means this relinquishment and waiver of rights and claims and back up licence agreement. - -"Person" � Means a natural or legal person or a body of persons corporate or incorporate. - -"Use" � As a verb, means doing any act that is restricted by Copyright or Database Rights whether in the original medium or any other; and includes modifying the Work as may be technically necessary to use it in a different mode or format. This includes the right to sublicense the Work. - -"Work" � Means either or both of the Database and Data offered under the terms of this Document. - -"You" � the Person acquiring rights under the licence elements of this Document. - -Words in the singular include the plural and vice versa. - -2.0 What this document covers - -2.1. Legal effect of this Document. This Document is: - -a. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and - -b. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for relinquishment or waiver. - -2.2. Legal rights covered. - -a. Copyright. Any copyright or neighbouring rights in the Work. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Data stored in the Database. Copyright may also cover the Data depending on the jurisdiction and type of Data; and - -b. Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or a substantial part of the Data. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Data is removed from the Database and is selected and arranged in a way that would not infringe any applicable copyright. - -2.2 Rights not covered. - -a. This Document does not apply to computer programs used in the making or operation of the Database; - -b. This Document does not cover any patents over the Data or the Database. Please see Section 4.2 later in this Document for further details; and - -c. This Document does not cover any trade marks associated with the Database. Please see Section 4.3 later in this Document for further details. - -Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -2.3 Facts are free. The Rightsholder takes the position that factual information is not covered by Copyright. This Document however covers the Work in jurisdictions that may protect the factual information in the Work by Copyright, and to cover any information protected by Copyright that is contained in the Work. - -Part II: Dedication to the public domain - -3.0 Dedication, waiver, and licence of Copyright and Database Rights - -3.1 Dedication of Copyright and Database Rights to the public domain. The Rightsholder by using this Document, dedicates the Work to the public domain for the benefit of the public and relinquishes all rights in Copyright and Database Rights over the Work. - -a. The Rightsholder realises that once these rights are relinquished, that the Rightsholder has no further rights in Copyright and Database Rights over the Work, and that the Work is free and open for others to Use. - -b. The Rightsholder intends for their relinquishment to cover all present and future rights in the Work under Copyright and Database Rights, whether they are vested or contingent rights, and that this relinquishment of rights covers all their heirs and successors. - -The above relinquishment of rights applies worldwide and includes media and formats now known or created in the future. - -3.2 Waiver of rights and claims in Copyright and Database Rights when Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder waives any rights and claims that the Rightsholder may have or acquire in the future over the Work in: - -a. Copyright; and - -b. Database Rights. - -To the extent possible in the relevant jurisdiction, the above waiver of rights and claims applies worldwide and includes media and formats now known or created in the future. The Rightsholder agrees not to assert the above rights and waives the right to enforce them over the Work. - -3.3 Licence of Copyright and Database Rights when Sections 3.1 and 3.2 inapplicable. If the dedication and waiver in Sections 3.1 and 3.2 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder and You agree as follows: - -a. The Licensor grants to You a worldwide, royalty-free, non-exclusive, licence to Use the Work for the duration of any applicable Copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future. - -3.4 Moral rights. This section covers moral rights, including the right to be identified as the author of the Work or to object to treatment that would otherwise prejudice the author’s honour and reputation, or any other derogatory treatment: - -a. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Work to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; - -b. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Work and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; and - -c. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 3.4 a and b, the author may retain their moral rights over the copyrighted aspects of the Work. - -Please note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the work in some jurisdictions. - -4.0 Relationship to other rights - -4.1 No other contractual conditions. The Rightsholder makes this Work available to You without any other contractual obligations, either express or implied. Any Community Norms statement associated with the Work is not a contract and does not form part of this Document. - -4.2 Relationship to patents. This Document does not grant You a licence for any patents that the Rightsholder may own. Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -4.3 Relationship to trade marks. This Document does not grant You a licence for any trade marks that the Rightsholder may own or that the Rightsholder may use to cover the Work. Users of this Database are cautioned that they may have to clear other rights or consult other licences. Part III: General provisions - -5.0 Warranties, disclaimer, and limitation of liability - -5.1 The Work is provided by the Rightsholder "as is" and without any warranty of any kind, either express or implied, whether of title, of accuracy or completeness, of the presence of absence of errors, of fitness for purpose, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You. - -5.2 Subject to any liability that may not be excluded or limited by law, the Rightsholder is not liable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this Document, whether by You or by anyone else, and whether caused by any fault on the part of the Rightsholder or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages. This exclusion applies even if the Rightsholder has been advised of the possibility of such damages. - -5.3 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Rightsholder. - -6.0 General - -6.1 If any provision of this Document is held to be invalid or unenforceable, that must not affect the cvalidity or enforceability of the remainder of the terms of this Document. - -6.2 This Document is the entire agreement between the parties with respect to the Work covered here. It replaces any earlier understandings, agreements or representations with respect to the Work not specified here. - -6.3 This Document does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Work, including (for jurisdictions where this Document is a licence) fair dealing, fair use, database exceptions, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws. - -6.4 This Document takes effect in the relevant jurisdiction in which the Document terms are sought to be enforced. If the rights waived or granted under applicable law in the relevant jurisdiction includes additional rights not waived or granted under this Document, these additional rights are included in this Document in order to meet the intent of this Document. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/pddl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/pddl-1.0.yml deleted file mode 100644 index 37200cd03bc..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/pddl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - pddl-1.0 -notes: this is a license from fossology license reference PDDL-1.0 (ODC Public Domain Dedication - & License 1.0) http://opendatacommons.org/licenses/pddl/1.0/ diff --git a/tests/licensedcode/data/more_licenses/licenses/phorum-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/phorum-2.0.txt deleted file mode 100644 index a51b98311b1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/phorum-2.0.txt +++ /dev/null @@ -1,65 +0,0 @@ -/* ==================================================================== - * The Phorum License 2.0. - * - * Copyright (c) 2001 The Phorum Development Team. 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. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * Phorum Development Team (http://phorum.org/)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Phorum" and "Phorum Development Team" must - * not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact core@phorum.org. - * - * 5. Products derived from this software may not be called "Phorum", - * nor may "Phorum" appear in their name, without prior written - * permission of the Phorum Development Team. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'''' AND ANY EXPRESSED 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 PHORUM DEVELOPMENT TEAM OR - * ITS 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. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Phorum Development Team. For more - * information on Phorum , please see - * . - * - * This license is based on The Apache Software License Version 1.1. - * Only the names, email addresses and urls were changed. - * Permission was granted from The Apache Software Foundation to use - * their license. - * - * The original version of the license is copyright (c) 2000 The Apache - * Software Foundation. All rights reserved. - * - * For more information on the Apache Software Foundation, please - * see . - * - */ \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/phorum-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/phorum-2.0.yml deleted file mode 100644 index 493b5096efa..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/phorum-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - phorum-2.0 -notes: this is a license from fossology license reference Phorum-2.0 (Phorum License 2.0) http://www.phorum.org/license.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/php-2.02.txt b/tests/licensedcode/data/more_licenses/licenses/php-2.02.txt deleted file mode 100644 index 9d4c4021edb..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/php-2.02.txt +++ /dev/null @@ -1,75 +0,0 @@ --------------------------------------------------------------------- - The PHP License, version 2.02 -Copyright (c) 1999 - 2002 The PHP Group. All rights reserved. --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior permission from the - PHP Group. This does not apply to add-on libraries or tools - that work in conjunction with PHP. In such a case the PHP - name may be used to indicate that the product supports PHP. - - 4. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the - terms of that version. You may also choose to use such covered - code under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 5. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP, freely available from - http://www.php.net/". - - 6. The software incorporates the Zend Engine, a product of Zend - Technologies, Ltd. ("Zend"). The Zend Engine is licensed to the - PHP Association (pursuant to a grant from Zend that can be - found at http://www.php.net/license/ZendGrant/) for - distribution to you under this license agreement, only as a - part of PHP. In the event that you separate the Zend Engine - (or any portion thereof) from the rest of the software, or - modify the Zend Engine, or any portion thereof, your use of the - separated or modified Zend Engine software shall not be governed - by this license, and instead shall be governed by the license - set forth at http://www.zend.com/license/ZendLicense/. - - - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'''' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/php-2.02.yml b/tests/licensedcode/data/more_licenses/licenses/php-2.02.yml deleted file mode 100644 index db3eae73ba8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/php-2.02.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - php-2.0.2 -notes: this is a license from fossology license reference PHP-2.02 (PHP License 2.02) http://www.php.net/license/2_02.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/php-3.0.txt b/tests/licensedcode/data/more_licenses/licenses/php-3.0.txt deleted file mode 100644 index e3ac8c182ff..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/php-3.0.txt +++ /dev/null @@ -1,68 +0,0 @@ --------------------------------------------------------------------- - The PHP License, version 3.0 -Copyright (c) 1999 - 2006 The PHP Group. All rights reserved. --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP, freely available from - ". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'''' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -This product includes the Zend Engine, freely available at -. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/php-3.0.yml b/tests/licensedcode/data/more_licenses/licenses/php-3.0.yml deleted file mode 100644 index 38e83710899..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/php-3.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - php-3.0 -notes: this is a license from fossology license reference PHP-3.0 (PHP License v3.0) http://www.php.net/license/3_0.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/php-3.01.txt b/tests/licensedcode/data/more_licenses/licenses/php-3.01.txt deleted file mode 100644 index 35f2f16411c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/php-3.01.txt +++ /dev/null @@ -1,68 +0,0 @@ --------------------------------------------------------------------- - The PHP License, version 3.01 -Copyright (c) 1999 - 2010 The PHP Group. All rights reserved. --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP software, freely available from - ". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'''' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -PHP includes the Zend Engine, freely available at -. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/php-3.01.yml b/tests/licensedcode/data/more_licenses/licenses/php-3.01.yml deleted file mode 100644 index 9fb0b81340f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/php-3.01.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - php-3.01 -notes: this is a license from fossology license reference PHP-3.01 (PHP License 3.01) http://www.php.net/license/3_01.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/postgresql.txt b/tests/licensedcode/data/more_licenses/licenses/postgresql.txt deleted file mode 100644 index afad826c640..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/postgresql.txt +++ /dev/null @@ -1,12 +0,0 @@ -PostgreSQL Database Management System -(formerly known as Postgres, then as Postgres95) - -Portions Copyright (c) 1996-2010, The PostgreSQL Global Development Group - -Portions Copyright (c) 1994, The Regents of the University of California - -Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies. - -IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/postgresql.yml b/tests/licensedcode/data/more_licenses/licenses/postgresql.yml deleted file mode 100644 index 104df556711..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/postgresql.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - postgresql -notes: this is a license from fossology license reference PostgreSQL (PostgreSQL License) http://www.postgresql.org/about/licence diff --git a/tests/licensedcode/data/more_licenses/licenses/python-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/python-2.0.txt deleted file mode 100644 index 421b3508a2e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/python-2.0.txt +++ /dev/null @@ -1,192 +0,0 @@ -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 --------------------------------------------- - -1. This LICENSE AGREEMENT is between the Python Software Foundation -("PSF"), and the Individual or Organization ("Licensee") accessing and -otherwise using this software ("Python") in source or binary form and -its associated documentation. - -2. Subject to the terms and conditions of this License Agreement, PSF -hereby grants Licensee a nonexclusive, royalty-free, world-wide -license to reproduce, analyze, test, perform and/or display publicly, -prepare derivative works, distribute, and otherwise use Python -alone or in any derivative version, provided, however, that PSF''s -License Agreement and PSF''s notice of copyright, i.e., "Copyright (c) -2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights -Reserved" are retained in Python alone or in any derivative version -prepared by Licensee. - -3. In the event Licensee prepares a derivative work that is based on -or incorporates Python or any part thereof, and wants to make -the derivative work available to others as provided herein, then -Licensee hereby agrees to include in any such work a brief summary of -the changes made to Python. - -4. PSF is making Python available to Licensee on an "AS IS" -basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS -FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT -INFRINGE ANY THIRD PARTY RIGHTS. - -5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON -FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS -A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, -OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -7. Nothing in this License Agreement shall be deemed to create any -relationship of agency, partnership, or joint venture between PSF and -Licensee. This License Agreement does not grant permission to use PSF -trademarks or trade name in a trademark sense to endorse or promote -products or services of Licensee, or any third party. - -8. By copying, installing or otherwise using Python, Licensee -agrees to be bound by the terms and conditions of this License -Agreement. - -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 -------------------------------------------- - -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 - -1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an -office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the -Individual or Organization ("Licensee") accessing and otherwise using -this software in source or binary form and its associated -documentation ("the Software"). - -2. Subject to the terms and conditions of this BeOpen Python License -Agreement, BeOpen hereby grants Licensee a non-exclusive, -royalty-free, world-wide license to reproduce, analyze, test, perform -and/or display publicly, prepare derivative works, distribute, and -otherwise use the Software alone or in any derivative version, -provided, however, that the BeOpen Python License is retained in the -Software, alone or in any derivative version prepared by Licensee. - -3. BeOpen is making the Software available to Licensee on an "AS IS" -basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS -FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT -INFRINGE ANY THIRD PARTY RIGHTS. - -4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE -SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS -AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY -DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -5. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -6. This License Agreement shall be governed by and interpreted in all -respects by the law of the State of California, excluding conflict of -law provisions. Nothing in this License Agreement shall be deemed to -create any relationship of agency, partnership, or joint venture -between BeOpen and Licensee. This License Agreement does not grant -permission to use BeOpen trademarks or trade names in a trademark -sense to endorse or promote products or services of Licensee, or any -third party. As an exception, the "BeOpen Python" logos available at -http://www.pythonlabs.com/logos.html may be used according to the -permissions granted on that web page. - -7. By copying, installing or otherwise using the software, Licensee -agrees to be bound by the terms and conditions of this License -Agreement. - -CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) --------------------------------------------------- - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, -INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE -DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE -AGREEMENT. - -1. This LICENSE AGREEMENT is between the Corporation for National -Research Initiatives, having an office at 1895 Preston White Drive, -Reston, VA 20191 ("CNRI"), and the Individual or Organization -("Licensee") accessing and otherwise using Python 1.6, beta 1 -software in source or binary form and its associated documentation, -as released at the www.python.org Internet site on August 4, 2000 -("Python 1.6b1"). - -2. Subject to the terms and conditions of this License Agreement, CNRI -hereby grants Licensee a non-exclusive, royalty-free, world-wide -license to reproduce, analyze, test, perform and/or display -publicly, prepare derivative works, distribute, and otherwise use -Python 1.6b1 alone or in any derivative version, provided, however, -that CNRIs License Agreement is retained in Python 1.6b1, alone or -in any derivative version prepared by Licensee. - -Alternately, in lieu of CNRIs License Agreement, Licensee may -substitute the following text (omitting the quotes): "Python 1.6, -beta 1, is made available subject to the terms and conditions in -CNRIs License Agreement. This Agreement may be located on the -Internet using the following unique, persistent identifier (known -as a handle): 1895.22/1011. This Agreement may also be obtained -from a proxy server on the Internet using the -URL:http://hdl.handle.net/1895.22/1011". - -3. In the event Licensee prepares a derivative work that is based on -or incorporates Python 1.6b1 or any part thereof, and wants to make -the derivative work available to the public as provided herein, -then Licensee hereby agrees to indicate in any such work the nature -of the modifications made to Python 1.6b1. - -4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" -basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR -FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 -WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE -SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR -LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, -OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY -THEREOF. - -6. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -7. This License Agreement shall be governed by and interpreted in all -respects by the law of the State of Virginia, excluding conflict of -law provisions. Nothing in this License Agreement shall be deemed -to create any relationship of agency, partnership, or joint venture -between CNRI and Licensee. This License Agreement does not grant -permission to use CNRI trademarks or trade name in a trademark -sense to endorse or promote products or services of Licensee, or -any third party. - -8. By clicking on the "ACCEPT" button where indicated, or by copying, -installing or otherwise using Python 1.6b1, Licensee agrees to be -bound by the terms and conditions of this License Agreement. - -ACCEPT - -CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 --------------------------------------------------- - -Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, -The Netherlands. All rights reserved. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Stichting Mathematisch -Centrum or CWI not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. - -STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/python-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/python-2.0.yml deleted file mode 100644 index 49cc1ab9164..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/python-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - python -notes: this is a license from fossology license reference Python-2.0 (Python License 2.0) http://www.opensource.org/licenses/Python-2.0 diff --git a/tests/licensedcode/data/more_licenses/licenses/rcsl.txt b/tests/licensedcode/data/more_licenses/licenses/rcsl.txt deleted file mode 100644 index db4d3ca567d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rcsl.txt +++ /dev/null @@ -1,320 +0,0 @@ -REALNETWORKS COMMUNITY SOURCE LICENSE -RESEARCH AND DEVELOPMENT USE -(RCSL R&D) -Version 3.0 (Rev. Date: May 29, 2007) - -RECITALS - -RealNetworks, Inc. (“RN”) has developed Specifications, Source Code implementations and Executables of the Helix DNA Code, and an associated TCK; and - -RN desires to license the Helix DNA Code to a large community to facilitate research, innovation and product development while maintaining compatibility of such products with the Helix DNA Code as delivered by RN; - -Therefore, RN makes available the Helix DNA Code, the Specifications, and the TCK available for Research and Development Use only under the following terms: - -LICENSE - -1. Introduction. - -The RealNetworks Community Source License – Research and Development Use (“RCSL R&D” or “License”) is a license to use the Source Code of certain portions of the Helix DNA Code, Specifications, and the TCK for research and development use only. You (“Licensee,” as more specifically defined below) accept the terms of this License by downloading or using the Helix DNA Code, the Specifications, or the TCK, unless Licensee and RN have signed a license agreement that expressly supersedes this RCSL R&D. - -This License does not include a license to access or modify the Source Code of the Real Format Client Code. If Licensee desires the right to receive access to the Source Code of the Real Format Client Code for the purposes of porting and optimization, Licensee and RN may elect to execute a Real Format Source Code Porting and Optimization Agreement. - -This License does not include a license to make Commercial Use of the Helix DNA Code or Real Format Client Code. If Licensee desires a license for Commercial Use of the Helix DNA Code or Real Format Client Code, Licensee and RN may desire to execute the RealNetworks Community Source License - Commercial Use (“RCSL Commercial”) for the version of the Helix DNA Code or Real Format Client Code of which Licensee would like to make Commercial Use. Once executed by Licensee and RN, the RCSL Commercial would supersede the terms of this License. - -Capitalized terms used in this License are defined in the Glossary attached to the end of this License. - - 2. License Grants. - - 2.1 RN Grant to use Covered Code, Specifications, and TCK. - -Subject to Licensee’s compliance with the terms of this License, RN grants to Licensee a worldwide, royalty-free, non-exclusive license, to the extent of RN''s Intellectual Property Rights covering the Covered Code, Specifications, and the TCK to do the following: - -(a) Research Use License. - -(i) use, reproduce and modify the Covered Code and Specifications to create Modifications and Reformatted Specifications for Research Use by Licensee; - -(ii) publish and display Covered Code and Specifications with, or as part of Modifications, as permitted under Section 3.1(b) below; - -(iii) reproduce and distribute copies of Covered Code to Licensees and students for Research Use by Licensee; - -(iv) compile, reproduce and distribute Covered Code in Executable form, and Reformatted Specifications to anyone for Research Use by Licensee; and - -(v) use the TCK to develop and test Covered Code. - -(b) Reservation of Rights. - -Other than the licenses expressly granted in this License, RN retains all right, title, and interest in Covered Code, Specifications and the TCK. - -(c) TCK Use Restrictions. - - Licensee may not create derivative works of the TCK or use the TCK to test any implementation of the Specifications except for the purpose of creating Compliant Covered Code. Licensee may not publish Licensee’s test results or make claims of comparative compatibility with respect to other implementations of the Specification. - -2.2 Licensee’s Grants. - -(a) To Other Helix Licensees. Licensee hereby grants to each other Helix Licensee a license to Licensee’s Error Corrections and Shared Modifications, of the same scope and extent as RN''s licenses under Section 2.1 (a) above relative to Research Use. - -(b) To RN. Licensee hereby grant to RN a worldwide, royalty-free, non-exclusive, perpetual and irrevocable license, to the extent of Licensee’s Intellectual Property Rights covering Licensee’s Error Corrections, Shared Modifications and Reformatted Specifications, to use, reproduce, modify, display and distribute Licensee’s Error Corrections, Shared Modifications and Reformatted Specifications, in any form, including the right to sublicense such rights through multiple tiers of distribution. - -(c) Other than the licenses expressly granted in Sections 2.2(a) and (b) above, and the restrictions set forth in Section 3.1 below, Licensee retains all right, title, and interest in Licensee’s Error Corrections, Shared Modifications and Reformatted Specifications. - -2.3 Modifications by Helix Licensees. - -Licensee may use, reproduce, modify, display and distribute Error Corrections, Shared Modifications and Reformatted Specifications, obtained by Licensee under this License from any other Helix Licensee, to the same scope and extent as with Original Code, Upgraded Code and Specifications. - -2.4 Subcontracting. - - Licensee may deliver the Source Code of Covered Code to other Helix Licensees for the sole purpose of furnishing development services to Licensee in connection with Licensee’s rights granted in this License, provided that Licensee does not enter a separate agreement with such Licensee that contains provisions inconsistent with the ownership and licensing requirements set forth in this License. - -3. Requirements and Responsibilities. - -3.1 Research Use License. - -As a condition of exercising the rights granted under Section 2.1(a) above, Licensee must comply with the following: - -(a) Licensee’s Contributions. All Error Corrections and Shared Modifications which Licensee creates are automatically subject to the licenses granted under Section 2.2 above. Licensee is encouraged to license all of Licensee’s other Modifications under Section 2.2 as Shared Modifications, but is not required to do so. Licensee must notify RN of any errors in the Specifications. - -(b) Source Code Availability. Licensee must provide all of Licensee’s Error Corrections to RN as soon as reasonably practicable and, in any event, no later than when Licensee shares such Error Corrections with any other Helix Licensee. RN may, at its discretion, post Source Code for Licensee’s Error Corrections and Shared Modifications at the Helix Community Website. - -(c) Notices. All Error Corrections and Shared Modifications that Licensee creates or contributes to must include a file documenting the additions and changes Licensee made and the date of such additions and changes. Licensee must also include the notice set forth in Attachment A-1 in the file header of any Error Correction or Shared Modification. If it is not possible to put the notice in a particular Source Code file due to its structure, then Licensee must include the notice in a location (such as a relevant directory file), where a recipient would be most likely to look for such a notice. - -(d) Redistribution. - -(i) Source. Covered Code may be distributed in Source Code form only to another Helix Licensee (except for students as provided below). Licensee may not offer or impose any terms on any Covered Code that alter the rights, requirements, or responsibilities of such Helix Licensee. Licensee may distribute Covered Code to students for use in connection with their course work and research projects undertaken at accredited educational institutions. Such students need not be Helix Licensees, but must be given a copy of the notice set forth in Attachment A-3 and such notice must also be included in a file header or prominent location in the Source Code made available to such students. - -(ii) Executable. Licensee may distribute Executable version(s) of Covered Code to Helix Licensees and other third parties only for the purpose of evaluation and comment in connection with Research Use by Licensee and under a license of Licensee’s choice, but that limits use of such Executable version(s) of Covered Code only to that purpose. - -(iii) Modified Class, Interface and Package Naming. In connection with Research Use by Licensee only, Licensee may use RN''s class, Interface and package names only to accurately reference or invoke the Source Code files that Licensee modifies. RN grants to Licensee a limited license to the extent necessary for such purposes. - -(e) Extensions. - -(i) Licensee may not include any Source Code of Community Code in any Extensions. Licensee may include the compiled Header Files of Community Code in an Extension provided that Licensee’s use of the Covered Code, including Header Files, complies with the TCK and all other terms of this License. - -(ii) Open. Licensee must refrain from enforcing any Intellectual Property Rights Licensee may have covering any Interface(s) of Licensee’s Extension, which would prevent the implementation of such Interface(s) by RN or any Helix Licensee. This obligation does not prevent Licensee from enforcing any Intellectual Property Right Licensee has that would otherwise be infringed by an implementation of Licensee’s Extension. - -(iii) Interface Modifications and Naming. Licensee may not modify or add to the GUID space "xxxxxxxx-0901-11d1-8B06-00A024406D59" or any other GUID space designated by RN. Licensee may not modify any Interface prefix provided with the Covered Code or any other prefix designated by RN. - -(f) Any Specifications provided to Licensee by RN are confidential and proprietary information of RN. Licensee must maintain the confidentiality of the Specifications and may not disclose them to any third party without RN’s prior written consent. Licensee may only use the Specifications under the terms of this License and only for the purpose of implementing the terms of this License with respect to Community Code. Licensee may not use, copy or distribute any such Specifications except as provided in writing by RN. - -No Commercial Use. - -Licensee may not make Commercial Use of any Covered Code unless Licensee and RN have executed a copy of the RCSL - Commercial available at the Helix Community Website, or another license agreement expressly granting commercial use rights. - -4. Versions of the License. - -4.1 License Versions. - -RN may publish revised versions of this License from time to time. Each version will be given a distinguishing version number. No one other than RN has the right to promulgate versions of this License. - -4.2 Effect of New License Versions. - -(a) Once a particular version of Covered Code has been provided under a version of this License, Licensee may always continue to use such Covered Code under the terms of that version of the License. Licensee may also choose to use such Covered Code under the terms of any subsequent version of the License, but not under a prior version of the License. (For example, if a version of Covered Code has been provided under RCSL R&D 2.1, Licensee may not use such Covered Code under RCSL R&D 2.0.) - -(b) Version 3.0 of this License (and all subsequent versions) supercedes versions 1.0, 1.1, 1.2, and 2.0 of RCSL R&D plus Attachments A-C. - -4.3 Multiple-Licensed Code. - -RN may designate portions of the Covered Code as “Multiple-Licensed.” “Multiple-Licensed” means that the RN permits Licensee to utilize those designated portions of the Covered Code under Licensee’s choice of this License or the alternative license(s), if any, specified by the RN at the Helix Community Website or in Header Files for the applicable Covered Code. - -5. Disclaimer of Warranty. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE "AS IS," WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF COVERED CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. - -6. Termination. - -6.1 By Licensee. - -Licensee may terminate this License at anytime by providing written notice to RN. - -6.2 By RN. - -This License and the rights granted hereunder will terminate: - -(a) automatically if Licensee fails to comply with the terms of this License and fails to cure such breach within 30 days of receipt of written notice of the breach; - -(b) immediately in the event of circumstances specified in Sections 7.1 and 8.4; or - -(c) at RN''s discretion upon any action initiated by Licensee (including by cross-claim or counter claim) alleging that use or distribution by RN or any Licensee, of any Covered Code, the TCK or Specifications infringe a patent owned or controlled by Licensee. - -6.3 Effect of Termination. - -Upon termination, Licensee must discontinue use of and destroy all copies of Covered Code in Licensee’s possession. All sublicenses to the Covered Code that Licensee has properly granted shall survive any termination of this License. Provisions that, by their nature, should remain in effect beyond the termination of this License shall survive including, without limitation, Sections 2.2, 3, 5, 7, 8, and the Glossary. - -6.4 No Compensation. - -Each party waives and releases the other from any claim to compensation or indemnity for permitted or lawful termination of the business relationship established by this License. - -7. Liability. - -7.1 Infringement. - -Should any of the Covered Code, TCK or Specifications (“Materials”) become the subject of a claim of infringement, RN may, at its sole option, (i) attempt to procure the rights necessary for Licensee to continue using the Materials, (ii) modify the Materials so that they are no longer infringing, or (iii) terminate Licensee’s right to use the Materials, immediately upon written notice. - - 7.2 LIMITATION OF LIABILITY. - - TO THE FULL EXTENT ALLOWED BY APPLICABLE LAW, RN''S LIABILITY TO LICENSEE FOR CLAIMS RELATING TO THIS LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY LICENSEE TO RN FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR ITEMS GIVING RISE TO SUCH CLAIM, IF ANY, DURING THE TWELVE MONTHS PRECEDING THE CLAIMED BREACH. IN NO EVENT WILL EITHER PARTY BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY, WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT LICENSEE OR RN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. - -8. Miscellaneous. - -8.1 No Trademark License. - -Licensee is granted no right, title or license to, or any interest in, any trademarks of RN hereunder. - -8.2 Integration. - -This License represents the complete agreement concerning the subject matter hereof. - -8.3 Assignment. - -RN may assign this License, and its rights and obligations hereunder, in its sole discretion. Licensee may assign Licensee’s rights and obligations under this the License to a third party upon prior written notice to RN. - -8.4 Severability. - -If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Notwithstanding the foregoing, if Licensee is prohibited by law from fully and specifically complying with Sections 2.2 or 3, this License will immediately terminate and Licensee must immediately discontinue any use of the Materials. - -8.5 Governing Law. - -This License shall be governed by the laws of the United States and the State of Washington, as applied to contracts entered into and to be performed in Washington between Washington residents. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. The state and federal courts located in Seattle, Washington have exclusive jurisdiction over any claim relating to the License, including contract and tort claims. - -8.6 Construction. - -Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not apply to this License. - -8.7 U.S. Government End Users. - -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - - Press Announcements. - -Licensee may make press announcements or other public statements regarding this License without the prior written consent of the RN, if Licensee’s statement is limited to announcing the licensing of the Covered Code. All other public announcements regarding this License require the prior written consent of the RN. Consent requests are welcome at press@helixcommunity.org. - -8.9 International Use. - -(a) Export/Import laws. Covered Code is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee must comply strictly with all such laws and regulations and must obtain any necessary licenses to export, re-export, or import as may be permitted under this Agreement. - -(b) Intellectual Property Protection. Due to limited intellectual property protection and enforcement in certain countries, this License does not permit the redistribution of the Covered Code, TCK and Specifications to any country on the list of restricted countries at the Helix Community Website. - -8.10 Language. - -This License is in the English language only, which language shall be controlling in all respects, and all versions of this License in any other language shall be for accommodation only and shall not be binding on the parties to this License. All communications and notices made or given pursuant to this License, and all documentation and support to be provided, unless otherwise noted, shall be in the English language. - -GLOSSARY - -“Applicable Patent Claims” means: (a) in the case where RN is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to RN and (ii) are necessarily infringed by using or making the Original Code or Upgraded Code, including Modifications provided by RN, alone and not in combination with other software or hardware; and (b) in the case where Licensee is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to Licensee and (ii) are infringed (directly or indirectly) by using or making Licensee Modifications, taken alone or in combination with Covered Code. - -“Application Programming Interfaces (APIs)” means the interfaces, associated header files, service provider interfaces, and protocols that enable a device, application, operating system, or other program to obtain services from or make requests of (or provide services in response to requests from) other programs, and to use, benefit from, or rely on the resources, facilities, and capabilities of the relevant programs using the APIs. APIs includes the technical documentation describing the APIs, the Source Code constituting the API, and any Header Files used with the APIs. - -“Commercial Use” means any use (internal or external), copying, sublicensing or distribution (internal or external), directly or indirectly of Covered Code by Licensee other than Licensee’s Research Use of Covered Code within Licensee’s business or organization or in conjunction with other Helix Licensees with equivalent Research Use rights. Commercial Use includes any use of the Covered Code for direct or indirect commercial or strategic gain, advantage or other business purpose. Any Commercial Use requires execution of the RCSL - Commercial Use by Licensee and RN. - -“Community Code” means the Original Code, Upgraded Code, Error Corrections, Shared Modifications, or any combination thereof. - -“Compliant Covered Code” means Covered Code that complies with the requirements of the TCK. - -“Covered Code” means the Original Code, Upgraded Code, Modifications, or any combination thereof. - -“Error Correction” means any change made to Community Code which conforms to the Specification and corrects the adverse effect of a failure of Community Code to perform any function set forth in or required by the Specifications. - -“Executable” means Covered Code that has been converted from Source Code to the preferred form for execution by a computer or digital processor (e.g. binary form). - -“Extension(s)” means any additional Interfaces developed by or for Licensee which: (i) are designed for use with the Helix DNA Code; (ii) constitute an API for a library of computing functions or services; and (iii) are disclosed or otherwise made available to third party software developers for the purpose of developing software which invokes such additional Interfaces. The foregoing shall not apply to software developed by Licensee’s subcontractors to be exclusively used by Licensee. - -“Helix Community Website” means the website located at www.helixcommunity.org designated by RN for access to the Helix DNA Code, TCK and Specifications, and for posting Modifications. - -“Header File(s)” means that portion of the Source Code that provides the names and types of member functions, data members, class definitions, and interface definitions necessary to implement the APIs for the Covered Code. Header Files include, files specifically designated by RN as Header Files. Header Files do not include the code necessary to implement the functionality underlying the Interface. - -“Helix DNA Client” means the software identified on the Helix Community Website as the “Helix DNA Client” and which implements audio and video playback and rendering as defined in the Specifications. - -“Helix DNA Code” means the Helix DNA Server, the Helix DNA Client, the Helix DNA Producer, and any other Helix technologies that may be designated by RN from time to time. - -“Helix DNA Producer” means the portion of the Covered Code that implements the Helix Producer engine as defined in the Specification. - -“Helix DNA Server” means the portion of the Covered Code that implement the Helix Server streaming engine as defined in the Specification. - -“Helix Licensee” means any person or entity who has entered into a license agreement with RN providing for both source code development rights to and Commercial Use of the Helix DNA Client. - -“Intellectual Property Rights” means worldwide statutory and common law rights associated solely with (i) Applicable Patent Claims; (ii) works of authorship including copyrights, copyright applications, copyright registrations and “moral rights”; (iii) the protection of trade and industrial secrets and confidential information; and (iv) divisions, continuations, renewals, and re-issuances of the foregoing now existing or acquired in the future. - -“Licensee” means the individual, or a legal entity acting by and through an individual or individuals, exercising rights either under this License or under a future version of this License issued pursuant to Section 4.1. For legal entities, “Licensee” includes any entity that by majority voting interest controls, is controlled by, or is under common control with Licensee. - -“Interface” means interfaces, functions, properties, class definitions, APIs, Header Files, GUIDs, V-Tables, or protocols allowing one piece of software, firmware or hardware to communicate or interoperate with another piece of software, firmware or hardware. - - -“Modification(s)” means (i) any addition to, deletion from or change to the substance or structure of the Covered Code, including Interfaces; (ii) any new file or other representation of computer program statements that contains any portion of Covered Code; or (iii) any new Source Code implementing any portion of the Specifications. - -“Original Code” means the Source Code for the Helix DNA Code as described on the Helix Community Website. - -“RN” means RealNetworks, Inc., its affiliates and its successors and assigns. - -“Personal Use” means use of Covered Code by an individual solely for his or her personal, private and non-commercial purposes. An individual''s use of Covered Code in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. - -“Real Format Client Code” means the software identified on the Helix Community Website as “Real Format Client Code” and which enables the playing back of content in RealMedia File Formats. - -“RealMedia File Format" means the file format designed and developed by RN for storing multimedia data and used to store RealAudio and RealVideo encoded streams. Valid RealMedia File Format extensions include: .rm, .rmj, .rmc, .rmvb, .rms, .ra, .rv, .rax .rvx. - -“Reformatted Specifications” means any revision to the Specifications which translates or reformats the Specifications (as for example in connection with Licensee’s documentation) but which does not alter, subset or superset the functional or operational aspects of the Specifications. - -“Research Use” means use and distribution of Covered Code only for Licensee’s Personal Use, research or development use and expressly excludes Commercial Use. Research Use also includes use of Covered Code to teach individuals how to use Covered Code. - -“Shared Modifications” means Modifications that Licensee distributes or uses for a Commercial Use, in addition to any Modifications provided by Licensee, at Licensee’s option, pursuant to Section 2.2, or received by Licensee from another Helix Licensee pursuant to Section 2.3. - -“Source Code” means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable. - -“Specifications” means the specifications for the Helix DNA Code and other documentation, as published by RN from time to time on the Helix Community Website. - -“Technology Compatibility Kit” or “TCK” means the interoperability testing specification, documentation and related testing tools made available to Licensee by RN from time to time for the purpose of testing Licensee’s implementations of the Covered Code. RN may, in its sole discretion and from time to time, revise a TCK to correct errors or omissions and in connection with Upgrades. - - “Upgrade(s)” means new versions of Helix DNA Code designated exclusively by RN as an "Upgrade" and released by RN from time to time under the terms of this License. - -“Upgraded Code” means the Source Code or Executables for Upgrades, possibly including Modifications made by other Helix Licensees. - - - - -ATTACHMENT A - -REQUIRED NOTICES - - -ATTACHMENT A-1 - -REQUIRED IN ALL CASES - -Notice to be included in header file of all Error Corrections and Shared Modifications: - -Portions Copyright 1994-2007 © RealNetworks, Inc. All rights reserved. - -The contents of this file, and the files included with this file, are subject to the current version of RealNetworks Community Source License Version 3.0 (the "License"). You may not use this file except in compliance with the License executed by both you and RealNetworks. You may obtain a copy of the License at https://www.helixcommunity.org/content/rcsl. You may also obtain a copy of the License by contacting RealNetworks directly. Please see the License for the rights, obligations and limitations governing use of the contents of the file. - -This file is part of the Helix DNA Code. RealNetworks, Inc., is the developer of the Original Code and owns the copyrights in the portions it created. - -This file, and the files included with this file, are distributed on an ''AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. - - - -Contributor(s): - -_______________________________________________ - -Technology Compatibility Kit Test Suite(s) Location: - -________________________________ - - - -ATTACHMENT A-2 - -SAMPLE LICENSEE CERTIFICATION - -"By clicking the `Agree'' button below, you certify that you are a Licensee in good standing under the RealNetworks Community Source License – Research and Development or the RealNetworks Community Source License – Commercial, (each, a "License") and that your access, use and distribution of code and information you may obtain at this site is subject to the License. If you are not a Licensee under the RealNetworks Community Source License you may not download, copy or use the Helix DNA Code. - - - - -ATTACHMENT A-3 - -REQUIRED STUDENT NOTIFICATION - -"This software and related documentation has been obtained by your educational institution subject to the RealNetworks Community Source License. You have been provided access to the software and related documentation for use only in connection with your course work and research activities as a matriculated student of your educational institution. Any other use is expressly prohibited. - -THIS SOFTWARE AND RELATED DOCUMENTATION CONTAINS PROPRIETARY MATERIAL OF REALNETWORKS, INC, WHICH ARE PROTECTED BY VARIOUS INTELLECTUAL PROPERTY RIGHTS. - -You may not use this file except in compliance with the License. You may obtain a copy of the License on the web at https://www.helixcommunity.org/content/rcsl. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/rcsl.yml b/tests/licensedcode/data/more_licenses/licenses/rcsl.yml deleted file mode 100644 index 97fa3031da6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rcsl.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - rcsl-3.0 -notes: this is a license from fossology license reference RCSL (RealNetworks Community Source - License) https://helixcommunity.org/content/rcsl diff --git a/tests/licensedcode/data/more_licenses/licenses/redhat.txt b/tests/licensedcode/data/more_licenses/licenses/redhat.txt deleted file mode 100644 index 088111f4e9b..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/redhat.txt +++ /dev/null @@ -1,108 +0,0 @@ -Red Hat -Enterprise Agreement - -PLEASE READ THIS AGREEMENT CAREFULLY BEFORE PURCHASING AND/OR USING SOFTWARE OR SERVICES FROM RED HAT. BY USING RED HAT SOFTWARE OR SERVICES, CLIENT SIGNIFIES ITS ASSENT TO AND ACCEPTANCE OF THIS AGREEMENT AND ACKNOWLEDGES IT HAS READ AND UNDERSTANDS THIS AGREEMENT. AN INDIVIDUAL ACTING ON BEHALF OF AN ENTITY REPRESENTS THAT HE OR SHE HAS THE AUTHORITY TO ENTER INTO THIS AGREEMENT ON BEHALF OF THAT ENTITY. IF CLIENT DOES NOT ACCEPT THE TERMS OF THIS AGREEMENT, THEN IT MUST NOT USE RED HAT SOFTWARE OR SERVICES. This Agreement incorporates those appendices at the end of this Agreement. - -This Red Hat Enterprise Agreement, including all referenced appendices and documents located at URLs (the "Agreement"), is between Red Hat, Inc. ("Red Hat") and the purchaser or user of Red Hat software and services who accepts the terms of this Agreement ("Client"). The effective date of this Agreement ("Effective Date") is the earlier of the date that Client signs or accepts this Agreement or the date that Client uses Red Hat''s software or services. - -Scope of Agreement -1.1 Framework. This Agreement establishes a framework that will enable Red Hat to provide Software and Services to Client. "Software" means Red Hat Enterprise Linux, JBoss Enterprise Middleware and other software programs branded by Red Hat, its Affiliates and/or third parties including all modifications, additions or further enhancements delivered by Red Hat. The specific services (the "Services") and/or Software that Red Hat will provide to Client will be described in an Order Form, signed by the parties or otherwise accepted by Red Hat, which may consist of (a) one or more mutually agreed order forms, statements of work, work orders or similar transaction documents, or (b) an order placed by Client through Red Hat''s online store accessible from a Red Hat website. The parties agree that the terms of this Agreement will govern all purchases and use by Client of Software and Services unless otherwise agreed by the parties in writing. - -1.2 Affiliates. Red Hat and Client agree that Affiliates of Client may acquire Software and Services from Red Hat or its Affiliates by entering an Order Form with Red Hat (or a Red Hat Affiliate) that incorporates the terms and conditions of this Agreement. The parties acknowledge that adjustments to the terms of this Agreement may be made in a particular Order Form (for example, to address disparate tax and/or legal regimes in other geographic regions). "Affiliate" means an entity that owns or controls, is owned or controlled by, or is under common control or ownership with a party, where "control" is the possession, direct or indirect, of the power to direct or cause the direction of the management and policies of an entity, whether through ownership of voting securities, by contract or otherwise. - -1.3 Business Partners. Red Hat has entered into agreements with other organizations ("Business Partners") to promote, market and support certain Software and Services. When Client purchases Software and Services through a Business Partner, Red Hat confirms that it is responsible for providing the Software and Services to Client under the terms of this Agreement. Red Hat is not responsible for (a) the actions of Business Partners, (b) any additional obligations Business Partners have to Client, or (c) any products or services that Business Partners supply to Client under any separate agreements between a Business Partner and Client. - -Obligations of the Parties -2.1 On-Site Obligations. If Red Hat personnel are working on Client''s premises (a) Client will provide a safe and secure working environment for Red Hat personnel, and (b) Red Hat will comply with all reasonable workplace safety and security standards and policies, applicable to Client''s employees, of which Red Hat is notified in writing by Client in advance. - -2.2 Changes to Work and Delays. Changes to the Services will be made only through a written change order signed by both parties. In the event that (a) Client fails to timely fulfill its obligations under an Order Form, and this failure adversely impacts the provision of Services, or (b) events outside of either party''s reasonable control cause a delay in or otherwise affect Red Hat''s ability to perform its obligations under an Order Form, Red Hat will be entitled to appropriate relief, including adjusting the timing of its delivery of applicable Services. - -2.3 Assistance. Client may provide Red Hat access to Client information, systems, and software ("Client Information"), and resources such as workspace, network access, and telephone connections as reasonably required by Red Hat in order to provide the Services. Client understands and agrees that (a) the completeness, accuracy of, and extent of access to, any Client Information provided to Red Hat may affect Red Hat''s ability to provide Services, and (b) if reasonable access to Client Information is not provided, Red Hat will be relieved from providing any Services dependent upon such access. Client will obtain any third party consents necessary to grant Red Hat access to the Client Information that is subject to the proprietary rights of, or controlled by, any third party, or which is subject to any other form of restriction upon disclosure. - -Payment -3.1 Fees and Expenses. Fees for the Services (the "Fees") will be identified in an Order Form and are (a) due upon Red Hat''s acceptance of an Order Form or, for renewal of Services, at the start of the renewal term, and (b) payable in accordance with Section 3.2. Fees are stated in United States Dollars, must be paid in United States Dollars, and, unless otherwise specified in writing, do not include out-of-pocket expenses or shipping costs. Client will reimburse Red Hat for all reasonable expenses Red Hat incurs in connection with the performance of Services. Client agrees to pay Red Hat the applicable Fees for each Unit. "Unit" is the measurement of Software or Service usage defined in the applicable Order Form. Any renewal of Subscription Services will be at the same price per Unit listed in the applicable Order Form. "Subscription Services" mean fee-bearing subscriptions for a defined period of time for a certain scope of Services. - -3.2 Invoices -3.2.1 If Client desires credit terms with respect to the payment of Fees, Client will reasonably cooperate with Red Hat in establishing and periodically re-confirming Client''s credit-worthiness. If credit terms are provided to Client, Red Hat will invoice Client for the Fees upon Red Hat''s acceptance of the applicable Order Form and upon acceptance of any future order. Unless otherwise specified in an Order Form and subject to Red Hat''s approval of credit terms, Client will pay Fees and expenses, if any, no later than thirty (30) days from the date of each invoice; provided, however, that Fees for professional services, training, training credits and other service credits are due prior to delivery. Except as otherwise provided in this Agreement, any and all payments made by Client pursuant to this Agreement are non-refundable. Red Hat reserves the right to suspend or cancel performance of all or part of the Services and/or change its credit terms if actual payment has not been received within thirty (30) days of the invoice date. - -3.2.2 If Client is paying by credit card, Client (a) authorizes Red Hat to charge Client''s credit card for the Services and for the amount due at the time of renewal of Subscription Services, and (b) agrees to provide updated credit card information to Red Hat for renewal purposes. - -3.3 Taxes. All Fees are exclusive of Taxes. Client will pay Red Hat an amount equal to any Taxes arising from or relating to this Agreement or an applicable Order Form which are paid by or are payable by Red Hat. "Taxes" means any form of sales, use, value added or other form of taxation and any fines, penalties, surcharges or interest, but excluding any taxes based solely on the net income of Red Hat. If Client is required to withhold or deduct any portion of the payments due to Red Hat, Client will increase the sum payable to Red Hat by the amount necessary so that Red Hat receives an amount equal to the sum it would have received had Client made no withholdings or deductions. - -License and Ownership -4.1 Software. Each type of Software is governed by a license grant or an end user license agreement, which license terms are contained or referenced in the appendices to this Agreement or the applicable Order Form. - -4.2 Freedom to Use Ideas. Subject to Section 9 and Client''s rights in Client Information and notwithstanding anything to the contrary contained in this Agreement or an Order Form, the ideas, methods, concepts, know-how, structures, techniques, inventions, developments, processes, discoveries, improvements and other information and materials developed in and during the course of any Order Form may be used by Red Hat, without an obligation to account, in any way Red Hat deems appropriate, including by or for itself or its clients or customers. - -4.3 Marks. Unless expressly stated in an Order Form, no right or license, express or implied, is granted in this Agreement for the use of any Red Hat, Red Hat Affiliate, Client or third party trade names, service marks or trademarks, including, without limitation, the distribution of the Software utilizing any Red Hat or Red Hat Affiliate trademarks. - -Reporting and Inspection -5.1 Reporting. Client will notify Red Hat (or the Business Partner from whom Client purchased Software or Services) promptly if the actual number of Units of Software or Services utilized by Client exceeds the number of Units for which Client has paid the applicable Fees. In its notice, Client will include the number of additional Units and the date(s) on which such Units were first utilized. Red Hat (or the Business Partner) will invoice Client for the applicable Services for such Units and Client will pay for such Services no later than thirty (30) days from the date of the invoice. - -5.2 Inspection. During the term of this Agreement and for one (1) year thereafter, Red Hat or its designated agent may inspect Client''s facilities and records to verify Client''s compliance with this Agreement. Any such inspection will take place only during Client''s normal business hours and upon no less than ten (10) days prior written notice from Red Hat. Red Hat will give Client written notice of any noncompliance, including the number of underreported Units of Software or Services, and Client will have fifteen (15) days from the date of this notice to make payment to Red Hat for the applicable Services provided with respect to the underreported Units. If Client underreports the number of Units utilized by more than five percent (5%) of the number of Units for which Client paid, Client will also pay Red Hat for the cost of such inspection. - -Term and Termination -6.1 Term and Termination of Agreement. The term of this Agreement will begin on the Effective Date and will terminate at the expiration of ninety (90) days following written notice of termination given by one party to the other. Termination of this Agreement will not operate to terminate any Order Form and the terms and conditions of this Agreement will continue in full force and effect to the extent necessary to give effect to any Order Form in effect at the time of termination of this Agreement and until such time as the applicable Order Form expires or is terminated in accordance with Section 6.2 below. - -6.2 Term and Termination of Order Form -6.2.1 The term of an Order Form begins on the date the Order Form is executed ("Order Form Effective Date") and continues for the term stated in the Order Form. Thereafter, the term for Subscription Services will automatically renew for successive terms of one (1) year each, unless either party gives written notice to the other of its intention not to renew at least sixty (60) days before the commencement of the next renewal term. Client must use any other Services set forth in an Order Form during the term specified in the Order Form or within one (1) year of the Order Form Effective Date, whichever is shorter; if unused, such Services will be forfeited. - -6.2.2 If Client or Red Hat materially breaches the terms of an Order Form, and such breach is not cured within thirty (30) days after written notice of the breach is given to the breaching party, then the other party may, by giving written notice of termination to the breaching party, terminate the applicable Order Form and/or this Agreement; provided, however, that no cure period will be required for a breach of Section 9 of this Agreement. The termination of an individual Order Form will not terminate any other Order Form or this Agreement unless otherwise specified in the written notice of termination. Without prejudice to any other right or remedy of Red Hat, in the event either party terminates an Order Form, Client will pay Red Hat (or the Business Partner from whom Client purchased such Software or Services) for all Services provided up to the effective date of termination. - -6.3 Survival. If this Agreement or an Order Form is terminated for any reason, Sections 3, 4, 5.2, 6.3, 7, 8, 9, 10.2, 12, 13.1, 13.5-13.14, and 14 of this Agreement (as the same are incorporated into each Order Form) will survive such termination. - -Continuing Business -Nothing in this Agreement will preclude or limit Red Hat from providing software, materials, or services for itself or other clients, irrespective of the possible similarity of such software, materials or services to those that might be delivered to Client. The terms of confidentiality in Section 9 will not prohibit or restrict either party''s right to develop, use or market products or services similar to or competitive with the other party; provided, however, that neither party is relieved of its obligations under this Agreement. - -Limitation of Liability and Disclaimer of Damages -8.1 Limitation of Liability. FOR ALL EVENTS AND CIRCUMSTANCES, RED HAT AND ITS AFFILIATES'' AGGREGATE AND CUMULATIVE LIABILITY ARISING OUT OF OR RELATING TO THIS AGREEMENT AND ALL ORDER FORMS, INCLUDING WITHOUT LIMITATION ON ACCOUNT OF PERFORMANCE OR NON-PERFORMANCE OF OBLIGATIONS, REGARDLESS OF THE FORM OF THE CAUSE OF ACTION, WHETHER IN CONTRACT, TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE), STATUTE OR OTHERWISE WILL BE LIMITED TO DIRECT DAMAGES AND WILL NOT EXCEED THE AMOUNTS RECEIVED BY RED HAT DURING TWELVE (12) MONTHS IMMEDIATELY PRECEDING THE FIRST EVENT GIVING RISE TO LIABILITY, WITH RESPECT TO THE PARTICULAR ITEMS (WHETHER SOFTWARE, SERVICES OR OTHERWISE) GIVING RISE TO LIABILITY UNDER THE MOST APPLICABLE ORDERING DOCUMENT. - -8.2 Disclaimer of Damages. NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED IN THIS AGREEMENT OR AN ORDER FORM, IN NO EVENT WILL RED HAT OR ITS AFFILIATES BE LIABLE TO CLIENT OR ITS AFFILIATES FOR DAMAGES OTHER THAN DIRECT DAMAGES, INCLUDING, WITHOUT LIMITATION: ANY INCIDENTAL, CONSEQUENTIAL, SPECIAL, INDIRECT, EXEMPLARY OR PUNITIVE DAMAGES, WHETHER ARISING IN TORT, CONTRACT, OR OTHERWISE; OR ANY DAMAGES ARISING OUT OF OR IN CONNECTION WITH ANY MALFUNCTIONS, REGULATORY NON-COMPLIANCE, DELAYS, LOSS OF DATA, LOST PROFITS, LOST SAVINGS, INTERRUPTION OF SERVICE, LOSS OF BUSINESS OR ANTICIPATORY PROFITS, EVEN IF RED HAT OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. LIABILITY FOR THESE DAMAGES WILL BE LIMITED AND EXCLUDED EVEN IF ANY EXCLUSIVE REMEDY PROVIDED FOR IN THIS AGREEMENT FAILS OF ITS ESSENTIAL PURPOSE. - -Confidentiality -9.1 Obligations. During the term of this Agreement, both parties agree that (i) Confidential Information will be used only in accordance with the terms and conditions of this Agreement; (ii) each will use the same degree of care it utilizes to protect its own confidential information, but in no event less than reasonable care; and (iii) the Confidential Information may be disclosed only to employees, agents and contractors with a need to know, and to its auditors and legal counsel, in each case, who are under a written obligation to keep such information confidential using standards of confidentiality not less restrictive than those required by this Agreement. Both parties agree that obligations of confidentiality will exist for a period of two (2) years following initial disclosure of the particular Confidential Information. "Confidential Information" means all information disclosed by either Red Hat or Client ("Disclosing Party") to the other party ("Recipient") during the term of this Agreement that is either (i) marked confidential or (ii) disclosed orally and described as confidential at the time of disclosure and subsequently set forth in writing, marked confidential, and sent to the Recipient within thirty (30) days following the oral disclosure. - -9.2 Exclusions. Confidential Information will not include information which: (i) is or later becomes publicly available without breach of this Agreement, or is disclosed by the Disclosing Party without obligation of confidentiality; (ii) is known to the Recipient at the time of disclosure by the Disclosing Party; (iii) is independently developed by the Recipient without use of the Confidential Information; (iv) becomes lawfully known or available to the Recipient without restriction from a source having the lawful right to disclose the information; (v) is generally known or easily ascertainable by parties of ordinary skill in the business of the Recipient; or (vi) is software code in either object code or source code form that is licensed under an open source license. The Recipient will not be prohibited from complying with disclosure mandated by applicable law if, where reasonably practicable and without breaching any legal or regulatory requirement, it gives the Disclosing Party advance notice of the disclosure requirement. - -Representations and Warranties -10.1 General Representations and Warranties. Red Hat represents and warrants that: (a) the Services will be performed in a professional and workmanlike manner by qualified personnel; (b) it has the authority to enter into this Agreement with Client; and (c) to Red Hat''s knowledge, Red Hat branded Software does not, at the time of delivery to Client, include malicious or hidden mechanisms or code for the purpose of damaging or corrupting the Software. - -10.2 Disclaimer of Warranty. EXCEPT AS EXPRESSLY PROVIDED IN SECTION 10.1 OR BY A THIRD PARTY VENDOR DIRECTLY TO CLIENT UNDER A SEPARATE AGREEMENT, THE SERVICES, SOFTWARE AND ANY HARDWARE ARE PROVIDED BY RED HAT "AS IS" AND WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE. RED HAT DOES NOT GUARANTEE OR WARRANT THAT THE USE OF THE SERVICES, SOFTWARE OR HARDWARE WILL BE UNINTERRUPTED, COMPLY WITH REGULATORY REQUIREMENTS, BE ERROR FREE OR THAT RED HAT WILL CORRECT ALL SOFTWARE ERRORS. FOR THE BREACH OF THE WARRANTIES SET FORTH IN SECTION 10.1, CLIENT''S EXCLUSIVE REMEDY, AND RED HAT''S ENTIRE LIABILITY, WILL BE THE REPERFORMANCE OF DEFICIENT SERVICES, OR IF RED HAT CANNOT SUBSTANTIALLY CORRECT A BREACH IN A COMMERCIALLY REASONABLE MANNER, CLIENT MAY TERMINATE THE RELEVANT SERVICES AND RECEIVE A PRO RATA REFUND OF THE FEES PAID FOR THE DEFICIENT SERVICES AS OF THE EFFECTIVE DATE OF TERMINATION. Without limiting the generality of the foregoing disclaimer, the Software, Services and any hardware provided are not specifically designed, manufactured or intended for use in (a) the planning, construction, maintenance, control, or direct operation of nuclear facilities, (b) aircraft navigation, control or communication systems, weapons systems, or (c) direct life support systems. Client agrees that it is solely responsible for the results obtained from the use of the Software and Services. - -Open Source Assurance Program -For Software that is Red Hat branded, purchases under this Agreement may entitle Client to participate in Red Hat''s Open Source Assurance Program which is described at http://www.redhat.com/rhel/details/assurance/. The terms for this optional program are subject to a separate agreement which can be viewed at http://www.redhat.com/legal/open_source_assurance_agreement.html. - -Governing Law/Consent to Jurisdiction -The validity, interpretation and enforcement of this Agreement will be governed by and construed in accordance with the laws of the United States and of the State of New York without giving effect to the conflicts of laws provisions thereof or the United Nations Convention on Contracts for the International Sale of Goods. All disputes arising out of or relating to this Agreement will be submitted to the exclusive jurisdiction of the state or federal courts of competent jurisdiction located in Raleigh, North Carolina, and each party irrevocably consents to such personal jurisdiction and waives all objections to this venue. In the event the Uniform Computer Information Transactions Act (UCITA) or any similar federal or state laws or regulations are enacted, it will not apply to this Agreement, and the governing law will remain as if such law or regulation had not been enacted. - -Miscellaneous -13.1 Notices. Notices must be in English, in writing, and will be deemed given when delivered by hand or five (5) days after being sent using a method that provides for positive confirmation of delivery to the respective addresses or facsimile numbers indicated in an Order Form; provided that any notice from Client to Red Hat includes a copy sent to: Red Hat, Inc., Attention: General Counsel, 1801 Varsity Drive, Raleigh, North Carolina 27606; Facsimile: (919) 754-3704. - -13.2 Assignment. This Agreement is binding on the parties to this Agreement, and other than the rights conferred on Business Partners in Sections 5.1 and 6.2.2, nothing in this Agreement or in any Order Form grants any other person or entity any right, benefit or remedy of any nature whatsoever, except for the parties'' Affiliates as expressly provided in this Agreement. This Agreement is assignable by either party only with the other party''s prior written consent, which will not be unreasonably withheld, conditioned or delayed; provided, however, either party may, upon written notice and without the prior approval of the other party, (a) assign this Agreement to an Affiliate as long as the Affiliate has sufficient credit to satisfy its obligations under this Agreement and the scope of Service is not affected; and (b) assign this Agreement pursuant to a merger or a sale of all or substantially all of such party''s assets or stock. - -13.3 Independent Contractor. Red Hat is an independent contractor and nothing in this Agreement or related to Red Hat''s performance of any Order Form will be construed to create an employment or agency relationship between Client (or any Client personnel) and Red Hat (or any Red Hat personnel). Each party will be solely responsible for supervision, direction, control and payment of its personnel, including applicable taxes, deductions, other payments and benefits. Red Hat may subcontract Services under an Order Form to third parties or Affiliates without the approval of Client; provided, however, that (a) subcontractors agree to protect Client Confidential Information, and (b) Red Hat remains responsible to Client for performance of its obligations hereunder. - -13.4 Force Majeure. Neither party will be liable for nonperformance or delays caused by acts of God, wars, riots, strikes, fires, floods, hurricanes, earthquakes, government restrictions, terrorist acts or other causes beyond its reasonable control. - -13.5 Non-solicitation. Client agrees not to solicit or hire any personnel of Red Hat involved with the delivery of Services in connection with any Order Form during the term of and for twelve (12) months after termination or expiration of such Order Form; provided that Client may hire an individual employed by Red Hat who, without other solicitation, responds to advertisements or solicitations aimed at the general public. - -13.6 Export and Privacy. Red Hat may supply Client with technical data that is subject to export control restrictions. Red Hat will not be responsible for compliance by Client with applicable export obligations or requirements for this technical data. Client agrees to comply with all applicable export control restrictions. If Client breaches this Section 13.6 or the export provisions of an applicable end user license agreement for the Software, or any provision referencing these sections, Red Hat may terminate this Agreement and/or the applicable Order Form and its obligations thereunder without liability to Client. Client acknowledges and agrees that to provide the Services, it may be necessary for Client Information to be transferred between Red Hat, its Affiliates, Business Partners, and/or subcontractors, which may be located worldwide. - -13.7 Dispute Resolution. Each party agrees to give the other a written description of any problem(s) that may arise and to make a good faith effort to amicably resolve any such problem before commencing any proceeding. Notwithstanding the foregoing, either party may take any action reasonably required to protect such party''s rights. No claim or action, regardless of form, arising out of this Agreement or an Order Form may be brought by either party more than one (1) year after the cause of action has accrued. - -13.8 Headings. All headings contained in this Agreement are inserted for identification and convenience and will not be deemed part of this Agreement for purposes of interpretation. - -13.9 Severability. If any provision of this Agreement is held invalid or unenforceable for any reason but would be valid and enforceable if appropriately modified, then such provision will apply with the modification necessary to make it valid and enforceable. If such provision cannot be so modified, the parties agree that such invalidity will not affect the validity of the remaining provisions of the Agreement. - -13.10 Waiver. The delay or failure of either party to exercise any rights under this Agreement will not constitute or be deemed a waiver or forfeiture of such rights. No waiver will be valid unless in writing and signed by an authorized representative of the party against whom such waiver is sought to be enforced. - -13.11 Complete Agreement. Each Order Form (a) is a separate agreement and is deemed to incorporate this Agreement, unless otherwise expressly provided in that Order Form; (b) constitutes the exclusive terms and conditions with respect to the subject matter of that Order Form, notwithstanding any different or additional terms that may be contained in the form of purchase order or other document used by Client to place orders or otherwise effect transactions under this Agreement; and (c) represents the final, complete and exclusive statement of the agreement between the parties with respect thereto, notwithstanding any prior written agreements or prior and contemporaneous oral agreements with respect to the subject matter of the Order Form. In the event of any conflict between this Agreement, any Order Form and any end user license agreement for Software, this Agreement will take precedence unless otherwise expressly provided in the Order Form. Notwithstanding any provision to the contrary in this Agreement, any applicable end user license agreement will be governed by the laws of the State of New York and of the United States, without regard to any conflict of laws provisions. Any claim relating to the provision of the Services by Red Hat, its Affiliates or their respective personnel will be made against Red Hat alone. - -13.12 Amendment. Neither this Agreement nor any Order Form may be amended or modified except in a writing signed by the parties, which writing makes specific reference to this Agreement or the applicable Order Form. - -13.13 Counterparts and Facsimile Signature. In the event this Agreement is executed with signatures, this Agreement may be executed in counterparts, each of which will be deemed an original and all of which will constitute one and the same document. The parties may exchange signature pages by facsimile and such signatures will be effective to bind the parties to all the terms contained in this Agreement. - -13.14 United States Government End Users. The Software and its documentation are "Commercial items," "Commercial computer software" and "Computer software documentation" as defined by the Federal Acquisition Regulations ("FAR") and Defense Federal Acquisition Regulations Supplement ("DFARS"). Pursuant to FAR 12.211, FAR 12.212, DFARS, 227.7202-1 through 227.7202-4, and their successors, the U.S. Government acquires the Software and its documentation subject to the terms of this Agreement. - -Waiver of Jury Trial -TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EACH PARTY WAIVES THE RIGHT TO TRIAL BY JURY IN ANY LEGAL PROCEEDING ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE TRANSACTIONS CONTEMPLATED UNDER THIS AGREEMENT. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/redhat.yml b/tests/licensedcode/data/more_licenses/licenses/redhat.yml deleted file mode 100644 index e3a77ec295f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/redhat.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - commercial-license -notes: this is a license from fossology license reference RedHat (Red Hat Enterprise Agreement) - https://www.redhat.com/licenses/us.html diff --git a/tests/licensedcode/data/more_licenses/licenses/rhecos-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/rhecos-1.1.txt deleted file mode 100644 index b72f9c316c4..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rhecos-1.1.txt +++ /dev/null @@ -1,149 +0,0 @@ -Red Hat eCos Public License v1.1 - -1. DEFINITIONS - -1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source Code. - -1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. "License" means this document. - -1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. "You" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -1.13. "Red Hat Branded Code" is code that Red Hat distributes and/or permits others to distribute under different terms than the Red Hat eCos Public License. Red Hat''s Branded Code may contain part or all of the Covered Code. - -2. SOURCE CODE LICENSE - -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell ("Utilize") the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -3. DISTRIBUTION OBLIGATIONS - -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients'' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available and to the Initial Developer; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. You are responsible for notifying the Initial Developer of the Modification and the location of the Source if a contact means is provided. Red Hat will be acting as maintainer of the Source and may provide an Electronic Distribution mechanism for the Modification to be made available. You can contact Red Hat to make the Modification available and to notify the Initial Developer. (http://sourceware.cygnus.com/ecos/) - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. -If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients'' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. - -However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients'' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient''s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -If you distribute executable versions containing Covered Code, you must reproduce the notice in Exhibit B in the documentation and/or other materials provided with the product. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; (b) cite the statute or regulation that prohibits you from adhering to the license; and (c) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. You must submit this LEGAL file to Red Hat for review, and You will not be able use the covered code in any means until permission is granted from Red Hat to allow for the inability to comply due to statute or regulation. - -5. APPLICATION OF THIS LICENSE - -This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. - -Red Hat may include Covered Code in products without such additional products becoming subject to the terms of this License, and may license such additional products on different terms from those contained in this License. - -Red Hat may license the Source Code of Red Hat Branded Code without Red Hat Branded Code becoming subject to the terms of this License, and may license Red Hat Branded Code on different terms from those contained in this License. Contact Red Hat for details of alternate licensing terms available. - -6. VERSIONS OF THE LICENSE - -6.1. New Versions. -Red Hat may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Red Hat. No one other than Red Hat has the right to modify the terms applicable to Covered Code beyond what is granted under this and subsequent Licenses. - -6.3. Derivative Works. -If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases "ECOS", "eCos", "Red Hat", "RHEPL" or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Red Hat eCos Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION - -This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -9. LIMITATION OF LIABILITY - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS - -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. MISCELLANEOUS - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS - -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. - -13. ADDITIONAL TERMS APPLICABLE TO THE RED HAT ECOS PUBLIC LICENSE - -Nothing in this License shall be interpreted to prohibit Red Hat from licensing under different terms than this License any code which Red Hat otherwise would have a right to license. - -Red Hat and logo - This License does not grant any rights to use the trademark Red Hat, the Red Hat logo, eCos logo, even if such marks are included in the Original Code. You may contact Red Hat for permission to display the Red Hat and eCos marks in either the documentation or the Executable version beyond that required in Exhibit B. - -Inability to Comply Due to Contractual Obligation - To the extent that Red Hat is limited contractually from making third party code available under this License, Red Hat may choose to integrate such third party code into Covered Code without being required to distribute such third party code in Source Code form, even if such third party code would otherwise be considered "Modifications" under this License. - -EXHIBIT A - -"The contents of this file are subject to the Red Hat eCos Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.redhat.com/ - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is eCos - Embedded Configurable Operating System, released September 30, 1998. The Initial Developer of the Original Code is Red Hat. Portions created by Red Hat are Copyright (C) 1998, 1999, 2000 Red Hat, Inc. All Rights Reserved." - -EXHIBIT B - -Part of the software embedded in this product is eCos - Embedded Configurable Operating System, a trademark of Red Hat. Portions created by Red Hat are Copyright (C) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/). All Rights Reserved. - -THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY RED HAT 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 AUTHOR 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/rhecos-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/rhecos-1.1.yml deleted file mode 100644 index 8225f2e73af..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rhecos-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ecosrh-1.1 -notes: this is a license from fossology license reference RHeCos-1.1 (Red Hat eCos Public License - v1.1) http://ecos.sourceware.org/old-license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/rpsl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/rpsl-1.0.txt deleted file mode 100644 index 0edfb4d9393..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rpsl-1.0.txt +++ /dev/null @@ -1,174 +0,0 @@ -RealNetworks Public Source License Version 1.0 -1. General Definitions. This License applies to any program or other work which RealNetworks, Inc., or any other entity that elects to use this license, ("Licensor") makes publicly available and which contains a notice placed by Licensor identifying such program or work as "Original Code" and stating that it is subject to the terms of this RealNetworks Public Source License version 1.0 (or subsequent version thereof) ("License"). You are not required to accept this License. However, nothing else grants You permission to use, copy, modify or distribute the software or its derivative works. These actions are prohibited by law if You do not accept this License. Therefore, by modifying, copying or distributing the software (or any work based on the software), You indicate your acceptance of this License to do so, and all its terms and conditions. In addition, you agree to the terms of this License by clicking the Accept button or downloading the software. As used in this License: - -1.1 "Applicable Patent Rights" mean: (a) in the case where Licensor is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to Licensor and (ii) are necessarily infringed by using or making the Original Code alone and not in combination with other software or hardware; and (b) in the case where You are the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to You and (ii) are infringed (directly or indirectly) by using or making Your Modifications, taken alone or in combination with Original Code. - -1.2 "Compatible Source License" means any one of the licenses listed on Exhibit B or at https://www.helixcommunity.org/content/complicense or other licenses specifically identified by Licensor in writing. Notwithstanding any term to the contrary in any Compatible Source License, any code covered by any Compatible Source License that is used with Covered Code must be made readily available in Source Code format for royalty-free use under the terms of the Compatible Source License or this License. - -1.3 "Contributor" means any person or entity that creates or contributes to the creation of Modifications. - -1.4 "Covered Code" means the Original Code, Modifications, the combination of Original Code and any Modifications, and/or any respective portions thereof. - -1.5 "Deploy" means to use, sublicense or distribute Covered Code other than for Your internal research and development (R&D) and/or Personal Use, and includes without limitation, any and all internal use or distribution of Covered Code within Your business or organization except for R&D use and/or Personal Use, as well as direct or indirect sublicensing or distribution of Covered Code by You to any third party in any form or manner. - -1.6 "Derivative Work" means either the Covered Code or any derivative work under United States copyright law, and including any work containing or including any portion of the Covered Code or Modifications, either verbatim or with modifications and/or translated into another language. Derivative Work also includes any work which combines any portion of Covered Code or Modifications with code not otherwise governed by the terms of this License. - -1.7 "Externally Deploy" means to Deploy the Covered Code in any way that may be accessed or used by anyone other than You, used to provide any services to anyone other than You, or used in any way to deliver any content to anyone other than You, whether the Covered Code is distributed to those parties, made available as an application intended for use over a computer network, or used to provide services or otherwise deliver content to anyone other than You. - -1.8. "Interface" means interfaces, functions, properties, class definitions, APIs, header files, GUIDs, V-Tables, and/or protocols allowing one piece of software, firmware or hardware to communicate or interoperate with another piece of software, firmware or hardware. - -1.9 "Modifications" mean any addition to, deletion from, and/or change to, the substance and/or structure of the Original Code, any previous Modifications, the combination of Original Code and any previous Modifications, and/or any respective portions thereof. When code is released as a series of files, a Modification is: (a) any addition to or deletion from the contents of a file containing Covered Code; and/or (b) any new file or other representation of computer program statements that contains any part of Covered Code. - -1.10 "Original Code" means (a) the Source Code of a program or other work as originally made available by Licensor under this License, including the Source Code of any updates or upgrades to such programs or works made available by Licensor under this License, and that has been expressly identified by Licensor as such in the header file(s) of such work; and (b) the object code compiled from such Source Code and originally made available by Licensor under this License. - -1.11 "Personal Use" means use of Covered Code by an individual solely for his or her personal, private and non-commercial purposes. An individual''s use of Covered Code in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. - -1.12 "Source Code" means the human readable form of a program or other work that is suitable for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an executable (object code). - -1.13 "You" or "Your" means an individual or a legal entity exercising rights under this License. For legal entities, "You" or "Your" includes any entity which controls, is controlled by, or is under common control with, You, where "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -2. Permitted Uses; Conditions & Restrictions. Subject to the terms and conditions of this License, Licensor hereby grants You, effective on the date You accept this License (via downloading or using Covered Code or otherwise indicating your acceptance of this License), a worldwide, royalty-free, non-exclusive copyright license, to the extent of Licensor''s copyrights cover the Original Code, to do the following: - -2.1 You may reproduce, display, perform, modify and Deploy Covered Code, provided that in each instance: - -(a) You must retain and reproduce in all copies of Original Code the copyright and other proprietary notices and disclaimers of Licensor as they appear in the Original Code, and keep intact all notices in the Original Code that refer to this License; - -(b) You must include a copy of this License with every copy of Source Code of Covered Code and documentation You distribute, and You may not offer or impose any terms on such Source Code that alter or restrict this License or the recipients'' rights hereunder, except as permitted under Section 6; - -(c) You must duplicate, to the extent it does not already exist, the notice in Exhibit A in each file of the Source Code of all Your Modifications, and cause the modified files to carry prominent notices stating that You changed the files and the date of any change; - -(d) You must make Source Code of all Your Externally Deployed Modifications publicly available under the terms of this License, including the license grants set forth in Section 3 below, for as long as you Deploy the Covered Code or twelve (12) months from the date of initial Deployment, whichever is longer. You should preferably distribute the Source Code of Your Deployed Modifications electronically (e.g. download from a web site); and - -(e) if You Deploy Covered Code in object code, executable form only, You must include a prominent notice, in the code itself as well as in related documentation, stating that Source Code of the Covered Code is available under the terms of this License with information on how and where to obtain such Source Code. You must also include the Object Code Notice set forth in Exhibit A in the "about" box or other appropriate place where other copyright notices are placed, including any packaging materials. - -2.2 You expressly acknowledge and agree that although Licensor and each Contributor grants the licenses to their respective portions of the Covered Code set forth herein, no assurances are provided by Licensor or any Contributor that the Covered Code does not infringe the patent or other intellectual property rights of any other entity. Licensor and each Contributor disclaim any liability to You 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, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to make, use, sell, import or offer for sale the Covered Code, it is Your responsibility to acquire such license(s). - -2.3 Subject to the terms and conditions of this License, Licensor hereby grants You, effective on the date You accept this License (via downloading or using Covered Code or otherwise indicating your acceptance of this License), a worldwide, royalty-free, perpetual, non-exclusive patent license under Licensor''s Applicable Patent Rights to make, use, sell, offer for sale and import the Covered Code, provided that in each instance you comply with the terms of this License. - -3. Your Grants. In consideration of, and as a condition to, the licenses granted to You under this License: - -(a) You grant to Licensor and all third parties a non-exclusive, perpetual, irrevocable, royalty free license under Your Applicable Patent Rights and other intellectual property rights owned or controlled by You, to make, sell, offer for sale, use, import, reproduce, display, perform, modify, distribute and Deploy Your Modifications of the same scope and extent as Licensor''s licenses under Sections 2.1 and 2.2; and - -(b) You grant to Licensor and its subsidiaries a non-exclusive, worldwide, royalty-free, perpetual and irrevocable license, under Your Applicable Patent Rights and other intellectual property rights owned or controlled by You, to make, use, sell, offer for sale, import, reproduce, display, perform, distribute, modify or have modified (for Licensor and/or its subsidiaries), sublicense and distribute Your Modifications, in any form and for any purpose, through multiple tiers of distribution. - -(c) You agree not use any information derived from Your use and review of the Covered Code, including but not limited to any algorithms or inventions that may be contained in the Covered Code, for the purpose of asserting any of Your patent rights, or assisting a third party to assert any of its patent rights, against Licensor or any Contributor. - -4. Derivative Works. You may create a Derivative Work by combining Covered Code with other code not otherwise governed by the terms of this License and distribute the Derivative Work as an integrated product. In each such instance, You must make sure the requirements of this License are fulfilled for the Covered Code or any portion thereof, including all Modifications. - -4.1 You must cause any Derivative Work that you distribute, publish or Externally Deploy, that in whole or in part contains or is derived from the Covered Code or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License and no other license except as provided in Section 4.2. You also must make Source Code available for the Derivative Work under the same terms as Modifications, described in Sections 2 and 3, above. - -4.2 Compatible Source Licenses. Software modules that have been independently developed without any use of Covered Code and which contain no portion of the Covered Code, Modifications or other Derivative Works, but are used or combined in any way wtih the Covered Code or any Derivative Work to form a larger Derivative Work, are exempt from the conditions described in Section 4.1 but only to the extent that: the software module, including any software that is linked to, integrated with, or part of the same applications as, the software module by any method must be wholly subject to one of the Compatible Source Licenses. Notwithstanding the foregoing, all Covered Code must be subject to the terms of this License. Thus, the entire Derivative Work must be licensed under a combination of the RPSL (for Covered Code) and a Compatible Source License for any independently developed software modules within the Derivative Work. The foregoing requirement applies even if the Compatible Source License would ordinarily allow the software module to link with, or form larger works with, other software that is not subject to the Compatible Source License. For example, although the Mozilla Public License v1.1 allows Mozilla code to be combined with proprietary software that is not subject to the MPL, if MPL-licensed code is used with Covered Code the MPL-licensed code could not be combined or linked with any code not governed by the MPL. The general intent of this section 4.2 is to enable use of Covered Code with applications that are wholly subject to an acceptable open source license. You are responsible for determining whether your use of software with Covered Code is allowed under Your license to such software. - -4.3 Mere aggregation of another work not based on the Covered Code with the Covered Code (or with a work based on the Covered Code) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. If You deliver the Covered Code for combination and/or integration with an application previously provided by You (for example, via automatic updating technology), such combination and/or integration constitutes a Derivative Work subject to the terms of this License. - -5. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Covered Code. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. Modifications, Derivative Works and/or any use or combination of Covered Code with other technology provided by Licensor or third parties may require additional patent licenses from Licensor which Licensor may grant in its sole discretion. No patent license is granted separate from the Original Code or combinations of the Original Code with other software or hardware. - -5.1. Trademarks. This License does not grant any rights to use the trademarks or trade names owned by Licensor ("Licensor Marks" defined in Exhibit C) or to any trademark or trade name belonging to any Contributor. No Licensor Marks may be used to endorse or promote products derived from the Original Code other than as permitted by the Licensor Trademark Policy defined in Exhibit C. - -6. Additional Terms. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations and/or other rights consistent with the scope of the license granted herein ("Additional Terms") to one or more recipients of Covered Code. However, You may do so only on Your own behalf and as Your sole responsibility, and not on behalf of Licensor or any Contributor. You must obtain the recipient''s agreement that any such Additional Terms are offered by You alone, and You hereby agree to indemnify, defend and hold Licensor and every Contributor harmless for any liability incurred by or claims asserted against Licensor or such Contributor by reason of any such Additional Terms. - -7. Versions of the License. Licensor may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Once Original Code has been published under a particular version of this License, You may continue to use it under the terms of that version. You may also choose to use such Original Code under the terms of any subsequent version of this License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Covered Code created under this License. - -8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in part pre-release, untested, or not fully tested works. The Covered Code may contain errors that could cause failures or loss of data, and may be incomplete or contain inaccuracies. You expressly acknowledge and agree that use of the Covered Code, or any portion thereof, is at Your sole and entire risk. THE COVERED CODE IS PROVIDED "AS IS" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND LICENSOR AND LICENSOR''S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "LICENSOR" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. LICENSOR AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR WRITTEN DOCUMENTATION, INFORMATION OR ADVICE GIVEN BY LICENSOR, A LICENSOR AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. You acknowledge that the Covered Code is not intended for use in high risk activities, including, but not limited to, the design, construction, operation or maintenance of nuclear facilities, aircraft navigation, aircraft communication systems, or air traffic control machines in which case the failure of the Covered Code could lead to death, personal injury, or severe physical or environmental damage. Licensor disclaims any express or implied warranty of fitness for such uses. - -9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL LICENSOR OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF LICENSOR OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Licensor''s total liability to You for all damages (other than as may be required by applicable law) under this License exceed the amount of ten dollars ($10.00). - -10. Ownership. Subject to the licenses granted under this License, each Contributor retains all rights, title and interest in and to any Modifications made by such Contributor. Licensor retains all rights, title and interest in and to the Original Code and any Modifications made by or on behalf of Licensor ("Licensor Modifications"), and such Licensor Modifications will not be automatically subject to this License. Licensor may, at its sole discretion, choose to license such Licensor Modifications under this License, or on different terms from those contained in this License or may choose not to license them at all. - -11. Termination. - -11.1 Term and Termination. The term of this License is perpetual unless terminated as provided below. This License and the rights granted hereunder will terminate: - -(a) automatically without notice from Licensor if You fail to comply with any term(s) of this License and fail to cure such breach within 30 days of becoming aware of such breach; - -(b) immediately in the event of the circumstances described in Section 12.5(b); or - -(c) automatically without notice from Licensor if You, at any time during the term of this License, commence an action for patent infringement against Licensor (including by cross-claim or counter claim in a lawsuit); - -(d) upon written notice from Licensor if You, at any time during the term of this License, commence an action for patent infringement against any third party alleging that the Covered Code itself (excluding combinations with other software or hardware) infringes any patent (including by cross-claim or counter claim in a lawsuit). - -11.2 Effect of Termination. Upon termination, You agree to immediately stop any further use, reproduction, modification, sublicensing and distribution of the Covered Code and to destroy all copies of the Covered Code that are in your possession or control. All sublicenses to the Covered Code which have been properly granted prior to termination shall survive any termination of this License. Provisions which, by their nature, should remain in effect beyond the termination of this License shall survive, including but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other for compensation, indemnity or damages of any sort solely as a result of terminating this License in accordance with its terms, and termination of this License will be without prejudice to any other right or remedy of any party. - -12. Miscellaneous. - -12.1 Government End Users. The Covered Code is a "commercial item" as defined in FAR 2.101. Government software and technical data rights in the Covered Code include only those rights customarily provided to the public as defined in this License. This customary commercial license in technical data and software is provided in accordance with FAR 12.211 (Technical Data) and 12.212 (Computer Software) and, for Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- Commercial Items) and 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). Accordingly, all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -12.2 Relationship of Parties. This License will not be construed as creating an agency, partnership, joint venture or any other form of legal association between or among You, Licensor or any Contributor, and You will not represent to the contrary, whether expressly, by implication, appearance or otherwise. - -12.3 Independent Development. Nothing in this License will impair Licensor''s right to acquire, license, develop, have others develop for it, market and/or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Modifications, Derivative Works, technology or products that You may develop, produce, market or distribute. - -12.4 Waiver; Construction. Failure by Licensor or any Contributor to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. Any law or regulation which provides that the language of a contract shall be construed against the drafter will not apply to this License. - -12.5 Severability. (a) If for any reason a court of competent jurisdiction finds any provision of this License, or portion thereof, to be unenforceable, that provision of the License will be enforced to the maximum extent permissible so as to effect the economic benefits and intent of the parties, and the remainder of this License will continue in full force and effect. (b) Notwithstanding the foregoing, if applicable law prohibits or restricts You from fully and/or specifically complying with Sections 2 and/or 3 or prevents the enforceability of either of those Sections, this License will immediately terminate and You must immediately discontinue any use of the Covered Code and destroy all copies of it that are in your possession or control. - -12.6 Dispute Resolution. Any litigation or other dispute resolution between You and Licensor relating to this License shall take place in the Seattle, Washington, and You and Licensor hereby consent to the personal jurisdiction of, and venue in, the state and federal courts within that District with respect to this License. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. - -12.7 Export/Import Laws. This software is subject to all export and import laws and restrictions and regulations of the country in which you receive the Covered Code and You are solely responsible for ensuring that You do not export, re-export or import the Covered Code or any direct product thereof in violation of any such restrictions, laws or regulations, or without all necessary authorizations. - -12.8 Entire Agreement; Governing Law. This License constitutes the entire agreement between the parties with respect to the subject matter hereof. This License shall be governed by the laws of the United States and the State of Washington. - -Where You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exigé que le présent contrat et tous les documents connexes soient rédigés en anglais. - -EXHIBIT A. - -"Copyright © 1995-2002 RealNetworks, Inc. and/or its licensors. All Rights Reserved. - -The contents of this file, and the files included with this file, are subject to the current version of the RealNetworks Public Source License Version 1.0 (the "RPSL") available at https://www.helixcommunity.org/content/rpsl unless you have licensed the file under the RealNetworks Community Source License Version 1.0 (the "RCSL") available at https://www.helixcommunity.org/content/rcsl, in which case the RCSL will apply. You may also obtain the license terms directly from RealNetworks. You may not use this file except in compliance with the RPSL or, if you have a valid RCSL with RealNetworks applicable to this file, the RCSL. Please see the applicable RPSL or RCSL for the rights, obligations and limitations governing use of the contents of the file. - -This file is part of the Helix DNA Technology. RealNetworks is the developer of the Original code and owns the copyrights in the portions it created. - -This file, and the files included with this file, is distributed and made available on an ''AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. - -Contributor(s): ____________________________________ - -Technology Compatibility Kit Test Suite(s) Location (if licensed under the RCSL): - -________________________________" - -Object Code Notice: Helix DNA Client technology included. Copyright © RealNetworks, Inc., 1995-2002. All rights reserved. - -EXHIBIT B - -Compatible Source Licenses for the RealNetworks Public Source License. The following list applies to the most recent version of the license as of October 25, 2002, unless otherwise indicated. - -Academic Free License -Apache Software License -Apple Public Source License -Artistic license -Attribution Assurance Licenses -BSD license -Common Public License1 -Eiffel Forum License -GNU General Public License (GPL)1 -GNU Library or "Lesser" General Public License (LGPL)1 -IBM Public License -Intel Open Source License -Jabber Open Source License -MIT license -MITRE Collaborative Virtual Workspace License (CVW License) -Motosoto License -Mozilla Public License 1.0 (MPL) -Mozilla Public License 1.1 (MPL) -Nokia Open Source License -Open Group Test Suite License -Python Software Foundation License -Ricoh Source Code Public License -Sun Industry Standards Source License (SISSL) -Sun Public License -University of Illinois/NCSA Open Source License -Vovida Software License v. 1.0 -W3C License -X.Net License -Zope Public License -zlib/libpng license -1Note: because this license contains certain reciprocal licensing terms that purport to extend to independently developed code, You may be prohibited under the terms of this otherwise compatible license from using code licensed under its terms with Covered Code because Covered Code may only be licensed under the RealNetworks Public Source License. Any attempt to apply non RPSL license terms, including without limitation the GPL, to Covered Code is expressly forbidden. You are responsible for ensuring that Your use of Compatible Source Licensed code does not violate either the RPSL or the Compatible Source License. - -The latest version of this list can be found at: https://www.helixcommunity.org/content/complicense - -EXHIBIT C - -RealNetworks'' Trademark policy. - -RealNetworks defines the following trademarks collectively as "Licensor Trademarks": "RealNetworks", "RealPlayer", "RealJukebox", "RealSystem", "RealAudio", "RealVideo", "RealOne Player", "RealMedia", "Helix" or any other trademarks or trade names belonging to RealNetworks. - -RealNetworks "Licensor Trademark Policy" forbids any use of Licensor Trademarks except as permitted by and in strict compliance at all times with RealNetworks'' third party trademark usage guidelines which are posted at www.realnetworks.com/info/helixlogo.html. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/rpsl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/rpsl-1.0.yml deleted file mode 100644 index 84299f9332c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rpsl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - rpsl-1.0 -notes: this is a license from fossology license reference RPSL-1.0 (RealNetworks Public Source - License 1.0) http://www.opensource.org/licenses/real.php diff --git a/tests/licensedcode/data/more_licenses/licenses/rsa-cryptoki.txt b/tests/licensedcode/data/more_licenses/licenses/rsa-cryptoki.txt deleted file mode 100644 index a8403656fbc..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rsa-cryptoki.txt +++ /dev/null @@ -1,7 +0,0 @@ -DISCLAIMER -Regarding the header / include files: -License to copy and use this software is granted provided that it is identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing this software or this function. -License is also granted to make and use derivative works provided that such works are identified as "derived from the RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing the derived work. -This software is provided “AS IS” and RSA Security, Inc. disclaims all warranties including but not limited to the implied warranty of merchantability, fitness for a particular purpose, and noninfringement. -Regarding reference implementations: -RSA Laboratories is providing links to external reference implementations for the benefit of PKCS #11 developers. RSA Laboratories has not verified or reviewed these implementations and therefore can make no statement regarding their conformance to the current PKCS #11 specification. RSA Laboratories also makes no representations regarding intellectual property coverage or ownership of the reference implementations. The implementations may also be subject to regulations on the import, export and/or use of cryptography. Resolution of these issues is the responsibility of the user. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/rsa-cryptoki.yml b/tests/licensedcode/data/more_licenses/licenses/rsa-cryptoki.yml deleted file mode 100644 index 0dc2ee6d1fe..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/rsa-cryptoki.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - rsa-cryptoki -notes: this is a license from fossology license reference RSA-Cryptoki (RSA-Cryptoki License) - https://www.cryptsoft.com/pkcs11doc/STANDARD/include/v211/cryptoki.h diff --git a/tests/licensedcode/data/more_licenses/licenses/ruby.txt b/tests/licensedcode/data/more_licenses/licenses/ruby.txt deleted file mode 100644 index 9d95d78e593..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ruby.txt +++ /dev/null @@ -1,57 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see COPYING.txt file), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or executable - form, provided that you do at least ONE of the following: - - a) distribute the executables and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard executables non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under this terms. - - They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some - files under the ./missing directory. See each file for the copying - condition. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ruby.yml b/tests/licensedcode/data/more_licenses/licenses/ruby.yml deleted file mode 100644 index 4af58aadd69..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ruby.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 -notes: this is a license from fossology license reference Ruby (Ruby License) http://www.ruby-lang.org/en/LICENSE.txt diff --git a/tests/licensedcode/data/more_licenses/licenses/sendmail.txt b/tests/licensedcode/data/more_licenses/licenses/sendmail.txt deleted file mode 100644 index 8b89a6e591f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sendmail.txt +++ /dev/null @@ -1,77 +0,0 @@ -SENDMAIL OPEN SOURCE LICENSE - -The following license terms and conditions apply to this open source -software ("Software"), unless a different license is obtained directly -from Sendmail, Inc. ("Sendmail") located at 6425 Christie Ave, Fourth -Floor, Emeryville, CA 94608, USA. - -Use, modification and redistribution (including distribution of any -modified or derived work) of the Software in source and binary forms is -permitted only if each of the following conditions of 1-6 are met: - -1. Redistributions of the Software qualify as "freeware" or "open - source software" under one of the following terms: - - (a) Redistributions are made at no charge beyond the reasonable - cost of materials and delivery; or - - (b) Redistributions are accompanied by a copy of the modified - Source Code (on an acceptable machine-readable medium) or by an - irrevocable offer to provide a copy of the modified Source Code - (on an acceptable machine-readable medium) for up to three years - at the cost of materials and delivery. Such redistributions must - allow further use, modification, and redistribution of the Source - Code under substantially the same terms as this license. For - the purposes of redistribution "Source Code" means the complete - human-readable, compilable, linkable, and operational source - code of the redistributed module(s) including all modifications. - -2. Redistributions of the Software Source Code must retain the - copyright notices as they appear in each Source Code file, these - license terms and conditions, and the disclaimer/limitation of - liability set forth in paragraph 6 below. Redistributions of the - Software Source Code must also comply with the copyright notices - and/or license terms and conditions imposed by contributors on - embedded code. The contributors'''''''' license terms and conditions - and/or copyright notices are contained in the Source Code - distribution. - -3. Redistributions of the Software in binary form must reproduce the - Copyright Notice described below, these license terms and conditions, - and the disclaimer/limitation of liability set forth in paragraph - 6 below, in the documentation and/or other materials provided with - the binary distribution. For the purposes of binary distribution, - "Copyright Notice" refers to the following language: "Copyright (c) - 1998-2004 Sendmail, Inc. All rights reserved." - -4. Neither the name, trademark or logo of Sendmail, Inc. (including - without limitation its subsidiaries or affiliates) or its contributors - may be used to endorse or promote products, or software or services - derived from this Software without specific prior written permission. - The name "sendmail" is a registered trademark and service mark of - Sendmail, Inc. - -5. We reserve the right to cancel this license if you do not comply with - the terms. This license is governed by California law and both of us - agree that for any dispute arising out of or relating to this Software, - that jurisdiction and venue is proper in San Francisco or Alameda - counties. These license terms and conditions reflect the complete - agreement for the license of the Software (which means this supercedes - prior or contemporaneous agreements or representations). If any term - or condition under this license is found to be invalid, the remaining - terms and conditions still apply. - -6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY - SENDMAIL AND ITS CONTRIBUTORS "AS IS" WITHOUT WARRANTY OF ANY KIND - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A - PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. IN NO EVENT SHALL SENDMAIL - OR ITS 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 - WITHOUT LIMITATION NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -$Revision: 1.11 $ $Date: 2004/05/18 01:26:24 $ \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/sendmail.yml b/tests/licensedcode/data/more_licenses/licenses/sendmail.yml deleted file mode 100644 index a4d4737d519..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sendmail.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - sendmail -notes: this is a license from fossology license reference Sendmail (Sendmail) http://www.sendmail.org/~ca/email/sm-X/LICENSE diff --git a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.0.txt deleted file mode 100644 index b5c044a6f44..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.0.txt +++ /dev/null @@ -1,60 +0,0 @@ -SGI FREE SOFTWARE LICENSE B (Version 1.0 [1/25/2000]) - -1. Definitions. - -"Additional Notice Provisions" means such additional provisions as appear in the Notice in Original Code under the heading "Additional Notice Provisions." -"API" means an application programming interface established by SGI in conjunction with the Original Code. -"Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. -"Hardware" means any physical device that accepts input, processes input, stores the results of processing, and/or provides output. -"Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. -"Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -"License" means this document. -"Modifications" means any addition to the substance or structure of the Original Code and/or any addition to or deletion from previous Modifications. When Covered Code is released as a series of files, a Modification is: -Any addition to the contents of a file containing Original Code and/or any addition to or deletion from previous Modifications. -Any new file that contains any part of the Original Code or previous Modifications. -"Notice" means any notice in Original Code or Covered Code, as required by and in compliance with this License. -"Original Code" means source code of computer software code which is described in the source code Notice required by Exhibit A as Original Code, and updates and error corrections specifically thereto. -"Recipient" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 8. For legal entities, "Recipient" includes any entity which controls, is controlled by, or is under common control with Recipient. For purposes of this definition, "control" of an entity means (a) the power, direct or indirect, to direct or manage such entity, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. -"SGI" means Silicon Graphics, Inc. -2. License Grant and Restrictions. - -License Grant. Subject to the provisions of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code alone and/or as part of a Larger Work; and (ii) under any patent claims Licensable by SGI and embodied in the Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. -Restriction on Patent License. Notwithstanding the provisions of Section 2.1(ii), no patent license is granted: 1) separate from the Original Code; nor 2) for infringements caused by (i) modification of the Original Code, or (ii) the combination of the Original Code with other software or Hardware. -No License For Hardware Implementations. The licenses granted in Section 2.1 are not applicable to implementation in Hardware of the algorithms embodied in the Original Code. -Modifications License and API Compliance. Modifications are only licensed under Section 2.1(i) to the extent such Modifications are fully compliant with any API as may be identified in Additional Notice Provisions as appear in the Original Code. -3. Redistributions. - -Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must be conspicuously retained or included in any and all redistributions of Covered Code. For distributions of the Covered Code in source code form, the Notice must appear in every file that can include a text comments field; in executable form, the Notice and a copy of this License must appear in related documentation or collateral where the Recipient’s rights relating to Covered Code are described. Any Additional Notice Provisions which actually appears in the Original Code must also be retained or included in any and all redistributions of Covered Code. -Alternative License. Provided that Recipient is in compliance with the terms of this License, Recipient may distribute the source code and/or executable version(s) of Covered Code under (1) this License; (2) a license identical to this License but for only such changes as are necessary in order to clarify Recipient’s role as licensor of Modifications, without derogation of any of SGI’s rights; and/or (3) a license of Recipient’s choosing, containing terms different from this License, provided that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded by any other terms of such license. If Recipient elects to use any license other than this License, Recipient must make it absolutely clear that any of its terms which differ from this License are offered by Recipient alone, and not by SGI. -Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as a result of any such alternative license terms Recipient offers. -4. Termination. This License and the rights granted hereunder will terminate automatically if Recipient breaches any term herein and fails to cure such breach within 30 days thereof. Any sublicense to the Covered Code that is properly granted shall survive any termination of this License, absent termination by the terms of such sublicense. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. - -5. No Trademark Or Other Rights. This License does not grant any rights to: (i) any software apart from the Covered Code, nor shall any other rights or licenses not expressly granted hereunder arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any trade name, trademark or service mark whatsoever, including without limitation any related right for purposes of endorsement or promotion of products derived from the Covered Code, without prior written permission of SGI; or (iii) any title to or ownership of the Original Code, which shall at all times remains with SGI. All rights in the Original Code not expressly granted under this License are reserved. - -6. Compliance with Laws; Non-Infringement. Recipient hereby assures that it shall comply with all applicable laws, regulations, and executive orders, in connection with any and all dispositions of Covered Code, including but not limited to, all export, re-export, and import control laws, regulations, and executive orders, of the U.S. government and other countries. Recipient may not distribute Covered Code that (i) in any way infringes (directly or contributorily) the rights (including patent, copyright, trade secret, trademark or other intellectual property rights of any kind) of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject. - -7. Claims of Infringement. If Recipient learns of any third party claim that any disposition of Covered Code and/or functionality wholly or partially infringes the third party''s intellectual property rights, Recipient will promptly notify SGI of such claim. - -8. Versions of the License. SGI may publish revised and/or new versions of the License from time to time, each with a distinguishing version number. Once Covered Code has been published under a particular version of the License, Recipient may, for the duration of the license, continue to use it under the terms of that version, or choose to use such Covered Code under the terms of any subsequent version published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only SGI may modify the terms applicable to Covered Code created under this License. - -9. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED "AS IS." ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. - -10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI''s NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. - -11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient''s use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient. - -12. U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License. - -13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -Exhibit A - -License Applicability. Except to the extent portions of this file are made subject to an alternative license as permitted in the SGI Free Software License B, Version 1.0 (the "License"), the contents of this file are subject only to the provisions of the License. You may not use this file except in compliance with the License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services, 1600 Ampitheatre Parkway, Mountain View, CA 94043-1351, or at: - -http://oss.sgi.com/projects/FreeB - -Note that, as provided in the License, the Software is distributed on an "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. - -Original Code. The Original Code is: [name of software, version number, and release date], developed by Silicon Graphics, Inc. The Original Code is Copyright (c) [dates of first publication, as appearing in the Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created by third parties is as indicated elsewhere herein. All Rights Reserved. - -Additional Notice Provisions: [such additional provisions, if any, as appear in the Notice in the Original Code under the heading "Additional Notice Provisions"] \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.0.yml deleted file mode 100644 index ef478a2f5e8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - sgi-fslb-1.0 -notes: this is a license from fossology license reference SGI-B-1.0 (SGI Free Software License - B 1.0) http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html diff --git a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.1.txt deleted file mode 100644 index 596e7265b49..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.1.txt +++ /dev/null @@ -1,42 +0,0 @@ -SGI FREE SOFTWARE LICENSE B (Version 1.1 [02/22/2000]) -1. Definitions. -1.1. "Additional Notice Provisions" means such additional provisions as appear in the Notice in Original Code under the heading "Additional Notice Provisions." -1.2. "Covered Code" means the Original Code or Modifications, or any combination thereof. -1.3. "Hardware" means any physical device that accepts input, processes input, stores the results of processing, and/or provides output. -1.4. "Larger Work" means a work that combines Covered Code or portions thereof with code not governed by the terms of this License. -1.5. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.6. "License" means this document. -1.7. "Licensed Patents" means patent claims Licensable by SGI that are infringed by the use or sale of Original Code or any Modifications provided by SGI, or any combination thereof. -1.8. "Modifications" means any addition to or deletion from the substance or structure of the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: -A. Any addition to the contents of a file containing Original Code and/or addition to or deletion from the contents of a file containing previous Modifications. -B. Any new file that contains any part of the Original Code or previous Modifications. -1.9. "Notice" means any notice in Original Code or Covered Code, as required by and in compliance with this License. -1.10. "Original Code" means source code of computer software code that is described in the source code Notice required by Exhibit A as Original Code, and updates and error corrections specifically thereto. -1.11. "Recipient" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 8. For legal entities, "Recipient" includes any entity that controls, is controlled by, or is under common control with Recipient. For purposes of this definition, "control" of an entity means (a) the power, direct or indirect, to direct or manage such entity, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. -1.12. "Recipient Patents" means patent claims Licensable by a Recipient that are infringed by the use or sale of Original Code or any Modifications provided by SGI, or any combination thereof. -1.13. "SGI" means Silicon Graphics, Inc. -1.14. "SGI Patents" means patent claims Licensable by SGI other than the Licensed Patents. -2. License Grant and Restrictions. -2.1. SGI License Grant. Subject to the terms of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code and/or any Modifications provided by SGI alone and/or as part of a Larger Work; and (ii) under any Licensable Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. The patent license shall apply to the Covered Code if, at the time any related Modification is added, such addition of the Modification causes such combination to be covered by the Licensed Patents. The patent license in Section 2.1(ii) shall not apply to any other combinations that include the Modification. No patent license is provided under SGI Patents for infringements of SGI Patents by Modifications not provided by SGI or combinations of Original Code and Modifications not provided by SGI. -2.2. Recipient License Grant. Subject to the terms of this License and any third party intellectual property claims, Recipient hereby grants SGI and any other Recipients a worldwide, royalty-free, non-exclusive license, under any Recipient Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. -2.3. No License For Hardware Implementations. The licenses granted in Section 2.1 and 2.2 are not applicable to implementation in Hardware of the algorithms embodied in the Original Code or any Modifications provided by SGI . -3. Redistributions. -3.1. Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must be conspicuously retained or included in any and all redistributions of Covered Code. For distributions of the Covered Code in source code form, the Notice must appear in every file that can include a text comments field; in executable form, the Notice and a copy of this License must appear in related documentation or collateral where the Recipient’s rights relating to Covered Code are described. Any Additional Notice Provisions which actually appears in the Original Code must also be retained or included in any and all redistributions of Covered Code. -3.2. Alternative License. Provided that Recipient is in compliance with the terms of this License, Recipient may, so long as without derogation of any of SGI’s rights in and to the Original Code, distribute the source code and/or executable version(s) of Covered Code under (1) this License; (2) a license identical to this License but for only such changes as are necessary in order to clarify Recipient’s role as licensor of Modifications; and/or (3) a license of Recipient’s choosing, containing terms different from this License, provided that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded by any other terms of such license. If Recipient elects to use any license other than this License, Recipient must make it absolutely clear that any of its terms which differ from this License are offered by Recipient alone, and not by SGI. It is emphasized that this License is a limited license, and, regardless of the license form employed by Recipient in accordance with this Section 3.2, Recipient may relicense only such rights, in Original Code and Modifications by SGI, as it has actually been granted by SGI in this License. -3.3. Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as a result of any such alternative license terms Recipient offers. -4. Termination. This License and the rights granted hereunder will terminate automatically if Recipient breaches any term herein and fails to cure such breach within 30 days thereof. Any sublicense to the Covered Code that is properly granted shall survive any termination of this License, absent termination by the terms of such sublicense. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. -5. No Trademark Or Other Rights. This License does not grant any rights to: (i) any software apart from the Covered Code, nor shall any other rights or licenses not expressly granted hereunder arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any trade name, trademark or service mark whatsoever, including without limitation any related right for purposes of endorsement or promotion of products derived from the Covered Code, without prior written permission of SGI; or (iii) any title to or ownership of the Original Code, which shall at all times remains with SGI. All rights in the Original Code not expressly granted under this License are reserved. -6. Compliance with Laws; Non-Infringement. There are various worldwide laws, regulations, and executive orders applicable to dispositions of Covered Code, including without limitation export, re-export, and import control laws, regulations, and executive orders, of the U.S. government and other countries, and Recipient is reminded it is obliged to obey such laws, regulations, and executive orders. Recipient may not distribute Covered Code that (i) in any way infringes (directly or contributorily) any intellectual property rights of any kind of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject. -7. Claims of Infringement. If Recipient learns of any third party claim that any disposition of Covered Code and/or functionality wholly or partially infringes the third party''s intellectual property rights, Recipient will promptly notify SGI of such claim. -8. Versions of the License. SGI may publish revised and/or new versions of the License from time to time, each with a distinguishing version number. Once Covered Code has been published under a particular version of the License, Recipient may, for the duration of the license, continue to use it under the terms of that version, or choose to use such Covered Code under the terms of any subsequent version published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only SGI may modify the terms applicable to Covered Code created under this License. -9. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED "AS IS." ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. -10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI''s NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. -11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient''s use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient. -12. U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License. -13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. -Exhibit A -License Applicability. Except to the extent portions of this file are made subject to an alternative license as permitted in the SGI Free Software License B, Version 1.1 (the "License"), the contents of this file are subject only to the provisions of the License. You may not use this file except in compliance with the License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services, 1600 Amphitheatre Parkway, Mountain View, CA 94043-1351, or at: -http://oss.sgi.com/projects/FreeB -Note that, as provided in the License, the Software is distributed on an "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. -Original Code. The Original Code is: [name of software, version number, and release date], developed by Silicon Graphics, Inc. The Original Code is Copyright (c) [dates of first publication, as appearing in the Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created by third parties is as indicated elsewhere herein. All Rights Reserved. -Additional Notice Provisions: [such additional provisions, if any, as appear in the Notice in the Original Code under the heading "Additional Notice Provisions"] \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.1.yml deleted file mode 100644 index 498a8f319be..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sgi-b-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - sgi-freeb-1.1 -notes: this is a license from fossology license reference SGI-B-1.1 (SGI Free Software License - B 1.1) http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc diff --git a/tests/licensedcode/data/more_licenses/licenses/sgi-b-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/sgi-b-2.0.txt deleted file mode 100644 index bda494d6c9d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sgi-b-2.0.txt +++ /dev/null @@ -1,6 +0,0 @@ -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) -Copyright (C) [dates of first publication] Silicon Graphics, Inc. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice including the dates of first publication and either this permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Silicon Graphics, Inc. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/sgi-b-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/sgi-b-2.0.yml deleted file mode 100644 index cde736b816e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sgi-b-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - sgi-freeb-2.0 -notes: this is a license from fossology license reference SGI-B-2.0 (SGI Free Software License - B 2.0) http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.doc diff --git a/tests/licensedcode/data/more_licenses/licenses/simpl-2.0.txt b/tests/licensedcode/data/more_licenses/licenses/simpl-2.0.txt deleted file mode 100644 index 20d7fb492d6..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/simpl-2.0.txt +++ /dev/null @@ -1,25 +0,0 @@ -Simple Public License (SimPL) - -Preamble -This Simple Public License 2.0 (SimPL 2.0 for short) is a plain language implementation of GPL 2.0. The words are different, but the goal is the same - to guarantee for all users the freedom to share and change software. If anyone wonders about the meaning of the SimPL, they should interpret it as consistent with GPL 2.0. -Simple Public License (SimPL) 2.0 -The SimPL applies to the software''s source and object code and comes with any rights that I have in it (other than trademarks). You agree to the SimPL by copying, distributing, or making a derivative work of the software. - -You get the royalty free right to: -Use the software for any purpose; -Make derivative works of it (this is called a "Derived Work"); -Copy and distribute it and any Derived Work. -If you distribute the software or a Derived Work, you must give back to the community by: -Prominently noting the date of any changes you make; -Leaving other people''s copyright notices, warranty disclaimers, and license terms in place; -Providing the source code, build scripts, installation scripts, and interface definitions in a form that is easy to get and best to modify; -Licensing it to everyone under SimPL, or substantially similar terms (such as GPL 2.0), without adding further restrictions to the rights provided; -Conspicuously announcing that it is available under that license. -There are some things that you must shoulder: -You get NO WARRANTIES. None of any kind; -If the software damages you in any way, you may only recover direct damages up to the amount you paid for it (that is zero if you did not pay anything). You may not recover any other damages, including those called "consequential damages." (The state or country where you live may not allow you to limit your liability in this way, so this may not apply to you); -The SimPL continues perpetually, except that your license rights end automatically if: -You do not abide by the "give back to the community" terms (your licensees get to keep their rights if they abide); -Anyone prevents you from distributing the software under the terms of the SimPL. -License for the License -You may do anything that you want with the SimPL text; it''s a license form to use in any way that you find helpful. To avoid confusion, however, if you change the terms in any way then you may not call your license the Simple Public License or the SimPL (but feel free to acknowledge that your license is "based on the Simple Public License"). \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/simpl-2.0.yml b/tests/licensedcode/data/more_licenses/licenses/simpl-2.0.yml deleted file mode 100644 index b88bd8a2980..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/simpl-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - simpl-2.0 -notes: this is a license from fossology license reference SimPL-2.0 (Simple Public License 2.0) - http://www.opensource.org/licenses/SimPL-2.0 diff --git a/tests/licensedcode/data/more_licenses/licenses/snia-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/snia-1.1.txt deleted file mode 100644 index c659b18b0f5..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/snia-1.1.txt +++ /dev/null @@ -1,94 +0,0 @@ -STORAGE NETWORKING INDUSTRY ASSOCIATION -PUBLIC LICENSE -Version 1.1 -________________________ - -1. Definitions. - -1.1 "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. -1.2 "Contributor" means each entity that creates or contributes to the creation of Modifications. -1.3 "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. -1.4 "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. -1.5 "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. -1.6 "Executable" means Covered Code in any form other than Source Code. -1.7 "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. -1.8 "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. -1.9 "License" means this document. -1.10 "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.11 "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. -B. Any new file that contains any part of the Original Code or previous Modifications. -1.12 "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.13 "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. -1.14 "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. -1.15 "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity -2. Source Code License. - -2.1 The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and -(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). -(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. -(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. -2.2 Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. -3. Distribution Obligations. - -3.1 Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients'' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. -3.2 Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. -3.3 Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. -3.4 Intellectual Property Matters. -(a) Third Party Claims. If Contributor has actual knowledge that a license under a third party''s intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter. -(b) Contributor API''s. If Contributor''s Modifications include an application programming interface and Contributor has actual knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. -(c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor''s Modifications are Contributor''s original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. -3.5 Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be most likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients'' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability (excluding any liability arising from intellectual property claims relating to the Covered Code) incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. -3.6 Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligation of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients'' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient''s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability (excluding any liability arising from intellectual property claims relating to the Covered Code) incurred by the Initial Developer or such Contributor as a result of any such terms You offer. -3.7 Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. -4. Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1 New Versions. The Storage Networking Industry Association (the "SNIA") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. -6.2 Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by the SNIA. No one other than the SNIA has the right to modify the terms applicable to Covered Code created under this License. -6.3 Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Storage Networking Industry Association," "SNIA," or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the SNIA Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) -7. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - -8.1 This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within a reasonable time after becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -8.2 If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: -(a) such Participant''s Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. -8.3 If You assert a patent infringement claim against Participant alleging that such Participant''s Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - - -8.4 In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. -9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. MISCELLANEOUS This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of this License or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. - -14. ACCEPTANCE. This License is accepted by You if You retain, use, or distribute the Covered Code for any purpose. - -EXHIBIT A —The SNIA Public License. - -The contents of this file are subject to the SNIA Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - - This file itself is the license. - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is . - -The Initial Developer of the Original Code is [COMPLETE THIS] . - -Contributor(s): ______________________________________. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/snia-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/snia-1.1.yml deleted file mode 100644 index d43f45a2b56..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/snia-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - snia -notes: this is a license from fossology license reference SNIA-1.1 (Storage Networking Industry - Association Public License 1.1) http://mp-mgmt-api.sourceforge.net/SourceLicense-v1.1.html diff --git a/tests/licensedcode/data/more_licenses/licenses/spl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/spl-1.0.txt deleted file mode 100644 index 9d106d0c5e8..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/spl-1.0.txt +++ /dev/null @@ -1,505 +0,0 @@ -SUN PUBLIC LICENSE Version 1.0 - -1. Definitions. - -1.0.1. "Commercial Use" means distribution or otherwise making the -Covered Code available to a third party. - -1.1. "Contributor" means each entity that creates or contributes to -the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original Code, -prior Modifications used by a Contributor, and the Modifications made -by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the -combination of the Original Code and Modifications, in each case -including portions thereof and corresponding documentation released -with the source code. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally -accepted in the software development community for the electronic -transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source -Code. - -1.6. "Initial Developer" means the individual or entity identified as -the Initial Developer in the Source Code notice required by Exhibit -A. - -1.7. "Larger Work" means a work which combines Covered Code or -portions thereof with code not governed by the terms of this -License. - -1.8. "License" means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum -extent possible, whether at the time of the initial grant or -subsequently acquired, any and all of the rights conveyed herein. - -1.9. "Modifications" means any addition to or deletion from the -substance or structure of either the Original Code or any previous -Modifications. When Covered Code is released as a series of files, a -Modification is: - -A. Any addition to or deletion from the contents of a file containing -Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or -previous Modifications. - -1.10. "Original Code"../ means Source Code of computer software code -which is described in the Source Code notice required by Exhibit A as -Original Code, and which, at the time of its release under this -License is not already Covered Code governed by this License. - -1.10.1. "Patent Claims" means any patent claim(s), now owned or -hereafter acquired, including without limitation, method, process, and -apparatus claims, in any patent Licensable by grantor. - -1.11. "Source Code"../ means the preferred form of the Covered Code -for -making modifications to it, including all modules it contains, plus -any associated documentation, interface definition files, scripts used -to control compilation and installation of an Executable, or source -code differential comparisons against either the Original Code or -another well known, available Covered Code of the Contributor''s -choice. The Source Code can be in a compressed or archival form, -provided the appropriate decompression or de-archiving software is -widely available for no charge. - -1.12. "You" (or "Your") means an individual or a legal entity -exercising rights under, and complying with all of the terms of, this -License or a future version of this License issued under Section 6.1. -For legal entities, "You" includes any entity which controls, is -controlled by, or is under common control with You. For purposes of -this definition, "control"../ means (a) the power, direct or indirect, -to -cause the direction or management of such entity, whether by contract -or otherwise, or (b) ownership of more than fifty percent (50%) of the -outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1 The Initial Developer Grant. - -The Initial Developer hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) under intellectual property rights (other than patent or -trademark) Licensable by Initial Developer to use, reproduce, modify, -display, perform, sublicense and distribute the Original Code (or -portions thereof) with or without Modifications, and/or as part of a -Larger Work; and - -(b) under Patent Claims infringed by the making, using or selling of -Original Code, to make, have made, use, practice, sell, and offer for -sale, and/or otherwise dispose of the Original Code (or portions -thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are effective -on the date Initial Developer first distributes Original Code under -the terms of this License. - -(d) Notwithstanding Section 2.1(b) above, no patent license is -granted: 1) for code that You delete from the Original Code; 2) -separate from the Original Code; or 3) for infringements caused -by: - -i) the modification of the Original Code or ii) the combination of the -Original Code with other software or devices. - -2.2. Contributor Grant. - -Subject to third party intellectual property claims, each Contributor -hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent -or -trademark) Licensable by Contributor, to use, reproduce, modify, -display, perform, sublicense and distribute the Modifications created -by such Contributor (or portions thereof) either on an unmodified -basis, with other Modifications, as Covered Code and/or as part of a -Larger Work; and - -b) under Patent Claims infringed by the making, using, or selling of -Modifications made by that Contributor either alone and/or in -combination with its Contributor Version (or portions of such -combination), to make, use, sell, offer for sale, have made, and/or -otherwise dispose of: 1) Modifications made by that Contributor (or -portions thereof); and 2) the combination of Modifications made by -that Contributor with its Contributor Version (or portions of such -combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective -on the date Contributor first makes Commercial Use of the Covered -Code. - -(d) notwithstanding Section 2.2(b) above, no patent license is -granted: 1) for any code that Contributor has deleted from the -Contributor Version; 2) separate from the Contributor Version; 3) for -infringements caused by: i) third party modifications of Contributor -Version or ii) the combination of Modifications made by that -Contributor with other software (except as part of the Contributor -Version) or other devices; or 4) under Patent Claims infringed by -Covered Code in the absence of Modifications made by that -Contributor. - -3. Distribution Obligations. - -3.1. Application of License. - -The Modifications which You create or to which You contribute are -governed by the terms of this License, including without limitation -Section 2.2. The Source Code version of Covered Code may be -distributed only under the terms of this License or a future version -of this License released under Section 6.1, and You must include a -copy of this License with every copy of the Source Code You -distribute. You may not offer or impose any terms on any Source Code -version that alters or restricts the applicable version of this -License or the recipients'' rights hereunder. However, You may include -an additional document offering the additional rights described in -Section 3.5. - -3.2. Availability of Source Code. - -Any Modification which You create or to which You contribute must be -made available in Source Code form under the terms of this License -either on the same media as an Executable version or via an accepted -Electronic Distribution Mechanism to anyone to whom you made an -Executable version available; and if made available via Electronic -Distribution Mechanism, must remain available for at least twelve (12) -months after the date it initially became available, or at least six -(6) months after a subsequent version of that particular Modification -has been made available to such recipients. You are responsible for -ensuring that the Source Code version remains available even if the -Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. - -You must cause all Covered Code to which You contribute to contain a -file documenting the changes You made to create that Covered Code and -the date of any change. You must include a prominent statement that -the Modification is derived, directly or indirectly, from Original -Code provided by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any notice in an -Executable version or related documentation in which You describe the -origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters. - -(a) Third Party Claims. - -If Contributor has knowledge that a license under a third party''s -intellectual property rights is required to exercise the rights -granted by such Contributor under Sections 2.1 or 2.2, Contributor -must include a text file with the Source Code distribution titled -"../LEGAL'''' which describes the claim and the party making the claim in -sufficient detail that a recipient will know whom to contact. If -Contributor obtains such knowledge after the Modification is made -available as described in Section 3.2, Contributor shall promptly -modify the LEGAL file in all copies Contributor makes available -thereafter and shall take other steps (such as notifying appropriate -mailing lists or newsgroups) reasonably calculated to inform those who -received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. - -If Contributor''s Modifications include an application programming -interface ("API"../) and Contributor has knowledge of patent licenses -which are reasonably necessary to implement that API, Contributor must -also include this information in the LEGAL file. - -(c) Representations. - -Contributor represents that, except as disclosed pursuant to Section -3.4(a) above, Contributor believes that Contributor''s Modifications -are Contributor''s original creation(s) and/or Contributor has -sufficient rights to grant the rights conveyed by this -License - -. - -3.5. Required Notices. - -You must duplicate the notice in Exhibit A in each file of the Source -Code. If it is not possible to put such notice in a particular Source -Code file due to its structure, then You must include such notice in a -location (such as a relevant directory) where a user would be likely -to look for such a notice. If You created one or more Modification(s) -You may add your name as a Contributor to the notice described in -Exhibit A. You must also duplicate this License in any documentation -for the Source Code where You describe recipients'' rights or ownership -rights relating to Covered Code. You may choose to offer, and to -charge a fee for, warranty, support, indemnity or liability -obligations to one or more recipients of Covered Code. However, You -may do so only on Your own behalf, and not on behalf of the Initial -Developer or any Contributor. You must make it absolutely clear than -any such warranty, support, indemnity or liability obligation is -offered by You alone, and You hereby agree to indemnify the Initial -Developer and every Contributor for any liability incurred by the -Initial Developer or such Contributor as a result of warranty, -support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. - -You may distribute Covered Code in Executable form only if the -requirements of Section 3.1-3.5 have been met for that Covered Code, -and if You include a notice stating that the Source Code version of -the Covered Code is available under the terms of this License, -including a description of how and where You have fulfilled the -obligations of Section 3.2. The notice must be conspicuously included -in any notice in an Executable version, related documentation or -collateral in which You describe recipients'' rights relating to the -Covered Code. You may distribute the Executable version of Covered -Code or ownership rights under a license of Your choice, which may -contain terms different from this License, provided that You are in -compliance with the terms of this License and that the license for the -Executable version does not attempt to limit or alter the recipient''s -rights in the Source Code version from the rights set forth in this -License. If You distribute the Executable version under a different -license You must make it absolutely clear that any terms which differ -from this License are offered by You alone, not by the Initial -Developer or any Contributor. You hereby agree to indemnify the -Initial Developer and every Contributor for any liability incurred by -the Initial Developer or such Contributor as a result of any such -terms You offer. - -3.7. Larger Works. - -You may create a Larger Work by combining Covered Code with other -code -not governed by the terms of this License and distribute the Larger -Work as a single product. In such a case, You must make sure the -requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Code due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description -must be included in the LEGAL file described in Section 3.4 and must -be included with all distributions of the Source Code. Except to the -extent prohibited by statute or regulation, such description must be -sufficiently detailed for a recipient of ordinary skill to be able to -understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has -attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions. - -Sun Microsystems, Inc. ("Sun") may publish revised and/or new versions -of the License from time to time. Each version will be given a -distinguishing version number. - -6.2. Effect of New Versions. - -Once Covered Code has been published under a particular version of -the -License, You may always continue to use it under the terms of that -version. You may also choose to use such Covered Code under the terms -of any subsequent version of the License published by Sun. No one -other than Sun has the right to modify the terms applicable to Covered -Code created under this License. - -6.3. Derivative Works. - -If You create or use a modified version of this License (which you -may -only do in order to apply it to code which is not already Covered Code -governed by this License), You must: (a) rename Your license so that -the phrases "Sun," "Sun Public License," or "SPL"../ or any confusingly -similar phrase do not appear in your license (except to note that your -license differs from this License) and (b) otherwise make it clear -that Your version of the license contains terms which differ from the -Sun Public License. (Filling in the name of the Initial Developer, -Original Code or Contributor in the notice described in Exhibit A -shall not of themselves be deemed to be modifications of this -License.) - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "../AS IS'''' BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. -THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE -IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, -YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE -COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER -OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF -ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS -DISCLAIMER. - -8. TERMINATION. - -8.1. This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. All -sublicenses to the Covered Code which are properly granted shall -survive any termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this License -shall survive. - -8.2. If You initiate litigation by asserting a patent infringement -claim (excluding declaratory judgment actions) against Initial Developer -or a Contributor (the Initial Developer or Contributor against whom -You file such action is referred to as "Participant") alleging -that: - -(a) such Participant''s Contributor Version directly or indirectly -infringes any patent, then any and all rights granted by such -Participant to You under Sections 2.1 and/or 2.2 of this License -shall, upon 60 days notice from Participant terminate prospectively, -unless if within 60 days after receipt of notice You either: (i) -agree in writing to pay Participant a mutually agreeable reasonable -royalty for Your past and future use of Modifications made by such -Participant, or (ii) withdraw Your litigation claim with respect to -the Contributor Version against such Participant. If within 60 days -of notice, a reasonable royalty and payment arrangement are not -mutually agreed upon in writing by the parties or the litigation claim -is not withdrawn, the rights granted by Participant to You under -Sections 2.1 and/or 2.2 automatically terminate at the expiration of -the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant''s -Contributor Version, directly or indirectly infringes any patent, then -any rights granted to You by such Participant under Sections 2.1(b) -and 2.2(b) are revoked effective as of the date You first made, used, -sold, distributed, or had made, Modifications made by that -Participant. - -8.3. If You assert a patent infringement claim against Participant -alleging that such Participant''s Contributor Version directly or -indirectly infringes any patent where such claim is resolved (such as -by license or settlement) prior to the initiation of patent -infringement litigation, then the reasonable value of the licenses -granted by such Participant under Sections 2.1 or 2.2 shall be taken -into account in determining the amount or value of any payment or -license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, -all -end user license agreements (excluding distributors and resellers) -which have been validly granted by You or any distributor hereunder -prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT -(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL -DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, -OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR -ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY -CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, -WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER -COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN -INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF -LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY -RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW -PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE -EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO -THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - -The Covered Code is a "commercial item," as that term is defined in -48 -C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" -and "commercial computer software documentation,"../ as such terms are -used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. -12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all -U.S. Government End Users acquire Covered Code with only those rights -set forth herein. - -11. MISCELLANEOUS. - -This License represents the complete agreement concerning subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. This License shall be governed by -California law provisions (except to the extent applicable law, if -any, provides otherwise), excluding its conflict-of-law provisions. -With respect to disputes in which at least one party is a citizen of, -or an entity chartered or registered to do business in the United -States of America, any litigation relating to this License shall be -subject to the jurisdiction of the Federal Courts of the Northern -District of California, with venue lying in Santa Clara County, -California, with the losing party responsible for costs, including -without limitation, court costs and reasonable attorneys'' fees and -expenses. The application of the United Nations Convention on -Contracts for the International Sale of Goods is expressly excluded. -Any law or regulation which provides that the language of a contract -shall be construed against the drafter shall not apply to this -License. - -12. RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is -responsible for claims and damages arising, directly or indirectly, -out of its utilization of rights under this License and You agree to -work with Initial Developer and Contributors to distribute such -responsibility on an equitable basis. Nothing herein is intended or -shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - -Initial Developer may designate portions of the Covered Code as -?Multiple-Licensed?. ?Multiple-Licensed? means that the Initial -Developer permits you to utilize portions of the Covered Code under -Your choice of the alternative licenses, if any, specified by the -Initial Developer in the file described in Exhibit A. - -Exhibit A -Sun Public License Notice. - -The contents of this file are subject to the Sun Public License - -Version 1.0 (the License); you may not use this file except in - -compliance with the License. A copy of the License is available at - -http://www.sun.com/ - -The Original Code is _________________. The Initial Developer of the - -Original Code is ___________. Portions created by ______ are Copyright - -(C)_________. All Rights Reserved. - -Contributor(s): ______________________________________. - -Alternatively, the contents of this file may be used under the terms - -of the _____ license (the ?[___] License?), in which case the - -provisions of [______] License are applicable instead of those above. - -If you wish to allow use of your version of this file only under the - -terms of the [____] License and not to allow others to use your - -version of this file under the SPL, indicate your decision by deleting - -the provisions above and replace them with the notice and other - -provisions required by the [___] License. If you do not delete the - -provisions above, a recipient may use your version of this file under - -either the SPL or the [___] License. -[NOTE: The text of this Exhibit A may differ slightly from the text of - -the notices in the Source Code files of the Original Code. You should - -use the text of this Exhibit A rather than the text found in the - -Original Code Source Code for Your Modifications.] \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/spl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/spl-1.0.yml deleted file mode 100644 index 9197aca08ea..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/spl-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - spl-1.0 -notes: this is a license from fossology license reference SPL-1.0 (Sun Public License 1.0) http://www.opensource.org/licenses/sunpublic.php diff --git a/tests/licensedcode/data/more_licenses/licenses/sugarcrm-1.1.3.txt b/tests/licensedcode/data/more_licenses/licenses/sugarcrm-1.1.3.txt deleted file mode 100644 index af9a0ecc87d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sugarcrm-1.1.3.txt +++ /dev/null @@ -1,158 +0,0 @@ -SUGARCRM PUBLIC LICENSE - -Version 1.1.3 - -The SugarCRM Public License Version ("SPL") consists of the Mozilla Public License Version 1.1, modified to be specific to SugarCRM, with the Additional Terms in Exhibit B. The original Mozilla Public License 1.1 can be found at: http://www.mozilla.org/MPL/MPL-1.1.html - - -1. Definitions. - -1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. -1.1. ''''Contributor'''' means each entity that creates or contributes to the creation of Modifications. - -1.2. ''''Contributor Version'''' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. ''''Covered Code'''' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. ''''Electronic Distribution Mechanism'''' means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. ''''Executable'''' means Covered Code in any form other than Source Code. - -1.6. ''''Initial Developer'''' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. ''''Larger Work'''' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. ''''License'''' means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9. ''''Modifications'''' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. -B. Any new file that contains any part of the Original Code or previous Modifications. -1.10. ''''Original Code'''' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. -1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.11. ''''Source Code'''' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. "You'''' (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You'''' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control'''' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and -(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. -(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. -2.2. Contributor Grant. -Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. - -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. - - -3. Distribution Obligations. - -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients'' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If Contributor has knowledge that a license under a third party''s intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL'''' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. -(b) Contributor APIs. -If Contributor''s Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. -(c) Representations. -Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor''s Modifications are Contributor''s original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients'' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients'' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient''s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. -6.1. New Versions. -SugarCRM Inc. (''''SugarCRM'''') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by SugarCRM. No one other than SugarCRM has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works. -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases ''''SugarCRM'''', ''''SPL'''' or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the SugarCRM Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'''' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. -8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: - -(a) such Participant''s Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant''s Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. - -8.3. If You assert a patent infringement claim against Participant alleging that such Participant''s Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. -The Covered Code is a ''''commercial item,'''' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ''''commercial computer software'''' and ''''commercial computer software documentation,'''' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys'' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. -Initial Developer may designate portions of the Covered Code as “Multiple-Licensed”. “Multiple-Licensed” means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the SPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -SugarCRM Public License 1.1.3 - Exhibit A - -The contents of this file are subject to the SugarCRM Public License Version 1.1.3 -("License"); You may not use this file except in compliance with the -License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for -the specific language governing rights and limitations under the License. - -The Original Code is: SugarCRM Open Source - -The Initial Developer of the Original Code is SugarCRM, Inc. -Portions created by SugarCRM are Copyright (C) 2004 SugarCRM, Inc.; -All Rights Reserved. -Contributor(s): ______________________________________. -[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] - -SugarCRM Public License 1.1.3 - Exhibit B - -Additional Terms applicable to the SugarCRM Public License. - -I. Effect. -These additional terms described in this SugarCRM Public License – Additional Terms shall apply to the Covered Code under this License. - -II. SugarCRM and logo. -This License does not grant any rights to use the trademarks "SugarCRM" and the "SugarCRM" logos even if such marks are included in the Original Code or Modifications. - -However, in addition to the other notice obligations, all copies of the Covered Code in Executable and Source Code form distributed must, as a form of attribution of the original author, include on each user interface screen (i) the "Powered by SugarCRM" logo and (ii) the copyright notice in the same form as the latest version of the Covered Code distributed by SugarCRM, Inc. at the time of distribution of such copy. In addition, the "Powered by SugarCRM" logo must be visible to all users and be located at the very bottom center of each user interface screen. Notwithstanding the above, the dimensions of the "Powered By SugarCRM" logo must be at least 106 x 23 pixels. When users click on the "Powered by SugarCRM" logo it must direct them back to http://www.sugarforge.org. In addition, the copyright notice must remain visible to all users at all times at the bottom of the user interface screen. When users click on the copyright notice, it must direct them back to http://www.sugarcrm.com \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/sugarcrm-1.1.3.yml b/tests/licensedcode/data/more_licenses/licenses/sugarcrm-1.1.3.yml deleted file mode 100644 index 71e8b079712..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/sugarcrm-1.1.3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - sugarcrm-1.1.3 -notes: this is a license from fossology license reference SugarCRM-1.1.3 (SugarCRM Public License) - http://www.sugarcrm.com/crm/SPL diff --git a/tests/licensedcode/data/more_licenses/licenses/tcl.txt b/tests/licensedcode/data/more_licenses/licenses/tcl.txt deleted file mode 100644 index 557fc39696f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/tcl.txt +++ /dev/null @@ -1,9 +0,0 @@ -This software is copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation and other parties. The following terms apply to all files associated with the software unless explicitly disclaimed in individual files. - -The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions. No written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where they apply. - -IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -GOVERNMENT USE: If you are acquiring this software on behalf of the U.S. government, the Government shall have only "Restricted Rights" in the software and related documentation as defined in the Federal Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are acquiring the software on behalf of the Department of Defense, the software shall be classified as "Commercial Computer Software" and the Government shall have only "Restricted Rights" as defined in Clause 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the terms specified in this license. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/tcl.yml b/tests/licensedcode/data/more_licenses/licenses/tcl.yml deleted file mode 100644 index f5a8526249d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/tcl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - tcl -notes: this is a license from fossology license reference TCL (TCL/TK License) http://www.tcl.tk/software/tcltk/license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/terracotta.txt b/tests/licensedcode/data/more_licenses/licenses/terracotta.txt deleted file mode 100644 index 0d4584faf84..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/terracotta.txt +++ /dev/null @@ -1,187 +0,0 @@ -Terracotta Public License (version 1.0) - -1. Definitions - -1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source Code. - -1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. "License" means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -a. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -b. Any new file that contains any part of the Original Code or previous Modifications. - -c. Any new file that is contributed or otherwise made available under the terms of this License. - -1.10. "Original Code" means Source Code and Executable form of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor''s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License - -2.1. The Initial Developer Grant - -THE INITIAL DEVELOPER HEREBY GRANTS YOU A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE, SUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS: - -a. under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and - -b. under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). - -c. the licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes or otherwise makes available Original Code under the terms of this License. - -d. Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. - -2.2. Contributor Grant - -SUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS, EACH CONTRIBUTOR HEREBY GRANTS YOU AND INITIAL DEVELOPER A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE: - -a. under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and - -b. under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - -c. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first distributes or otherwise makes available the Covered Code. - -d. Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. - -3. Distribution Obligations - -3.1. Application of License - -ANY COVERED CODE THAT YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE IS GOVERNED BY THE TERMS OF THIS LICENSE, INCLUDING WITHOUT LIMITATION SECTION 2.2. THE SOURCE CODE VERSION OF COVERED CODE MAY BE DISTRIBUTED ONLY UNDER THE TERMS OF THIS LICENSE OR A FUTURE VERSION OF THIS LICENSE RELEASED UNDER SECTION 6.1, AND YOU MUST INCLUDE A COPY OF THIS LICENSE WITH EVERY COPY OF THE SOURCE CODE YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE. YOU MAY NOT OFFER OR IMPOSE ANY TERMS ON ANY SOURCE CODE VERSION THAT ALTERS OR RESTRICTS THE APPLICABLE VERSION OF THIS LICENSE OR THE RECIPIENTS'' RIGHTS HEREUNDER. HOWEVER, YOU MAY INCLUDE AN ADDITIONAL DOCUMENT OFFERING THE ADDITIONAL RIGHTS DESCRIBED IN SECTION 3.5. - -3.2. Availability of Source Code - -ANY MODIFICATION WHICH YOU CREATE OR TO WHICH YOU CONTRIBUTE MUST BE MADE AVAILABLE IN SOURCE CODE FORM UNDER THE TERMS OF THIS LICENSE EITHER ON THE SAME MEDIA AS AN EXECUTABLE VERSION OR VIA AN ACCEPTED ELECTRONIC DISTRIBUTION MECHANISM TO ANYONE TO WHOM YOU MADE AN EXECUTABLE VERSION AVAILABLE; AND IF MADE AVAILABLE VIA ELECTRONIC DISTRIBUTION MECHANISM, MUST REMAIN AVAILABLE FOR AT LEAST TWELVE (12) MONTHS AFTER THE DATE IT INITIALLY BECAME AVAILABLE, OR AT LEAST SIX (6) MONTHS AFTER A SUBSEQUENT VERSION OF THAT PARTICULAR MODIFICATION HAS BEEN MADE AVAILABLE TO SUCH RECIPIENTS. YOU ARE RESPONSIBLE FOR ENSURING THAT THE SOURCE CODE VERSION REMAINS AVAILABLE EVEN IF THE ELECTRONIC DISTRIBUTION MECHANISM IS MAINTAINED BY A THIRD PARTY. - -3.3. Description of Modifications - -YOU MUST CAUSE ALL COVERED CODE TO WHICH YOU CONTRIBUTE TO CONTAIN A FILE DOCUMENTING THE CHANGES YOU MADE TO CREATE THAT COVERED CODE AND THE DATE OF ANY CHANGE. YOU MUST INCLUDE A PROMINENT STATEMENT THAT THE MODIFICATION IS DERIVED, DIRECTLY OR INDIRECTLY, FROM ORIGINAL CODE PROVIDED BY THE INITIAL DEVELOPER AND INCLUDING THE NAME OF THE INITIAL DEVELOPER IN (A) THE SOURCE CODE, AND (B) IN ANY NOTICE IN AN EXECUTABLE VERSION OR RELATED DOCUMENTATION IN WHICH YOU DESCRIBE THE ORIGIN OR OWNERSHIP OF THE COVERED CODE. - -3.4. Intellectual Property Matters - -(a) Third Party Claims - -IF CONTRIBUTOR HAS KNOWLEDGE THAT A LICENSE UNDER A THIRD PARTY''S INTELLECTUAL PROPERTY RIGHTS IS REQUIRED TO EXERCISE THE RIGHTS GRANTED BY SUCH CONTRIBUTOR UNDER SECTIONS 2.1 OR 2.2, CONTRIBUTOR MUST INCLUDE A TEXT FILE WITH THE SOURCE CODE DISTRIBUTION TITLED "LEGAL" WHICH DESCRIBES THE CLAIM AND THE PARTY MAKING THE CLAIM IN SUFFICIENT DETAIL THAT A RECIPIENT WILL KNOW WHOM TO CONTACT. IF CONTRIBUTOR OBTAINS SUCH KNOWLEDGE AFTER THE MODIFICATION IS MADE AVAILABLE AS DESCRIBED IN SECTION 3.2, CONTRIBUTOR SHALL PROMPTLY MODIFY THE LEGAL FILE IN ALL COPIES CONTRIBUTOR MAKES AVAILABLE THEREAFTER AND SHALL TAKE OTHER STEPS (SUCH AS NOTIFYING APPROPRIATE MAILING LISTS OR NEWSGROUPS) REASONABLY CALCULATED TO INFORM THOSE WHO RECEIVED THE COVERED CODE THAT NEW KNOWLEDGE HAS BEEN OBTAINED. - -(b) Contributor APIs - -IF CONTRIBUTOR''S MODIFICATIONS INCLUDE AN APPLICATION PROGRAMMING INTERFACE AND CONTRIBUTOR HAS KNOWLEDGE OF PATENT LICENSES WHICH ARE REASONABLY NECESSARY TO IMPLEMENT THAT API, CONTRIBUTOR MUST ALSO INCLUDE THIS INFORMATION IN THE LEGAL FILE. - -(c) Representations. - -CONTRIBUTOR REPRESENTS THAT, EXCEPT AS DISCLOSED PURSUANT TO SECTION 3.4 (A) ABOVE, CONTRIBUTOR BELIEVES THAT CONTRIBUTOR''S MODIFICATIONS ARE CONTRIBUTOR''S ORIGINAL CREATION(S) AND/OR CONTRIBUTOR HAS SUFFICIENT RIGHTS TO GRANT THE RIGHTS CONVEYED BY THIS LICENSE. - -3.5. Required Notices - -YOU MUST DUPLICATE THE NOTICE IN EXHIBIT A IN EACH FILE OF THE SOURCE CODE. IF IT IS NOT POSSIBLE TO PUT SUCH NOTICE IN A PARTICULAR SOURCE CODE FILE DUE TO ITS STRUCTURE, THEN YOU MUST INCLUDE SUCH NOTICE IN A LOCATION (SUCH AS A RELEVANT DIRECTORY) WHERE A USER WOULD BE LIKELY TO LOOK FOR SUCH A NOTICE. IF YOU CREATED ONE OR MORE MODIFICATION(S) YOU MAY ADD YOUR NAME AS A CONTRIBUTOR TO THE NOTICE DESCRIBED IN EXHIBIT A. YOU MUST ALSO DUPLICATE THIS LICENSE IN ANY DOCUMENTATION FOR THE SOURCE CODE WHERE YOU DESCRIBE RECIPIENTS'' RIGHTS OR OWNERSHIP RIGHTS RELATING TO COVERED CODE. YOU MAY CHOOSE TO OFFER, AND TO CHARGE A FEE FOR, WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATIONS TO ONE OR MORE RECIPIENTS OF COVERED CODE. HOWEVER, YOU MAY DO SO ONLY ON YOUR OWN BEHALF, AND NOT ON BEHALF OF THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU MUST MAKE IT ABSOLUTELY CLEAR THAN ANY SUCH WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATION IS OFFERED BY YOU ALONE, AND YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF WARRANTY, SUPPORT, INDEMNITY OR LIABILITY TERMS YOU OFFER. - -3.6. Distribution of Executable Versions - -YOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE COVERED CODE IN EXECUTABLE FORM ONLY IF THE REQUIREMENTS OF SECTIONS 3.1, 3.2, 3.3, 3.4 AND 3.5 HAVE BEEN MET FOR THAT COVERED CODE, AND IF YOU INCLUDE A NOTICE STATING THAT THE SOURCE CODE VERSION OF THE COVERED CODE IS AVAILABLE UNDER THE TERMS OF THIS LICENSE, INCLUDING A DESCRIPTION OF HOW AND WHERE YOU HAVE FULFILLED THE OBLIGATIONS OF SECTION 3.2. THE NOTICE MUST BE CONSPICUOUSLY INCLUDED IN ANY NOTICE IN AN EXECUTABLE VERSION, RELATED DOCUMENTATION OR COLLATERAL IN WHICH YOU DESCRIBE RECIPIENTS'' RIGHTS RELATING TO THE COVERED CODE. YOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION OF COVERED CODE OR OWNERSHIP RIGHTS UNDER A LICENSE OF YOUR CHOICE, WHICH MAY CONTAIN TERMS DIFFERENT FROM THIS LICENSE, PROVIDED THAT YOU ARE IN COMPLIANCE WITH THE TERMS OF THIS LICENSE AND THAT THE LICENSE FOR THE EXECUTABLE VERSION DOES NOT ATTEMPT TO LIMIT OR ALTER THE RECIPIENT''S RIGHTS IN THE SOURCE CODE VERSION FROM THE RIGHTS SET FORTH IN THIS LICENSE. IF YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION UNDER A DIFFERENT LICENSE YOU MUST MAKE IT ABSOLUTELY CLEAR THAT ANY TERMS WHICH DIFFER FROM THIS LICENSE ARE OFFERED BY YOU ALONE, NOT BY THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF ANY SUCH TERMS YOU OFFER. - -3.7. Larger Works - -YOU MAY CREATE A LARGER WORK BY COMBINING COVERED CODE WITH OTHER CODE NOT GOVERNED BY THE TERMS OF THIS LICENSE AND DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE LARGER WORK AS A SINGLE PRODUCT. IN SUCH A CASE, YOU MUST MAKE SURE THE REQUIREMENTS OF THIS LICENSE ARE FULFILLED FOR THE COVERED CODE. - -4. Inability to Comply Due to Statute or Regulation - -IF IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ANY OF THE TERMS OF THIS LICENSE WITH RESPECT TO SOME OR ALL OF THE COVERED CODE DUE TO STATUTE, JUDICIAL ORDER, OR REGULATION THEN YOU MUST: (A) COMPLY WITH THE TERMS OF THIS LICENSE TO THE MAXIMUM EXTENT POSSIBLE; AND (B) DESCRIBE THE LIMITATIONS AND THE CODE THEY AFFECT. SUCH DESCRIPTION MUST BE INCLUDED IN THE LEGAL FILE DESCRIBED IN SECTION 3.4 AND MUST BE INCLUDED WITH ALL DISTRIBUTIONS OF THE SOURCE CODE. EXCEPT TO THE EXTENT PROHIBITED BY STATUTE OR REGULATION, SUCH DESCRIPTION MUST BE SUFFICIENTLY DETAILED FOR A RECIPIENT OF ORDINARY SKILL TO BE ABLE TO UNDERSTAND IT. - -5. Application of this License - -THIS LICENSE APPLIES TO CODE TO WHICH THE INITIAL DEVELOPER HAS ATTACHED THE NOTICE IN EXHIBIT A AND TO RELATED COVERED CODE. - -6. Versions of the License - -6.1. New Versions - -TERRACOTTA, INC. ("TERRACOTTA") MAY PUBLISH REVISED AND/OR NEW VERSIONS OF THE LICENSE FROM TIME TO TIME. EACH VERSION WILL BE GIVEN A DISTINGUISHING VERSION NUMBER. - -6.2. Effect of New Versions - -ONCE COVERED CODE HAS BEEN PUBLISHED UNDER A PARTICULAR VERSION OF THE LICENSE, YOU MAY ALWAYS CONTINUE TO USE IT UNDER THE TERMS OF THAT VERSION. YOU MAY ALSO CHOOSE TO USE SUCH COVERED CODE UNDER THE TERMS OF ANY SUBSEQUENT VERSION OF THE LICENSE PUBLISHED BY TERRACOTTA. NO ONE OTHER THAN TERRACOTTA HAS THE RIGHT TO MODIFY THE TERMS APPLICABLE TO COVERED CODE CREATED UNDER THIS LICENSE. - -6.3. Derivative Works of License; Antecedent Licenses - -IF YOU CREATE OR USE A MODIFIED VERSION OF THIS LICENSE (WHICH YOU MAY ONLY DO IN ORDER TO APPLY IT TO CODE WHICH IS NOT ALREADY COVERED CODE GOVERNED BY THIS LICENSE), YOU MUST (A) RENAME YOUR LICENSE SO THAT THE PHRASES "TERRACOTTA", "TPL", OR ANY CONFUSINGLY SIMILAR PHRASE DO NOT APPEAR IN YOUR LICENSE (EXCEPT TO NOTE THAT YOUR LICENSE DIFFERS FROM THIS LICENSE) AND (B) OTHERWISE MAKE IT CLEAR THAT YOUR VERSION OF THE LICENSE CONTAINS TERMS WHICH DIFFER FROM THE TERRACOTTA PUBLIC LICENSE. (FILLING IN THE NAME OF THE INITIAL DEVELOPER, ORIGINAL CODE OR CONTRIBUTOR IN THE NOTICE DESCRIBED IN EXHIBIT A SHALL NOT OF THEMSELVES BE DEEMED TO BE MODIFICATIONS OF THIS LICENSE.) - -THIS TERRACOTTA PUBLIC LICENSE (TPL) IS SIMILAR TO, AND CONTAINS SAMPLES FROM, THE MOZILLA PUBLIC LICENSE (MPL) AND THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL). HOWEVER, THIS TPL CONTAINS TERMS WHICH DIFFER FROM THOSE CONTAINED IN THE MPL AND THE CDDL. - -7. Disclaimer of Warranty - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. Termination - -8.1. THIS LICENSE AND THE RIGHTS GRANTED HEREUNDER WILL TERMINATE AUTOMATICALLY IF YOU FAIL TO COMPLY WITH TERMS HEREIN AND FAIL TO CURE SUCH BREACH WITHIN 30 DAYS OF BECOMING AWARE OF THE BREACH. ALL SUBLICENSES TO THE COVERED CODE WHICH ARE PROPERLY GRANTED SHALL SURVIVE ANY TERMINATION OF THIS LICENSE. PROVISIONS WHICH, BY THEIR NATURE, MUST REMAIN IN EFFECT BEYOND THE TERMINATION OF THIS LICENSE SHALL SURVIVE. - -8.2. IF YOU INITIATE LITIGATION BY ASSERTING A PATENT INFRINGEMENT CLAIM (EXCLUDING DECLARATORY JUDGMENT ACTIONS) AGAINST INITIAL DEVELOPER OR A CONTRIBUTOR (THE INITIAL DEVELOPER OR CONTRIBUTOR AGAINST WHOM YOU FILE SUCH ACTION IS REFERRED TO AS "PARTICIPANT") ALLEGING THAT: - -a. such Participant''s Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (1) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (2) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. - -b. any software, hardware, or device, other than such Participant''s Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. - -8.3. IF YOU ASSERT A PATENT INFRINGEMENT CLAIM AGAINST PARTICIPANT ALLEGING THAT SUCH PARTICIPANT''S CONTRIBUTOR VERSION DIRECTLY OR INDIRECTLY INFRINGES ANY PATENT WHERE SUCH CLAIM IS RESOLVED (SUCH AS BY LICENSE OR SETTLEMENT) PRIOR TO THE INITIATION OF PATENT INFRINGEMENT LITIGATION, THEN THE REASONABLE VALUE OF THE LICENSES GRANTED BY SUCH PARTICIPANT UNDER SECTIONS 2.1 OR 2.2 SHALL BE TAKEN INTO ACCOUNT IN DETERMINING THE AMOUNT OR VALUE OF ANY PAYMENT OR LICENSE. - -8.4. IN THE EVENT OF TERMINATION UNDER SECTIONS 8.1 OR 8.2 ABOVE, ALL END USER LICENSE AGREEMENTS (EXCLUDING DISTRIBUTORS AND RESELLERS) WHICH HAVE BEEN VALIDLY GRANTED BY YOU OR ANY DISTRIBUTOR HEREUNDER PRIOR TO TERMINATION SHALL SURVIVE TERMINATION. - -9. Limitation of Liability - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY''S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. Government End Users - -THE COVERED CODE IS A "COMMERCIAL ITEM," AS THAT TERM IS DEFINED IN 48 C.F.R. 2.101 (OCT. 1995), CONSISTING OF "COMMERCIAL COMPUTER SOFTWARE" AND "COMMERCIAL COMPUTER SOFTWARE DOCUMENTATION," AS SUCH TERMS ARE USED IN 48 C.F.R. 12.212 (SEPT. 1995). CONSISTENT WITH 48 C.F.R. 12.212 AND 48 C.F.R. 227.7202-1 THROUGH 227.7202-4 (JUNE 1995), ALL U.S. GOVERNMENT END USERS ACQUIRE COVERED CODE WITH ONLY THOSE RIGHTS SET FORTH HEREIN. - -11. Miscellaneous - -THIS LICENSE REPRESENTS THE COMPLETE AGREEMENT CONCERNING SUBJECT MATTER HEREOF. IF ANY PROVISION OF THIS LICENSE IS HELD TO BE UNENFORCEABLE, SUCH PROVISION SHALL BE REFORMED ONLY TO THE EXTENT NECESSARY TO MAKE IT ENFORCEABLE. THIS LICENSE SHALL BE GOVERNED BY CALIFORNIA LAW PROVISIONS (EXCEPT TO THE EXTENT APPLICABLE LAW, IF ANY, PROVIDES OTHERWISE), EXCLUDING ITS CONFLICT-OF-LAW PROVISIONS. WITH RESPECT TO DISPUTES IN WHICH AT LEAST ONE PARTY IS A CITIZEN OF, OR AN ENTITY CHARTERED OR REGISTERED TO DO BUSINESS IN THE UNITED STATES OF AMERICA, ANY LITIGATION RELATING TO THIS LICENSE SHALL BE SUBJECT TO THE JURISDICTION OF THE FEDERAL COURTS OF THE NORTHERN DISTRICT OF CALIFORNIA, WITH VENUE LYING IN SANTA CLARA COUNTY, CALIFORNIA, WITH THE LOSING PARTY RESPONSIBLE FOR COSTS, INCLUDING WITHOUT LIMITATION, COURT COSTS AND REASONABLE ATTORNEYS'' FEES AND EXPENSES. THE APPLICATION OF THE UNITED NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL SALE OF GOODS IS EXPRESSLY EXCLUDED. ANY LAW OR REGULATION WHICH PROVIDES THAT THE LANGUAGE OF A CONTRACT SHALL BE CONSTRUED AGAINST THE DRAFTER SHALL NOT APPLY TO THIS LICENSE. YOU AGREE THAT YOU ALONE ARE RESPONSIBLE FOR COMPLIANCE WITH THE UNITED STATES EXPORT ADMINISTRATION REGULATIONS (AND THE EXPORT CONTROL LAWS AND REGULATIONS OF ANY OTHER COUNTRIES) WHEN YOU USE, DISTRIBUTE, OR OTHERWISE MAKE AVAILABLE ANY COVERED CODE. - -12. Responsibility for Claims - -AS BETWEEN INITIAL DEVELOPER AND THE CONTRIBUTORS, EACH PARTY IS RESPONSIBLE FOR CLAIMS AND DAMAGES ARISING, DIRECTLY OR INDIRECTLY, OUT OF ITS UTILIZATION OF RIGHTS UNDER THIS LICENSE AND YOU AGREE TO WORK WITH INITIAL DEVELOPER AND CONTRIBUTORS TO DISTRIBUTE SUCH RESPONSIBILITY ON AN EQUITABLE BASIS. NOTHING HEREIN IS INTENDED OR SHALL BE DEEMED TO CONSTITUTE ANY ADMISSION OF LIABILITY. - -13. Multiple-Licensed Code - -INITIAL DEVELOPER MAY DESIGNATE PORTIONS OF THE COVERED CODE AS "MULTIPLE-LICENSED". "MULTIPLE-LICENSED" MEANS THAT THE INITIAL DEVELOPER PERMITS YOU TO UTILIZE PORTIONS OF THE COVERED CODE UNDER YOUR CHOICE OF THE TPL OR THE ALTERNATIVE LICENSES, IF ANY, SPECIFIED BY THE INITIAL DEVELOPER IN THE FILE DESCRIBED IN EXHIBIT A. - -14. Certain Attribution Requirements - -THIS LICENSE DOES NOT GRANT ANY LICENSE OR RIGHTS TO USE THE TRADEMARKS "TERRACOTTA," ANY "TERRACOTTA" LOGOS, OR ANY OTHER TRADEMARKS OF TERRACOTTA, INC. - -HOWEVER, IN ADDITION TO THE OTHER NOTICE OBLIGATIONS, ALL COPIES OF THE COVERED CODE IN EXECUTABLE AND SOURCE CODE FORM DISTRIBUTED OR OTHERWISE MADE AVAILABLE MUST, AS A FORM OF ATTRIBUTION OF THE INITIAL DEVELOPER, INCLUDE ON EACH USER INTERFACE SCREEN (I) THE COPYRIGHT NOTICE IN THE SAME FORM AS THE LATEST VERSION OF THE COVERED CODE DISTRIBUTED OR OTHERWISE MADE AVAILABLE BY TERRACOTTA, INC. AT THE TIME OF DISTRIBUTION OR MAKING AVAILABLE OF SUCH COPY AND (II) THE FOLLOWING TEXT, WHICH MUST BE LARGE ENOUGH SO THAT IT CAN BE READ EASILY: "POWERED BY TERRACOTTA". THE COPYRIGHT NOTICE AND TEXT MUST BE VISIBLE TO ALL USERS AND BE LOCATED AT THE VERY BOTTOM AND IN THE CENTER OF EACH USER INTERFACE SCREEN. THE WORD "TERRACOTTA" MUST BE A HYPERLINK, SO THAT WHEN ANY USER ACTIVATES THE LINK (E.G., BY CLICKING ON IT WITH A MOUSE), THE USER WILL BE DIRECTED TO HTTP://WWW.TERRACOTTA.ORG. - -Exhibit A - Terracotta Public License. - -"The contents of this file are subject to the Terracotta Public License, version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.terracotta.org/TPL. - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is Terracotta, Inc. - -Portions created by ______________________ are Copyright (C) _____________________________. All Rights Reserved. - -Contributor(s): ______________________________________. - -NOTE: THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE NOTICES IN THE SOURCE CODE FILES OF THE ORIGINAL CODE. YOU SHOULD USE THE TEXT OF THIS EXHIBIT A RATHER THAN THE TEXT FOUND IN THE ORIGINAL CODE SOURCE CODE FOR YOUR MODIFICATIONS. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/terracotta.yml b/tests/licensedcode/data/more_licenses/licenses/terracotta.yml deleted file mode 100644 index f8a6fd19952..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/terracotta.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - tpl-1.0 -notes: this is a license from fossology license reference Terracotta (Terracotta Public License) - http://www.terracotta.org/legal/terracotta-public-license diff --git a/tests/licensedcode/data/more_licenses/licenses/tmate.txt b/tests/licensedcode/data/more_licenses/licenses/tmate.txt deleted file mode 100644 index c2d6a627ace..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/tmate.txt +++ /dev/null @@ -1,18 +0,0 @@ -The TMate Open Source License. - -This license applies to all portions of TMate SVNKit library, which are not externally-maintained libraries (e.g. Ganymed SSH library). - -All the source code and compiled classes in package org.tigris.subversion.javahl except SvnClient class are covered by the license in JAVAHL-LICENSE file - -Copyright (c) 2004-2012 TMate Software. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * 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. - * Redistributions in any form must be accompanied by information on how to obtain complete source code for the software that uses SVNKit and any accompanying software that uses the software that uses SVNKit. The source code must either be included in the distribution or be available for no more than the cost of distribution plus a nominal fee, and must be freely redistributable under reasonable conditions. For an executable file, complete source code means the source code for all modules it contains. It does not include source code for modules or files that typically accompany the major components of the operating system on which the executable file runs. - * Redistribution in any form without redistributing source code for software that uses SVNKit is possible only when such redistribution is explictly permitted by TMate Software. Please, contact TMate Software at support@svnkit.com to get such permission. - -THIS SOFTWARE IS PROVIDED BY TMATE SOFTWARE ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. - -IN NO EVENT SHALL TMATE SOFTWARE 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. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/tmate.yml b/tests/licensedcode/data/more_licenses/licenses/tmate.yml deleted file mode 100644 index f4daae302c4..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/tmate.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - tmate -notes: this is a license from fossology license reference TMate (TMate Open Source License) - http://svnkit.com/license.html diff --git a/tests/licensedcode/data/more_licenses/licenses/unlicense.txt b/tests/licensedcode/data/more_licenses/licenses/unlicense.txt deleted file mode 100644 index b0a72fb2d1e..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/unlicense.txt +++ /dev/null @@ -1,24 +0,0 @@ -This is free and unencumbered software released into the public domain. - -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. - -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -For more information, please refer to \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/unlicense.yml b/tests/licensedcode/data/more_licenses/licenses/unlicense.yml deleted file mode 100644 index 5b64b0294cd..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/unlicense.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - unlicense -notes: this is a license from fossology license reference Unlicense (Unlicense) http://unlicense.org/ diff --git a/tests/licensedcode/data/more_licenses/licenses/vim.txt b/tests/licensedcode/data/more_licenses/licenses/vim.txt deleted file mode 100644 index 67e9ffe9896..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/vim.txt +++ /dev/null @@ -1,78 +0,0 @@ -VIM LICENSE - -I) There are no restrictions on distributing unmodified copies of Vim except - that they must include this license text. You can also distribute - unmodified parts of Vim, likewise unrestricted except that they must - include this license text. You are also allowed to include executables - that you made from the unmodified Vim sources, plus your own usage - examples and Vim scripts. - -II) It is allowed to distribute a modified (or extended) version of Vim, - including executables and/or source code, when the following four - conditions are met: - 1) This license text must be included unmodified. - 2) The modified Vim must be distributed in one of the following five ways: - a) If you make changes to Vim yourself, you must clearly describe in - the distribution how to contact you. When the maintainer asks you - (in any way) for a copy of the modified Vim you distributed, you - must make your changes, including source code, available to the - maintainer without fee. The maintainer reserves the right to - include your changes in the official version of Vim. What the - maintainer will do with your changes and under what license they - will be distributed is negotiable. If there has been no negotiation - then this license, or a later version, also applies to your changes. - The current maintainer is Bram Moolenaar . If this - changes it will be announced in appropriate places (most likely - vim.sf.net, www.vim.org and/or comp.editors). When it is completely - impossible to contact the maintainer, the obligation to send him - your changes ceases. Once the maintainer has confirmed that he has - received your changes they will not have to be sent again. - b) If you have received a modified Vim that was distributed as - mentioned under a) you are allowed to further distribute it - unmodified, as mentioned at I). If you make additional changes the - text under a) applies to those changes. - c) Provide all the changes, including source code, with every copy of - the modified Vim you distribute. This may be done in the form of a - context diff. You can choose what license to use for new code you - add. The changes and their license must not restrict others from - making their own changes to the official version of Vim. - d) When you have a modified Vim which includes changes as mentioned - under c), you can distribute it without the source code for the - changes if the following three conditions are met: - - The license that applies to the changes permits you to distribute - the changes to the Vim maintainer without fee or restriction, and - permits the Vim maintainer to include the changes in the official - version of Vim without fee or restriction. - - You keep the changes for at least three years after last - distributing the corresponding modified Vim. When the maintainer - or someone who you distributed the modified Vim to asks you (in - any way) for the changes within this period, you must make them - available to him. - - You clearly describe in the distribution how to contact you. This - contact information must remain valid for at least three years - after last distributing the corresponding modified Vim, or as long - as possible. - e) When the GNU General Public License (GPL) applies to the changes, - you can distribute the modified Vim under the GNU GPL version 2 or - any later version. - 3) A message must be added, at least in the output of the ":version" - command and in the intro screen, such that the user of the modified Vim - is able to see that it was modified. When distributing as mentioned - under 2)e) adding the message is only required for as far as this does - not conflict with the license used for the changes. - 4) The contact information as required under 2)a) and 2)d) must not be - removed or changed, except that the person himself can make - corrections. - -III) If you distribute a modified version of Vim, you are encouraged to use - the Vim license for your changes and make them available to the - maintainer, including the source code. The preferred way to do this is - by e-mail or by uploading the files to a server and e-mailing the URL. - If the number of changes is small (e.g., a modified Makefile) e-mailing a - context diff will do. The e-mail address to be used is - - -IV) It is not allowed to remove this license from the distribution of the Vim - sources, parts of it or from a modified version. You may use this - license for previous Vim releases instead of the license that they came - with, at your option. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/vim.yml b/tests/licensedcode/data/more_licenses/licenses/vim.yml deleted file mode 100644 index c3e791e3248..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/vim.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - vim -notes: this is a license from fossology license reference VIM (VIM License) http://vimdoc.sourceforge.net/htmldoc/uganda.html#license diff --git a/tests/licensedcode/data/more_licenses/licenses/vsl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/vsl-1.0.txt deleted file mode 100644 index 6cdec82e968..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/vsl-1.0.txt +++ /dev/null @@ -1,53 +0,0 @@ -Vovida Software License v. 1.0 - -This license applies to all software incorporated in the "Vovida -Open Communication Application Library" except for those portions -incorporating third party software specifically identified as being -licensed under separate license. - -The Vovida Software License, Version 1.0 -Copyright (c) 2000 Vovida Networks, Inc. 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. The names "VOCAL", "Vovida Open Communication Application Library", -and "Vovida Open Communication Application Library (VOCAL)" must -not be used to endorse or promote products derived from this -software without prior written permission. For written -permission, please contact vocal@vovida.org. - -4. Products derived from this software may not be called "VOCAL", nor -may "VOCAL" appear in their name, without prior written -permission. - -THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND -NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA -NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DAMAGES -IN EXCESS OF $1,000, NOR FOR ANY 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. - -This software consists of voluntary contributions made by Vovida -Networks, Inc. and many individuals on behalf of Vovida Networks, -Inc. For more information on Vovida Networks, Inc., please see -http://www.vovida.org. - -All third party licenses and copyright notices and other required -legends also need to be complied with as well. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/vsl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/vsl-1.0.yml deleted file mode 100644 index 8856d296d9a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/vsl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - vsl-1.0 -notes: this is a license from fossology license reference VSL-1.0 (Vovida Software License 1.0) - http://www.opensource.org/licenses/vovidapl.php diff --git a/tests/licensedcode/data/more_licenses/licenses/wtfpl.txt b/tests/licensedcode/data/more_licenses/licenses/wtfpl.txt deleted file mode 100644 index c882ec51fa1..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/wtfpl.txt +++ /dev/null @@ -1,13 +0,0 @@ -DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - - Copyright (C) 2004 Sam Hocevar - - Everyone is permitted to copy and distribute verbatim or modified - copies of this license document, and changing it is allowed as long - as the name is changed. - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/wtfpl.yml b/tests/licensedcode/data/more_licenses/licenses/wtfpl.yml deleted file mode 100644 index c12922a0538..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/wtfpl.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - wtfpl-2.0 -notes: this is a license from fossology license reference WTFPL (Do What The F*ck You Want To - Public License) http://www.wtfpl.net/txt/copying/ diff --git a/tests/licensedcode/data/more_licenses/licenses/ypl-1.0.txt b/tests/licensedcode/data/more_licenses/licenses/ypl-1.0.txt deleted file mode 100644 index 9a4cfd5529d..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ypl-1.0.txt +++ /dev/null @@ -1,47 +0,0 @@ -Yahoo! Public License, Version 1.0 (YPL) - -This Yahoo! Public License (this "Agreement") is a legal agreement that describes the terms under which Yahoo! Inc., a Delaware corporation having its principal place of business at 701 First Avenue, Sunnyvale, California 94089 ("Yahoo!") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. - -In consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows: - -1. Grant of Copyright License - -1.1 - Subject to the terms and conditions of this Agreement, Yahoo! hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a "Modification;" however, any file You add to the Software that does not contain any part of the Software is not a "Modification." - -1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement. - -1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to Yahoo! with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You "stand in the shoes" of Yahoo! in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of Yahoo!, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of northern California. - -1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by Yahoo!, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by Yahoo! under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3. - -1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose. - -2. Support -Yahoo! has no obligation to provide technical support or updates to You. Nothing in this Agreement requires Yahoo! to enter into any license with You for any other edition of the Software. - -3. Intellectual Property Rights - -3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved. - -3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce, any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software. - -3.3 - This license does not grant You rights to use any party''s name, logo, or trademarks, except solely as necessary to comply with Section 3.2. - -4. Disclaimer of Warranties -THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. YAHOO! MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, YAHOO! SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. - -5. Limitation of Liability -IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -6. Term and Termination - -6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6. - -6.2 - In the event Yahoo! determines that You have breached this Agreement, Yahoo! may terminate this Agreement. - -6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to Yahoo! at law or equity or under this Agreement. - -6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting Yahoo!''s liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section 7), which provisions will survive termination of this Agreement. - -7. Miscellaneous -This Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of California and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving Yahoo! or any of its subsidiaries shall be subject to the jurisdiction of the federal or state courts of northern California, with venue lying in Santa Clara County, California. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger or consolidation, without the prior written consent of Yahoo!, and any purported assignment, delegation or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party''s rights or remedies under this Agreement must be in writing to be effective. Failure, neglect or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time, will not be construed or be deemed to be a waiver of such party''s rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party''s right to take subsequent action. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ypl-1.0.yml b/tests/licensedcode/data/more_licenses/licenses/ypl-1.0.yml deleted file mode 100644 index cfa36f84e7a..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ypl-1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ypl-1.0 -notes: this is a license from fossology license reference YPL-1.0 (Yahoo! Public License v1.0) - https://www.zimbra.com/license/yahoo_public_license_1.0.html diff --git a/tests/licensedcode/data/more_licenses/licenses/ypl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/ypl-1.1.txt deleted file mode 100644 index 4c0c91489fa..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ypl-1.1.txt +++ /dev/null @@ -1,35 +0,0 @@ -Yahoo! Public License, Version 1.1 (YPL) - -This Yahoo! Public License (this "Agreement") is a legal agreement that describes the terms under which Yahoo! Inc., a Delaware corporation having its principal place of business at 701 First Avenue, Sunnyvale, California 94089 ("Yahoo!") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. - -In consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows: - -1. Grant of Copyright License -1.1 - Subject to the terms and conditions of this Agreement, Yahoo! hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a "Modification;" however, any file You add to the Software that does not contain any part of the Software is not a "Modification." -1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement. -1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to Yahoo! with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You "stand in the shoes" of Yahoo! in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of Yahoo!, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of northern California. -1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by Yahoo!, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by Yahoo! under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3. -1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose. - -2. Support -Yahoo! has no obligation to provide technical support or updates to You. Nothing in this Agreement requires Yahoo! to enter into any license with You for any other edition of the Software. - -3. Intellectual Property Rights -3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved. -3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce, any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software. -3.3 - This license does not grant You rights to use any party''s name, logo, or trademarks, except solely as necessary to comply with Section 3.2. - -4. Disclaimer of Warranties -THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. YAHOO! MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, YAHOO! SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. - -5. Limitation of Liability -IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -6. Term and Termination -6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6. -6.2 - In the event You violate the terms of this Agreement, Yahoo! may terminate this Agreement. -6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to Yahoo! at law or equity or under this Agreement. -6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting Yahoo!''s liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section 7), which provisions will survive termination of this Agreement. - -7. Miscellaneous -This Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of California and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving Yahoo! or any of its subsidiaries shall be subject to the jurisdiction of the federal or state courts of northern California, with venue lying in Santa Clara County, California. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger or consolidation, without the prior written consent of Yahoo!, and any purported assignment, delegation or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party''s rights or remedies under this Agreement must be in writing to be effective. Failure, neglect or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time, will not be construed or be deemed to be a waiver of such party''s rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party''s right to take subsequent action. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/ypl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/ypl-1.1.yml deleted file mode 100644 index d0d0fea8eff..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/ypl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - ypl-1.1 -notes: this is a license from fossology license reference YPL-1.1 (Yahoo! Public License v1.1) - http://www.zimbra.com/license/yahoo_public_license_1.1.html diff --git a/tests/licensedcode/data/more_licenses/licenses/zimbra-1.3.txt b/tests/licensedcode/data/more_licenses/licenses/zimbra-1.3.txt deleted file mode 100644 index 6280c1994b0..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/zimbra-1.3.txt +++ /dev/null @@ -1,35 +0,0 @@ -Zimbra Public License, Version 1.3 (ZPL) - -This Zimbra Public License (this "Agreement") is a legal agreement that describes the terms under which VMware, Inc., a Delaware corporation having its principal place of business at 3401 Hillview Avenue, Palo Alto, California 94304 ("VMware") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. - -In consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows: - -1. Grant of Copyright License -1.1 - Subject to the terms and conditions of this Agreement, VMware hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a "Modification;" however, any file You add to the Software that does not contain any part of the Software is not a "Modification." -1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement. -1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to VMware with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You "stand in the shoes" of VMware in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of VMware, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of northern California. -1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by VMware, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by VMware under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3. -1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose. - -2. Support -VMware has no obligation to provide technical support or updates to You. Nothing in this Agreement requires VMware to enter into any license with You for any other edition of the Software. - -3. Intellectual Property Rights -3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved. -3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce, any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software. -3.3 - This license does not grant You rights to use any party''s name, logo, or trademarks, except solely as necessary to comply with Section 3.2. - -4. Disclaimer of Warranties -THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. VMWARE MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, VMWARE DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, VMWARE SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF VMWARE HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. - -5. Limitation of Liability -IN NO EVENT WILL VMWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF VMWARE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -6. Term and Termination -6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6. -6.2 - In the event You violate the terms of this Agreement, VMware may terminate this Agreement. -6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to VMware at law or equity or under this Agreement. -6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting VMware''s liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section 7), which provisions will survive termination of this Agreement. - -7. Miscellaneous -This Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of California and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving VMware or any of its subsidiaries shall be subject to the jurisdiction of the federal or state courts of northern California, with venue lying in Santa Clara County, California. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger or consolidation, without the prior written consent of VMware, and any purported assignment, delegation or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party''s rights or remedies under this Agreement must be in writing to be effective. Failure, neglect or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time, will not be construed or be deemed to be a waiver of such party''s rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party''s right to take subsequent action. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/zimbra-1.3.yml b/tests/licensedcode/data/more_licenses/licenses/zimbra-1.3.yml deleted file mode 100644 index b78fe14d5ab..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/zimbra-1.3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - zimbra-1.3 -notes: this is a license from fossology license reference Zimbra-1.3 (Zimbra Public License - v1.3) http://www.zimbra.com/license/zimbra-public-license-1-3.html diff --git a/tests/licensedcode/data/more_licenses/licenses/zpl-1.1.txt b/tests/licensedcode/data/more_licenses/licenses/zpl-1.1.txt deleted file mode 100644 index 96c956d282c..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/zpl-1.1.txt +++ /dev/null @@ -1,26 +0,0 @@ -Zope Public License (ZPL) Version 1.1 - -Copyright (c) Zope Corporation. All rights reserved. - -This license has been certified as open source. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions in source code must retain the above copyright notice, this list of conditions, and the following disclaimer. -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. -All advertising materials and documentation mentioning features derived from or use of this software must display the following acknowledgement: -"This product includes software developed by Zope Corporation for use in the Z Object Publishing Environment (http://www.zope.com/)." - -In the event that the product being advertised includes an intact Zope distribution (with copyright and license included) then this clause is waived. - -Names associated with Zope or Zope Corporation must not be used to endorse or promote products derived from this software without prior written permission from Zope Corporation. -Modified redistributions of any form whatsoever must retain the following acknowledgment: -"This product includes software developed by Zope Corporation for use in the Z Object Publishing Environment (http://www.zope.com/)." - -Intact (re-)distributions of any official Zope release do not require an external acknowledgement. - -Modifications are encouraged but must be packaged separately as patches to official Zope releases. Distributions that do not clearly separate the patches from the original work must be clearly labeled as unofficial distributions. Modifications which do not carry the name Zope may be packaged in any form, as long as they conform to all of the clauses above. -Disclaimer -THIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS'''' AND ANY EXPRESSED 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 ZOPE CORPORATION OR ITS 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. - -This software consists of contributions made by Zope Corporation and many individuals on behalf of Zope Corporation. Specific attributions are listed in the accompanying credits file. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/licenses/zpl-1.1.yml b/tests/licensedcode/data/more_licenses/licenses/zpl-1.1.yml deleted file mode 100644 index 2c85f77508f..00000000000 --- a/tests/licensedcode/data/more_licenses/licenses/zpl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expressions: - - zpl-1.1 -notes: this is a license from fossology license reference ZPL-1.1 (Zope Public License 1.1) - http://www.zope.org/Resources/License/ZPL-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-1.1.txt deleted file mode 100644 index 8b9bab5e263..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-1.1.txt +++ /dev/null @@ -1,82 +0,0 @@ -Academic Free License - Version 1.1 - -The Academic Free License applies to any original work of authorship -(the "Original Work") whose owner (the "Licensor") has placed the -following notice immediately following the copyright notice for the -Original Work: "Licensed under the Academic Free License version 1.1." - -Grant of License. Licensor hereby grants to any person obtaining a -copy of the Original Work ("You") a world-wide, royalty-free, -non-exclusive, perpetual, non-sublicenseable license (1) to use, copy, -modify, merge, publish, perform, distribute and/or sell copies of the -Original Work and derivative works thereof, and (2) under patent -claims owned or controlled by the Licensor that are embodied in the -Original Work as furnished by the Licensor, to make, use, sell and -offer for sale the Original Work and derivative works thereof, subject -to the following conditions. - -Right of Attribution. Redistributions of the Original Work must -reproduce all copyright notices in the Original Work as furnished by -the Licensor, both in the Original Work itself and in any - documentation and/or other materials provided with the distribution of -the Original Work in executable form. - -Exclusions from License Grant. Neither the names of Licensor, nor the -names of any contributors to the Original Work, nor any of their -trademarks or service marks, may be used to endorse or promote -products derived from this Original Work without express prior written -permission of the Licensor. - -WARRANTY AND DISCLAIMERS. LICENSOR WARRANTS THAT THE COPYRIGHT IN AND - TO THE ORIGINAL WORK IS OWNED BY THE LICENSOR OR THAT THE ORIGINAL -WORK IS DISTRIBUTED BY LICENSOR UNDER A VALID CURRENT LICENSE FROM THE - COPYRIGHT OWNER. EXCEPT AS EXPRESSLY STATED IN THE IMMEDIATELY -PRECEEDING SENTENCE, THE ORIGINAL WORK IS PROVIDED UNDER THIS LICENSE -ON AN "AS IS" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR IMPLIED, -INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF NON-INFRINGEMENT AND -WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE OR FIT FOR A -PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL -WORK IS WITH YOU. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL -PART OF THIS LICENSE. NO LICENSE TO ORIGINAL WORK IS GRANTED HEREUNDER -EXCEPT UNDER THIS DISCLAIMER. - -LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL -THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, -SHALL THE LICENSOR BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, -SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING -AS A RESULT OF THIS LICENSE OR THE USE OF THE ORIGINAL WORK INCLUDING, -WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, -COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL -DAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN INFORMED OF THE -POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT - APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH -PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH -LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR -LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION -AND LIMITATION MAY NOT APPLY TO YOU. - -License to Source Code. The term "Source Code" means the preferred -form of the Original Work for making modifications to it and all - available documentation describing how to access and modify the - Original Work. Licensor hereby agrees to provide a machine-readable -copy of the Source Code of the Original Work along with each copy of -the Original Work that Licensor distributes. Licensor reserves the -right to satisfy this obligation by placing a machine-readable copy of -the Source Code in an information repository reasonably calculated to -permit inexpensive and convenient access by You for as long as -Licensor continues to distribute the Original Work, and by publishing - the address of that information repository in a notice immediately -following the copyright notice that applies to the Original Work. - -Mutual Termination for Patent Action. This License shall terminate -automatically and You may no longer exercise any of the rights granted -to You by this License if You file a lawsuit in any court alleging -that any OSI Certified open source software that is licensed under any -license containing this "Mutual Termination for Patent Action" clause -infringes any patent claims that are essential to use that software. - -This license is Copyright (C) 2002 Lawrence E. Rosen. All rights -reserved. Permission is hereby granted to copy and distribute this -license without modification. This license may not be modified without -the express written permission of its copyright owner. diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-1.1.yml deleted file mode 100644 index 4e3b32e6c83..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - afl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.0.txt deleted file mode 100644 index 4cbb49c5e94..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.0.txt +++ /dev/null @@ -1,47 +0,0 @@ -The Academic Free License - v. 2.0 - - This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: -Licensed under the Academic Free License version 2.0 - -1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: - - a) to reproduce the Original Work in copies; - - b) to prepare derivative works ("Derivative Works") based upon the Original Work; - - c) to distribute copies of the Original Work and Derivative Works to the public; - - d) to perform the Original Work publicly; and - - e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. - -5) This section intentionally omitted. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, for patent infringement (i) against Licensor with respect to a patent applicable to software or (ii) against any entity with respect to a patent applicable to the Original Work (but excluding combinations of the Original Work with other software or hardware). - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. ¤ 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2003 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.0.yml deleted file mode 100644 index 94cdb7bf987..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - afl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.1.txt b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.1.txt deleted file mode 100644 index 0fcee6824ad..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.1.txt +++ /dev/null @@ -1,48 +0,0 @@ -The Academic Free License -v.2.1 - -This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: - -Licensed under the Academic Free License version 2.1 - -1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: - - a) to reproduce the Original Work in copies; - - b) to prepare derivative works ("Derivative Works") based upon the Original Work; - - c) to distribute copies of the Original Work and Derivative Works to the public; - - d) to perform the Original Work publicly; and - - e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. - -5) This section intentionally omitted. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - - 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.1.yml b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.1.yml deleted file mode 100644 index eb8c59279d6..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - afl-2.1 diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-3.0.txt b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-3.0.txt deleted file mode 100644 index e3aaff1d42b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-3.0.txt +++ /dev/null @@ -1,46 +0,0 @@ -Academic Free License (“AFL”) v. 3.0 - -This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: -Licensed under the Academic Free License version 3.0 - -1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: - - a) to reproduce the Original Work in copies, either alone or as part of a collective work; - - b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; - - c) to distribute or communicate copies of the Original Work and Derivative Works to the public, under any license of your choice that does not contradict the terms and conditions, including Licensor’s reserved rights and remedies, in this Academic Free License; - - d) to perform the Original Work publicly; and - - e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. - - 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor’s trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. - -9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including “fair use” or “fair dealing”). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. - -12) Attorneys’ Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. diff --git a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-3.0.yml b/tests/licensedcode/data/more_licenses/tests/AFL/AFL-3.0.yml deleted file mode 100644 index 27714f08aa5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AFL/AFL-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - afl-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/AGPL/AGPL-3.0.txt b/tests/licensedcode/data/more_licenses/tests/AGPL/AGPL-3.0.txt deleted file mode 100644 index 177328168b4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AGPL/AGPL-3.0.txt +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/tests/licensedcode/data/more_licenses/tests/AGPL/AGPL-3.0.yml b/tests/licensedcode/data/more_licenses/tests/AGPL/AGPL-3.0.yml deleted file mode 100644 index 3143a7b48bb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/AGPL/AGPL-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - agpl-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Abstyles/Abstyles.txt b/tests/licensedcode/data/more_licenses/tests/Abstyles/Abstyles.txt deleted file mode 100644 index 074da52e409..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Abstyles/Abstyles.txt +++ /dev/null @@ -1,11 +0,0 @@ -This is APREAMBL.TEX, version 1.10e, written by Hans-Hermann Bode -(HHBODE@DOSUNI1.BITNET), for the BibTeX `adaptable' family, version 1.10. -See the file APREAMBL.DOC for a detailed documentation. - -This program is distributed WITHOUT ANY WARRANTY, express or implied. - -Copyright (C) 1991, 1992 Hans-Hermann Bode - -Permission is granted to make and distribute verbatim copies of this document provided that the copyright notice and this permission notice are preserved on all copies. - -Permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. diff --git a/tests/licensedcode/data/more_licenses/tests/Abstyles/Abstyles.yml b/tests/licensedcode/data/more_licenses/tests/Abstyles/Abstyles.yml deleted file mode 100644 index 749e96aaaef..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Abstyles/Abstyles.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - abstyles diff --git a/tests/licensedcode/data/more_licenses/tests/Adobe/Adobe_b.txt b/tests/licensedcode/data/more_licenses/tests/Adobe/Adobe_b.txt deleted file mode 100644 index 3ce6f97dd4d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Adobe/Adobe_b.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright 1984-1989, 1994 Adobe Systems Incorporated. -Copyright 1988, 1994 Digital Equipment Corporation. - -Adobe is a trademark of Adobe Systems Incorporated which may be -registered in certain jurisdictions. -Permission to use these trademarks is hereby granted only in -association with the images described in this file. - -Permission to use, copy, modify, distribute and sell this software -and its documentation for any purpose and without fee is hereby -granted, provided that the above copyright notices appear in all -copies and that both those copyright notices and this permission -notice appear in supporting documentation, and that the names of -Adobe Systems and Digital Equipment Corporation not be used in -advertising or publicity pertaining to distribution of the software -without specific, written prior permission. Adobe Systems and -Digital Equipment Corporation make no representations about the -suitability of this software for any purpose. It is provided "as -is" without express or implied warranty. diff --git a/tests/licensedcode/data/more_licenses/tests/Adobe/Adobe_b.yml b/tests/licensedcode/data/more_licenses/tests/Adobe/Adobe_b.yml deleted file mode 100644 index f496fedd9dc..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Adobe/Adobe_b.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - x11-adobe-dec diff --git a/tests/licensedcode/data/more_licenses/tests/Aladdin/Aladdin.txt b/tests/licensedcode/data/more_licenses/tests/Aladdin/Aladdin.txt deleted file mode 100644 index 6248b610732..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Aladdin/Aladdin.txt +++ /dev/null @@ -1,78 +0,0 @@ -Aladdin Free Public License -(Version 8, November 18, 1999) - -Copyright (C) 1994, 1995, 1997, 1998, 1999 Aladdin Enterprises, -Menlo Park, California, U.S.A. All rights reserved. - - NOTE: This License is not the same as any of the GNU Licenses published by the Free Software Foundation. Its terms are substantially different from those of the GNU Licenses. If you are familiar with the GNU Licenses, please read this license with extra care. - -Aladdin Enterprises hereby grants to anyone the permission to apply this License to their own work, as long as the entire License (including the above notices and this paragraph) is copied with no changes, additions, or deletions except for changing the first paragraph of Section 0 to include a suitable description of the work to which the license is being applied and of the person or entity that holds the copyright in the work, and, if the License is being applied to a work created in a country other than the United States, replacing the first paragraph of Section 6 with an appropriate reference to the laws of the appropriate country. -0. Subject Matter - -This License applies to the computer program known as "Aladdin Ghostscript." The "Program", below, refers to such program. The Program is a copyrighted work whose copyright is held by Aladdin Enterprises (the "Licensor"). Please note that Aladdin Ghostscript is neither the program known as "GNU Ghostscript" nor the version of Ghostscript available for commercial licensing from Artifex Software Inc. - -A "work based on the Program" means either the Program or any derivative work of the Program, as defined in the United States Copyright Act of 1976, such as a translation or a modification. - -BY MODIFYING OR DISTRIBUTING THE PROGRAM (OR ANY WORK BASED ON THE PROGRAM), YOU INDICATE YOUR ACCEPTANCE OF THIS LICENSE TO DO SO, AND ALL ITS TERMS AND CONDITIONS FOR COPYING, DISTRIBUTING OR MODIFYING THE PROGRAM OR WORKS BASED ON IT. NOTHING OTHER THAN THIS LICENSE GRANTS YOU PERMISSION TO MODIFY OR DISTRIBUTE THE PROGRAM OR ITS DERIVATIVE WORKS. THESE ACTIONS ARE PROHIBITED BY LAW. IF YOU DO NOT ACCEPT THESE TERMS AND CONDITIONS, DO NOT MODIFY OR DISTRIBUTE THE PROGRAM. -1. Licenses. - -Licensor hereby grants you the following rights, provided that you comply with all of the restrictions set forth in this License and provided, further, that you distribute an unmodified copy of this License with the Program: - -(a) - You may copy and distribute literal (i.e., verbatim) copies of the Program's source code as you receive it throughout the world, in any medium. -(b) - You may modify the Program, create works based on the Program and distribute copies of such throughout the world, in any medium. - -2. Restrictions. - -This license is subject to the following restrictions: - -(a) - Distribution of the Program or any work based on the Program by a commercial organization to any third party is prohibited if any payment is made in connection with such distribution, whether directly (as in payment for a copy of the Program) or indirectly (as in payment for some service related to the Program, or payment for some product or service that includes a copy of the Program "without charge"; these are only examples, and not an exhaustive enumeration of prohibited activities). The following methods of distribution involving payment shall not in and of themselves be a violation of this restriction: - - (i) - Posting the Program on a public access information storage and retrieval service for which a fee is received for retrieving information (such as an on-line service), provided that the fee is not content-dependent (i.e., the fee would be the same for retrieving the same volume of information consisting of random data) and that access to the service and to the Program is available independent of any other product or service. An example of a service that does not fall under this section is an on-line service that is operated by a company and that is only available to customers of that company. (This is not an exhaustive enumeration.) - (ii) - Distributing the Program on removable computer-readable media, provided that the files containing the Program are reproduced entirely and verbatim on such media, that all information on such media be redistributable for non-commercial purposes without charge, and that such media are distributed by themselves (except for accompanying documentation) independent of any other product or service. Examples of such media include CD-ROM, magnetic tape, and optical storage media. (This is not intended to be an exhaustive list.) An example of a distribution that does not fall under this section is a CD-ROM included in a book or magazine. (This is not an exhaustive enumeration.) - -(b) - Activities other than copying, distribution and modification of the Program are not subject to this License and they are outside its scope. Functional use (running) of the Program is not restricted, and any output produced through the use of the Program is subject to this license only if its contents constitute a work based on the Program (independent of having been made by running the Program). -(c) - You must meet all of the following conditions with respect to any work that you distribute or publish that in whole or in part contains or is derived from the Program or any part thereof ("the Work"): - - (i) - If you have modified the Program, you must cause the Work to carry prominent notices stating that you have modified the Program's files and the date of any change. In each source file that you have modified, you must include a prominent notice that you have modified the file, including your name, your e-mail address (if any), and the date and purpose of the change; - (ii) - You must cause the Work to be licensed as a whole and at no charge to all third parties under the terms of this License; - (iii) - If the Work normally reads commands interactively when run, you must cause it, at each time the Work commences operation, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty). Such notice must also state that users may redistribute the Work only under the conditions of this License and tell the user how to view the copy of this License included with the Work. (Exceptions: if the Program is interactive but normally prints or displays such an announcement only at the request of a user, such as in an "About box", the Work is required to print or display the notice only under the same circumstances; if the Program itself is interactive but does not normally print such an announcement, the Work is not required to print an announcement.); - (iv) - You must accompany the Work with the complete corresponding machine-readable source code, delivered on a medium customarily used for software interchange. The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable code. If you distribute with the Work any component that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, you must also distribute the source code of that component if you have it and are allowed to do so; - (v) - If you distribute any written or printed material at all with the Work, such material must include either a written copy of this License, or a prominent written indication that the Work is covered by this License and written instructions for printing and/or displaying the copy of the License on the distribution medium; - (vi) - You may not impose any further restrictions on the recipient's exercise of the rights granted herein. - -If distribution of executable or object code is made by offering the equivalent ability to copy from a designated place, then offering equivalent ability to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source code along with the object code. -3. Reservation of Rights. - -No rights are granted to the Program except as expressly set forth herein. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. -4. Other Restrictions. - -If the distribution and/or use of the Program is restricted in certain countries for any reason, Licensor may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. -5. Limitations. - -THE PROGRAM IS PROVIDED TO YOU "AS IS," WITHOUT WARRANTY. THERE IS NO WARRANTY FOR THE PROGRAM, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL LICENSOR, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -6. General. - -This License is governed by the laws of the State of California, U.S.A., excluding choice of law rules. - -If any part of this License is found to be in conflict with the law, that part shall be interpreted in its broadest meaning consistent with the law, and no other parts of the License shall be affected. - -For United States Government users, the Program is provided with RESTRICTED RIGHTS. If you are a unit or agency of the United States Government or are acquiring the Program for any such unit or agency, the following apply: - - If the unit or agency is the Department of Defense ("DOD"), the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to DFAR Section 227.7202, the Government is acquiring the Program and its documentation in accordance with the terms of this License. If the unit or agency is other than DOD, the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to FAR Section 12.212, the Government is acquiring the Program and its documentation in accordance with the terms of this License. - - diff --git a/tests/licensedcode/data/more_licenses/tests/Aladdin/Aladdin.yml b/tests/licensedcode/data/more_licenses/tests/Aladdin/Aladdin.yml deleted file mode 100644 index 36604307fe3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Aladdin/Aladdin.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - afpl-8.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-1.1.txt b/tests/licensedcode/data/more_licenses/tests/Apache/Apache-1.1.txt deleted file mode 100644 index a439840478c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-1.1.txt +++ /dev/null @@ -1,25 +0,0 @@ -The Apache Software License, Version 1.1 - -Copyright (c) 2000 The Apache Software Foundation. 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. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: - "This product includes software developed by the Apache Software Foundation (http://www.apache.org/)." - Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. - -4. The names "Apache" and "Apache Software Foundation" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact apache@apache.org. - -5. Products derived from this software may not be called "Apache", nor may "Apache" appear in their name, without prior written permission of the Apache Software Foundation. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR ITS 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. - -This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache Software Foundation, please see http://www.apache.org/. Portions of this software are based upon public domain software originally written at the National Center for Supercomputing Applications, University of Illinois, Urbana-Champaign. diff --git a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-1.1.yml b/tests/licensedcode/data/more_licenses/tests/Apache/Apache-1.1.yml deleted file mode 100644 index 038bd3effd3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 AND public-domain diff --git a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-2.0_1.txt b/tests/licensedcode/data/more_licenses/tests/Apache/Apache-2.0_1.txt deleted file mode 100644 index 56e5c329bd3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-2.0_1.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-2.0_1.yml b/tests/licensedcode/data/more_licenses/tests/Apache/Apache-2.0_1.yml deleted file mode 100644 index a9e02b1a85a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Apache/Apache-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0-Perl.txt b/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0-Perl.txt deleted file mode 100644 index 16e9ae603d3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0-Perl.txt +++ /dev/null @@ -1,57 +0,0 @@ -The "Artistic License" - -Preamble - -The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. - -Definitions: - -"Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. - -"Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder as specified below. - -"Copyright Holder" is whoever is named in the copyright or copyrights for the package. - -"You" is you, if you're thinking about copying or distributing this Package. - -"Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - -"Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as uunet.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. - - b) accompany the distribution with the machine-readable source of the Package with your modifications. - - c) give non-standard executables non-standard names, and clearly document the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. You may embed this Package's interpreter within an executable of yours (by linking); this shall be construed as a mere form of aggregation, provided that the complete Standard Version of the interpreter is so embedded. - -6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whoever generated them, and may be sold commercially, and may be aggregated with this Package. If such scripts or library files are aggregated with this Package via the so-called "undump" or "unexec" methods of producing a binary executable image, then distribution of such an image shall neither be construed as a distribution of this Package nor shall it fall under the restrictions of Paragraphs 3 and 4, provided that you do not represent such an executable image as a Standard Version of this Package. - -7. C subroutines (or comparably compiled subroutines in other languages) supplied by you and linked into this Package in order to emulate subroutines and variables of the language defined by this Package shall not be considered part of this Package, but are the equivalent of input as in Paragraph 6, provided these subroutines do not change the language in any way that would cause it to fail the regression tests for the language. - -8. Aggregation of this Package with a commercial distribution is always permitted provided that the use of this Package is embedded; that is, when no overt attempt is made to make this Package's interfaces visible to the end user of the commercial distribution. Such use shall not be construed as a distribution of this Package. - -9. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. - -10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End diff --git a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0-Perl.yml b/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0-Perl.yml deleted file mode 100644 index 07c75800fff..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0-Perl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-perl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0.txt b/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0.txt deleted file mode 100644 index 320e227f538..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0.txt +++ /dev/null @@ -1,48 +0,0 @@ -The Artistic License -Preamble - -The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. - -Definitions: - -"Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. -"Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. -"Copyright Holder" is whoever is named in the copyright or copyrights for the package. -"You" is you, if you're thinking about copying or distributing this Package. -"Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) -"Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. -1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: - -a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. - -b) use the modified Package only within your corporation or organization. - -c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: - -a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. - -b) accompany the distribution with the machine-readable source of the Package with your modifications. - -c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End diff --git a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0.yml b/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0.yml deleted file mode 100644 index 95009bc6926..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-2.0.txt b/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-2.0.txt deleted file mode 100644 index 0f9deeb4da0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-2.0.txt +++ /dev/null @@ -1,201 +0,0 @@ - The Artistic License 2.0 - - Copyright (c) 2000-2006, The Perl Foundation. - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -Preamble - -This license establishes the terms under which a given free software -Package may be copied, modified, distributed, and/or redistributed. -The intent is that the Copyright Holder maintains some artistic -control over the development of that Package while still keeping the -Package available as open source and free software. - -You are always permitted to make arrangements wholly outside of this -license directly with the Copyright Holder of a given Package. If the -terms of this license do not permit the full use that you propose to -make of the Package, you should contact the Copyright Holder and seek -a different licensing arrangement. - -Definitions - - "Copyright Holder" means the individual(s) or organization(s) - named in the copyright notice for the entire Package. - - "Contributor" means any party that has contributed code or other - material to the Package, in accordance with the Copyright Holder's - procedures. - - "You" and "your" means any person who would like to copy, - distribute, or modify the Package. - - "Package" means the collection of files distributed by the - Copyright Holder, and derivatives of that collection and/or of - those files. A given Package may consist of either the Standard - Version, or a Modified Version. - - "Distribute" means providing a copy of the Package or making it - accessible to anyone else, or in the case of a company or - organization, to others outside of your company or organization. - - "Distributor Fee" means any fee that you charge for Distributing - this Package or providing support for this Package to another - party. It does not mean licensing fees. - - "Standard Version" refers to the Package if it has not been - modified, or has been modified only in ways explicitly requested - by the Copyright Holder. - - "Modified Version" means the Package, if it has been changed, and - such changes were not explicitly requested by the Copyright - Holder. - - "Original License" means this Artistic License as Distributed with - the Standard Version of the Package, in its current version or as - it may be modified by The Perl Foundation in the future. - - "Source" form means the source code, documentation source, and - configuration files for the Package. - - "Compiled" form means the compiled bytecode, object code, binary, - or any other form resulting from mechanical transformation or - translation of the Source form. - - -Permission for Use and Modification Without Distribution - -(1) You are permitted to use the Standard Version and create and use -Modified Versions for any purpose without restriction, provided that -you do not Distribute the Modified Version. - - -Permissions for Redistribution of the Standard Version - -(2) You may Distribute verbatim copies of the Source form of the -Standard Version of this Package in any medium without restriction, -either gratis or for a Distributor Fee, provided that you duplicate -all of the original copyright notices and associated disclaimers. At -your discretion, such verbatim copies may or may not include a -Compiled form of the Package. - -(3) You may apply any bug fixes, portability changes, and other -modifications made available from the Copyright Holder. The resulting -Package will still be considered the Standard Version, and as such -will be subject to the Original License. - - -Distribution of Modified Versions of the Package as Source - -(4) You may Distribute your Modified Version as Source (either gratis -or for a Distributor Fee, and with or without a Compiled form of the -Modified Version) provided that you clearly document how it differs -from the Standard Version, including, but not limited to, documenting -any non-standard features, executables, or modules, and provided that -you do at least ONE of the following: - - (a) make the Modified Version available to the Copyright Holder - of the Standard Version, under the Original License, so that the - Copyright Holder may include your modifications in the Standard - Version. - - (b) ensure that installation of your Modified Version does not - prevent the user installing or running the Standard Version. In - addition, the Modified Version must bear a name that is different - from the name of the Standard Version. - - (c) allow anyone who receives a copy of the Modified Version to - make the Source form of the Modified Version available to others - under - - (i) the Original License or - - (ii) a license that permits the licensee to freely copy, - modify and redistribute the Modified Version using the same - licensing terms that apply to the copy that the licensee - received, and requires that the Source form of the Modified - Version, and of any works derived from it, be made freely - available in that license fees are prohibited but Distributor - Fees are allowed. - - -Distribution of Compiled Forms of the Standard Version -or Modified Versions without the Source - -(5) You may Distribute Compiled forms of the Standard Version without -the Source, provided that you include complete instructions on how to -get the Source of the Standard Version. Such instructions must be -valid at the time of your distribution. If these instructions, at any -time while you are carrying out such distribution, become invalid, you -must provide new instructions on demand or cease further distribution. -If you provide valid instructions or cease distribution within thirty -days after you become aware that the instructions are invalid, then -you do not forfeit any of your rights under this license. - -(6) You may Distribute a Modified Version in Compiled form without -the Source, provided that you comply with Section 4 with respect to -the Source of the Modified Version. - - -Aggregating or Linking the Package - -(7) You may aggregate the Package (either the Standard Version or -Modified Version) with other packages and Distribute the resulting -aggregation provided that you do not charge a licensing fee for the -Package. Distributor Fees are permitted, and licensing fees for other -components in the aggregation are permitted. The terms of this license -apply to the use and Distribution of the Standard or Modified Versions -as included in the aggregation. - -(8) You are permitted to link Modified and Standard Versions with -other works, to embed the Package in a larger work of your own, or to -build stand-alone binary or bytecode versions of applications that -include the Package, and Distribute the result without restriction, -provided the result does not expose a direct interface to the Package. - - -Items That are Not Considered Part of a Modified Version - -(9) Works (including, but not limited to, modules and scripts) that -merely extend or make use of the Package, do not, by themselves, cause -the Package to be a Modified Version. In addition, such works are not -considered parts of the Package itself, and are not subject to the -terms of this license. - - -General Provisions - -(10) Any use, modification, and distribution of the Standard or -Modified Versions is governed by this Artistic License. By using, -modifying or distributing the Package, you accept this license. Do not -use, modify, or distribute the Package, if you do not accept this -license. - -(11) If your Modified Version has been derived from a Modified -Version made by someone other than you, you are nevertheless required -to ensure that your Modified Version complies with the requirements of -this license. - -(12) This license does not grant you the right to use any trademark, -service mark, tradename, or logo of the Copyright Holder. - -(13) This license includes the non-exclusive, worldwide, -free-of-charge patent license to make, have made, use, offer to sell, -sell, import and otherwise transfer the Package with respect to any -patent claims licensable by the Copyright Holder that are necessarily -infringed by the Package. If you institute patent litigation -(including a cross-claim or counterclaim) against any party alleging -that the Package constitutes direct or contributory patent -infringement, then this Artistic License to you shall terminate on the -date that such litigation is filed. - -(14) Disclaimer of Warranty: -THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS -IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR -NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL -LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-2.0.yml b/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-2.0.yml deleted file mode 100644 index 1770f2f4a30..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Artistic/Artistic-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD-2-Clause-FreeBSD.txt b/tests/licensedcode/data/more_licenses/tests/BSD/BSD-2-Clause-FreeBSD.txt deleted file mode 100644 index b7328874e21..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD-2-Clause-FreeBSD.txt +++ /dev/null @@ -1,12 +0,0 @@ -The FreeBSD Copyright - -Copyright 1992-2012 The FreeBSD Project. 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. - -THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``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 FREEBSD PROJECT 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. -The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD-2-Clause-FreeBSD.yml b/tests/licensedcode/data/more_licenses/tests/BSD/BSD-2-Clause-FreeBSD.yml deleted file mode 100644 index b3e441085b2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD-2-Clause-FreeBSD.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-2-clause-freebsd diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_aa.yml b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_aa.yml index b338331db09..7e57df66a52 100644 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_aa.yml +++ b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_aa.yml @@ -1,3 +1,3 @@ license_expressions: - - ntpl + - mit-old-style-no-advert - public-domain diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_x.txt b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_x.txt deleted file mode 100644 index 0d910e3f0ff..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_x.txt +++ /dev/null @@ -1,33 +0,0 @@ -Copyright © . All rights reserved. - - is distributed subject to the following license conditions: -SOFTWARE LICENSE AGREEMENT -Software: - - 1. - - The "Software", below, refers to (in either source code, or binary form and accompanying documentation). Each licensee is addressed as "you" or "Licensee." - 2. - - The copyright holders shown above and their third-party licensors hereby grant Licensee a royalty-free nonexclusive license, subject to the limitations stated herein and U.S. Government license rights. - 3. - - You may modify and make a copy or copies of the Software for use within your organization, if you meet the following conditions: - 1. Copies in source code must include the copyright notice and this Software License Agreement. - 2. Copies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy. - 4. - - You may modify a copy or copies of the Software or any portion of it, thus forming a work based on the Software, and distribute copies of such work outside your organization, if you meet all of the following conditions: - 1. Copies in source code must include the copyright notice and this Software License Agreement; - 2. Copies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy; - 3. Modified copies and works based on the Software must carry prominent notices stating that you changed specified portions of the Software. - 5. - - Portions of the Software resulted from work developed under a U.S. Government contract and are subject to the following license: the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly. - 6. - - WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND THEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF THE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4) DO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL BE CORRECTED. - 7. - - LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF ANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE, EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGES. - diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_x.yml b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_x.yml deleted file mode 100644 index 651f92bb369..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_x.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_y.txt b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_y.txt deleted file mode 100644 index 70fcc2247c2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_y.txt +++ /dev/null @@ -1,68 +0,0 @@ --------------------------------------------------------------------- - The PHP License, version 3.0 -Copyright (c) 1999 - 2006 The PHP Group. All rights reserved. --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP, freely available from - ". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -This product includes the Zend Engine, freely available at -. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_y.yml b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_y.yml deleted file mode 100644 index b3d819d0df3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_y.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_z.txt b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_z.txt deleted file mode 100644 index 98bfe937f79..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_z.txt +++ /dev/null @@ -1,51 +0,0 @@ -The OpenLDAP Public License - Version 2.3, 28 July 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written permission -of the OpenLDAP Foundation. - -5. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. - -6. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -7. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_z.yml b/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_z.yml deleted file mode 100644 index 968f60c4f8d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/BSD_style_z.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openldap-2.3 diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/Linux-OpenIB.txt b/tests/licensedcode/data/more_licenses/tests/BSD/Linux-OpenIB.txt deleted file mode 100644 index a63a3b89ddf..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/Linux-OpenIB.txt +++ /dev/null @@ -1,6 +0,0 @@ -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -- 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. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/Linux-OpenIB.yml b/tests/licensedcode/data/more_licenses/tests/BSD/Linux-OpenIB.yml deleted file mode 100644 index 4d738888ac0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/Linux-OpenIB.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - linux-openib diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/Zend-2.0 b/tests/licensedcode/data/more_licenses/tests/BSD/Zend-2.0 deleted file mode 100644 index f2adae67648..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/Zend-2.0 +++ /dev/null @@ -1,18 +0,0 @@ -The Zend Engine License, version 2.00 -Copyright (c) 1999-2002 Zend Technologies Ltd. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, is 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. The names "Zend" and "Zend Engine" must not be used to endorse or promote products derived from this software without prior permission from Zend Technologies Ltd. For written permission, please contact license@zend.com. - -4. Zend Technologies Ltd. may publish revised and/or new versions of the license from time to time. Each version will be given a distinguishing version number. Once covered code has been published under a particular version of the license, you may always continue to use it under the terms of that version. You may also choose to use such covered code under the terms of any subsequent version of the license published by Zend Technologies Ltd. No one other than Zend Technologies Ltd. has the right to modify the terms applicable to covered code created under this License. - -5. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes the Zend Engine, freely available at http://www.zend.com" - -6. All advertising materials mentioning features or use of this software must display the following acknowledgment: "The Zend Engine is freely available at http://www.zend.com" - -THIS SOFTWARE IS PROVIDED BY ZEND TECHNOLOGIES LTD. ``AS IS'' AND ANY EXPRESSED 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 ZEND TECHNOLOGIES LTD. 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/tests/licensedcode/data/more_licenses/tests/BSD/Zend-2.yml b/tests/licensedcode/data/more_licenses/tests/BSD/Zend-2.yml deleted file mode 100644 index 1a9ea0ea63a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/Zend-2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zend-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.5.txt b/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.5.txt deleted file mode 100644 index b750270a3ad..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.5.txt +++ /dev/null @@ -1,18 +0,0 @@ -Version 1.0.5 of 10 December 2007 - -Copyright © 1996-2007 Julian Seward - -This program, bzip2, the associated library libbzip2, and all documentation, are copyright © 1996-2007 Julian Seward. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -• Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -• The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - -• Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - -• The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. -PATENTS: To the best of my knowledge, bzip2 and libbzip2 do not use any patented algorithms. However, I do not have the resources to carry out a patent search. Therefore I cannot give any guarantee of the above statement. diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.5.yml b/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.5.yml deleted file mode 100644 index 0169b20383c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bzip2-libbzip-1.0.5 diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.6.txt b/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.6.txt deleted file mode 100644 index 415784c2aa1..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.6.txt +++ /dev/null @@ -1,15 +0,0 @@ -This program, "bzip2", the associated library "libbzip2", and all documentation, are copyright (C) 1996-2010 Julian R Seward. 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. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - -3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - -4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - -Julian Seward, jseward@bzip.org bzip2/libbzip2 version 1.0.6 of 6 September 2010 diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.6.yml b/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.6.yml deleted file mode 100644 index ad81ebd7e97..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/bzip2-1.0.6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bzip2-libbzip-2010 diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/purdue.txt b/tests/licensedcode/data/more_licenses/tests/BSD/purdue.txt deleted file mode 100644 index 02d7e2a2747..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/purdue.txt +++ /dev/null @@ -1,28 +0,0 @@ -/* -* Copyright 2002 Purdue Research Foundation, West Lafayette, -* Indiana 47907. All rights reserved. -* -* Written by Victor A. Abell -* -* This software is not subject to any license of the American -* Telephone and Telegraph Company or the Regents of the -* University of California. -* -* Permission is granted to anyone to use this software for -* any purpose on any computer system, and to alter it and -* redistribute it freely, subject to the following -* restrictions: -* -* 1. Neither the authors nor Purdue University are responsible -* for any consequences of the use of this software. -* -* 2. The origin of this software must not be misrepresented, -* either by explicit claim or by omission. Credit to the -* authors and Purdue University must appear in documentation -* and sources. -* -* 3. Altered versions must be plainly marked as such, and must -* not be misrepresented as being the original software. -* -* 4. This notice may not be removed or altered. -*/ diff --git a/tests/licensedcode/data/more_licenses/tests/BSD/purdue.yml b/tests/licensedcode/data/more_licenses/tests/BSD/purdue.yml deleted file mode 100644 index da1ccfb884c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSD/purdue.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - purdue-bsd diff --git a/tests/licensedcode/data/more_licenses/tests/BSL/BSL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/BSL/BSL-1.0.txt deleted file mode 100644 index 36b7cd93cdf..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSL/BSL-1.0.txt +++ /dev/null @@ -1,23 +0,0 @@ -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. diff --git a/tests/licensedcode/data/more_licenses/tests/BSL/BSL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/BSL/BSL-1.0.yml deleted file mode 100644 index 54de00b5e49..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/BSL/BSL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - boost-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CC/CC-BY-4.0.txt b/tests/licensedcode/data/more_licenses/tests/CC/CC-BY-4.0.txt deleted file mode 100644 index 320b91a32a9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CC/CC-BY-4.0.txt +++ /dev/null @@ -1,109 +0,0 @@ -Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. - -Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors. - -Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public. - -Creative Commons Attribution 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. - -Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. -Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. -Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. -Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. -Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. -Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. -Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. -Licensor means the individual(s) or entity(ies) granting rights under this Public License. -Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. -Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. -You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. - -License grant. -Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: -reproduce and Share the Licensed Material, in whole or in part; and -produce, reproduce, and Share Adapted Material. -Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. -Term. The term of this Public License is specified in Section 6(a). -Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. -Downstream recipients. -Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. -No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. -No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). - -Other rights. -Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. -Patent and trademark rights are not licensed under this Public License. -To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. - -Section 3 – License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - -Attribution. - -If You Share the Licensed Material (including in modified form), You must: -retain the following if it is supplied by the Licensor with the Licensed Material: -identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); -a copyright notice; -a notice that refers to this Public License; -a notice that refers to the disclaimer of warranties; -a URI or hyperlink to the Licensed Material to the extent reasonably practicable; -indicate if You modified the Licensed Material and retain an indication of any previous modifications; and -indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. -You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. -If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. -If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. - -Section 4 – Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - -for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; -if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and -You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. - -Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. -To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. - -The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. - -This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. - -Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: -automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or -upon express reinstatement by the Licensor. -For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. -For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. -Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. - -The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. -Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. - -For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. -To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. -No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. - -Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/tests/licensedcode/data/more_licenses/tests/CC/CC-BY-4.0.yml b/tests/licensedcode/data/more_licenses/tests/CC/CC-BY-4.0.yml deleted file mode 100644 index 5480ff95dc3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CC/CC-BY-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-4.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CC/LICENSE1.txt b/tests/licensedcode/data/more_licenses/tests/CC/LICENSE1.txt deleted file mode 100644 index 2bfaf03b0e9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CC/LICENSE1.txt +++ /dev/null @@ -1,7 +0,0 @@ - -This work is licensed under the Creative Commons Attribution-ShareAlike -3.0 License. To view a copy of this license, visit -http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to -Creative Commons, 543 Howard Street, 5th Floor, San Francisco, -California, 94105, USA. - diff --git a/tests/licensedcode/data/more_licenses/tests/CC/LICENSE1.yml b/tests/licensedcode/data/more_licenses/tests/CC/LICENSE1.yml deleted file mode 100644 index f864ce81a6e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CC/LICENSE1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-sa-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.0.txt deleted file mode 100644 index 81f9891d2d8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.0.txt +++ /dev/null @@ -1,131 +0,0 @@ -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) - -Version 1.0 - -1. Definitions. - -1.1. “Contributor” means each individual or entity that creates or contributes to the creation of Modifications. - -1.2. “Contributor Version” means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. - -1.3. “Covered Software” means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. - -1.4. “Executable” means the Covered Software in any form other than Source Code. - -1.5. “Initial Developer” means the individual or entity that first makes Original Software available under this License. - -1.6. “Larger Work” means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. - -1.7. “License” means this document. - -1.8. “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9. “Modifications” means the Source Code and Executable form of any of the following: - -A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; - -B. Any new file that contains any part of the Original Software or previous Modification; or - -C. Any new file that is contributed or otherwise made available under the terms of this License. - -1.10. “Original Software” means the Source Code and Executable form of computer software code that is originally released under this License. - -1.11. “Patent Claims” means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.12. “Source Code” means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. - -1.13. “You” (or “Your”) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, “You” includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. License Grants. - -2.1. The Initial Developer Grant. - -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). - -(c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. - -(d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. - -2.2. Contributor Grant. - -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - -(c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. - -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - -3.1. Availability of Source Code. - -Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. - -3.2. Modifications. - -The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. - -3.3. Required Notices. - -You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. - -3.4. Application of Additional Terms. - -You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients’ rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.5. Distribution of Executable Versions. - -You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient’s rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.6. Larger Works. - -You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. - -4. Versions of the License. - -4.1. New Versions. - -Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. - -4.2. Effect of New Versions. - -You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. - -4.3. Modified Versions. - -When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. - -5. DISCLAIMER OF WARRANTY. - -COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -6. TERMINATION. - -6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as “Participant”) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. - -6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. - -7. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY’S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -8. U.S. GOVERNMENT END USERS. - -The Covered Software is a “commercial item,” as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of “commercial computer software” (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) and “commercial computer software documentation” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. - -9. MISCELLANEOUS. - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction’s conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys’ fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. - -10. RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. diff --git a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.0.yml deleted file mode 100644 index 6ff24c8284a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cddl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.1.txt deleted file mode 100644 index 88deb3dd071..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.1.txt +++ /dev/null @@ -1,107 +0,0 @@ -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1 - -1. Definitions. - -1.1. “Contributor” means each individual or entity that creates or contributes to the creation of Modifications. - -1.2. “Contributor Version” means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. - -1.3. “Covered Software” means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. - -1.4. “Executable” means the Covered Software in any form other than Source Code. - -1.5. “Initial Developer” means the individual or entity that first makes Original Software available under this License. - -1.6. “Larger Work” means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. - -1.7. “License” means this document. - -1.8. “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9. “Modifications” means the Source Code and Executable form of any of the following: -A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; -B. Any new file that contains any part of the Original Software or previous Modification; or -C. Any new file that is contributed or otherwise made available under the terms of this License. - -1.10. “Original Software” means the Source Code and Executable form of computer software code that is originally released under this License. - -1.11. “Patent Claims” means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.12. “Source Code” means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. - -1.13. “You” (or “Your”) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, “You” includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. License Grants. - -2.1. The Initial Developer Grant. -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and -(b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). -(c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. -(d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. - -2.2. Contributor Grant. -Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). -(c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - -3.1. Availability of Source Code. -Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. - -3.2. Modifications. -The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. - -3.3. Required Notices. -You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. - -3.4. Application of Additional Terms. -You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients' rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.5. Distribution of Executable Versions. -You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient's rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.6. Larger Works. -You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. - -4. Versions of the License. - -4.1. New Versions. -Oracle is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. - -4.2. Effect of New Versions. -You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. - -4.3. Modified Versions. -When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. - -5. DISCLAIMER OF WARRANTY. -COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -6. TERMINATION. - -6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as “Participant”) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. - -6.3. If You assert a patent infringement claim against Participant alleging that the Participant Software directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -6.4. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. - -7. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -8. U.S. GOVERNMENT END USERS. -The Covered Software is a “commercial item,” as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of “commercial computer software” (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) and “commercial computer software documentation” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. - -9. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction's conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. - -10. RESPONSIBILITY FOR CLAIMS. -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) -The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. diff --git a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.1.yml deleted file mode 100644 index dd330170514..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDDL/CDDL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cddl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Permissive-1.0.txt b/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Permissive-1.0.txt deleted file mode 100644 index 2abfb9a1cf9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Permissive-1.0.txt +++ /dev/null @@ -1,83 +0,0 @@ -Community Data License Agreement - Permissive - Version 1.0 - -This is the Community Data License Agreement - Permissive, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. - -The benefits that each Data Provider receives from making Data available and that You receive from Data or otherwise under these terms and conditions shall be deemed sufficient consideration for the formation of this Agreement. Accordingly, Data Provider(s) and You (the "Parties") agree as follows: - - Section 1. Definitions - - 1.1 "Add" means to supplement Data with Your own or someone else's Data, resulting in Your "Additions." Additions do not include Results. - - 1.2 "Computational Use" means Your analysis (through the use of computational devices or otherwise) or other interpretation of Data. By way of example and not limitation, "Computational Use" includes the application of any computational analytical technique, the purpose of which is the analysis of any Data in digital form to generate information about Data such as patterns, trends, correlations, inferences, insights and attributes. - - 1.3 "Data" means the information (including copyrightable information, such as images or text), collectively or individually, whether created or gathered by a Data Provider or an Entity acting on its behalf, to which rights are granted under this Agreement. - - 1.4 "Data Provider" means any Entity (including any employee or contractor of such Entity authorized to Publish Data on behalf of such Entity) that Publishes Data under this Agreement prior to Your Receiving it. - - 1.5 "Enhanced Data" means the subset of Data that You Publish and that is composed of (a) Your Additions and/or (b) Modifications to Data You have received under this Agreement. - - 1.6 "Entity" means any natural person or organization that exists under the laws of the jurisdiction in which it is organized, together with all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (a) the power, directly or indirectly, to cause the direction or management of such entity, whether by contract or otherwise, (b) the ownership of more than fifty percent (50%) of the outstanding shares or securities, (c) the beneficial ownership of such entity or, (d) the ability to appoint, whether by agreement or right, the majority of directors of an Entity. - - 1.7 "Modify" means to delete, erase, correct or re-arrange Data, resulting in "Modifications." Modifications do not include Results. - - 1.8 "Publish" means to make all or a subset of Data (including Your Enhanced Data) available in any manner which enables its Use, including by providing a copy on physical media or remote access. For any form of Entity, that is to make the Data available to any individual who is not employed by that Entity or engaged as a contractor or agent to perform work on that Entity's behalf. A "Publication" occurs each time You Publish Data. - - 1.9 "Receive" or "Receives" means to have been given access to Data, locally or remotely. - - 1.10 "Results" means the outcomes or outputs that You obtain from Your Computational Use of Data. Results shall not include more than a de minimis portion of the Data on which the Computational Use is based. - - 1.11 "Sui Generis Database Rights" means rights, other than copyright, resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other equivalent rights anywhere in the world. - - 1.12 "Use" means using Data (including accessing, copying, studying, reviewing, adapting, analyzing, evaluating, or making Computational Use of it), either by machines or humans, or a combination of both. - - 1.13 "You" or "Your" means any Entity that Receives Data under this Agreement. - - Section 2. Right and License to Use and to Publish - - 2.1 Subject to the conditions set forth in Section 3 of this Agreement, Data Provider(s) hereby grant(s) to You a worldwide, non-exclusive, irrevocable (except as provided in Section 5) right to: (a) Use Data; and (b) Publish Data. - - 2.2 To the extent that the Data or the coordination, selection or arrangement of Data is protected or protectable under copyright, Sui Generis Database Rights, or other law, Data Provider(s) further agree(s) that such Data or coordination, selection or arrangement is hereby licensed to You and to anyone else who Receives Data under this Agreement for Use and Publication, subject to the conditions set forth in Section 3 of this Agreement. - - 2.3 Except for these rights and licenses expressly granted, no other intellectual property rights are granted or should be implied. - - Section 3. Conditions on Rights Granted - - 3.1 If You Publish Data You Receive or Enhanced Data: - (a) You may do so under a license of Your choice provided that You give anyone who Receives the Data from You the text of this Agreement, the name of this Agreement and/or a hyperlink or other method reasonably likely to provide a copy of the text of this Agreement; and - (b) You must cause any Data files containing Enhanced Data to carry prominent notices that You have changed those files; and - (c) If You Publish Data You Receive, You must preserve all credit or attribution to the Data Provider(s). Such retained credit or attribution includes any of the following to the extent they exist in Data as You have Received it: legal notices or metadata; identification of the Data Provider(s); or hyperlinks to Data to the extent it is practical to do so. - - 3.2 You may provide additional or different license terms and conditions for use, reproduction, or distribution of that Enhanced Data, or for any combination of Data and Enhanced Data as a whole, provided that Your Use and Publication of that combined Data otherwise complies with the conditions stated in this License. - - 3.3 You and each Data Provider agree that Enhanced Data shall not be considered a work of joint authorship by virtue of its relationship to Data licensed under this Agreement and shall not require either any obligation of accounting to or the consent of any Data Provider. - - 3.4 This Agreement imposes no obligations or restrictions on Your Use or Publication of Results. - - Section 4. Data Provider(s)' Representations - - 4.1 Each Data Provider represents that the Data Provider has exercised reasonable care, to assure that: (a) the Data it Publishes was created or generated by it or was obtained from others with the right to Publish the Data under this Agreement; and (b) Publication of such Data does not violate any privacy or confidentiality obligation undertaken by the Data Provider. - - Section 5. Termination - - 5.1 All of Your rights under this Agreement will terminate, and Your right to Receive, Use or Publish the Data will be revoked or modified if You materially fail to comply with the terms and conditions of this Agreement and You do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If Your rights under this Agreement terminate, You agree to cease Receipt, Use and Publication of Data. However, Your obligations and any rights and permissions granted by You under this Agreement relating to Data that You Published prior to such termination will continue and survive. - - 5.2 If You institute litigation against a Data Provider or anyone else who Receives the Data (including a cross-claim in a lawsuit) based on the Data, other than a claim asserting breach of this Agreement, then any rights previously granted to You to Receive, Use and Publish Data under this Agreement will terminate as of the date such litigation is filed. - - Section 6. Disclaimer of Warranties and Limitation of Liability - - 6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE DATA (INCLUDING ENHANCED DATA) 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. - - 6.2 NEITHER YOU NOR ANY DATA PROVIDERS 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 DATA OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - - Section 7. Miscellaneous - - 7.1 You agree that it is solely Your responsibility to comply with all applicable laws with regard to Your Use or Publication of Data, including any applicable privacy, data protection, security and export laws. You agree to take reasonable steps to assist a Data Provider fulfilling responsibilities to comply with applicable laws with regard to Use or Publication of Data Received hereunder. - - 7.2 You and Data Provider(s), collectively and individually, waive and/or agree not to assert, to the extent permitted by law, any moral rights You or they hold in Data. - - 7.3 This Agreement confers no rights or remedies upon any person or entity other than the Parties and their respective heirs, executors, successors and assigns. - - 7.4 The Data Provider(s) reserve no right or expectation of privacy, data protection or confidentiality in any Data that they Publish under this Agreement. If You choose to Publish Data under this Agreement, You similarly do so with no reservation or expectation of any rights of privacy or confidentiality in that Data. - - 7.5 The Community Data License Agreement workgroup under The Linux Foundation is the steward of this Agreement ("Steward"). No one other than the Steward has the right to modify or publish new versions of this Agreement. Each version will be given a distinguishing version number. You may Use and Publish Data Received hereunder under the terms of the version of the Agreement under which You originally Received the Data, or under the terms of any subsequent version published by the Steward. - diff --git a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Permissive-1.0.yml b/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Permissive-1.0.yml deleted file mode 100644 index b244d53f49e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Permissive-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cdla-permissive-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Sharing-1.0.txt b/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Sharing-1.0.txt deleted file mode 100644 index c472dff998d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Sharing-1.0.txt +++ /dev/null @@ -1,86 +0,0 @@ -Community Data License Agreement - Sharing - Version 1.0 - -This is the Community Data License Agreement - Sharing, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. - -The benefits that each Data Provider receives from making Data available and that You receive from Data or otherwise under these terms and conditions shall be deemed sufficient consideration for the formation of this Agreement. Accordingly, Data Provider(s) and You (the "Parties") agree as follows: - - Section 1. Definitions - - 1.1 "Add" means to supplement Data with Your own or someone else's Data, resulting in Your "Additions." Additions do not include Results. - - 1.2 "Computational Use" means Your analysis (through the use of computational devices or otherwise) or other interpretation of Data. By way of example and not limitation, "Computational Use" includes the application of any computational analytical technique, the purpose of which is the analysis of any Data in digital form to generate information about Data such as patterns, trends, correlations, inferences, insights and attributes. - - 1.3 "Data" means the information (including copyrightable information, such as images or text), collectively or individually, whether created or gathered by a Data Provider or an Entity acting on its behalf, to which rights are granted under this Agreement. - - 1.4 "Data Provider" means any Entity (including any employee or contractor of such Entity authorized to Publish Data on behalf of such Entity) that Publishes Data under this Agreement prior to Your Receiving it. - - 1.5 "Enhanced Data" means the subset of Data that You Publish and that is composed of (a) Your Additions and/or (b) Modifications to Data You have received under this Agreement. - - 1.6 "Entity" means any natural person or organization that exists under the laws of the jurisdiction in which it is organized, together with all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (a) the power, directly or indirectly, to cause the direction or management of such entity, whether by contract or otherwise, (b) the ownership of more than fifty percent (50%) of the outstanding shares or securities, (c) the beneficial ownership of such entity or, (d) the ability to appoint, whether by agreement or right, the majority of directors of an Entity. - - 1.7 "Ledger" means a digital record of Data or grants of rights in Data governed by this Agreement, using any technology having functionality to record and store Data or grants, contributions, or licenses to Data governed by this Agreement. - - 1.8 "Modify" means to delete, erase, correct or re-arrange Data, resulting in "Modifications." Modifications do not include Results. - - 1.9 "Publish" means to make all or a subset of Data (including Your Enhanced Data) available in any manner which enables its Use, including by providing a copy on physical media or remote access. For any form of Entity, that is to make the Data available to any individual who is not employed by that Entity or engaged as a contractor or agent to perform work on that Entity's behalf. A "Publication" occurs each time You Publish Data. - - 1.10 "Receive" or "Receives" means to have been given access to Data, locally or remotely. - - 1.11 "Results" means the outcomes or outputs that You obtain from Your Computational Use of Data. Results shall not include more than a de minimis portion of the Data on which the Computational Use is based. - - 1.12 "Sui Generis Database Rights" means rights, other than copyright, resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other equivalent rights anywhere in the world. - - 1.13 "Use" means using Data (including accessing, copying, studying, reviewing, adapting, analyzing, evaluating, or making Computational Use of it), either by machines or humans, or a combination of both. - - 1.14 "You" or "Your" means any Entity that Receives Data under this Agreement. - - Section 2. Right and License to Use and to Publish - - 2.1 Subject to the conditions set forth in Section 3 of this Agreement, Data Provider(s) hereby grant(s) to You a worldwide, non-exclusive, irrevocable (except as provided in Section 5) right to: (a) Use Data; and (b) Publish Data. - - 2.2 To the extent that the Data or the coordination, selection or arrangement of Data is protected or protectable under copyright, Sui Generis Database Rights, or other law, Data Provider(s) further agree(s) that such Data or coordination, selection or arrangement is hereby licensed to You and to anyone else who Receives Data under this Agreement for Use and Publication, subject to the conditions set forth in Section 3 of this Agreement. - - 2.3 Except for these rights and licenses expressly granted, no other intellectual property rights are granted or should be implied. - - Section 3. Conditions on Rights Granted - - 3.1 If You Publish Data You Receive or Enhanced Data: - (a) The Data (including the Enhanced Data) must be Published under this Agreement in accordance with this Section 3; and - (b) You must cause any Data files containing Enhanced Data to carry prominent notices that You have changed those files; and - (c) If You Publish Data You Receive, You must preserve all credit or attribution to the Data Provider(s). Such retained credit or attribution includes any of the following to the extent they exist in Data as You have Received it: legal notices or metadata; identification of the Data Provider(s); or hyperlinks to Data to the extent it is practical to do so. - - 3.2 You may not restrict or deter the ability of anyone who Receives the Data (a) to Publish the Data in a publicly-accessible manner or (b) if the project has designated a Ledger for recording Data or grants of rights in Data for purposes of this Agreement, to record the Data or grants of rights in Data in the Ledger. - - 3.3 If You Publish Data You Receive, You must do so under an unmodified form of this Agreement and include the text of this Agreement, the name of this Agreement and/or a hyperlink or other method reasonably likely to provide a copy of the text of this Agreement. You may not modify this Agreement or impose any further restrictions on the exercise of the rights granted under this Agreement, including by adding any restriction on commercial or non-commercial Use of Data (including Your Enhanced Data) or by limiting permitted Use of such Data to any particular platform, technology or field of endeavor. Notices that purport to modify this Agreement shall be of no effect. - - 3.4 You and each Data Provider agree that Enhanced Data shall not be considered a work of joint authorship by virtue of its relationship to Data licensed under this Agreement and shall not require either any obligation of accounting to or the consent of any Data Provider. - - 3.5 This Agreement imposes no obligations or restrictions on Your Use or Publication of Results. - - Section 4. Data Provider(s)' Representations - - 4.1 Each Data Provider represents that the Data Provider has exercised reasonable care, to assure that: (a) the Data it Publishes was created or generated by it or was obtained from others with the right to Publish the Data under this Agreement; and (b) Publication of such Data does not violate any privacy or confidentiality obligation undertaken by the Data Provider. - - Section 5. Termination - - 5.1 All of Your rights under this Agreement will terminate, and Your right to Receive, Use or Publish the Data will be revoked or modified if You materially fail to comply with the terms and conditions of this Agreement and You do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If Your rights under this Agreement terminate, You agree to cease Receipt, Use and Publication of Data. However, Your obligations and any rights and permissions granted by You under this Agreement relating to Data that You Published prior to such termination will continue and survive. - - 5.2 If You institute litigation against a Data Provider or anyone else who Receives the Data (including a cross-claim in a lawsuit) based on the Data, other than a claim asserting breach of this Agreement, then any rights previously granted to You to Receive, Use and Publish Data under this Agreement will terminate as of the date such litigation is filed. - - Section 6. Disclaimer of Warranties and Limitation of Liability - - 6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE DATA (INCLUDING ENHANCED DATA) 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. - - 6.2 NEITHER YOU NOR ANY DATA PROVIDERS 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 DATA OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - - Section 7. Miscellaneous - - 7.1 You agree that it is solely Your responsibility to comply with all applicable laws with regard to Your Use or Publication of Data, including any applicable privacy, data protection, security and export laws. You agree to take reasonable steps to assist a Data Provider fulfilling responsibilities to comply with applicable laws with regard to Use or Publication of Data Received hereunder. - - 7.2 You and Data Provider(s), collectively and individually, waive and/or agree not to assert, to the extent permitted by law, any moral rights You or they hold in Data. - - 7.3 This Agreement confers no rights or remedies upon any person or entity other than the Parties and their respective heirs, executors, successors and assigns. - - 7.4 The Data Provider(s) reserve no right or expectation of privacy, data protection or confidentiality in any Data that they Publish under this Agreement. If You choose to Publish Data under this Agreement, You similarly do so with no reservation or expectation of any rights of privacy or confidentiality in that Data. - - 7.5 The Community Data License Agreement workgroup under The Linux Foundation is the steward of this Agreement ("Steward"). No one other than the Steward has the right to modify or publish new versions of this Agreement. Each version will be given a distinguishing version number. You may Use and Publish Data Received hereunder under the terms of the version of the Agreement under which You originally Received the Data, or under the terms of any subsequent version published by the Steward. diff --git a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Sharing-1.0.yml b/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Sharing-1.0.yml deleted file mode 100644 index f2c9634a329..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CDLA/CDLA-Sharing-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cdla-sharing-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-1.1.txt deleted file mode 100644 index 2f2425d4fc5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-1.1.txt +++ /dev/null @@ -1,512 +0,0 @@ - FREE SOFTWARE LICENSING AGREEMENT CeCILL - ======================================== - - -Notice ------- - - -This Agreement is a free software license that is the result of discussions -between its authors in order to ensure compliance with the two main -principles guiding its drafting: - - firstly, its conformity with French law, both as regards the law of - torts and intellectual property law, and the protection that it offers - to authors and the holders of economic rights over software. - - secondly, compliance with the principles for the distribution of free - software: access to source codes, extended user-rights. - -The following bodies are the authors of this license CeCILL (Ce : CEA, C : -CNRS, I : INRIA, LL : Logiciel Libre): - -Commissariat à l'Energie Atomique - CEA, a public scientific, technical and -industrial establishment, having its principal place of business at 31-33 -rue de la Fédération, 75752 PARIS cedex 15, France. - -Centre National de la Recherche Scientifique - CNRS, a public scientific -and technological establishment, having its principal place of business at -3 rue Michel-Ange 75794 Paris cedex 16, France. - -Institut National de Recherche en Informatique et en Automatique - INRIA, a -public scientific and technological establishment, having its principal -place of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le -Chesnay cedex. - - -PREAMBLE --------- - - -The purpose of this Free Software Licensing Agreement is to grant users the -right to modify and redistribute the software governed by this license -within the framework of an "open source" distribution model. - -The exercising of these rights is conditional upon certain obligations for -users so as to ensure that this status is retained for subsequent -redistribution operations. - -As a counterpart to the access to the source code and rights to copy, modify -and redistribute granted by the license, users are provided only with a -limited warranty and the software's author, the holder of the economic -rights, and the successive licensors only have limited liability. - -In this respect, it is brought to the user's attention that the risks -associated with loading, using, modifying and/or developing or reproducing -the software by the user given its nature of Free Software, that may -mean that it is complicated to manipulate, and that also therefore means -that it is reserved for developers and experienced professionals having -in-depth computer knowledge. Users are therefore encouraged to load and test -the Software's suitability as regards their requirements in conditions -enabling the security of their systems and/or data to be ensured and, more -generally, to use and operate it in the same conditions of security. -This Agreement may be freely reproduced and published, provided it is -not altered, and that no Articles are either added or removed herefrom. - -This Agreement may apply to any or all software for which the holder of the -economic rights decides to submit the operation thereof to its provisions. - - -Article 1 - DEFINITIONS ------------------------- - - -For the purposes of this Agreement, when the following expressions commence -with a capital letter, they shall have the following meaning: - -Agreement: means this Licensing Agreement, and any or all of its subsequent -versions. - -Software: means the software in its Object Code and/or Source Code form -and, where applicable, its documentation, "as is" at the time when the -Licensee accepts the Agreement. - -Initial Software: means the Software in its Source Code and/or Object Code -form and, where applicable, its documentation, "as is" at the time when it -is distributed for the first time under the terms and conditions of the -Agreement. - -Modified Software: means the Software modified by at least one -Contribution. - -Source Code: means all the Software's instructions and program lines to -which access is required so as to modify the Software. - -Object Code: means the binary files originating from the compilation of the -Source Code. - -Holder: means the holder of the economic rights over the Initial -Software. - -Licensee(s): mean(s) the Software user(s) having accepted the Agreement. - -Contributor: means a Licensee having made at least one Contribution. - -Licensor: means the Holder, or any or all other individual or legal entity, -that distributes the Software under the Agreement. - -Contributions: mean any or all modifications, corrections, translations, -adaptations and/or new functionalities integrated into the Software by any -or all Contributor, and the Static Modules. - -Module: means a set of sources files including their documentation that, -once compiled in executable form, enables supplementary functionalities or -services to be developed in addition to those offered by the Software. - -Dynamic Module: means any or all module, created by the Contributor, that -is independent of the Software, so that this module and the Software are in -two different executable forms that are run in separate address spaces, -with one calling the other when they are run. - -Static Module: means any or all module, created by the Contributor and -connected to the Software by a static link that makes their object codes -interdependent. This module and the Software to which it is connected, are -combined in a single executable. - -Parties: mean both the Licensee and the Licensor. - -These expressions may be used both in singular and plural form. - - -Article 2 - PURPOSE -------------------- - - -The purpose of the Agreement is to enable the Licensor to grant the -Licensee a free, non-exclusive, transferable and worldwide License for the -Software as set forth in Article 5 hereinafter for the whole term of -protection of the rights over said Software. - - -Article 3 - ACCEPTANCE ----------------------- - - -3.1. The Licensee shall be deemed as having accepted the terms and -conditions of this Agreement by the occurrence of the first of the -following events: -- (i) loading the Software by any or all means, notably, by downloading - from a remote server, or by loading from a physical medium; -- (ii) the first time the Licensee exercises any of the rights granted - hereunder. - -3.2. One copy of the Agreement, containing a notice relating to the -specific nature of the Software, to the limited warranty, and to the -limitation to use by experienced users has been provided to the Licensee -prior to its acceptance as set forth in Article 3.1 hereinabove, and the -Licensee hereby acknowledges that it is aware thereof. - - -Article 4 - EFFECTIVE DATE AND TERM ------------------------------------ - - -4.1. EFFECTIVE DATE - -The Agreement shall become effective on the date when it is accepted by the -Licensee as set forth in Article 3.1. - -4.2. TERM - -The Agreement shall remain in force during the whole legal term of -protection of the economic rights over the Software. - - -Article 5 - SCOPE OF THE RIGHTS GRANTED ---------------------------------------- - - -The Licensor hereby grants to the Licensee, that accepts such, the -following rights as regards the Software for any or all use, and for the -term of the Agreement, on the basis of the terms and conditions set forth -hereinafter. - -Otherwise, the Licensor grants to the Licensee free of charge exploitation -rights on the patents he holds on whole or part of the inventions -implemented in the Software. - -5.1. RIGHTS OF USE - -The Licensee is authorized to use the Software, unrestrictedly, as regards -the fields of application, with it being hereinafter specified that this -relates to: -- permanent or temporary reproduction of all or part of the Software by - any or all means and in any or all form. -- loading, displaying, running, or storing the Software on any or all - medium. -- entitlement to observe, study or test the operation thereof so as to - establish the ideas and principles that form the basis for any or all - constituent elements of said Software. This shall apply when the - Licensee carries out any or all loading, displaying, running, - transmission or storage operation as regards the Software, that it is - entitled to carry out hereunder. - -5.2. entitlement to make CONTRIBUTIONS - -The right to make Contributions includes the right to translate, adapt, -arrange, or make any or all modification to the Software, and the right to -reproduce the resulting Software. - -The Licensee is authorized to make any or all Contribution to the Software -provided that it explicitly mentions its name as the author of said -Contribution and the date of the development thereof. - -5.3. DISTRIBUTION AND PUBLICATION RIGHTS - -In particular, the right of distribution and publication includes the right -to transmit and communicate the Software to the general public on any or -all medium, and by any or all means, and the right to market, either in -consideration of a fee, or free of charge, a copy or copies of the Software -by means of any or all process. -The Licensee is further authorized to redistribute copies of the modified -or unmodified Software to third parties according to the terms and -conditions set forth hereinafter. - -5.3.1. REDISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION - -The Licensee is authorized to redistribute true copies of the Software in -Source Code or Object Code form, provided that said redistribution complies -with all the provisions of the Agreement and is accompanied by: -- a copy of the Agreement, -- a notice relating to the limitation of both the Licensor's warranty - and liability as set forth in Articles 8 and 9, -and that, in the event that only the Software's Object Code is -redistributed, the Licensee allows future Licensees unhindered access to -the Software's full Source Code by providing them with the terms and -conditions for access thereto, it being understood that the additional cost -of acquiring the Source Code shall not exceed the cost of transferring the -data. - -5.3.2. REDISTRIBUTION OF MODIFIED SOFTWARE - -When the Licensee makes a Contribution to the Software, the terms and -conditions for the redistribution of the Modified Software shall then be -subject to all the provisions hereof. - -The Licensee is authorized to redistribute the Modified Software, in Source -Code or Object Code form, provided that said redistribution complies with -all the provisions of the Agreement and is accompanied by: -- a copy of the Agreement, -- a notice relating to the limitation of both the Licensor's warranty - and liability as set forth in Articles 8 and 9, -and that, in the event that only the Modified Software's Object Code is -redistributed, the Licensee allows future Licensees unhindered access to -the Modified Software's full Source Code by providing them with the terms -and conditions for access thereto, it being understood that the additional -cost of acquiring the Source Code shall not exceed the cost of transferring -the data. - - -5.3.3. redistribution OF DYNAMIC MODULES - -When the Licensee has developed a Dynamic Module, the terms and conditions -hereof do not apply to said Dynamic Module, that may be distributed under -a separate Licensing Agreement. - -5.3.4. COMPATIBILITY WITH THE GPL LICENSE - -In the event that the Modified or unmodified Software is included in a code -that is subject to the provisions of the GPL License, the Licensee is -authorized to redistribute the whole under the GPL License. - -In the event that the Modified Software includes a code that is subject to -the provisions of the GPL License, the Licensee is authorized to -redistribute the Modified Software under the GPL License. - - -Article 6 - INTELLECTUAL PROPERTY ----------------------------------- - - -6.1. OVER THE INITIAL SOFTWARE - -The Holder owns the economic rights over the Initial Software. Any or all -use of the Initial Software is subject to compliance with the terms and -conditions under which the Holder has elected to distribute its work and no -one shall be entitled to and it shall have sole entitlement to modify the -terms and conditions for the distribution of said Initial Software. - -The Holder undertakes to maintain the distribution of the Initial Software -under the conditions of the Agreement, for the duration set forth in -article 4.2.. - -6.2. OVER THE CONTRIBUTIONS - -The intellectual property rights over the Contributions belong to the -holder of the economic rights as designated by effective legislation. - -6.3. OVER THE DYNAMIC MODULES - -The Licensee having developed a Dynamic Module is the holder of the -intellectual property rights over said Dynamic Module and is free to choose -the agreement that shall govern its distribution. - -6.4. JOINT PROVISIONS - -6.4.1. The Licensee expressly undertakes: -- not to remove, or modify, in any or all manner, the intellectual - property notices affixed to the Software; -- to reproduce said notices, in an identical manner, in the copies of - the Software. - -6.4.2. The Licensee undertakes not to directly or indirectly infringe the -intellectual property rights of the Holder and/or Contributors and to take, -where applicable, vis-à-vis its staff, any or all measures required to -ensure respect for said intellectual property rights of the Holder and/or -Contributors. - - -Article 7 - RELATED SERVICES ------------------------------ - - -7.1. Under no circumstances shall the Agreement oblige the Licensor to -provide technical assistance or maintenance services for the Software. - -However, the Licensor is entitled to offer this type of service. The -terms and conditions of such technical assistance, and/or such -maintenance, shall then be set forth in a separate instrument. Only the -Licensor offering said maintenance and/or technical assistance services -shall incur liability therefor. - -7.2. Similarly, any or all Licensor shall be entitled to offer to its -Licensees, under its own responsibility, a warranty, that shall only be -binding upon itself, for the redistribution of the Software and/or the -Modified Software, under terms and conditions that it shall decide upon -itself. Said warranty, and the financial terms and conditions of its -application, shall be subject to a separate instrument executed between the -Licensor and the Licensee. - - -Article 8 - LIABILITY ----------------------- - - -8.1. Subject to the provisions of Article 8.2, should the Licensor fail to -fulfill all or part of its obligations hereunder, the Licensee shall be -entitled to claim compensation for the direct loss suffered as a result of -a fault on the part of the Licensor, subject to providing evidence of it. - -8.2. The Licensor's liability is limited to the commitments made under this -Licensing Agreement and shall not be incurred as a result , in particular: -(i) of loss due the Licensee's total or partial failure to fulfill its -obligations, (ii) direct or consequential loss due to the Software's use or -performance that is suffered by the Licensee, when the latter is a -professional using said Software for professional purposes and (iii) -consequential loss due to the Software's use or performance. The Parties -expressly agree that any or all pecuniary or business loss (i.e. loss of -data, loss of profits, operating loss, loss of customers or orders, -opportunity cost, any disturbance to business activities) or any or all -legal proceedings instituted against the Licensee by a third party, shall -constitute consequential loss and shall not provide entitlement to any or -all compensation from the Licensor. - - -Article 9 - WARRANTY ---------------------- - - -9.1. The Licensee acknowledges that the current situation as regards -scientific and technical know-how at the time when the Software was -distributed did not enable all possible uses to be tested and verified, nor -for the presence of any or all faults to be detected. In this respect, the -Licensee's attention has been drawn to the risks associated with loading, -using, modifying and/or developing and reproducing the Software that are -reserved for experienced users. - -The Licensee shall be responsible for verifying, by any or all means, the -product's suitability for its requirements, its due and proper functioning, -and for ensuring that it shall not cause damage to either persons or -property. - -9.2. The Licensor hereby represents, in good faith, that it is entitled to -grant all the rights on the Software (including in particular the rights -set forth in Article 5 hereof over the Software). - -9.3. The Licensee acknowledges that the Software is supplied "as is" by the -Licensor without any or all other express or tacit warranty, other than -that provided for in Article 9.2 and, in particular, without any or all -warranty as to its market value, its secured, innovative or relevant -nature. - -Specifically, the Licensor does not warrant that the Software is free from -any or all error, that it shall operate continuously, that it shall be -compatible with the Licensee's own equipment and its software -configuration, nor that it shall meet the Licensee's requirements. - -9.4. The Licensor does not either expressly or tacitly warrant that the -Software does not infringe any or all third party intellectual right -relating to a patent, software or to any or all other property right. -Moreover, the Licensor shall not hold the Licensee harmless against any or -all proceedings for infringement that may be instituted in respect of the -use, modification and redistribution of the Software. Nevertheless, should -such proceedings be instituted against the Licensee, the Licensor shall -provide it with technical and legal assistance for its defense. Such -technical and legal assistance shall be decided upon on a case-by-case -basis between the relevant Licensor and the Licensee pursuant to a -memorandum of understanding. The Licensor disclaims any or all liability as -regards the Licensee's use of the Software's name. No warranty shall be -provided as regards the existence of prior rights over the name of the -Software and as regards the existence of a trademark. - - -Article 10 - TERMINATION -------------------------- - - -10.1. In the event of a breach by the Licensee of its obligations -hereunder, the Licensor may automatically terminate this Agreement thirty -(30) days after notice has been sent to the Licensee and has remained -ineffective. - -10.2. The Licensee whose Agreement is terminated shall no longer be -authorized to use, modify or distribute the Software. However, any or all -licenses that it may have granted prior to termination of the Agreement -shall remain valid subject to their having been granted in compliance with -the terms and conditions hereof. - - -Article 11 - MISCELLANEOUS PROVISIONS --------------------------------------- - - -11.1. EXCUSABLE EVENTS - -Neither Party shall be liable for any or all delay, or failure to perform -the Agreement, that may be attributable to an event of force majeure, an -act of God or an outside cause, such as, notably, defective functioning, or -interruptions affecting the electricity or telecommunications networks, -blocking of the network following a virus attack, the intervention of the -government authorities, natural disasters, water damage, earthquakes, fire, -explosions, strikes and labor unrest, war, etc. - -11.2. The fact that either Party may fail, on one or several occasions, to -invoke one or several of the provisions hereof, shall under no -circumstances be interpreted as being a waiver by the interested Party of -its entitlement to invoke said provision(s) subsequently. - -11.3. The Agreement cancels and replaces any or all previous agreement, -whether written or oral, between the Parties and having the same purpose, -and constitutes the entirety of the agreement between said Parties -concerning said purpose. No supplement or modification to the terms and -conditions hereof shall be effective as regards the Parties unless it is -made in writing and signed by their duly authorized representatives. - -11.4. In the event that one or several of the provisions hereof were to -conflict with a current or future applicable act or legislative text, said -act or legislative text shall take precedence, and the Parties shall make -the necessary amendments so as to be in compliance with said act or -legislative text. All the other provisions shall remain effective. -Similarly, the fact that a provision of the Agreement may be null and -void, for any reason whatsoever, shall not cause the Agreement as a whole -to be null and void. - -11.5. LANGUAGE - -The Agreement is drafted in both French and English. In the event of a -conflict as regards construction, the French version shall be deemed -authentic. - - -Article 12 - NEW VERSIONS OF THE AGREEMENT -------------------------------------------- - - -12.1. Any or all person is authorized to duplicate and distribute copies of -this Agreement. - -12.2. So as to ensure coherence, the wording of this Agreement is protected -and may only be modified by the authors of the License, that reserve the -right to periodically publish updates or new versions of the Agreement, -each with a separate number. These subsequent versions may address new issues -encountered by Free Software. - -12.3. Any or all Software distributed under a given version of the -Agreement may only be subsequently distributed under the same version of -the Agreement, or a subsequent version, subject to the provisions of -article 5.3.4. - - -Article 13 - GOVERNING LAW AND JURISDICTION -------------------------------------------- - - -13.1. The Agreement is governed by French law. The Parties agree to -endeavor to settle the disagreements or disputes that may arise during the -performance of the Agreement out-of-court. - -13.2. In the absence of an out-of-court settlement within two (2) months as -from their occurrence, and unless emergency proceedings are necessary, the -disagreements or disputes shall be referred to the Paris Courts having -jurisdiction, by the first Party to take action. - - - Version 1.1 of 10/26/2004 - - - - - - - - - - diff --git a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-1.1.yml deleted file mode 100644 index 289b90fb537..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cecill-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-B.txt b/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-B.txt deleted file mode 100644 index fb2b1abe95a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-B.txt +++ /dev/null @@ -1,245 +0,0 @@ -CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B - -Avertissement - -Ce contrat est une licence de logiciel libre issue d'une concertation entre ses auteurs afin que le respect de deux grands principes préside à sa rédaction: - -d'une part, le respect des principes de diffusion des logiciels libres: accès au code source, droits étendus conférés aux utilisateurs, -d'autre part, la désignation d'un droit applicable, le droit français, auquel elle est conforme, tant au regard du droit de la responsabilité civile que du droit de la propriété intellectuelle et de la protection qu'il offre aux auteurs et titulaires des droits patrimoniaux sur un logiciel. -Les auteurs de la licence CeCILL-B1 sont: - -Commissariat à l'Energie Atomique - CEA, établissement public de recherche à caractère scientifique, technique et industriel, dont le siège est situé 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris. - -Centre National de la Recherche Scientifique - CNRS, établissement public à caractère scientifique et technologique, dont le siège est situé 3 rue Michel-Ange, 75794 Paris cedex 16. - -Institut National de Recherche en Informatique et en Automatique - INRIA, établissement public à caractère scientifique et technologique, dont le siège est situé Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay cedex. - -Préambule - -Ce contrat est une licence de logiciel libre dont l'objectif est de conférer aux utilisateurs une très large liberté de modification et de redistribution du logiciel régi par cette licence. - -L'exercice de cette liberté est assorti d'une obligation forte de citation à la charge de ceux qui distribueraient un logiciel incorporant un logiciel régi par la présente licence afin d'assurer que les contributions de tous soient correctement identifiées et reconnues. - -L'accessibilité au code source et les droits de copie, de modification et de redistribution qui découlent de ce contrat ont pour contrepartie de n'offrir aux utilisateurs qu'une garantie limitée et de ne faire peser sur l'auteur du logiciel, le titulaire des droits patrimoniaux et les concédants successifs qu'une responsabilité restreinte. - -A cet égard l'attention de l'utilisateur est attirée sur les risques associés au chargement, à l'utilisation, à la modification et/ou au développement et à la reproduction du logiciel par l'utilisateur étant donné sa spécificité de logiciel libre, qui peut le rendre complexe à manipuler et qui le réserve donc à des développeurs ou des professionnels avertis possédant des connaissances informatiques approfondies. Les utilisateurs sont donc invités à charger et tester l'adéquation du logiciel à leurs besoins dans des conditions permettant d'assurer la sécurité de leurs systèmes et/ou de leurs données et, plus généralement, à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. Ce contrat peut être reproduit et diffusé librement, sous réserve de le conserver en l'état, sans ajout ni suppression de clauses. - -Ce contrat est susceptible de s'appliquer à tout logiciel dont le titulaire des droits patrimoniaux décide de soumettre l'exploitation aux dispositions qu'il contient. - -Article 1 - DEFINITIONS - -Dans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une lettre capitale, auront la signification suivante: - -Contrat: désigne le présent contrat de licence, ses éventuelles versions postérieures et annexes. - -Logiciel: désigne le logiciel sous sa forme de Code Objet et/ou de Code Source et le cas échéant sa documentation, dans leur état au moment de l'acceptation du Contrat par le Licencié. - -Logiciel Initial: désigne le Logiciel sous sa forme de Code Source et éventuellement de Code Objet et le cas échéant sa documentation, dans leur état au moment de leur première diffusion sous les termes du Contrat. - -Logiciel Modifié: désigne le Logiciel modifié par au moins une Contribution. - -Code Source: désigne l'ensemble des instructions et des lignes de programme du Logiciel et auquel l'accès est nécessaire en vue de modifier le Logiciel. - -Code Objet: désigne les fichiers binaires issus de la compilation du Code Source. - -Titulaire: désigne le ou les détenteurs des droits patrimoniaux d'auteur sur le Logiciel Initial. - -Licencié: désigne le ou les utilisateurs du Logiciel ayant accepté le Contrat. - -Contributeur: désigne le Licencié auteur d'au moins une Contribution. - -Concédant: désigne le Titulaire ou toute personne physique ou morale distribuant le Logiciel sous le Contrat. - -Contribution: désigne l'ensemble des modifications, corrections, traductions, adaptations et/ou nouvelles fonctionnalités intégrées dans le Logiciel par tout Contributeur, ainsi que tout Module Interne. - -Module: désigne un ensemble de fichiers sources y compris leur documentation qui permet de réaliser des fonctionnalités ou services supplémentaires à ceux fournis par le Logiciel. - -Module Externe: désigne tout Module, non dérivé du Logiciel, tel que ce Module et le Logiciel s'exécutent dans des espaces d'adressage différents, l'un appelant l'autre au moment de leur exécution. - -Module Interne: désigne tout Module lié au Logiciel de telle sorte qu'ils s'exécutent dans le même espace d'adressage. - -Parties: désigne collectivement le Licencié et le Concédant. - -Ces termes s'entendent au singulier comme au pluriel. - -Article 2 - OBJET - -Le Contrat a pour objet la concession par le Concédant au Licencié d'une licence non exclusive, cessible et mondiale du Logiciel telle que définie ci-après à l'article 5 pour toute la durée de protection des droits portant sur ce Logiciel. - -Article 3 - ACCEPTATION - -3.1 L'acceptation par le Licencié des termes du Contrat est réputée acquise du fait du premier des faits suivants: - -(i) le chargement du Logiciel par tout moyen notamment par téléchargement à partir d'un serveur distant ou par chargement à partir d'un support physique; -(ii) le premier exercice par le Licencié de l'un quelconque des droits concédés par le Contrat. -3.2 Un exemplaire du Contrat, contenant notamment un avertissement relatif aux spécificités du Logiciel, à la restriction de garantie et à la limitation à un usage par des utilisateurs expérimentés a été mis à disposition du Licencié préalablement à son acceptation telle que définie à l'article 3.1 ci dessus et le Licencié reconnaît en avoir pris connaissance. - -Article 4 - ENTREE EN VIGUEUR ET DUREE - -4.1 ENTREE EN VIGUEUR - -Le Contrat entre en vigueur à la date de son acceptation par le Licencié telle que définie en 3.1. - -4.2 DUREE - -Le Contrat produira ses effets pendant toute la durée légale de protection des droits patrimoniaux portant sur le Logiciel. - -Article 5 - ETENDUE DES DROITS CONCEDES - -Le Concédant concède au Licencié, qui accepte, les droits suivants sur le Logiciel pour toutes destinations et pour la durée du Contrat dans les conditions ci-après détaillées. - -Par ailleurs, si le Concédant détient ou venait à détenir un ou plusieurs brevets d'invention protégeant tout ou partie des fonctionnalités du Logiciel ou de ses composants, il s'engage à ne pas opposer les éventuels droits conférés par ces brevets aux Licenciés successifs qui utiliseraient, exploiteraient ou modifieraient le Logiciel. En cas de cession de ces brevets, le Concédant s'engage à faire reprendre les obligations du présent alinéa aux cessionnaires. - -5.1 DROIT D'UTILISATION - -Le Licencié est autorisé à utiliser le Logiciel, sans restriction quant aux domaines d'application, étant ci-après précisé que cela comporte: - -la reproduction permanente ou provisoire du Logiciel en tout ou partie par tout moyen et sous toute forme. - -le chargement, l'affichage, l'exécution, ou le stockage du Logiciel sur tout support. - -la possibilité d'en observer, d'en étudier, ou d'en tester le fonctionnement afin de déterminer les idées et principes qui sont à la base de n'importe quel élément de ce Logiciel; et ceci, lorsque le Licencié effectue toute opération de chargement, d'affichage, d'exécution, de transmission ou de stockage du Logiciel qu'il est en droit d'effectuer en vertu du Contrat. - -5.2 DROIT D'APPORTER DES CONTRIBUTIONS - -Le droit d'apporter des Contributions comporte le droit de traduire, d'adapter, d'arranger ou d'apporter toute autre modification au Logiciel et le droit de reproduire le logiciel en résultant. - -Le Licencié est autorisé à apporter toute Contribution au Logiciel sous réserve de mentionner, de façon explicite, son nom en tant qu'auteur de cette Contribution et la date de création de celle-ci. - -5.3 DROIT DE DISTRIBUTION - -Le droit de distribution comporte notamment le droit de diffuser, de transmettre et de communiquer le Logiciel au public sur tout support et par tout moyen ainsi que le droit de mettre sur le marché à titre onéreux ou gratuit, un ou des exemplaires du Logiciel par tout procédé. - -Le Licencié est autorisé à distribuer des copies du Logiciel, modifié ou non, à des tiers dans les conditions ci-après détaillées. - -5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION - -Le Licencié est autorisé à distribuer des copies conformes du Logiciel, sous forme de Code Source ou de Code Objet, à condition que cette distribution respecte les dispositions du Contrat dans leur totalité et soit accompagnée: - -d'un exemplaire du Contrat, - -d'un avertissement relatif à la restriction de garantie et de responsabilité du Concédant telle que prévue aux articles 8 et 9, - -et que, dans le cas où seul le Code Objet du Logiciel est redistribué, le Licencié permette un accès effectif au Code Source complet du Logiciel pendant au moins toute la durée de sa distribution du Logiciel, étant entendu que le coût additionnel d'acquisition du Code Source ne devra pas excéder le simple coût de transfert des données. - -5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE - -Lorsque le Licencié apporte une Contribution au Logiciel, le Logiciel Modifié peut être distribué sous un contrat de licence autre que le présent Contrat sous réserve du respect des dispositions de l'article 5.3.4. - -5.3.3 DISTRIBUTION DES MODULES EXTERNES - -Lorsque le Licencié a développé un Module Externe les conditions du Contrat ne s'appliquent pas à ce Module Externe, qui peut être distribué sous un contrat de licence différent. - -5.3.4 CITATIONS - -Le Licencié qui distribue un Logiciel Modifié s'engage expressément: - -à indiquer dans sa documentation qu'il a été réalisé à partir du Logiciel régi par le Contrat, en reproduisant les mentions de propriété intellectuelle du Logiciel, - -à faire en sorte que l'utilisation du Logiciel, ses mentions de propriété intellectuelle et le fait qu'il est régi par le Contrat soient indiqués dans un texte facilement accessible depuis l'interface du Logiciel Modifié, - -à mentionner, sur un site Web librement accessible décrivant le Logiciel Modifié, et pendant au moins toute la durée de sa distribution, qu'il a été réalisé à partir du Logiciel régi par le Contrat, en reproduisant les mentions de propriété intellectuelle du Logiciel, - -lorsqu'il le distribue à un tiers susceptible de distribuer lui-même un Logiciel Modifié, sans avoir à en distribuer le code source, à faire ses meilleurs efforts pour que les obligations du présent article 5.3.4 soient reprises par le dit tiers. - -Lorsque le Logiciel modifié ou non est distribué avec un Module Externe qui a été conçu pour l'utiliser, le Licencié doit soumettre le dit Module Externe aux obligations précédentes. - -5.3.5 COMPATIBILITE AVEC LES LICENCES CeCILL et CeCILL-C - -Lorsqu'un Logiciel Modifié contient une Contribution soumise au contrat de licence CeCILL, les stipulations prévues à l'article 5.3.4 sont facultatives. - -Un Logiciel Modifié peut être distribué sous le contrat de licence CeCILL-C. Les stipulations prévues à l'article 5.3.4 sont alors facultatives. - -Article 6 - PROPRIETE INTELLECTUELLE - -6.1 SUR LE LOGICIEL INITIAL - -Le Titulaire est détenteur des droits patrimoniaux sur le Logiciel Initial. Toute utilisation du Logiciel Initial est soumise au respect des conditions dans lesquelles le Titulaire a choisi de diffuser son oeuvre et nul autre n'a la faculté de modifier les conditions de diffusion de ce Logiciel Initial. - -Le Titulaire s'engage à ce que le Logiciel Initial reste au moins régi par le Contrat et ce, pour la durée visée à l'article 4.2. - -6.2 SUR LES CONTRIBUTIONS - -Le Licencié qui a développé une Contribution est titulaire sur celle-ci des droits de propriété intellectuelle dans les conditions définies par la législation applicable. - -6.3 SUR LES MODULES EXTERNES - -Le Licencié qui a développé un Module Externe est titulaire sur celui-ci des droits de propriété intellectuelle dans les conditions définies par la législation applicable et reste libre du choix du contrat régissant sa diffusion. - -6.4 DISPOSITIONS COMMUNES - -Le Licencié s'engage expressément: - -à ne pas supprimer ou modifier de quelque manière que ce soit les mentions de propriété intellectuelle apposées sur le Logiciel; - -à reproduire à l'identique lesdites mentions de propriété intellectuelle sur les copies du Logiciel modifié ou non. - -Le Licencié s'engage à ne pas porter atteinte, directement ou indirectement, aux droits de propriété intellectuelle du Titulaire et/ou des Contributeurs sur le Logiciel et à prendre, le cas échéant, à l'égard de son personnel toutes les mesures nécessaires pour assurer le respect des dits droits de propriété intellectuelle du Titulaire et/ou des Contributeurs. - -Article 7 - SERVICES ASSOCIES - -7.1 Le Contrat n'oblige en aucun cas le Concédant à la réalisation de prestations d'assistance technique ou de maintenance du Logiciel. - -Cependant le Concédant reste libre de proposer ce type de services. Les termes et conditions d'une telle assistance technique et/ou d'une telle maintenance seront alors déterminés dans un acte séparé. Ces actes de maintenance et/ou assistance technique n'engageront que la seule responsabilité du Concédant qui les propose. - -7.2 De même, tout Concédant est libre de proposer, sous sa seule responsabilité, à ses licenciés une garantie, qui n'engagera que lui, lors de la redistribution du Logiciel et/ou du Logiciel Modifié et ce, dans les conditions qu'il souhaite. Cette garantie et les modalités financières de son application feront l'objet d'un acte séparé entre le Concédant et le Licencié. - -Article 8 - RESPONSABILITE - -8.1 Sous réserve des dispositions de l'article 8.2, le Licencié a la faculté, sous réserve de prouver la faute du Concédant concerné, de solliciter la réparation du préjudice direct qu'il subirait du fait du Logiciel et dont il apportera la preuve. - -8.2 La responsabilité du Concédant est limitée aux engagements pris en application du Contrat et ne saurait être engagée en raison notamment: (i) des dommages dus à l'inexécution, totale ou partielle, de ses obligations par le Licencié, (ii) des dommages directs ou indirects découlant de l'utilisation ou des performances du Logiciel subis par le Licencié et (iii) plus généralement d'un quelconque dommage indirect. En particulier, les Parties conviennent expressément que tout préjudice financier ou commercial (par exemple perte de données, perte de bénéfices, perte d'exploitation, perte de clientèle ou de commandes, manque à gagner, trouble commercial quelconque) ou toute action dirigée contre le Licencié par un tiers, constitue un dommage indirect et n'ouvre pas droit à réparation par le Concédant. - -Article 9 - GARANTIE - -9.1 Le Licencié reconnaît que l'état actuel des connaissances scientifiques et techniques au moment de la mise en circulation du Logiciel ne permet pas d'en tester et d'en vérifier toutes les utilisations ni de détecter l'existence d'éventuels défauts. L'attention du Licencié a été attirée sur ce point sur les risques associés au chargement, à l'utilisation, la modification et/ou au développement et à la reproduction du Logiciel qui sont réservés à des utilisateurs avertis. - -Il relève de la responsabilité du Licencié de contrôler, par tous moyens, l'adéquation du produit à ses besoins, son bon fonctionnement et de s'assurer qu'il ne causera pas de dommages aux personnes et aux biens. - -9.2 Le Concédant déclare de bonne foi être en droit de concéder l'ensemble des droits attachés au Logiciel (comprenant notamment les droits visés à l'article 5). - -9.3 Le Licencié reconnaît que le Logiciel est fourni "en l'état" par le Concédant sans autre garantie, expresse ou tacite, que celle prévue à l'article 9.2 et notamment sans aucune garantie sur sa valeur commerciale, son caractère sécurisé, innovant ou pertinent. - -En particulier, le Concédant ne garantit pas que le Logiciel est exempt d'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible avec l'équipement du Licencié et sa configuration logicielle ni qu'il remplira les besoins du Licencié. - -9.4 Le Concédant ne garantit pas, de manière expresse ou tacite, que le Logiciel ne porte pas atteinte à un quelconque droit de propriété intellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout autre droit de propriété. Ainsi, le Concédant exclut toute garantie au profit du Licencié contre les actions en contrefaçon qui pourraient être diligentées au titre de l'utilisation, de la modification, et de la redistribution du Logiciel. Néanmoins, si de telles actions sont exercées contre le Licencié, le Concédant lui apportera son aide technique et juridique pour sa défense. Cette aide technique et juridique est déterminée au cas par cas entre le Concédant concerné et le Licencié dans le cadre d'un protocole d'accord. Le Concédant dégage toute responsabilité quant à l'utilisation de la dénomination du Logiciel par le Licencié. Aucune garantie n'est apportée quant à l'existence de droits antérieurs sur le nom du Logiciel et sur l'existence d'une marque. - -Article 10 - RESILIATION - -10.1 En cas de manquement par le Licencié aux obligations mises à sa charge par le Contrat, le Concédant pourra résilier de plein droit le Contrat trente (30) jours après notification adressée au Licencié et restée sans effet. - -10.2 Le Licencié dont le Contrat est résilié n'est plus autorisé à utiliser, modifier ou distribuer le Logiciel. Cependant, toutes les licences qu'il aura concédées antérieurement à la résiliation du Contrat resteront valides sous réserve qu'elles aient été effectuées en conformité avec le Contrat. - -Article 11 - DISPOSITIONS DIVERSES - -11.1 CAUSE EXTERIEURE - -Aucune des Parties ne sera responsable d'un retard ou d'une défaillance d'exécution du Contrat qui serait dû à un cas de force majeure, un cas fortuit ou une cause extérieure, telle que, notamment, le mauvais fonctionnement ou les interruptions du réseau électrique ou de télécommunication, la paralysie du réseau liée à une attaque informatique, l'intervention des autorités gouvernementales, les catastrophes naturelles, les dégâts des eaux, les tremblements de terre, le feu, les explosions, les grèves et les conflits sociaux, l'état de guerre... - -11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou plusieurs occasions de se prévaloir d'une ou plusieurs dispositions du Contrat, ne pourra en aucun cas impliquer renonciation par la Partie intéressée à s'en prévaloir ultérieurement. - -11.3 Le Contrat annule et remplace toute convention antérieure, écrite ou orale, entre les Parties sur le même objet et constitue l'accord entier entre les Parties sur cet objet. Aucune addition ou modification aux termes du Contrat n'aura d'effet à l'égard des Parties à moins d'être faite par écrit et signée par leurs représentants dûment habilités. - -11.4 Dans l'hypothèse où une ou plusieurs des dispositions du Contrat s'avèrerait contraire à une loi ou à un texte applicable, existants ou futurs, cette loi ou ce texte prévaudrait, et les Parties feraient les amendements nécessaires pour se conformer à cette loi ou à ce texte. Toutes les autres dispositions resteront en vigueur. De même, la nullité, pour quelque raison que ce soit, d'une des dispositions du Contrat ne saurait entraîner la nullité de l'ensemble du Contrat. - -11.5 LANGUE - -Le Contrat est rédigé en langue française et en langue anglaise, ces deux versions faisant également foi. - -Article 12 - NOUVELLES VERSIONS DU CONTRAT - -12.1 Toute personne est autorisée à copier et distribuer des copies de ce Contrat. - -12.2 Afin d'en préserver la cohérence, le texte du Contrat est protégé et ne peut être modifié que par les auteurs de la licence, lesquels se réservent le droit de publier périodiquement des mises à jour ou de nouvelles versions du Contrat, qui posséderont chacune un numéro distinct. Ces versions ultérieures seront susceptibles de prendre en compte de nouvelles problématiques rencontrées par les logiciels libres. - -12.3 Tout Logiciel diffusé sous une version donnée du Contrat ne pourra faire l'objet d'une diffusion ultérieure que sous la même version du Contrat ou une version postérieure. - -Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE - -13.1 Le Contrat est régi par la loi française. Les Parties conviennent de tenter de régler à l'amiable les différends ou litiges qui viendraient à se produire par suite ou à l'occasion du Contrat. - -13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter de leur survenance et sauf situation relevant d'une procédure d'urgence, les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. - -1 CeCILL est pour Ce(a) C(nrs) I(nria) L(ogiciel) L(ibre) - -Version 1.0 du 2006-09-05. diff --git a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-B.yml b/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-B.yml deleted file mode 100644 index 885a025f180..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-B.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cecill-b diff --git a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-C.txt b/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-C.txt deleted file mode 100644 index 82d123971c2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-C.txt +++ /dev/null @@ -1,239 +0,0 @@ -CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C - -Avertissement - -Ce contrat est une licence de logiciel libre issue d'une concertation entre ses auteurs afin que le respect de deux grands principes préside à sa rédaction: - -d'une part, le respect des principes de diffusion des logiciels libres: accès au code source, droits étendus conférés aux utilisateurs, -d'autre part, la désignation d'un droit applicable, le droit français, auquel elle est conforme, tant au regard du droit de la responsabilité civile que du droit de la propriété intellectuelle et de la protection qu'il offre aux auteurs et titulaires des droits patrimoniaux sur un logiciel. -Les auteurs de la licence CeCILL-C1 sont: - -Commissariat à l'Energie Atomique - CEA, établissement public de recherche à caractère scientifique, technique et industriel, dont le siège est situé 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris. - -Centre National de la Recherche Scientifique - CNRS, établissement public à caractère scientifique et technologique, dont le siège est situé 3 rue Michel-Ange, 75794 Paris cedex 16. - -Institut National de Recherche en Informatique et en Automatique - INRIA, établissement public à caractère scientifique et technologique, dont le siège est situé Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay cedex. - -Préambule - -Ce contrat est une licence de logiciel libre dont l'objectif est de conférer aux utilisateurs la liberté de modifier et de réutiliser le logiciel régi par cette licence. - -L'exercice de cette liberté est assorti d'une obligation de remettre à la disposition de la communauté les modifications apportées au code source du logiciel afin de contribuer à son évolution. - -L'accessibilité au code source et les droits de copie, de modification et de redistribution qui découlent de ce contrat ont pour contrepartie de n'offrir aux utilisateurs qu'une garantie limitée et de ne faire peser sur l'auteur du logiciel, le titulaire des droits patrimoniaux et les concédants successifs qu'une responsabilité restreinte. - -A cet égard l'attention de l'utilisateur est attirée sur les risques associés au chargement, à l'utilisation, à la modification et/ou au développement et à la reproduction du logiciel par l'utilisateur étant donné sa spécificité de logiciel libre, qui peut le rendre complexe à manipuler et qui le réserve donc à des développeurs ou des professionnels avertis possédant des connaissances informatiques approfondies. Les utilisateurs sont donc invités à charger et tester l'adéquation du logiciel à leurs besoins dans des conditions permettant d'assurer la sécurité de leurs systèmes et/ou de leurs données et, plus généralement, à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. Ce contrat peut être reproduit et diffusé librement, sous réserve de le conserver en l'état, sans ajout ni suppression de clauses. - -Ce contrat est susceptible de s'appliquer à tout logiciel dont le titulaire des droits patrimoniaux décide de soumettre l'exploitation aux dispositions qu'il contient. - -Article 1 - DEFINITIONS - -Dans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une lettre capitale, auront la signification suivante: - -Contrat: désigne le présent contrat de licence, ses éventuelles versions postérieures et annexes. - -Logiciel: désigne le logiciel sous sa forme de Code Objet et/ou de Code Source et le cas échéant sa documentation, dans leur état au moment de l'acceptation du Contrat par le Licencié. - -Logiciel Initial: désigne le Logiciel sous sa forme de Code Source et éventuellement de Code Objet et le cas échéant sa documentation, dans leur état au moment de leur première diffusion sous les termes du Contrat. - -Logiciel Modifié: désigne le Logiciel modifié par au moins une Contribution Intégrée. - -Code Source: désigne l'ensemble des instructions et des lignes de programme du Logiciel et auquel l'accès est nécessaire en vue de modifier le Logiciel. - -Code Objet: désigne les fichiers binaires issus de la compilation du Code Source. - -Titulaire: désigne le ou les détenteurs des droits patrimoniaux d'auteur sur le Logiciel Initial. - -Licencié: désigne le ou les utilisateurs du Logiciel ayant accepté le Contrat. - -Contributeur: désigne le Licencié auteur d'au moins une Contribution Intégrée. - -Concédant: désigne le Titulaire ou toute personne physique ou morale distribuant le Logiciel sous le Contrat. - -Contribution Intégrée: désigne l'ensemble des modifications, corrections, traductions, adaptations et/ou nouvelles fonctionnalités intégrées dans le Code Source par tout Contributeur. - -Module Lié: désigne un ensemble de fichiers sources y compris leur documentation qui, sans modification du Code Source, permet de réaliser des fonctionnalités ou services supplémentaires à ceux fournis par le Logiciel. - -Logiciel Dérivé: désigne toute combinaison du Logiciel, modifié ou non, et d'un Module Lié. - -Parties: désigne collectivement le Licencié et le Concédant. - -Ces termes s'entendent au singulier comme au pluriel. - -Article 2 - OBJET - -Le Contrat a pour objet la concession par le Concédant au Licencié d'une licence non exclusive, cessible et mondiale du Logiciel telle que définie ci-après à l'article 5 pour toute la durée de protection des droits portant sur ce Logiciel. - -Article 3 - ACCEPTATION - -3.1 L'acceptation par le Licencié des termes du Contrat est réputée acquise du fait du premier des faits suivants: - -(i) le chargement du Logiciel par tout moyen notamment par téléchargement à partir d'un serveur distant ou par chargement à partir d'un support physique; -(ii) le premier exercice par le Licencié de l'un quelconque des droits concédés par le Contrat. -3.2 Un exemplaire du Contrat, contenant notamment un avertissement relatif aux spécificités du Logiciel, à la restriction de garantie et à la limitation à un usage par des utilisateurs expérimentés a été mis à disposition du Licencié préalablement à son acceptation telle que définie à l'article 3.1 ci dessus et le Licencié reconnaît en avoir pris connaissance. - -Article 4 - ENTREE EN VIGUEUR ET DUREE - -4.1 ENTREE EN VIGUEUR - -Le Contrat entre en vigueur à la date de son acceptation par le Licencié telle que définie en 3.1. - -4.2 DUREE - -Le Contrat produira ses effets pendant toute la durée légale de protection des droits patrimoniaux portant sur le Logiciel. - -Article 5 - ETENDUE DES DROITS CONCEDES - -Le Concédant concède au Licencié, qui accepte, les droits suivants sur le Logiciel pour toutes destinations et pour la durée du Contrat dans les conditions ci-après détaillées. - -Par ailleurs, si le Concédant détient ou venait à détenir un ou plusieurs brevets d'invention protégeant tout ou partie des fonctionnalités du Logiciel ou de ses composants, il s'engage à ne pas opposer les éventuels droits conférés par ces brevets aux Licenciés successifs qui utiliseraient, exploiteraient ou modifieraient le Logiciel. En cas de cession de ces brevets, le Concédant s'engage à faire reprendre les obligations du présent alinéa aux cessionnaires. - -5.1 DROIT D'UTILISATION - -Le Licencié est autorisé à utiliser le Logiciel, sans restriction quant aux domaines d'application, étant ci-après précisé que cela comporte: - -la reproduction permanente ou provisoire du Logiciel en tout ou partie par tout moyen et sous toute forme. - -le chargement, l'affichage, l'exécution, ou le stockage du Logiciel sur tout support. - -la possibilité d'en observer, d'en étudier, ou d'en tester le fonctionnement afin de déterminer les idées et principes qui sont à la base de n'importe quel élément de ce Logiciel; et ceci, lorsque le Licencié effectue toute opération de chargement, d'affichage, d'exécution, de transmission ou de stockage du Logiciel qu'il est en droit d'effectuer en vertu du Contrat. - -5.2 DROIT DE MODIFICATION - -Le droit de modification comporte le droit de traduire, d'adapter, d'arranger ou d'apporter toute autre modification au Logiciel et le droit de reproduire le logiciel en résultant. Il comprend en particulier le droit de créer un Logiciel Dérivé. - -Le Licencié est autorisé à apporter toute modification au Logiciel sous réserve de mentionner, de façon explicite, son nom en tant qu'auteur de cette modification et la date de création de celle-ci. - -5.3 DROIT DE DISTRIBUTION - -Le droit de distribution comporte notamment le droit de diffuser, de transmettre et de communiquer le Logiciel au public sur tout support et par tout moyen ainsi que le droit de mettre sur le marché à titre onéreux ou gratuit, un ou des exemplaires du Logiciel par tout procédé. - -Le Licencié est autorisé à distribuer des copies du Logiciel, modifié ou non, à des tiers dans les conditions ci-après détaillées. - -5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION - -Le Licencié est autorisé à distribuer des copies conformes du Logiciel, sous forme de Code Source ou de Code Objet, à condition que cette distribution respecte les dispositions du Contrat dans leur totalité et soit accompagnée: - -d'un exemplaire du Contrat, - -d'un avertissement relatif à la restriction de garantie et de responsabilité du Concédant telle que prévue aux articles 8 et 9, - -et que, dans le cas où seul le Code Objet du Logiciel est redistribué, le Licencié permette un accès effectif au Code Source complet du Logiciel pendant au moins toute la durée de sa distribution du Logiciel, étant entendu que le coût additionnel d'acquisition du Code Source ne devra pas excéder le simple coût de transfert des données. - -5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE - -Lorsque le Licencié apporte une Contribution Intégrée au Logiciel, les conditions de distribution du Logiciel Modifié en résultant sont alors soumises à l'intégralité des dispositions du Contrat. - -Le Licencié est autorisé à distribuer le Logiciel Modifié sous forme de code source ou de code objet, à condition que cette distribution respecte les dispositions du Contrat dans leur totalité et soit accompagnée: - -d'un exemplaire du Contrat, - -d'un avertissement relatif à la restriction de garantie et de responsabilité du Concédant telle que prévue aux articles 8 et 9, - -et que, dans le cas où seul le code objet du Logiciel Modifié est redistribué, le Licencié permette un accès effectif à son code source complet pendant au moins toute la durée de sa distribution du Logiciel Modifié, étant entendu que le coût additionnel d'acquisition du code source ne devra pas excéder le simple coût de transfert des données. - -5.3.3 DISTRIBUTION DU LOGICIEL DERIVE - -Lorsque le Licencié crée un Logiciel Dérivé, ce Logiciel Dérivé peut être distribué sous un contrat de licence autre que le présent Contrat à condition de respecter les obligations de mention des droits sur le Logiciel telles que définies à l'article 6.4. Dans le cas où la création du Logiciel Dérivé a nécessité une modification du Code Source le licencié s'engage à ce que: - -le Logiciel Modifié correspondant à cette modification soit régi par le présent Contrat, -les Contributions Intégrées dont le Logiciel Modifié résulte soient clairement identifiées et documentées, -le Licencié permette un accès effectif au code source du Logiciel Modifié, pendant au moins toute la durée de la distribution du Logiciel Dérivé, de telle sorte que ces modifications puissent être reprises dans une version ultérieure du Logiciel, étant entendu que le coût additionnel d'acquisition du code source du Logiciel Modifié ne devra pas excéder le simple coût du transfert des données. -5.3.4 COMPATIBILITE AVEC LA LICENCE CeCILL - -Lorsqu'un Logiciel Modifié contient une Contribution Intégrée soumise au contrat de licence CeCILL, ou lorsqu'un Logiciel Dérivé contient un Module Lié soumis au contrat de licence CeCILL, les stipulations prévues au troisième item de l'article 6.4 sont facultatives. - -Article 6 - PROPRIETE INTELLECTUELLE - -6.1 SUR LE LOGICIEL INITIAL - -Le Titulaire est détenteur des droits patrimoniaux sur le Logiciel Initial. Toute utilisation du Logiciel Initial est soumise au respect des conditions dans lesquelles le Titulaire a choisi de diffuser son oeuvre et nul autre n'a la faculté de modifier les conditions de diffusion de ce Logiciel Initial. - -Le Titulaire s'engage à ce que le Logiciel Initial reste au moins régi par le Contrat et ce, pour la durée visée à l'article 4.2. - -6.2 SUR LES CONTRIBUTIONS INTEGREES - -Le Licencié qui a développé une Contribution Intégrée est titulaire sur celle-ci des droits de propriété intellectuelle dans les conditions définies par la législation applicable. - -6.3 SUR LES MODULES LIES - -Le Licencié qui a développé un Module Lié est titulaire sur celui-ci des droits de propriété intellectuelle dans les conditions définies par la législation applicable et reste libre du choix du contrat régissant sa diffusion dans les conditions définies à l'article 5.3.3. - -6.4 MENTIONS DES DROITS - -Le Licencié s'engage expressément: - -à ne pas supprimer ou modifier de quelque manière que ce soit les mentions de propriété intellectuelle apposées sur le Logiciel; - -à reproduire à l'identique lesdites mentions de propriété intellectuelle sur les copies du Logiciel modifié ou non; - -à faire en sorte que l'utilisation du Logiciel, ses mentions de propriété intellectuelle et le fait qu'il est régi par le Contrat soient indiqués dans un texte facilement accessible notamment depuis l'interface de tout Logiciel Dérivé. -Le Licencié s'engage à ne pas porter atteinte, directement ou indirectement, aux droits de propriété intellectuelle du Titulaire et/ou des Contributeurs sur le Logiciel et à prendre, le cas échéant, à l'égard de son personnel toutes les mesures nécessaires pour assurer le respect des dits droits de propriété intellectuelle du Titulaire et/ou des Contributeurs. - -Article 7 - SERVICES ASSOCIES - -7.1 Le Contrat n'oblige en aucun cas le Concédant à la réalisation de prestations d'assistance technique ou de maintenance du Logiciel. - -Cependant le Concédant reste libre de proposer ce type de services. Les termes et conditions d'une telle assistance technique et/ou d'une telle maintenance seront alors déterminés dans un acte séparé. Ces actes de maintenance et/ou assistance technique n'engageront que la seule responsabilité du Concédant qui les propose. - -7.2 De même, tout Concédant est libre de proposer, sous sa seule responsabilité, à ses licenciés une garantie, qui n'engagera que lui, lors de la redistribution du Logiciel et/ou du Logiciel Modifié et ce, dans les conditions qu'il souhaite. Cette garantie et les modalités financières de son application feront l'objet d'un acte séparé entre le Concédant et le Licencié. - -Article 8 - RESPONSABILITE - -8.1 Sous réserve des dispositions de l'article 8.2, le Licencié a la faculté, sous réserve de prouver la faute du Concédant concerné, de solliciter la réparation du préjudice direct qu'il subirait du fait du Logiciel et dont il apportera la preuve. - -8.2 La responsabilité du Concédant est limitée aux engagements pris en application du Contrat et ne saurait être engagée en raison notamment: (i) des dommages dus à l'inexécution, totale ou partielle, de ses obligations par le Licencié, (ii) des dommages directs ou indirects découlant de l'utilisation ou des performances du Logiciel subis par le Licencié et (iii) plus généralement d'un quelconque dommage indirect. En particulier, les Parties conviennent expressément que tout préjudice financier ou commercial (par exemple perte de données, perte de bénéfices, perte d'exploitation, perte de clientèle ou de commandes, manque à gagner, trouble commercial quelconque) ou toute action dirigée contre le Licencié par un tiers, constitue un dommage indirect et n'ouvre pas droit à réparation par le Concédant. - -Article 9 - GARANTIE - -9.1 Le Licencié reconnaît que l'état actuel des connaissances scientifiques et techniques au moment de la mise en circulation du Logiciel ne permet pas d'en tester et d'en vérifier toutes les utilisations ni de détecter l'existence d'éventuels défauts. L'attention du Licencié a été attirée sur ce point sur les risques associés au chargement, à l'utilisation, la modification et/ou au développement et à la reproduction du Logiciel qui sont réservés à des utilisateurs avertis. - -Il relève de la responsabilité du Licencié de contrôler, par tous moyens, l'adéquation du produit à ses besoins, son bon fonctionnement et de s'assurer qu'il ne causera pas de dommages aux personnes et aux biens. - -9.2 Le Concédant déclare de bonne foi être en droit de concéder l'ensemble des droits attachés au Logiciel (comprenant notamment les droits visés à l'article 5). - -9.3 Le Licencié reconnaît que le Logiciel est fourni "en l'état" par le Concédant sans autre garantie, expresse ou tacite, que celle prévue à l'article 9.2 et notamment sans aucune garantie sur sa valeur commerciale, son caractère sécurisé, innovant ou pertinent. - -En particulier, le Concédant ne garantit pas que le Logiciel est exempt d'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible avec l'équipement du Licencié et sa configuration logicielle ni qu'il remplira les besoins du Licencié. - -9.4 Le Concédant ne garantit pas, de manière expresse ou tacite, que le Logiciel ne porte pas atteinte à un quelconque droit de propriété intellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout autre droit de propriété. Ainsi, le Concédant exclut toute garantie au profit du Licencié contre les actions en contrefaçon qui pourraient être diligentées au titre de l'utilisation, de la modification, et de la redistribution du Logiciel. Néanmoins, si de telles actions sont exercées contre le Licencié, le Concédant lui apportera son aide technique et juridique pour sa défense. Cette aide technique et juridique est déterminée au cas par cas entre le Concédant concerné et le Licencié dans le cadre d'un protocole d'accord. Le Concédant dégage toute responsabilité quant à l'utilisation de la dénomination du Logiciel par le Licencié. Aucune garantie n'est apportée quant à l'existence de droits antérieurs sur le nom du Logiciel et sur l'existence d'une marque. - -Article 10 - RESILIATION - -10.1 En cas de manquement par le Licencié aux obligations mises à sa charge par le Contrat, le Concédant pourra résilier de plein droit le Contrat trente (30) jours après notification adressée au Licencié et restée sans effet. - -10.2 Le Licencié dont le Contrat est résilié n'est plus autorisé à utiliser, modifier ou distribuer le Logiciel. Cependant, toutes les licences qu'il aura concédées antérieurement à la résiliation du Contrat resteront valides sous réserve qu'elles aient été effectuées en conformité avec le Contrat. - -Article 11 - DISPOSITIONS DIVERSES - -11.1 CAUSE EXTERIEURE - -Aucune des Parties ne sera responsable d'un retard ou d'une défaillance d'exécution du Contrat qui serait dû à un cas de force majeure, un cas fortuit ou une cause extérieure, telle que, notamment, le mauvais fonctionnement ou les interruptions du réseau électrique ou de télécommunication, la paralysie du réseau liée à une attaque informatique, l'intervention des autorités gouvernementales, les catastrophes naturelles, les dégâts des eaux, les tremblements de terre, le feu, les explosions, les grèves et les conflits sociaux, l'état de guerre... - -11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou plusieurs occasions de se prévaloir d'une ou plusieurs dispositions du Contrat, ne pourra en aucun cas impliquer renonciation par la Partie intéressée à s'en prévaloir ultérieurement. - -11.3 Le Contrat annule et remplace toute convention antérieure, écrite ou orale, entre les Parties sur le même objet et constitue l'accord entier entre les Parties sur cet objet. Aucune addition ou modification aux termes du Contrat n'aura d'effet à l'égard des Parties à moins d'être faite par écrit et signée par leurs représentants dûment habilités. - -11.4 Dans l'hypothèse où une ou plusieurs des dispositions du Contrat s'avèrerait contraire à une loi ou à un texte applicable, existants ou futurs, cette loi ou ce texte prévaudrait, et les Parties feraient les amendements nécessaires pour se conformer à cette loi ou à ce texte. Toutes les autres dispositions resteront en vigueur. De même, la nullité, pour quelque raison que ce soit, d'une des dispositions du Contrat ne saurait entraîner la nullité de l'ensemble du Contrat. - -11.5 LANGUE - -Le Contrat est rédigé en langue française et en langue anglaise, ces deux versions faisant également foi. - -Article 12 - NOUVELLES VERSIONS DU CONTRAT - -12.1 Toute personne est autorisée à copier et distribuer des copies de ce Contrat. - -12.2 Afin d'en préserver la cohérence, le texte du Contrat est protégé et ne peut être modifié que par les auteurs de la licence, lesquels se réservent le droit de publier périodiquement des mises à jour ou de nouvelles versions du Contrat, qui posséderont chacune un numéro distinct. Ces versions ultérieures seront susceptibles de prendre en compte de nouvelles problématiques rencontrées par les logiciels libres. - -12.3 Tout Logiciel diffusé sous une version donnée du Contrat ne pourra faire l'objet d'une diffusion ultérieure que sous la même version du Contrat ou une version postérieure. - -Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE - -13.1 Le Contrat est régi par la loi française. Les Parties conviennent de tenter de régler à l'amiable les différends ou litiges qui viendraient à se produire par suite ou à l'occasion du Contrat. - -13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter de leur survenance et sauf situation relevant d'une procédure d'urgence, les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. - -1 CeCILL est pour Ce(a) C(nrs) I(nria) L(ogiciel) L(ibre) - -Version 1.0 du 2006-09-05. diff --git a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-C.yml b/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-C.yml deleted file mode 100644 index ff24493a200..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CECILL/CECILL-C.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cecill-c diff --git a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python-GPL-Compatible.txt b/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python-GPL-Compatible.txt deleted file mode 100644 index 2754c70e891..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python-GPL-Compatible.txt +++ /dev/null @@ -1,23 +0,0 @@ -CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6.1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. - -1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6.1 software in source or binary form and its associated documentation. - -2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6.1 alone or in any derivative version, provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright © 1995-2001 Corporation for National Research Initiatives; All Rights Reserved" are retained in Python 1.6.1 alone or in any derivative version prepared by Licensee. Alternately, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6.1 is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement together with Python 1.6.1 may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1013. This Agreement may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1013". - -3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6.1 or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python 1.6.1. - -4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. - -7. This License Agreement shall be governed by the federal intellectual property law of the United States, including without limitation the federal copyright law, and, to the extent such U.S. federal law does not apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. Notwithstanding the foregoing, with regard to derivative works based on Python 1.6.1 that incorporate non-separable material that was previously distributed under the GNU General Public License (GPL), the law of the Commonwealth of Virginia shall govern this License Agreement only as to issues arising under or with respect to Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. - -8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. - -ACCEPT diff --git a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python-GPL-Compatible.yml b/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python-GPL-Compatible.yml deleted file mode 100644 index c187be05e4b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python-GPL-Compatible.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cnri-python-1.6.1 diff --git a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python.txt b/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python.txt deleted file mode 100644 index 64f1298e959..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python.txt +++ /dev/null @@ -1,25 +0,0 @@ -CNRI OPEN SOURCE LICENSE AGREEMENT - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. - -1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). - -2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. - -Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". - -3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. - -4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. - -7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. - -8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. - -ACCEPT diff --git a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python.yml b/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python.yml deleted file mode 100644 index a6f0598c4aa..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CNRI-Python/CNRI-Python.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cnri-python-1.6 diff --git a/tests/licensedcode/data/more_licenses/tests/CPAL/CPAL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/CPAL/CPAL-1.0.txt deleted file mode 100644 index 9206cb08caf..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPAL/CPAL-1.0.txt +++ /dev/null @@ -1,172 +0,0 @@ -Common Public Attribution License Version 1.0 (CPAL) - -1. “Definitions” - -1.0.1 “Commercial Use” means distribution or otherwise making the Covered Code available to a third party. - -1.1 “Contributor” means each entity that creates or contributes to the creation of Modifications. - -1.2 “Contributor Version” means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3 “Covered Code” means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4 “Electronic Distribution Mechanism” means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5 “Executable” means Covered Code in any form other than Source Code. - -1.6 “Initial Developer” means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7 “Larger Work” means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8 “License” means this document. - -1.8.1 “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9 “Modifications” means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10 “Original Code” means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.10.1 “Patent Claims” means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.11 “Source Code” means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor’s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12 “You” (or “Your”) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, “You” includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1 The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and - -(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. - -(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. - -2.2 Contributor Grant. -Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. - -(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - -3.1 Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients’ rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2 Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3 Description of Modifications. -You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4 Intellectual Property Matters - -(a) Third Party Claims. If Contributor has knowledge that a license under a third party’s intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled “LEGAL” which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. If Contributor’s Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. - -(c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor’s Modifications are Contributor’s original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5 Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients’ rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6 Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients’ rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient’s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer, Original Developer or any Contributor. You hereby agree to indemnify the Initial Developer, Original Developer and every Contributor for any liability incurred by the Initial Developer, Original Developer or such Contributor as a result of any such terms You offer. - -3.7 Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1 New Versions. -Socialtext, Inc. (“Socialtext”) may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2 Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Socialtext. No one other than Socialtext has the right to modify the terms applicable to Covered Code created under this License. - -6.3 Derivative Works. -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases “Socialtext”, “CPAL” or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the CPAL. (Filling in the name of the Initial Developer, Original Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER, ORIGINAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - -8.1 This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -8.2 If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer, Original Developer or a Contributor (the Initial Developer, Original Developer or Contributor against whom You file such action is referred to as “Participant”) alleging that: - -(a) such Participant’s Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant’s Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. - -8.3 If You assert a patent infringement claim against Participant alleging that such Participant’s Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -8.4 In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ORIGINAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY’S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. -The Covered Code is a “commercial item,” as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of “commercial computer software” and “commercial computer software documentation,” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys’ fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. -As between Initial Developer, Original Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer, Original Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. -Initial Developer may designate portions of the Covered Code as Multiple-Licensed. Multiple-Licensed means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the CPAL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. - -14. ADDITIONAL TERM: ATTRIBUTION - -(a) As a modest attribution to the organizer of the development of the Original Code (“Original Developer”), in the hope that its promotional value may help justify the time, money and effort invested in writing the Original Code, the Original Developer may include in Exhibit B (“Attribution Information”) a requirement that each time an Executable and Source Code or a Larger Work is launched or initially run (which includes initiating a session), a prominent display of the Original Developer’s Attribution Information (as defined below) must occur on the graphic user interface employed by the end user to access such Covered Code (which may include display on a splash screen), if any. The size of the graphic image should be consistent with the size of the other elements of the Attribution Information. If the access by the end user to the Executable and Source Code does not create a graphic user interface for access to the Covered Code, this obligation shall not apply. If the Original Code displays such Attribution Information in a particular form (such as in the form of a splash screen, notice at login, an “about” display, or dedicated attribution area on user interface screens), continued use of such form for that Attribution Information is one way of meeting this requirement for notice. - -(b) Attribution information may only include a copyright notice, a brief phrase, graphic image and a URL (“Attribution Information”) and is subject to the Attribution Limits as defined below. For these purposes, prominent shall mean display for sufficient duration to give reasonable notice to the user of the identity of the Original Developer and that if You include Attribution Information or similar information for other parties, You must ensure that the Attribution Information for the Original Developer shall be no less prominent than such Attribution Information or similar information for the other party. For greater certainty, the Original Developer may choose to specify in Exhibit B below that the above attribution requirement only applies to an Executable and Source Code resulting from the Original Code or any Modification, but not a Larger Work. The intent is to provide for reasonably modest attribution, therefore the Original Developer cannot require that You display, at any time, more than the following information as Attribution Information: (a) a copyright notice including the name of the Original Developer; (b) a word or one phrase (not exceeding 10 words); (c) one graphic image provided by the Original Developer; and (d) a URL (collectively, the “Attribution Limits”). - -(c) If Exhibit B does not include any Attribution Information, then there are no requirements for You to display any Attribution Information of the Original Developer. - -(d) You acknowledge that all trademarks, service marks and/or trade names contained within the Attribution Information distributed with the Covered Code are the exclusive property of their owners and may only be used with the permission of their owners, or under circumstances otherwise permitted by law or as expressly set out in this License. - -15. ADDITIONAL TERM: NETWORK USE. -The term “External Deployment” means the use, distribution, or communication of the Original Code or Modifications in any way such that the Original Code or Modifications may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Code or Modifications as a distribution under section 3.1 and make Source Code available under Section 3.2. - -EXHIBIT A. Common Public Attribution License Version 1.0. - -“The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at _____________. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B. -Software distributed under the License is distributed on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. -The Original Code is______________________. -The Original Developer is not the Initial Developer and is __________. If left blank, the Original Developer is the Initial Developer. -The Initial Developer of the Original Code is ____________. All portions of the code written by ___________ are Copyright (c) _____. All Rights Reserved. -Contributor ______________________. -Alternatively, the contents of this file may be used under the terms of the _____ license (the [___] License), in which case the provisions of [______] License are applicable instead of those above. -If you wish to allow use of your version of this file only under the terms of the [____] License and not to allow others to use your version of this file under the CPAL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either the CPAL or the [___] License.” - -[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] - -EXHIBIT B. Attribution Information - -Attribution Copyright Notice: _______________________ -Attribution Phrase (not exceeding 10 words): _______________________ -Attribution URL: _______________________ -Graphic Image as provided in the Covered Code, if any. -Display of Attribution Information is [required/not required] in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code not governed by the terms of the CPAL. diff --git a/tests/licensedcode/data/more_licenses/tests/CPAL/CPAL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/CPAL/CPAL-1.0.yml deleted file mode 100644 index 22df5f86f80..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPAL/CPAL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpal-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-0.5 b/tests/licensedcode/data/more_licenses/tests/CPL/CPL-0.5 deleted file mode 100644 index fe9b6d1599d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-0.5 +++ /dev/null @@ -1,237 +0,0 @@ - -Common Public License Version 0.5 - - 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. - - 1. DEFINITIONS - - "Contribution" means: - - a) in the case of the initial Contributor, the initial code and - documentation distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - - i) changes to the Program, and - - ii) additions to the Program; - - 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. - - "Contributor" means any person or entity that distributes the Program. - - "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. - - "Program" means the Contributions distributed in accordance with this - Agreement. - - "Recipient" means anyone who receives the Program under this - Agreement, including all Contributors. - - 2. GRANT OF RIGHTS - - 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. - - 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. - - 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. - - 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. - - 3. REQUIREMENTS - - A Contributor may choose to distribute the Program in object code form - under its own license agreement, provided that: - - a) it complies with the terms and conditions of this Agreement; and - - b) its license agreement: - - 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; - - ii) effectively excludes on behalf of all Contributors all - liability for damages, including direct, indirect, special, - incidental and consequential damages, such as lost profits; - - iii) states that any provisions which differ from this Agreement - are offered by that Contributor alone and not by any other party; - and - - 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. - - When the Program is made available in source code form: - - a) it must be made available under this Agreement; and - - b) a copy of this Agreement must be included with each copy of the - Program. - - Contributors may not remove or alter any copyright notices contained - within the Program. - - 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. - - 4. COMMERCIAL DISTRIBUTION - - 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. - - 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. - - 5. NO WARRANTY - - 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. - - 6. DISCLAIMER OF LIABILITY - - 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. - - 7. GENERAL - - 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. - - 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. - - 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. - - 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. - - 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. diff --git a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-0.yml b/tests/licensedcode/data/more_licenses/tests/CPL/CPL-0.yml deleted file mode 100644 index 5cd4e8cce4e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-0.5 diff --git a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/CPL/CPL-1.0.txt deleted file mode 100644 index 23714fcff06..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-1.0.txt +++ /dev/null @@ -1,213 +0,0 @@ -Common Public License Version 1.0 - -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. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial code and - documentation distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - - i) changes to the Program, and - - ii) additions to the Program; - - 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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, -including all Contributors. - -2. GRANT OF RIGHTS - -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. - -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. - -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. - -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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its -own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -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; - -ii) effectively excludes on behalf of all Contributors all liability for -damages, including direct, indirect, special, incidental and consequential -damages, such as lost profits; - -iii) states that any provisions which differ from this Agreement are offered -by that Contributor alone and not by any other party; and - -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. - -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and - -b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the -Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. - -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. diff --git a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/CPL/CPL-1.0.yml deleted file mode 100644 index bc370672c9b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPL/CPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CPL/Not_Eclipse_license.txt b/tests/licensedcode/data/more_licenses/tests/CPL/Not_Eclipse_license.txt deleted file mode 100644 index 605dc5b325b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPL/Not_Eclipse_license.txt +++ /dev/null @@ -1,222 +0,0 @@ -Common Public License - v 1.0 - -Updated 16 Apr 2009 - -As of 25 Feb 2009, IBM has assigned the Agreement Steward role for the CPL to -the Eclipse Foundation. Eclipse has designated the Eclipse Public License (EPL) -as the follow-on version of the CPL. - -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. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial code and -documentation distributed under this Agreement, and - b) in the case of each subsequent Contributor: - - i) changes to the Program, and - - ii) additions to the Program; - - 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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this -Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, -including all Contributors. - -2. GRANT OF RIGHTS - - 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. - - 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. - - 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. - - 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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under -its own license agreement, provided that: - - a) it complies with the terms and conditions of this Agreement; and - - b) its license agreement: - - 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; - - ii) effectively excludes on behalf of all Contributors all liability for -damages, including direct, indirect, special, incidental and consequential -damages, such as lost profits; - - iii) states that any provisions which differ from this Agreement are -offered by that Contributor alone and not by any other party; and - - 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. - -When the Program is made available in source code form: - - a) it must be made available under this Agreement; and - - b) a copy of this Agreement must be included with each copy of the -Program. - -Contributors may not remove or alter any copyright notices contained within the -Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. - -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. diff --git a/tests/licensedcode/data/more_licenses/tests/CPL/Not_Eclipse_license.yml b/tests/licensedcode/data/more_licenses/tests/CPL/Not_Eclipse_license.yml deleted file mode 100644 index bc370672c9b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CPL/Not_Eclipse_license.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/CUA-OPL/CUA-OPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/CUA-OPL/CUA-OPL-1.0.txt deleted file mode 100644 index 8232bf14dc3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CUA-OPL/CUA-OPL-1.0.txt +++ /dev/null @@ -1,471 +0,0 @@ -CUA Office Public License Version 1.0 - -1. Definitions. - -1.0.1. "Commercial Use" means distribution or otherwise making the -Covered Code available to a third party. - -1.1. "Contributor" means each entity that creates or contributes to -the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original -Code, prior Modifications used by a Contributor, and the Modifications -made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the -combination of the Original Code and Modifications, in each case -including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally -accepted in the software development community for the electronic -transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source -Code. - -1.6. "Initial Developer" means the individual or entity identified -as the Initial Developer in the Source Code notice required by Exhibit -A. - -1.7. "Larger Work" means a work which combines Covered Code or -portions thereof with code not governed by the terms of this License. - -1.8. "License" means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum -extent possible, whether at the time of the initial grant or -subsequently acquired, any and all of the rights conveyed herein. - -1.9. "Modifications" means any addition to or deletion from the -substance or structure of either the Original Code or any previous -Modifications. When Covered Code is released as a series of files, a -Modification is: - -A. Any addition to or deletion from the contents of a file -containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or -previous Modifications. - -1.10. "Original Code" means Source Code of computer software code -which is described in the Source Code notice required by Exhibit A as -Original Code, and which, at the time of its release under this -License is not already Covered Code governed by this License. - -1.10.1. "Patent Claims" means any patent claim(s), now owned or -hereafter acquired, including without limitation, method, process, -and apparatus claims, in any patent Licensable by grantor. - -1.11. "Source Code" means the preferred form of the Covered Code for -making modifications to it, including all modules it contains, plus -any associated interface definition files, scripts used to control -compilation and installation of an Executable, or source code -differential comparisons against either the Original Code or another -well known, available Covered Code of the Contributor's choice. The -Source Code can be in a compressed or archival form, provided the -appropriate decompression or de-archiving software is widely available -for no charge. - -1.12. "You" (or "Your") means an individual or a legal entity -exercising rights under, and complying with all of the terms of, this -License or a future version of this License issued under Section 6.1. -For legal entities, "You" includes any entity which controls, is -controlled by, or is under common control with You. For purposes of -this definition, "control" means (a) the power, direct or indirect, -to cause the direction or management of such entity, whether by -contract or otherwise, or (b) ownership of more than fifty percent -(50%) of the outstanding shares or beneficial ownership of such -entity. - -2. Source Code License. - -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) under intellectual property rights (other than patent or -trademark) Licensable by Initial Developer to use, reproduce, -modify, display, perform, sublicense and distribute the Original -Code (or portions thereof) with or without Modifications, and/or -as part of a Larger Work; and - -(b) under Patents Claims infringed by the making, using or -selling of Original Code, to make, have made, use, practice, -sell, and offer for sale, and/or otherwise dispose of the -Original Code (or portions thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are -effective on the date Initial Developer first distributes -Original Code under the terms of this License. - -(d) Notwithstanding Section 2.1(b) above, no patent license is -granted: 1) for code that You delete from the Original Code; 2) -separate from the Original Code; or 3) for infringements caused -by: i) the modification of the Original Code or ii) the -combination of the Original Code with other software or devices. - -2.2. Contributor Grant. -Subject to third party intellectual property claims, each Contributor -hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent or -trademark) Licensable by Contributor, to use, reproduce, modify, -display, perform, sublicense and distribute the Modifications -created by such Contributor (or portions thereof) either on an -unmodified basis, with other Modifications, as Covered Code -and/or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using, or -selling of Modifications made by that Contributor either alone -and/or in combination with its Contributor Version (or portions -of such combination), to make, use, sell, offer for sale, have -made, and/or otherwise dispose of: 1) Modifications made by that -Contributor (or portions thereof); and 2) the combination of -Modifications made by that Contributor with its Contributor -Version (or portions of such combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are -effective on the date Contributor first makes Commercial Use of -the Covered Code. - -(d) Notwithstanding Section 2.2(b) above, no patent license is -granted: 1) for any code that Contributor has deleted from the -Contributor Version; 2) separate from the Contributor Version; -3) for infringements caused by: i) third party modifications of -Contributor Version or ii) the combination of Modifications made -by that Contributor with other software (except as part of the -Contributor Version) or other devices; or 4) under Patent Claims -infringed by Covered Code in the absence of Modifications made by -that Contributor. - -3. Distribution Obligations. - -3.1. Application of License. -The Modifications which You create or to which You contribute are -governed by the terms of this License, including without limitation -Section 2.2. The Source Code version of Covered Code may be -distributed only under the terms of this License or a future version -of this License released under Section 6.1, and You must include a -copy of this License with every copy of the Source Code You -distribute. You may not offer or impose any terms on any Source Code -version that alters or restricts the applicable version of this -License or the recipients' rights hereunder. However, You may include -an additional document offering the additional rights described in -Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be -made available in Source Code form under the terms of this License -either on the same media as an Executable version or via an accepted -Electronic Distribution Mechanism to anyone to whom you made an -Executable version available; and if made available via Electronic -Distribution Mechanism, must remain available for at least twelve (12) -months after the date it initially became available, or at least six -(6) months after a subsequent version of that particular Modification -has been made available to such recipients. You are responsible for -ensuring that the Source Code version remains available even if the -Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which You contribute to contain a -file documenting the changes You made to create that Covered Code and -the date of any change. You must include a prominent statement that -the Modification is derived, directly or indirectly, from Original -Code provided by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any notice in an -Executable version or related documentation in which You describe the -origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If Contributor has knowledge that a license under a third party's -intellectual property rights is required to exercise the rights -granted by such Contributor under Sections 2.1 or 2.2, -Contributor must include a text file with the Source Code -distribution titled "LEGAL" which describes the claim and the -party making the claim in sufficient detail that a recipient will -know whom to contact. If Contributor obtains such knowledge after -the Modification is made available as described in Section 3.2, -Contributor shall promptly modify the LEGAL file in all copies -Contributor makes available thereafter and shall take other steps -(such as notifying appropriate mailing lists or newsgroups) -reasonably calculated to inform those who received the Covered -Code that new knowledge has been obtained. - -(b) Contributor APIs. - -If Contributor's Modifications include an application programming -interface and Contributor has knowledge of patent licenses which -are reasonably necessary to implement that API, Contributor must -also include this information in the LEGAL file. - -(c) Representations. - -Contributor represents that, except as disclosed pursuant to -Section 3.4(a) above, Contributor believes that Contributor's -Modifications are Contributor's original creation(s) and/or -Contributor has sufficient rights to grant the rights conveyed by -this License. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source -Code. If it is not possible to put such notice in a particular Source -Code file due to its structure, then You must include such notice in a -location (such as a relevant directory) where a user would be likely -to look for such a notice. If You created one or more Modification(s) -You may add your name as a Contributor to the notice described in -Exhibit A. You must also duplicate this License in any documentation -for the Source Code where You describe recipients' rights or ownership -rights relating to Covered Code. You may choose to offer, and to -charge a fee for, warranty, support, indemnity or liability -obligations to one or more recipients of Covered Code. However, You -may do so only on Your own behalf, and not on behalf of the Initial -Developer or any Contributor. You must make it absolutely clear than -any such warranty, support, indemnity or liability obligation is -offered by You alone, and You hereby agree to indemnify the Initial -Developer and every Contributor for any liability incurred by the -Initial Developer or such Contributor as a result of warranty, -support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the -requirements of Section 3.1-3.5 have been met for that Covered Code, -and if You include a notice stating that the Source Code version of -the Covered Code is available under the terms of this License, -including a description of how and where You have fulfilled the -obligations of Section 3.2. The notice must be conspicuously included -in any notice in an Executable version, related documentation or -collateral in which You describe recipients' rights relating to the -Covered Code. You may distribute the Executable version of Covered -Code or ownership rights under a license of Your choice, which may -contain terms different from this License, provided that You are in -compliance with the terms of this License and that the license for the -Executable version does not attempt to limit or alter the recipient's -rights in the Source Code version from the rights set forth in this -License. If You distribute the Executable version under a different -license You must make it absolutely clear that any terms which differ -from this License are offered by You alone, not by the Initial -Developer or any Contributor. You hereby agree to indemnify the -Initial Developer and every Contributor for any liability incurred by -the Initial Developer or such Contributor as a result of any such -terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code -not governed by the terms of this License and distribute the Larger -Work as a single product. In such a case, You must make sure the -requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Code due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description -must be included in the LEGAL file described in Section 3.4 and must -be included with all distributions of the Source Code. Except to the -extent prohibited by statute or regulation, such description must be -sufficiently detailed for a recipient of ordinary skill to be able to -understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has -attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions. -CUA Office Project may publish revised -and/or new versions of the License from time to time. Each version -will be given a distinguishing version number. - -6.2. Effect of New Versions. -Once Covered Code has been published -under a particular version of the License, You may always continue to -use it under the terms of that version. You may also choose to use -such Covered Code under the terms of any subsequent version of the -License published by CUA Office Project. No one other than CUA Office -Project has the right to modify the terms applicable to Covered Code -created under this License. - -6.3. Derivative Works. -If You create or use a modified version of -this License (which you may only do in order to apply it to code which -is not already Covered Code governed by this License), You must (a) -rename Your license so that the phrases "CUA Office", "CUA", "CUAPL", -or any confusingly similar phrase do not appear in your license -(except to note that your license differs from this License) and (b) -otherwise make it clear that Your version of the license contains -terms which differ from the CUA Office Public License. (Filling in the -name of the Initial Developer, Original Code or Contributor in the -notice described in Exhibit A shall not of themselves be deemed to be -modifications of this License.) - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. -THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE -IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, -YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE -COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER -OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF -ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - -8.1. This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. All -sublicenses to the Covered Code which are properly granted shall -survive any termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this License -shall survive. - -8.2. If You initiate litigation by asserting a patent infringement -claim (excluding declatory judgment actions) against Initial Developer -or a Contributor (the Initial Developer or Contributor against whom -You file such action is referred to as "Participant") alleging that: - -(a) such Participant's Contributor Version directly or indirectly -infringes any patent, then any and all rights granted by such -Participant to You under Sections 2.1 and/or 2.2 of this License -shall, upon 60 days notice from Participant terminate prospectively, -unless if within 60 days after receipt of notice You either: (i) -agree in writing to pay Participant a mutually agreeable reasonable -royalty for Your past and future use of Modifications made by such -Participant, or (ii) withdraw Your litigation claim with respect to -the Contributor Version against such Participant. If within 60 days -of notice, a reasonable royalty and payment arrangement are not -mutually agreed upon in writing by the parties or the litigation claim -is not withdrawn, the rights granted by Participant to You under -Sections 2.1 and/or 2.2 automatically terminate at the expiration of -the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant's -Contributor Version, directly or indirectly infringes any patent, then -any rights granted to You by such Participant under Sections 2.1(b) -and 2.2(b) are revoked effective as of the date You first made, used, -sold, distributed, or had made, Modifications made by that -Participant. - -8.3. If You assert a patent infringement claim against Participant -alleging that such Participant's Contributor Version directly or -indirectly infringes any patent where such claim is resolved (such as -by license or settlement) prior to the initiation of patent -infringement litigation, then the reasonable value of the licenses -granted by such Participant under Sections 2.1 or 2.2 shall be taken -into account in determining the amount or value of any payment or -license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, -all end user license agreements (excluding distributors and resellers) -which have been validly granted by You or any distributor hereunder -prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT -(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL -DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, -OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR -ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY -CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, -WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER -COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN -INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF -LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY -RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW -PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE -EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO -THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - -The Covered Code is a "commercial item," as that term is defined in -48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer -software" and "commercial computer software documentation," as such -terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 -C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), -all U.S. Government End Users acquire Covered Code with only those -rights set forth herein. - -11. MISCELLANEOUS. - -This License represents the complete agreement concerning subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. This License shall be governed by -California law provisions (except to the extent applicable law, if -any, provides otherwise), excluding its conflict-of-law provisions. -With respect to disputes in which at least one party is a citizen of, -or an entity chartered or registered to do business in the United -States of America, any litigation relating to this License shall be -subject to the jurisdiction of the Federal Courts of the Northern -District of California, with venue lying in Santa Clara County, -California, with the losing party responsible for costs, including -without limitation, court costs and reasonable attorneys' fees and -expenses. The application of the United Nations Convention on -Contracts for the International Sale of Goods is expressly excluded. -Any law or regulation which provides that the language of a contract -shall be construed against the drafter shall not apply to this -License. - -12. RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is -responsible for claims and damages arising, directly or indirectly, -out of its utilization of rights under this License and You agree to -work with Initial Developer and Contributors to distribute such -responsibility on an equitable basis. Nothing herein is intended or -shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - -Initial Developer may designate portions of the Covered Code as -"Multiple-Licensed". "Multiple-Licensed" means that the Initial -Developer permits you to utilize portions of the Covered Code under -Your choice of the NPL or the alternative licenses, if any, specified -by the Initial Developer in the file described in Exhibit A. - -EXHIBIT A - CUA Office Public License. - -"The contents of this file are subject to the CUA Office Public License -Version 1.0 (the "License"); you may not use this file except in -compliance with the License. You may obtain a copy of the License at -http://cuaoffice.sourceforge.net/ - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations -under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is ________________________. -Portions created by ______________________ are Copyright (C) ______ -_______________________. All Rights Reserved. - -Contributor(s): ______________________________________. - -Alternatively, the contents of this file may be used under the terms -of the _____ license (the "[___] License"), in which case the -provisions of [______] License are applicable instead of those -above. If you wish to allow use of your version of this file only -under the terms of the [____] License and not to allow others to use -your version of this file under the CUAPL, indicate your decision by -deleting the provisions above and replace them with the notice and -other provisions required by the [___] License. If you do not delete -the provisions above, a recipient may use your version of this file -under either the CUAPL or the [___] License." - -[NOTE: The text of this Exhibit A may differ slightly from the text of -the notices in the Source Code files of the Original Code. You should -use the text of this Exhibit A rather than the text found in the -Original Code Source Code for Your Modifications.] diff --git a/tests/licensedcode/data/more_licenses/tests/CUA-OPL/CUA-OPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/CUA-OPL/CUA-OPL-1.0.yml deleted file mode 100644 index f13e926ea96..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CUA-OPL/CUA-OPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cua-opl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/ClArtistic/ClArtistic.txt b/tests/licensedcode/data/more_licenses/tests/ClArtistic/ClArtistic.txt deleted file mode 100644 index fc828e54f15..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ClArtistic/ClArtistic.txt +++ /dev/null @@ -1,136 +0,0 @@ -The Clarified Artistic License - -Preamble - -The intent of this document is to state the conditions under which a -Package may be copied, such that the Copyright Holder maintains some -semblance of artistic control over the development of the package, -while giving the users of the package the right to use and distribute -the Package in a more-or-less customary fashion, plus the right to make -reasonable modifications. - -Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder as specified below. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - - "You" is you, if you're thinking about copying or distributing - this Package. - - "Distribution fee" is a fee you charge for providing a copy - of this Package to another party. - - "Freely Available" means that no fee is charged for the right to - use the item, though there may be fees involved in handling the - item. It also means that recipients of the item may redistribute - it under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you -duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications -derived from the Public Domain, or those made Freely Available, or from -the Copyright Holder. A Package modified in such a way shall still be -considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided -that you insert a prominent notice in each changed file stating how and -when you changed that file, and provided that you do at least ONE of the -following: - - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or an - equivalent medium, or placing the modifications on a major network - archive site allowing unrestricted access to them, or by allowing the - Copyright Holder to include your modifications in the Standard Version - of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - - e) permit and encourge anyone who receives a copy of the modified Package - permission to make your modifications Freely Available - in some specific way. - - -4. You may distribute the programs of this Package in object code or -executable form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - - c) give non-standard executables non-standard names, and clearly - document the differences in manual pages (or equivalent), together - with instructions on where to get the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - - e) offer the machine-readable source of the Package, with your - modifications, by mail order. - -5. You may charge a distribution fee for any distribution of this Package. -If you offer support for this Package, you may charge any fee you choose -for that support. You may not charge a license fee for the right to use -this Package itself. You may distribute this Package in aggregate with -other (possibly commercial and possibly nonfree) programs as part of a -larger (possibly commercial and possibly nonfree) software distribution, -and charge license fees for other parts of that software distribution, -provided that you do not advertise this Package as a product of your own. -If the Package includes an interpreter, You may embed this Package's -interpreter within an executable of yours (by linking); this shall be -construed as a mere form of aggregation, provided that the complete -Standard Version of the interpreter is so embedded. - -6. The scripts and library files supplied as input to or produced as -output from the programs of this Package do not automatically fall -under the copyright of this Package, but belong to whoever generated -them, and may be sold commercially, and may be aggregated with this -Package. If such scripts or library files are aggregated with this -Package via the so-called "undump" or "unexec" methods of producing a -binary executable image, then distribution of such an image shall -neither be construed as a distribution of this Package nor shall it -fall under the restrictions of Paragraphs 3 and 4, provided that you do -not represent such an executable image as a Standard Version of this -Package. - -7. C subroutines (or comparably compiled subroutines in other -languages) supplied by you and linked into this Package in order to -emulate subroutines and variables of the language defined by this -Package shall not be considered part of this Package, but are the -equivalent of input as in Paragraph 6, provided these subroutines do -not change the language in any way that would cause it to fail the -regression tests for the language. - -8. Aggregation of the Standard Version of the Package with a commercial -distribution is always permitted provided that the use of this Package -is embedded; that is, when no overt attempt is made to make this Package's -interfaces visible to the end user of the commercial distribution. -Such use shall not be construed as a distribution of this Package. - -9. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End diff --git a/tests/licensedcode/data/more_licenses/tests/ClArtistic/ClArtistic.yml b/tests/licensedcode/data/more_licenses/tests/ClArtistic/ClArtistic.yml deleted file mode 100644 index 84df3ac25d1..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ClArtistic/ClArtistic.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-clarified diff --git a/tests/licensedcode/data/more_licenses/tests/CrystalStacker/CrystalStacker.txt b/tests/licensedcode/data/more_licenses/tests/CrystalStacker/CrystalStacker.txt deleted file mode 100644 index 930d9b580a0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CrystalStacker/CrystalStacker.txt +++ /dev/null @@ -1,7 +0,0 @@ -Crystal Stacker is freeware. This means you can pass copies around freely provided you include this document in it's original form in your distribution. Please see the "Contacting Us" section of this document if you need to contact us for any reason. - -Disclaimer - -NewCreature Design makes no guarantees regarding the Crystal Stacker software. We are not responsible for damages caused by it, though the software is not known to cause any problems. If you have trouble with the software, see the "Contacting Us" section of this document. - -The source code is provided as-is and you may do with it whatsoever you please provided that you include this file in its unmodified form with any new distribution. NewCreature Design makes no gaurantees regarding the usability of the source but are willing to help with any problems you might run into. Please see the "Contacting Us" section of this document if you need to get in touch with us about any issues you have regarding the source. diff --git a/tests/licensedcode/data/more_licenses/tests/CrystalStacker/CrystalStacker.yml b/tests/licensedcode/data/more_licenses/tests/CrystalStacker/CrystalStacker.yml deleted file mode 100644 index eb7cf04151d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/CrystalStacker/CrystalStacker.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - crystal-stacker diff --git a/tests/licensedcode/data/more_licenses/tests/D-FSL-1.0/D-FSL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/D-FSL-1.0/D-FSL-1.0.txt deleted file mode 100644 index b64a259c476..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/D-FSL-1.0/D-FSL-1.0.txt +++ /dev/null @@ -1,147 +0,0 @@ -Deutsche Freie Software Lizenz - -(c) Ministerium für Wissenschaft und Forschung Nordrhein-Westfalen 2004 - -Erstellt von Axel Metzger und Till Jaeger, Institut für Rechtsfragen der Freien und Open Source Software - (http://www.ifross.de). - -Präambel - -Software ist mehr als ein Wirtschaftsgut. Sie ist die technische Grundlage der Informationsgesellschaft. Die Frage der Teilhabe der Allgemeinheit ist deswegen von besonderer Bedeutung. Herkömmlich lizenzierte Programme werden nur im Object Code vertrieben, der Nutzer darf das Programm weder verändern noch weitergeben. Das Lizenzmodell der Freien Software (synonym "Open Source Software") gewährt Ihnen dagegen umfassende Freiheiten im Umgang mit dem Programm. Die Deutsche Freie Software Lizenz folgt diesem Lizenzmodell. Sie gewährt Ihnen das Recht, das Programm in umfassender Weise zu nutzen. Es ist Ihnen gestattet, das Programm nach Ihren Vorstellungen zu verändern, in veränderter oder unveränderter Form zu vervielfältigen, zu verbreiten und öffentlich zugänglich zu machen. Diese Rechte werden unentgeltlich eingeräumt. - -Die Deutsche Freie Software Lizenz verbindet die Rechtseinräumung allerdings mit Pflichten, die dem Zweck dienen, das freie Zirkulieren des Programms und aller veröffentlichten Fortentwicklungen zu sichern. Wenn Sie das Programm verbreiten oder öffentlich zugänglich machen, dann müssen Sie jedem, der das Programm von Ihnen erhält, eine Kopie dieser Lizenz mitliefern und den Zugriff auf den Source Code ermöglichen. Eine weitere Pflicht betrifft Fortentwicklungen des Programms. Änderungen am Programm, die Sie öffentlich verbreiten oder zugänglich machen, müssen nach den Bestimmungen dieser Lizenz frei gegeben werden. - -Die Deutsche Freie Software Lizenz nimmt auf die besonderen Anforderungen des deutschen und europäischen Rechts Rücksicht. Sie ist zweisprachig gestaltet und damit auch auf den internationalen Vertrieb ausgerichtet. - -§ 0 Definitionen - -Dokumentation: Die Beschreibung des Aufbaus und/oder der Struktur der Programmierung und/oder der Funktionalitäten des Programms, unabhängig davon, ob sie im Source Code oder gesondert vorgenommen wird. - -Lizenz: Die zwischen dem Lizenzgeber und Ihnen geschlossene Vereinbarung mit dem Inhalt der "Deutschen Freien Software Lizenz" bzw. das Angebot hierzu. - -Lizenznehmer: Jede natürliche oder juristische Person, die die Lizenz angenommen hat. - -Programm: Jedes Computerprogramm, das von den Rechtsinhabern nach den Bestimmungen dieser Lizenz verbreitet oder öffentlich zugänglich gemacht worden ist. - -Object Code: Die maschinenlesbare, übersetzte Form des Programms. - -Öffentlich: Nicht nur an einen bestimmten Personenkreis gerichtet, der persönlich oder durch die Zugehörigkeit zu einer juristischen Person oder einem öffentlichen Träger miteinander verbunden ist. - -Öffentlich zugänglich machen: Die öffentliche Weitergabe des Programms in unkörperlicher Form, insbesondere das Bereithalten zum Download in Datennetzen. - -Rechtsinhaber: Der bzw. die Urheber oder sonstigen Inhaber der ausschließlichen Nutzungsrechte an dem Programm. - -Source Code: Die für Menschen lesbare, in Programmiersprache dargestellte Form des Programms. - -Verändern: Jede Erweiterung, Kürzung und Bearbeitung des Programms, insbesondere Weiterentwicklungen. - -Verbreiten: Die öffentliche Weitergabe körperlicher Vervielfältigungsstücke, insbesondere auf Datenträgern oder in Verbindung mit Hardware. - -Vollständiger Source Code: Der Source Code in der für die Erstellung bzw. die Bearbeitung benutzten Form zusammen mit den zur Übersetzung und Installation erforderlichen Konfigurationsdateien und Software-Werkzeugen, sofern diese in der benötigten Form nicht allgemein gebräuchlich (z.B. Standard-Kompiler) oder für jedermann lizenzgebührenfrei im Internet abrufbar sind. - -§ 1 Rechte - -(1) Sie dürfen das Programm in unveränderter Form vervielfältigen, verbreiten und öffentlich zugänglich machen. - -(2) Sie dürfen das Programm verändern und entsprechend veränderte Versionen vervielfältigen, verbreiten und öffentlich zugänglich machen. Gestattet ist auch die Kombination des Programms oder Teilen hiervon mit anderen Programmen. - -(3) Sie erhalten die Rechte unentgeltlich. - -§ 2 Pflichten beim Vertrieb - -(1) Wenn Sie das Programm verbreiten oder öffentlich zugänglich machen, sei es in unveränderter oder veränderter Form, sei es in einer Kombination mit anderen Programmen oder in Verbindung mit Hardware, dann müssen sie mitliefern: -1. alle Vermerke im Source Code und/oder Object Code, die auf diese Lizenz hinweisen; -2. alle Vermerke im Source Code und/oder Object Code, die über die Urheber des Programms Auskunft geben; -3. einen für den Empfänger deutlich wahrnehmbaren Hinweis auf diese Lizenz und die Internetadresse http://www.d-fsl.de; -4. den vollständigen Text dieser Lizenz in deutlich wahrnehmbarer Weise. - -(2) Wenn bei der Installation des Programms und/oder beim Programmstart Lizenz- und/oder Vertragsbedingungen angezeigt werden, dann müssen -1. diese Lizenz, -2. ein Hinweis auf diese Lizenz und -3. ein Hinweis auf den oder die Rechtsinhaber an den ersten unter dieser Lizenz nutzbaren Programmbestandteilen -ebenfalls angezeigt werden. - -(3) Sie dürfen die Nutzung des Programms nicht von Pflichten oder Bedingungen abhängig machen, die nicht in dieser Lizenz vorgesehen sind. - -(4) Sofern Sie mit dem Programm eine Dokumentation erhalten haben, muss diese Dokumentation entsprechend mitgeliefert werden, es sei denn, die freie Mitlieferung der Dokumentation ist Ihnen aufgrund der Lizenz für die Dokumentation nicht gestattet. - -§ 3 Weitere Pflichten beim Vertrieb veränderter Versionen - -(1) Veränderte Versionen des Programms dürfen Sie nur unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zugänglich machen, so dass Dritte das veränderte Programm insgesamt unter dieser Lizenz nutzen können. - -(2) Wird das Programm oder ein Teil hiervon mit einem anderen Programm kombiniert, gilt auch die Kombination insgesamt als eine veränderte Version des Programms, es sei denn, das andere Programm ist formal und inhaltlich eigenständig. Ein anderes Programm ist dann als eigenständig anzusehen, wenn es die folgenden Voraussetzungen alle erfüllt: -1. Der Source Code der kombinierten Programme muss jeweils in eigenen Dateien vorhanden sein, die keine Bestandteile des anderen Teils enthalten, die über die zur Programmkombination üblichen und erforderlichen Informationen über den anderen Teil hinausgehen, wobei der Source Code des anderen Programms nicht mitgeliefert werden muss. -2. Der mit dem Programm kombinierte Teil muss auch dann sinnvoll nutzbar sein, wenn er nicht mit dem Programm kombiniert wird, und zwar entweder alleine oder mit sonstigen Programmen. Was als "sinnvoll nutzbar" anzusehen ist, richtet sich nach der Auffassung der betroffenen Fachkreise. Zu den betroffenen Fachkreisen gehören alle Personen, die das Programm oder Programme mit vergleichbarer Funktionalität entwickeln, benutzen, verbreiten oder öffentlich zugänglich machen. - -(3) Wenn Sie das Programm oder einen Teil hiervon - verändert oder unverändert - zusammen mit einem anderen Programm verbreiten oder öffentlich zugänglich machen, das unter der GNU General Public License (GPL) lizenziert wird, darf das Programm auch unter den Bedingungen der GPL genutzt werden, sofern es mit dem anderen Programm ein "derivative work" im Sinne der GPL bildet. Dabei sollen die Hinweise auf diese Lizenz entfernt und durch einen Hinweis auf die GPL ersetzt werden. Ob bei der Zusammenstellung ein "derivate work" im Sinne der GPL entsteht, beurteilt sich nach Ziffer 2 b) der GPL. Diese Bestimmung lautet: "You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License." Die GPL kann abgerufen werden unter http://www.fsf.org/licenses/gpl. - -(4) Wenn Sie das Programm in einer veränderten Form verbreiten oder öffentlich zugänglich machen, müssen Sie im Source Code einen Hinweis mit den Änderungen aufnehmen und mit dem Datum der Änderung versehen. Der Hinweis muss erkennen lassen, welche Änderungen vorgenommen wurden und bestehende Vermerke, die über die Urheber des Programms Auskunft geben, übernehmen. Dies gilt unabhängig davon, ob Sie einen eigenen Urhebervermerk hinzufügen. Anstelle eines Hinweises im Source Code können Sie auch ein Versionskontrollsystem verwenden oder weiterführen, sofern dieses mitverbreitet wird oder öffentlich zugänglich ist. - -(5) Sie dürfen von Dritten für die Einräumung eines einfachen Nutzungsrechts an veränderten Versionen des Programms kein Entgelt verlangen. - -(6) Wenn Sie an der veränderten Version des Programms ein anderes Schutzrecht als ein Urheberrecht erwerben, insbesondere ein Patent oder Gebrauchsmuster, lizenzieren Sie dieses Schutzrecht für veränderte und unveränderte Versionen des Programms in dem Umfang, der erforderlich ist, um die Rechte aus dieser Lizenz wahrnehmen zu können. - -§ 4 Weitere Pflichten beim Vertrieb im Object Code - -(1) Wenn Sie das Programm nur im Object Code verbreiten, dann müssen Sie zusätzlich zu den in § 2 und § 3 geregelten Pflichten entweder -1. den vollständigen Source Code im Internet öffentlich zugänglich machen und bei der Verbreitung des Object Codes deutlich auf die vollständige Internetadresse hinweisen, unter der der Source Code abgerufen werden kann oder -2. den vollständigen Source Code auf einem hierfür üblichen Datenträger unter Beachtung der §§ 2 und 3 mitverbreiten. - -(2) Wenn Sie das Programm im Object Code öffentlich zugänglich machen, dann müssen Sie zusätzlich zu den in § 2 und § 3 geregelten Pflichten den vollständigen Source Code im Internet öffentlich zugänglich machen und dabei deutlich auf die vollständige Internetadresse hinweisen. - -(3) Sofern Sie mit dem Programm eine Dokumentation erhalten haben, muss diese Dokumentation entsprechend der Absätze 1 und 2 mitgeliefert werden, es sei denn, die freie Mitlieferung der Dokumentation ist Ihnen aufgrund der Lizenz für die Dokumentation nicht gestattet. - -§ 5 Vertragsschluss - -(1) Mit dieser Lizenz wird Ihnen und jeder anderen Person ein Angebot auf Abschluss eines Vertrages über die Nutzung des Programms unter den Bedingungen der Deutschen Freien Softwarelizenz unterbreitet. - -(2) Sie dürfen das Programm nach den jeweils anwendbaren gesetzlichen Vorschriften bestimmungsgemäß benutzen, ohne dass es der Annahme dieser Lizenz bedarf. Dieses Recht umfasst in der Europäischen Union und in den meisten anderen Rechtsordnungen insbesondere die folgenden Befugnisse: -1. das Programm ablaufen zu lassen sowie die Erstellung von hierfür erforderlichen Vervielfältigungen im Haupt- und Arbeitsspeicher; -2. das Erstellen einer Sicherungskopie; -3. die Fehlerberichtigung; -4. die Weitergabe einer rechtmäßig erworbenen körperlichen Kopie des Programms. - -(3) Sie erklären Ihre Zustimmung zum Abschluss dieser Lizenz, indem Sie das Programm verbreiten, öffentlich zugänglich machen, verändern oder in einer Weise vervielfältigen, die über die bestimmungsgemäße Nutzung im Sinne von Absatz 2 hinausgeht. Ab diesem Zeitpunkt ist diese Lizenz als rechtlich verbindlicher Vertrag zwischen den Rechtsinhabern und Ihnen geschlossen, ohne dass es eines Zugangs der Annahmeerklärung bei den Rechtsinhabern bedarf. - -(4) Sie und jeder andere Lizenznehmer erhalten die Rechte aus dieser Lizenz direkt von den Rechtsinhabern. Eine Unterlizenzierung oder Übertragung der Rechte ist nicht gestattet. - -§ 6 Beendigung der Rechte bei Zuwiderhandlung - -(1) Jede Verletzung Ihrer Verpflichtungen aus dieser Lizenz führt zu einer automatischen Beendigung Ihrer Rechte aus dieser Lizenz. - -(2) Die Rechte Dritter, die das Programm oder Rechte an dem Programm von Ihnen erhalten haben, bleiben hiervon unberührt. - -§ 7 Haftung und Gewährleistung - -(1) Für entgegenstehende Rechte Dritter haften die Rechtsinhaber nur, sofern sie Kenntnis von diesen Rechten hatten, ohne Sie zu informieren. - -(2) Die Haftung für Fehler und sonstige Mängel des Programms richtet sich nach den außerhalb dieser Lizenz getroffenen Vereinbarungen zwischen Ihnen und den Rechtsinhabern oder, wenn eine solche Vereinbarung nicht existiert, nach den gesetzlichen Regelungen. - -§ 8 Verträge mit Dritten - -(1) Diese Lizenz regelt nur die Beziehung zwischen Ihnen und den Rechtsinhabern. Sie ist nicht Bestandteil der Verträge zwischen Ihnen und Dritten. - -(2) Die Lizenz beschränkt Sie nicht in der Freiheit, mit Dritten, die von Ihnen Kopien des Programms erhalten oder Leistungen in Anspruch nehmen, die im Zusammenhang mit dem Programm stehen, Verträge beliebigen Inhalts zu schließen, sofern Sie dabei Ihren Verpflichtungen aus dieser Lizenz nachkommen und die Rechte der Dritten aus dieser Lizenz nicht beeinträchtigt werden. Insbesondere dürfen Sie für die Überlassung des Programms oder sonstige Leistungen ein Entgelt verlangen. - -(3) Diese Lizenz verpflichtet Sie nicht, das Programm an Dritte weiterzugeben. Es steht Ihnen frei zu entscheiden, wem Sie das Programm zugänglich machen. Sie dürfen aber die weitere Nutzung durch Dritte nicht durch den Einsatz technischer Schutzmaßnahmen, insbesondere durch den Einsatz von Kopierschutzvorrichtungen jeglicher Art, verhindern oder erschweren. Eine passwortgeschützte Zugangsbeschränkung oder die Nutzung in einem Intranet wird nicht als technische Schutzmaßnahme angesehen. - -§ 9 Text der Lizenz - -(1) Diese Lizenz ist in deutscher und englischer Sprache abgefasst. Beide Fassungen sind gleich verbindlich. Es wird unterstellt, dass die in der Lizenz verwandten Begriffe in beiden Fassungen dieselbe Bedeutung haben. Ergeben sich dennoch Unterschiede, so ist die Bedeutung maßgeblich, welche die Fassungen unter Berücksichtigung des Ziels und Zwecks der Lizenz am besten miteinander in Einklang bringt. - -(2) Der Lizenzrat der Deutschen Freien Software Lizenz kann mit verbindlicher Wirkung neue Versionen der Lizenz in Kraft setzen, soweit dies erforderlich und zumutbar ist. Neue Versionen der Lizenz werden auf der Internetseite http://www.d-fsl.de mit einer eindeutigen Versionsnummer veröffentlicht. Die neue Version der Lizenz erlangt für Sie verbindliche Wirkung, wenn Sie von deren Veröffentlichung Kenntnis genommen haben. Gesetzliche Rechtsbehelfe gegen die Änderung der Lizenz werden durch die vorstehenden Bestimmungen nicht beschränkt. - -(3) Sie dürfen diese Lizenz in unveränderter Form vervielfältigen, verbreiten und öffentlich zugänglich machen. - -§ 10 Anwendbares Recht - -Auf diese Lizenz findet deutsches Recht Anwendung. - - -Anhang: Wie unterstellen Sie ein Programm der Deutschen Freien Software Lizenz? -Um jedermann den Abschluss dieser Lizenz zu ermöglichen, wird empfohlen, das Programm mit folgendem Hinweis auf die Lizenz zu versehen: - -"Copyright (C) 20[jj] [Name des Rechtsinhabers]. - -Dieses Programm kann durch jedermann gemäß den Bestimmungen der Deutschen Freien Software Lizenz genutzt werden. - -Die Lizenz kann unter http://www.d-fsl.de abgerufen werden." diff --git a/tests/licensedcode/data/more_licenses/tests/D-FSL-1.0/D-FSL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/D-FSL-1.0/D-FSL-1.0.yml deleted file mode 100644 index 00384b0d993..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/D-FSL-1.0/D-FSL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - d-fsl-1.0-de diff --git a/tests/licensedcode/data/more_licenses/tests/D-FSL/D-FSL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/D-FSL/D-FSL-1.0.txt deleted file mode 100644 index 36afdd5e60c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/D-FSL/D-FSL-1.0.txt +++ /dev/null @@ -1,445 +0,0 @@ - -German Free Software License - -(c) Ministry of Science and Research, State of -North-Rhine Westphalia 2004 - -Developed and created by Axel Metzger and Till -Jaeger, Institut für Rechtsfragen der Freien und -Open Source Software (Institute for Legal Issues - On Free and Open Source Software), - . - - Preamble - - Software is more than a mere economic asset. It - is the technical foundation of the information - society. Therefore, the issue of the public share - in software is of particular importance. - Conventionally licensed computer programs are - distributed in object code form only, and the - user is not entitled to modify or pass on the - program to third parties. The license model for - Free Software (synonym "Open Source Software"), - however, grants comprehensive rights in the - handling of the program. The German Free Software - License is based on this license model. It gives - you the right to use the program in a - comprehensive manner. You are allowed to modify - the computer program according to your - requirements or to reproduce or distribute it and - make it publicly available in a modified or - unmodified form. These rights are granted free of - charge. - - However, the German Free Software License - combines these rights with certain obligations - that will ensure the free circulation of the - program and all further developments published. - If you distribute the program or make it publicly - available, you have to include a copy of this - license to anyone receiving the program from you - and enable access to its source code. Another - obligation arises from further developments of - the program. Modifications to the program which - you distribute or make publicly available shall - be released in accordance with the conditions of - this license. - - German Free Software License takes into account - the special requirements of German and European - law. It is drafted bilingually and thus intended - for international distribution. - - - Section 0 Definitions - - Documentation: Description of composition, - architecture and/or structure of the programming - process and/or functionalities of the program, - irrespective of whether they were done in the - Source Code or separately. - - License: The agreement concluded between the - licensor and you, with the content of the German - Free Software License and/or the pertaining - offer. - - Licensee: Every natural or legal entity who has - accepted this License. - - Program: Every computer program which has been - distributed or made publicly available by the - entitled person in accordance with the terms of - this License. - - Object Code: The machine-readable form of the - Program. - - Public/publicly: Not solely directed towards a - certain group of people who have a personal - connection to each other or are associated - through their affiliation with a legal person or - public organisation. - - Making Publicly Available: The public - distribution of the Program in an immaterial - form, in particular, by making it available for - download in data networks. - - Entitled Person(s): The author(s) or other - holders of the exclusive right to use for the - Program. - - Source Code: The form of the Program represented - in programming language and readable for humans. - - Modification: Any extension, shortening and/or - alteration of the Program, including, but not - limited to further developments. - - Distribution: The public passing on of material - copies to third parties, in particular, onto - storage devices or in connection with hardware. - - Complete Source Code: The Source Code in the form - used for preparation and/or modification together - with the configuration files and software tools - required for compilation and installation, - provided that these are not commonly used in the - required form (e.g. standard compiler) or can be - downloaded by any Internet user without license - fee. - - - Section 1 Rights - - (1) You may reproduce and distribute the Program - and make it publicly available in an unmodified - form. - - (2) You may modify the Program and reproduce and - distribute modified versions and make them - publicly available. It is also permitted to - combine the Program or parts thereof with other - programs. - - (3) You obtain the rights free of charge. - - - Section 2 Obligations for Distribution and Making - Publicly Available - - (1) If you distribute the Program or make it - publicly available, be it in unmodified or - modified form, be it in combination with other - programs or in connection with hardware, you also - have to provide or include the following: - - 1. all references to this License in the Source - Code and/or Object Code; - - 2. all references in the Source Code and/or - Object Code containing information about the - author of the Program; - - 3. a conspicuous reference to this License and - the Internet address , to - be displayed in a form that can easily be read by - the recipient; - - 4. the complete text of this License in a form - easy to perceive. - - (2) If license and/or contract terms are - displayed when the Program is installed and/or - started, the following items must also be - displayed: - - 1. this License; - - 2. a reference to this License; and - - 3. a reference to the Entitled Person(s) to the - initial program components used under this - License. - - (3) You may not make the use of the Program - contingent upon the compliance with conditions or - obligations that are not set forth in this - License. - - (4) Provided that you have received Documentation - for the Program, you have to deliver this - Documentation with the Program, as well, unless - free delivery of the Documentation is not - permitted by the documentation license. - - - Section 3 Further Obligations regarding the - Distribution of Modified Versions - - (1) You may only distribute modified versions of - the Program or make them publicly available in - accordance with the terms of this License, so - that any third party is able to make use of the - modified Program as a whole under this License. - - (2) If the Program or a part thereof is combined - with another program, this also applies to the - entire combination as a modified version of the - Program, unless the other program is independent - in terms of form and content. Another program - shall be regarded as independent if it fulfils - the following requirements: - - 1. The Source Code of the combined programs must - be contained in separate files which do not - include components of the other part except for - parts containing the information customary and - required for the Program combination. The Source - Code of the other program does not have to be - delivered. - - 2. The part which is combined with the Program - must also be reasonably usable when not combined - with the Program, i.e. on a standalone basis or - with other programs. The meaning of "reasonably - usable" will be based on the opinion of pertinent - circles of expert groups in the relevant field. - Such circles of experts include everyone who - develops, uses, distributes or makes publicly - available the Program concerned or programs with - similar functionality. - - (3) If you distribute or make publicly available - the Program or parts thereof - modified or - unmodified - in combination with another program - licensed under the GNU General Public License - (GPL), the Program may also be used under - conditions of the GPL, provided it constitutes a - "derivative work" together with the other program - in the sense of the GPL. In this case, any - reference to this License should be removed and - replaced by a reference to the GPL. Whether a - "derivative work" in the sense of the GPL arises - from this combination is primarily defined in - section 2 b) of the GPL. This provision reads: - "You must cause any work that you distribute or - publish, that in whole or in part contains or is - derived from the Program or any part thereof, to - be licensed as a whole at no charge to all third - parties under the terms of this License." The GPL - can be obtained under - . - - (4) If you distribute the Program or make it - publicly available in a modified form, you must - include a reference to the modifications and the - date of the modification in the Source Code. This - reference must reveal which modifications were - carried out and include existing references - containing information on the author of the - Program. This applies to whether or not you add - your own copyright notice. Instead of a reference - in the Source Code you may also use or carry on a - version control system, provided this is also - distributed or made publicly available. - - (5) You may not charge any third party for the - granting of the non-exclusive rights of use for - the Program. - - (6) If you acquire any other intellectual or - industrial property right to this Program apart - from a copyright, in particular a patent or - utility model, you license this intellectual or - industrial property right for modified or - unmodified versions of the Program to the extent - that is necessary to make due use of the rights - arising from this License. - - - Section 4 Further Obligations for the - Distribution of the Object Code - - (1) If you distribute the Program in Object Code - form only, apart from the obligations defined in - Sections 2 and 3, you have to either: - - 1. make the Complete Source Code publicly - available in the Internet and - when distributing - the Object Code - make a clear reference to the - complete Internet address from which the Source - Code can be downloaded; or - - 2. distribute the Complete Source Code on a - customary data carrier, taking into consideration - Sections 2 and 3. - - (2) If you make the Program publicly available in - Object Code form, apart from the obligations - defined in Sections 2 and 3 you must also make - the Complete Source Code publicly available in - the Internet and make a clear reference to the - complete Internet address. - - (3) Provided that you have received the - Documentation for the Program, you have to - deliver this Documentation together with the - Program in accordance with Subsections 1 and 2, - as well, unless free delivery of the - Documentation is not permitted by the - documentation license. - - - Section 5 Conclusion of the Contract - - (1) With this License you and any other person - are offered the conclusion of a contract for the - use of this Program under the conditions of this - License. - - (2) You may use the Program in accordance with - the applicable statutory provisions for the - intended purpose without having to accept this - License. In the European Union and in most other - legal systems, this right in particular includes - the following authorizations: - - 1. Running of the Program as well as reproducing - on hard-drive and RAM required for this; - - 2. Making of a back-up copy; - - 3. Correcting errors; - - 4. Distributing a lawfully acquired physical copy - of the Program. - - (3) You declare your acceptance of this License - by distributing the Program, making it publicly - available, modifying or reproducing it in a way - that goes beyond the intended use in the sense of - Subsection 2. From this time on, this License - shall be deemed as a legally binding agreement - between the Entitled Persons and you, without the - need for the Entitled Persons to obtain a - declaration of acceptance. - - (4) You and any other licensee acquire the rights - arising from this License directly from the - Entitled Persons. Any sub-licensing or transfer - of rights is not permitted. - - - Section 6 Termination of Rights in the Event of - Violations - - (1) Any violation of your obligations under this - License automatically leads to the termination of - your rights under this License. - - (2) Any rights of third parties having obtained - the Program or rights to the Program from you - shall remain unaffected. - - - Section 7 Liability and Warranty - - (1) The Entitled Persons are only liable for - conflicting third-party rights if they were aware - of such rights without informing you. - - (2) Liability for errors and/or other defects in - the Program shall be governed by agreements - concluded between you and the Entitled Person - beyond the scope of this License or, if no such - agreement exists, by the pertinent statutory - provisions. - - - Section 8 Agreements with Third Parties - - (1) This License only governs the relationship - between you and the Entitled Persons. It is not - part of agreements between you and third parties. - - (2) This License does not limit your freedom to - conclude agreements of any content whatsoever - with third parties obtaining copies of the - Program from you or purchasing services from you - in connection with the Program, provided that you - fulfil your obligations under this License and - third-party rights under this License are not - infringed. In particular, you may charge a fee as - consideration for the transfer of the Program or - other services. - - (3) This License does not commit you to forward - the Program to a third party. You are free to - decide to whom you wish to make the Program - available. However, you may not prevent or - complicate further use by third parties through - the use of technical protective measures, in - particular, the use of copy protection of any - kind. Password-protected access restriction or - use in an Intranet shall not be regarded as - technical protective measures. - - - Section 9 Text of the License - - (1) This License is written in German and - English. Both versions are equally binding. It is - assumed that terminology used in the License has - the same meaning in both versions. Should, - however, differences arise, such meaning is - authoritative which best brings into line both - versions, taking into consideration the aim and - purpose of the License. - - (2) The license board of the German Free Software - License may put into force binding new versions - of this License inasmuch as this is required and - reasonable. New versions of the License will be - published on the Internet site with a unique version number. The new - version of the License becomes binding for you as - soon as you become aware of its publication. - Legal remedies against the modification of the - License are not restricted by the regulations - described above. - - (3) You may reproduce and distribute this License - and make it publicly available in an unmodified - form. - - - Section 10 Applicable Law - - The License is governed by German law. - - - Appendix: How to submit a Program to the German - Free Software License. - - In order to make it possible for anyone to - conclude this License, it is recommended to - include the following reference to the License in - the Program: - - "Copyright (C) 20[yy] [Name of the Entitled - Person]. - - This Program may be used by anyone in accordance - with the terms of the German Free Software - License - - The License may be obtained under ." - - - - - diff --git a/tests/licensedcode/data/more_licenses/tests/D-FSL/D-FSL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/D-FSL/D-FSL-1.0.yml deleted file mode 100644 index 678dd4d7051..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/D-FSL/D-FSL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - d-fsl-1.0-en diff --git a/tests/licensedcode/data/more_licenses/tests/Dual-license/GPL-2.0+_or_LGPL-2.0+.txt b/tests/licensedcode/data/more_licenses/tests/Dual-license/GPL-2.0+_or_LGPL-2.0+.txt deleted file mode 100644 index 5efdd337b50..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Dual-license/GPL-2.0+_or_LGPL-2.0+.txt +++ /dev/null @@ -1,2 +0,0 @@ -This program is free software. You may use, redistribute and/or modify it -under the terms of either GPL 2.0+ or LGPL 2.0+. diff --git a/tests/licensedcode/data/more_licenses/tests/Dual-license/GPL-2.0+_or_LGPL-2.0+.yml b/tests/licensedcode/data/more_licenses/tests/Dual-license/GPL-2.0+_or_LGPL-2.0+.yml deleted file mode 100644 index 7b9d9be8526..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Dual-license/GPL-2.0+_or_LGPL-2.0+.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0-plus OR lgpl-2.0-plus diff --git a/tests/licensedcode/data/more_licenses/tests/Dual-license/Oracle+Sun_oracle_index.yml b/tests/licensedcode/data/more_licenses/tests/Dual-license/Oracle+Sun_oracle_index.yml index a9e02b1a85a..3735733d095 100644 --- a/tests/licensedcode/data/more_licenses/tests/Dual-license/Oracle+Sun_oracle_index.yml +++ b/tests/licensedcode/data/more_licenses/tests/Dual-license/Oracle+Sun_oracle_index.yml @@ -1,2 +1,5 @@ license_expressions: - - apache-2.0 + - unknown + - unknown + - sleepycat + diff --git a/tests/licensedcode/data/more_licenses/tests/ECL/ECL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/ECL/ECL-2.0.txt deleted file mode 100644 index 049b1d875e3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ECL/ECL-2.0.txt +++ /dev/null @@ -1,94 +0,0 @@ -Educational Community License -Version 2.0, April 2007 - -http://www.osedu.org/licenses/ - -The Educational Community License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to change the scope of the patent grant in section 3 to be specific to the needs of the education communities using this license. The original Apache 2.0 license can be found at: http://www.apache.org/licenses/LICENSE-2.0 - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. Any patent license granted hereby with respect to contributions by an individual employed by an institution or organization is limited to patent claims where the individual that is the author of the Work is also the inventor of the patent claims licensed, and where the organization or institution has the right to grant such license under applicable grant and research funding agreements. No other express or implied licenses are granted. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of this License; and -You must cause any modified files to carry prominent notices stating that You changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) 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. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Educational Community License to your work - -To apply the Educational Community License to your work, attach -the following boilerplate notice, with the fields enclosed by -brackets "[]" replaced with your own identifying information. -(Don't include the brackets!) The text should be enclosed in the -appropriate comment syntax for the file format. We also recommend -that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier -identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] Licensed under the - Educational Community License, Version 2.0 (the "License"); you may - not use this file except in compliance with the License. You may - obtain a copy of the License at - - http://www.osedu.org/licenses/ECL-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an "AS IS" - BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - or implied. See the License for the specific language governing - permissions and limitations under the License. diff --git a/tests/licensedcode/data/more_licenses/tests/ECL/ECL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/ECL/ECL-2.0.yml deleted file mode 100644 index 8fe6eaafec4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ECL/ECL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ecl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/EFL/EFL-1.0.txt deleted file mode 100644 index 5b58038b17f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-1.0.txt +++ /dev/null @@ -1,23 +0,0 @@ -Eiffel Forum License, version 1 - -Permission is hereby granted to use, copy, modify and/or distribute -this package, provided that: - - - copyright notices are retained unchanged - - - any distribution of this package, whether modified or not, - includes this file - -Permission is hereby also granted to distribute binary programs which -depend on this package, provided that: - - - if the binary program depends on a modified version of this - package, you must publicly release the modified version of this - package - -THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. 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 AUTHORS BE LIABLE TO ANY PARTY FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE. diff --git a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/EFL/EFL-1.0.yml deleted file mode 100644 index 605388972c3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - efl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/EFL/EFL-2.0.txt deleted file mode 100644 index 72b3ed97a74..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-2.0.txt +++ /dev/null @@ -1,10 +0,0 @@ -Eiffel Forum License, version 2 - -Permission is hereby granted to use, copy, modify and/or distribute this package, provided that: -copyright notices are retained unchanged, -any distribution of this package, whether modified or not, includes this license text. -Permission is hereby also granted to distribute binary programs which depend on this package. If the binary program depends on a modified version of this package, you are encouraged to publicly release the modified version of this package. -*********************** - -THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. 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 AUTHORS BE LIABLE TO ANY PARTY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE. -*********************** diff --git a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/EFL/EFL-2.0.yml deleted file mode 100644 index 04f88ac13b0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EFL/EFL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - efl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/EPL/EPL-1.0.txt deleted file mode 100644 index 6754fb2a25f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-1.0.txt +++ /dev/null @@ -1,74 +0,0 @@ -Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and - b) in the case of each subsequent Contributor: - i) changes to the Program, and - ii) additions to the Program; - 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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -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. -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. -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. -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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - - a) it complies with the terms and conditions of this Agreement; and - b) its license agreement: - 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; - ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - 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. - -When the Program is made available in source code form: - - a) it must be made available under this Agreement; and - b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation 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. - -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. diff --git a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/EPL/EPL-1.0.yml deleted file mode 100644 index a18f6b5ec97..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/EPL/EPL-2.0.txt deleted file mode 100644 index 5f2a9504bdf..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-2.0.txt +++ /dev/null @@ -1,86 +0,0 @@ -Eclipse Public License - v 2.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - - 1. DEFINITIONS - - "Contribution" means: - a) in the case of the initial Contributor, the initial content Distributed under this Agreement, and - b) in the case of each subsequent Contributor: - i) changes to the Program, and - ii) additions to the Program; - - 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 changes or additions to the Program that are not Modified Works. - - "Contributor" means any person or entity that Distributes the Program. - - "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. - - "Program" means the Contributions Distributed in accordance with this Agreement. - - "Recipient" means anyone who receives the Program under this Agreement or any Secondary License (as applicable), including Contributors. - - "Derivative Works" shall mean any work, whether in Source Code or other form, that is based on (or derived from) the Program and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. - - "Modified Works" shall mean any work in Source Code or other form that results from an addition to, deletion from, or modification of the contents of the Program, including, for purposes of clarity any new file in Source Code form that contains any contents of the Program. Modified Works shall not include works that contain only declarations, interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or Modified Works thereof. - - "Distribute" means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy. - - "Source Code" means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files. - - "Secondary License" means either the GNU General Public License, Version 2.0, or any later versions of that license, including any exceptions or additional permissions as identified by the initial Contributor. - - 2. GRANT OF RIGHTS - 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. - 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 or other 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. - 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. - 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. - e) Notwithstanding the terms of any Secondary License, no Contributor makes additional grants to any Recipient (other than those set forth in this Agreement) as a result of such Recipient's receipt of the Program under the terms of a Secondary License (if permitted under the terms of Section 3). - - 3. REQUIREMENTS - 3.1 If a Contributor Distributes the Program in any form, then: - a) the Program must also be made available as Source Code, in accordance with section 3.2, and the Contributor must accompany the Program with a statement that the Source Code for the Program is available under this Agreement, and informs Recipients how to obtain it in a reasonable manner on or through a medium customarily used for software exchange; and - b) the Contributor may Distribute the Program under a license different than this Agreement, provided that such license: - i) effectively disclaims on behalf of all other 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; - ii) effectively excludes on behalf of all other Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - iii) does not attempt to limit or alter the recipients' rights in the Source Code under section 3.2; and - iv) requires any subsequent distribution of the Program by any party to be under a license that satisfies the requirements of this section 3. - 3.2 When the Program is Distributed as Source Code: - a) it must be made available under this Agreement, or if the Program (i) is combined with other material in a separate file or files made available under a Secondary License, and (ii) the initial Contributor attached to the Source Code the notice described in Exhibit A of this Agreement, then the Program may be made available under the terms of such Secondary Licenses, and - b) a copy of this Agreement must be included with each copy of the Program. - 3.3 Contributors may not remove or alter any copyright, patent, trademark, attribution notices, disclaimers of warranty, or limitations of liability ("notices") contained within the Program from any copy of the Program which they Distribute, provided that Contributors may add their own appropriate notices. - - 4. COMMERCIAL DISTRIBUTION - - 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. - - 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. - - 5. NO WARRANTY - - EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, 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. - - 6. DISCLAIMER OF LIABILITY - - EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, 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. - 7. GENERAL - - 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. - - 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. - - 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. - - 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. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation 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. Nothing in this Agreement is intended to be enforceable by any entity that is not a Contributor or Recipient. No third-party beneficiary rights are created under this Agreement. - - Exhibit A - Form of Secondary Licenses Notice - - "This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), version(s), and exceptions or additional permissions here}." - - Simply including a copy of this Agreement, including this Exhibit A is not sufficient to license the Source Code under Secondary Licenses. - - If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - - You may add additional accurate notices of copyright ownership. diff --git a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/EPL/EPL-2.0.yml deleted file mode 100644 index ab9f849ecb8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EPL/EPL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/EUDatagrid/EUDatagrid.txt b/tests/licensedcode/data/more_licenses/tests/EUDatagrid/EUDatagrid.txt deleted file mode 100644 index 8630192fe1e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EUDatagrid/EUDatagrid.txt +++ /dev/null @@ -1,27 +0,0 @@ -EU DataGrid Software License - -Copyright (c) 2001 EU DataGrid. All rights reserved. - -This software includes voluntary contributions made to the EU DataGrid. For more information on the EU DataGrid, please see http://www.eu-datagrid.org/. - -Installation, use, reproduction, display, modification and redistribution of this software, with or without modification, in source and binary forms, are permitted. Any exercise of rights under this license by you or your sub-licensees is subject to the following conditions: - -1. Redistributions of this software, with or without modification, must reproduce the above copyright notice and the above license statement as well as this list of conditions, in the software, the user documentation and any other materials provided with the software. - -2. The user documentation, if any, included with a redistribution, must include the following notice: -"This product includes software developed by the EU DataGrid (http://www.eu-datagrid.org/)." - -Alternatively, if that is where third-party acknowledgments normally appear, this acknowledgment must be reproduced in the software itself. - -3. The names "EDG", "EDG Toolkit", “EU DataGrid” and "EU DataGrid Project" may not be used to endorse or promote software, or products derived -therefrom, except with prior written permission by hep-project-grid-edg-license@cern.ch. - -4. You are under no obligation to provide anyone with any bug fixes, patches, upgrades or other modifications, enhancements or derivatives of the features,functionality or performance of this software that you may develop. However, if you publish or distribute your modifications, enhancements or derivative works without contemporaneously requiring users to enter into a separate written license agreement, then you are deemed to have granted participants in the EU DataGrid a worldwide, non-exclusive, royalty-free, perpetual license to install, use, reproduce, display, modify, redistribute and sub-license your modifications, enhancements or derivative works, whether in binary or source code form, under the license conditions stated in this list of conditions. - -5. DISCLAIMER - -THIS SOFTWARE IS PROVIDED BY THE EU DATAGRID AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE OR USE ARE DISCLAIMED. THE EU DATAGRID AND CONTRIBUTORS MAKE NO REPRESENTATION THAT THE SOFTWARE, MODIFICATIONS, ENHANCEMENTS OR DERIVATIVE WORKS THEREOF, WILL NOT INFRINGE ANY PATENT, COPYRIGHT, TRADE SECRET OR OTHER PROPRIETARY RIGHT. - -6. LIMITATION OF LIABILITY - -THE EU DATAGRID AND CONTRIBUTORS SHALL HAVE NO LIABILITY TO LICENSEE OR OTHER PERSONS FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF USE, DATA OR PROFITS, OR BUSINESS INTERRUPTION, HOWEVER CAUSED AND ON ANY THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR OTHERWISE, ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. diff --git a/tests/licensedcode/data/more_licenses/tests/EUDatagrid/EUDatagrid.yml b/tests/licensedcode/data/more_licenses/tests/EUDatagrid/EUDatagrid.yml deleted file mode 100644 index 10123bb2e66..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EUDatagrid/EUDatagrid.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - eu-datagrid diff --git a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.0.txt deleted file mode 100644 index 02afc88fe72..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.0.txt +++ /dev/null @@ -1,182 +0,0 @@ -European Union Public Licence -V.1.0 -EUPL © the European Community 2007 -This European Union Public Licence (the “EUPL”) applies to the Work or Software (as -defined below) which is provided under the terms of this Licence. Any use of the Work, other -than as authorised under this Licence is prohibited (to the extent such use is covered by a right -of the copyright holder of the Work). -The Original Work is provided under the terms of this Licence when the Licensor (as defined -below) has placed the following notice immediately following the copyright notice for the -Original Work: -Licensed under the EUPL V.1.0 -or has expressed by any other mean his willingness to license under the EUPL. -1. Definitions -In this Licence, the following terms have the following meaning: -− The Licence: this Licence. -− The Original Work or the Software: the software distributed and/or communicated by -the Licensor under this Licence, available as Source Code and also as Executable -Code as the case may be. -− Derivative Works: the works or software that could be created by the Licensee, based -upon the Original Work or modifications thereof. This Licence does not define the -extent of modification or dependence on the Original Work required in order to -classify a work as a Derivative Work; this extent is determined by copyright law -applicable in the country mentioned in Article 15. -− The Work: the Original Work and/or its Derivative Works. -− The Source Code: the human-readable form of the Work which is the most -convenient for people to study and modify. -− The Executable Code: any code which has generally been compiled and which is -meant to be interpreted by a computer as a program. -− The Licensor: the natural or legal person that distributes and/or communicates the -Work under the Licence. -− Contributor(s): any natural or legal person who modifies the Work under the -Licence, or otherwise contributes to the creation of a Derivative Work. -− The Licensee or “You”: any natural or legal person who makes any usage of the -Software under the terms of the Licence. − Distribution and/or Communication: any act of selling, giving, lending, renting, -distributing, communicating, transmitting, or otherwise making available, on-line or -off-line, copies of the Work at the disposal of any other natural or legal person. -2. Scope of the rights granted by the Licence -The Licensor hereby grants You a world-wide, royalty-free, non-exclusive, sub-licensable -licence to do the following, for the duration of copyright vested in the Original Work: -− use the Work in any circumstance and for all usage, -− reproduce the Work, -− modify the Original Work, and make Derivative Works based upon the Work, -− communicate to the public, including the right to make available or display the Work -or copies thereof to the public and perform publicly, as the case may be, the Work, -− distribute the Work or copies thereof, -− lend and rent the Work or copies thereof, -− sub-license rights in the Work or copies thereof. -Those rights can be exercised on any media, supports and formats, whether now known or -later invented, as far as the applicable law permits so. -In the countries where moral rights apply, the Licensor waives his right to exercise his moral -right to the extent allowed by law in order to make effective the licence of the economic rights -here above listed. -The Licensor grants to the Licensee royalty-free, non exclusive usage rights to any patents -held by the Licensor, to the extent necessary to make use of the rights granted on the Work -under this Licence. -3. Communication of the Source Code -The Licensor may provide the Work either in its Source Code form, or as Executable Code. If -the Work is provided as Executable Code, the Licensor provides in addition a machinereadable copy of the Source Code of the Work along with each copy of the Work that the -Licensor distributes or indicates, in a notice following the copyright notice attached to the -Work, a repository where the Source Code is easily and freely accessible for as long as the -Licensor continues to distribute and/or communicate the Work. -4. Limitations on copyright -Nothing in this Licence is intended to deprive the Licensee of the benefits from any exception -or limitation to the exclusive rights of the rights owners in the Original Work or Software, of -the exhaustion of those rights or of other applicable limitations thereto. -5. Obligations of the Licensee -The grant of the rights mentioned above is subject to some restrictions and obligations -imposed on the Licensee. Those obligations are the following: Attribution right: the Licensee shall keep intact all copyright, patent or trademarks notices -and all notices that refer to the Licence and to the disclaimer of warranties. The Licensee must -include a copy of such notices and a copy of the Licence with every copy of the Work he/she -distributes and/or communicates. The Licensee must cause any Derivative Work to carry -prominent notices stating that the Work has been modified and the date of modification. -Copyleft clause: If the Licensee distributes and/or communicates copies of the Original -Works or Derivative Works based upon the Original Work, this Distribution and/or -Communication will be done under the terms of this Licence. The Licensee (becoming -Licensor) cannot offer or impose any additional terms or conditions on the Work or -Derivative Work that alter or restrict the terms of the Licence. -Compatibility clause: If the Licensee Distributes and/or Communicates Derivative Works or -copies thereof based upon both the Original Work and another work licensed under a -Compatible Licence, this Distribution and/or Communication can be done under the terms of -this Compatible Licence. For the sake of this clause, “Compatible Licence” refers to the -licences listed in the appendix attached to this Licence. Should the Licensee’s obligations -under the Compatible Licence conflict with his/her obligations under this Licence, the -obligations of the Compatible Licence shall prevail. -Provision of Source Code: When distributing and/or communicating copies of the Work, the -Licensee will provide a machine-readable copy of the Source Code or indicate a repository -where this Source will be easily and freely available for as long as the Licensee continues to -distribute and/or communicate the Work. -Legal Protection: This Licence does not grant permission to use the trade names, trademarks, -service marks, or names of the Licensor, except as required for reasonable and customary use -in describing the origin of the Work and reproducing the content of the copyright notice. -6. Chain of Authorship -The original Licensor warrants that the copyright in the Original Work granted hereunder is -owned by him/her or licensed to him/her and that he/she has the power and authority to grant -the Licence. -Each Contributor warrants that the copyright in the modifications he/she brings to the Work -are owned by him/her or licensed to him/her and that he/she has the power and authority to -grant the Licence. -Each time You, as a Licensee, receive the Work, the original Licensor and subsequent -Contributors grant You a licence to their contributions to the Work, under the terms of this -Licence. -7. Disclaimer of Warranty -The Work is a work in progress, which is continuously improved by numerous contributors. It -is not a finished work and may therefore contain defects or “bugs” inherent to this type of -software development. -For the above reason, the Work is provided under the Licence on an “as is” basis and without -warranties of any kind concerning the Work, including without limitation merchantability, -fitness for a particular purpose, absence of defects or errors, accuracy, non-infringement of -intellectual property rights other than copyright as stated in Article 6 of this Licence. This disclaimer of warranty is an essential part of the Licence and a condition for the grant of -any rights to the Work. -8. Disclaimer of Liability -Except in the cases of wilful misconduct or damages directly caused to natural persons, the -Licensor will in no event be liable for any direct or indirect, material or moral, damages of -any kind, arising out of the Licence or of the use of the Work, including without limitation, -damages for loss of goodwill, work stoppage, computer failure or malfunction, loss of data or -any commercial damage, even if the Licensor has been advised of the possibility of such -damage. However, the Licensor will be liable under statutory product liability laws as far such -laws apply to the Work. -9. Additional agreements -While distributing the Original Work or Derivative Works, You may choose to conclude an -additional agreement to offer, and charge a fee for, acceptance of support, warranty, -indemnity, or other liability obligations and/or services consistent with this Licence. -However, in accepting such obligations, You may act only on your own behalf and on your -sole responsibility, not on behalf of the original Licensor or any other Contributor, and only if -You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred -by, or claims asserted against such Contributor by the fact You have accepted any such -warranty or additional liability. -10. Acceptance of the Licence -The provisions of this Licence can be accepted by clicking on an icon “I agree” placed under -the bottom of a window displaying the text of this Licence or by affirming consent in any -other similar way, in accordance with the rules of applicable law. Clicking on that icon -indicates your clear and irrevocable acceptance of this Licence and all of its terms and -conditions. -Similarly, you irrevocably accept this Licence and all of its terms and conditions by -exercising any rights granted to You by Article 2 of this Licence, such as the use of the Work, -the creation by You of a Derivative Work or the Distribution and/or Communication by You -of the Work or copies thereof. -11. Information to the public -In case of any Distribution and/or Communication of the Work by means of electronic -communication by You (for example, by offering to download the Work from a remote -location) the distribution channel or media (for example, a website) must at least provide to -the public the information requested by the applicable law regarding the identification and -address of the Licensor, the Licence and the way it may be accessible, concluded, stored and -reproduced by the Licensee. -12. Termination of the Licence -The Licence and the rights granted hereunder will terminate automatically upon any breach by -the Licensee of the terms of the Licence. -Such a termination will not terminate the licences of any person who has received the Work -from the Licensee under the Licence, provided such persons remain in full compliance with -the Licence. 13. Miscellaneous -Without prejudice of Article 9 above, the Licence represents the complete agreement between -the Parties as to the Work licensed hereunder. -If any provision of the Licence is invalid or unenforceable under applicable law, this will not -affect the validity or enforceability of the Licence as a whole. Such provision will be -construed and/or reformed so as necessary to make it valid and enforceable. -The European Commission may put into force translations and/or binding new versions of -this Licence, so far this is required and reasonable. New versions of the Licence will be -published with a unique version number. The new version of the Licence becomes binding for -You as soon as You become aware of its publication. -14. Jurisdiction -Any litigation resulting from the interpretation of this License, arising between the European -Commission, as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court -of Justice of the European Communities, as laid down in article 238 of the Treaty establishing -the European Community. -Any litigation arising between Parties, other than the European Commission, and resulting -from the interpretation of this License, will be subject to the exclusive jurisdiction of the -competent court where the Licensor resides or conducts its primary business. -15. Applicable Law -This Licence shall be governed by the law of the European Union country where the Licensor -resides or has his registered office. -This licence shall be governed by the Belgian law if: -− a litigation arises between the European Commission, as a Licensor, and any -Licensee; -− the Licensor, other than the European Commission, has no residence or registered -office inside a European Union country. - ===Appendix -“Compatible Licences” according to article 5 EUPL are: -− General Public License (GPL) v. 2 -− Open Software License (OSL) v. 2.1, v. 3.0 -− Common Public License v. 1.0 -− Eclipse Public License v. 1.0 -− Cecill v. 2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.0.yml deleted file mode 100644 index fff5c4dd592..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - eupl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.2.txt b/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.2.txt deleted file mode 100644 index 09305e01c40..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.2.txt +++ /dev/null @@ -1,190 +0,0 @@ -EUROPEAN UNION PUBLIC LICENCE v. 1.2 -EUPL © the European Union 2007, 2016 - -This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined below) which is provided under the -terms of this Licence. Any use of the Work, other than as authorised under this Licence is prohibited (to the extent such -use is covered by a right of the copyright holder of the Work). -The Work is provided under the terms of this Licence when the Licensor (as defined below) has placed the following -notice immediately following the copyright notice for the Work: - Licensed under the EUPL -or has expressed by any other means his willingness to license under the EUPL. - -1.Definitions -In this Licence, the following terms have the following meaning: -— ‘The Licence’:this Licence. -— ‘The Original Work’:the work or software distributed or communicated by the Licensor under this Licence, available -as Source Code and also as Executable Code as the case may be. -— ‘Derivative Works’:the works or software that could be created by the Licensee, based upon the Original Work or -modifications thereof. This Licence does not define the extent of modification or dependence on the Original Work -required in order to classify a work as a Derivative Work; this extent is determined by copyright law applicable in -the country mentioned in Article 15. -— ‘The Work’:the Original Work or its Derivative Works. -— ‘The Source Code’:the human-readable form of the Work which is the most convenient for people to study and -modify. -— ‘The Executable Code’:any code which has generally been compiled and which is meant to be interpreted by -a computer as a program. -— ‘The Licensor’:the natural or legal person that distributes or communicates the Work under the Licence. -— ‘Contributor(s)’:any natural or legal person who modifies the Work under the Licence, or otherwise contributes to -the creation of a Derivative Work. -— ‘The Licensee’ or ‘You’:any natural or legal person who makes any usage of the Work under the terms of the -Licence. -— ‘Distribution’ or ‘Communication’:any act of selling, giving, lending, renting, distributing, communicating, -transmitting, or otherwise making available, online or offline, copies of the Work or providing access to its essential -functionalities at the disposal of any other natural or legal person. - -2.Scope of the rights granted by the Licence -The Licensor hereby grants You a worldwide, royalty-free, non-exclusive, sublicensable licence to do the following, for -the duration of copyright vested in the Original Work: -— use the Work in any circumstance and for all usage, -— reproduce the Work, -— modify the Work, and make Derivative Works based upon the Work, -— communicate to the public, including the right to make available or display the Work or copies thereof to the public -and perform publicly, as the case may be, the Work, -— distribute the Work or copies thereof, -— lend and rent the Work or copies thereof, -— sublicense rights in the Work or copies thereof. -Those rights can be exercised on any media, supports and formats, whether now known or later invented, as far as the -applicable law permits so. -In the countries where moral rights apply, the Licensor waives his right to exercise his moral right to the extent allowed -by law in order to make effective the licence of the economic rights here above listed. -The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to any patents held by the Licensor, to the -extent necessary to make use of the rights granted on the Work under this Licence. - -3.Communication of the Source Code -The Licensor may provide the Work either in its Source Code form, or as Executable Code. If the Work is provided as -Executable Code, the Licensor provides in addition a machine-readable copy of the Source Code of the Work along with -each copy of the Work that the Licensor distributes or indicates, in a notice following the copyright notice attached to -the Work, a repository where the Source Code is easily and freely accessible for as long as the Licensor continues to -distribute or communicate the Work. - -4.Limitations on copyright -Nothing in this Licence is intended to deprive the Licensee of the benefits from any exception or limitation to the -exclusive rights of the rights owners in the Work, of the exhaustion of those rights or of other applicable limitations -thereto. - -5.Obligations of the Licensee -The grant of the rights mentioned above is subject to some restrictions and obligations imposed on the Licensee. Those -obligations are the following: - -Attribution right: The Licensee shall keep intact all copyright, patent or trademarks notices and all notices that refer to -the Licence and to the disclaimer of warranties. The Licensee must include a copy of such notices and a copy of the -Licence with every copy of the Work he/she distributes or communicates. The Licensee must cause any Derivative Work -to carry prominent notices stating that the Work has been modified and the date of modification. - -Copyleft clause: If the Licensee distributes or communicates copies of the Original Works or Derivative Works, this -Distribution or Communication will be done under the terms of this Licence or of a later version of this Licence unless -the Original Work is expressly distributed only under this version of the Licence — for example by communicating -‘EUPL v. 1.2 only’. The Licensee (becoming Licensor) cannot offer or impose any additional terms or conditions on the -Work or Derivative Work that alter or restrict the terms of the Licence. - -Compatibility clause: If the Licensee Distributes or Communicates Derivative Works or copies thereof based upon both -the Work and another work licensed under a Compatible Licence, this Distribution or Communication can be done -under the terms of this Compatible Licence. For the sake of this clause, ‘Compatible Licence’ refers to the licences listed -in the appendix attached to this Licence. Should the Licensee's obligations under the Compatible Licence conflict with -his/her obligations under this Licence, the obligations of the Compatible Licence shall prevail. - -Provision of Source Code: When distributing or communicating copies of the Work, the Licensee will provide -a machine-readable copy of the Source Code or indicate a repository where this Source will be easily and freely available -for as long as the Licensee continues to distribute or communicate the Work. -Legal Protection: This Licence does not grant permission to use the trade names, trademarks, service marks, or names -of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and -reproducing the content of the copyright notice. - -6.Chain of Authorship -The original Licensor warrants that the copyright in the Original Work granted hereunder is owned by him/her or -licensed to him/her and that he/she has the power and authority to grant the Licence. -Each Contributor warrants that the copyright in the modifications he/she brings to the Work are owned by him/her or -licensed to him/her and that he/she has the power and authority to grant the Licence. -Each time You accept the Licence, the original Licensor and subsequent Contributors grant You a licence to their contributions -to the Work, under the terms of this Licence. - -7.Disclaimer of Warranty -The Work is a work in progress, which is continuously improved by numerous Contributors. It is not a finished work -and may therefore contain defects or ‘bugs’ inherent to this type of development. -For the above reason, the Work is provided under the Licence on an ‘as is’ basis and without warranties of any kind -concerning the Work, including without limitation merchantability, fitness for a particular purpose, absence of defects or -errors, accuracy, non-infringement of intellectual property rights other than copyright as stated in Article 6 of this -Licence. -This disclaimer of warranty is an essential part of the Licence and a condition for the grant of any rights to the Work. - -8.Disclaimer of Liability -Except in the cases of wilful misconduct or damages directly caused to natural persons, the Licensor will in no event be -liable for any direct or indirect, material or moral, damages of any kind, arising out of the Licence or of the use of the -Work, including without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, loss -of data or any commercial damage, even if the Licensor has been advised of the possibility of such damage. However, -the Licensor will be liable under statutory product liability laws as far such laws apply to the Work. - -9.Additional agreements -While distributing the Work, You may choose to conclude an additional agreement, defining obligations or services -consistent with this Licence. However, if accepting obligations, You may act only on your own behalf and on your sole -responsibility, not on behalf of the original Licensor or any other Contributor, and only if You agree to indemnify, -defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against such Contributor by -the fact You have accepted any warranty or additional liability. - -10.Acceptance of the Licence -The provisions of this Licence can be accepted by clicking on an icon ‘I agree’ placed under the bottom of a window -displaying the text of this Licence or by affirming consent in any other similar way, in accordance with the rules of -applicable law. Clicking on that icon indicates your clear and irrevocable acceptance of this Licence and all of its terms -and conditions. -Similarly, you irrevocably accept this Licence and all of its terms and conditions by exercising any rights granted to You -by Article 2 of this Licence, such as the use of the Work, the creation by You of a Derivative Work or the Distribution -or Communication by You of the Work or copies thereof. - -11.Information to the public -In case of any Distribution or Communication of the Work by means of electronic communication by You (for example, -by offering to download the Work from a remote location) the distribution channel or media (for example, a website) -must at least provide to the public the information requested by the applicable law regarding the Licensor, the Licence -and the way it may be accessible, concluded, stored and reproduced by the Licensee. - -12.Termination of the Licence -The Licence and the rights granted hereunder will terminate automatically upon any breach by the Licensee of the terms -of the Licence. -Such a termination will not terminate the licences of any person who has received the Work from the Licensee under -the Licence, provided such persons remain in full compliance with the Licence. - -13.Miscellaneous -Without prejudice of Article 9 above, the Licence represents the complete agreement between the Parties as to the -Work. -If any provision of the Licence is invalid or unenforceable under applicable law, this will not affect the validity or -enforceability of the Licence as a whole. Such provision will be construed or reformed so as necessary to make it valid -and enforceable. -The European Commission may publish other linguistic versions or new versions of this Licence or updated versions of -the Appendix, so far this is required and reasonable, without reducing the scope of the rights granted by the Licence. -New versions of the Licence will be published with a unique version number. -All linguistic versions of this Licence, approved by the European Commission, have identical value. Parties can take -advantage of the linguistic version of their choice. - -14.Jurisdiction -Without prejudice to specific agreement between parties, -— any litigation resulting from the interpretation of this License, arising between the European Union institutions, -bodies, offices or agencies, as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court of Justice -of the European Union, as laid down in article 272 of the Treaty on the Functioning of the European Union, -— any litigation arising between other parties and resulting from the interpretation of this License, will be subject to -the exclusive jurisdiction of the competent court where the Licensor resides or conducts its primary business. - -15.Applicable Law -Without prejudice to specific agreement between parties, -— this Licence shall be governed by the law of the European Union Member State where the Licensor has his seat, -resides or has his registered office, -— this licence shall be governed by Belgian law if the Licensor has no seat, residence or registered office inside -a European Union Member State. - - - Appendix - -‘Compatible Licences’ according to Article 5 EUPL are: -— GNU General Public License (GPL) v. 2, v. 3 -— GNU Affero General Public License (AGPL) v. 3 -— Open Software License (OSL) v. 2.1, v. 3.0 -— Eclipse Public License (EPL) v. 1.0 -— CeCILL v. 2.0, v. 2.1 -— Mozilla Public Licence (MPL) v. 2 -— GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3 -— Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for works other than software -— European Union Public Licence (EUPL) v. 1.1, v. 1.2 -— Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong Reciprocity (LiLiQ-R+). - -The European Commission may update this Appendix to later versions of the above licences without producing -a new version of the EUPL, as long as they provide the rights granted in Article 2 of this Licence and protect the -covered Source Code from exclusive appropriation. -All other changes or additions to this Appendix require the production of a new EUPL version. diff --git a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.2.yml b/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.2.yml deleted file mode 100644 index 2e0104dc7c3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/EUPL/EUPL-1.2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - eupl-1.2 - diff --git a/tests/licensedcode/data/more_licenses/tests/Entessa/Entessa.txt b/tests/licensedcode/data/more_licenses/tests/Entessa/Entessa.txt deleted file mode 100644 index f33f6d04ce8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Entessa/Entessa.txt +++ /dev/null @@ -1,18 +0,0 @@ -Entessa Public License Version. 1.0 -Copyright (c) 2003 Entessa, LLC. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -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. -The end-user documentation included with the redistribution, if any, must include the following acknowledgment: -"This product includes open source software developed by openSEAL (http://www.openseal.org/)." - -Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. - -The names "openSEAL" and "Entessa" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact epl@entessa.com. -Products derived from this software may not be called "openSEAL", nor may "openSEAL" appear in their name, without prior written permission of Entessa. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 ENTESSA, LLC, OPENSEAL OR ITS 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. -============================================================ - -This software consists of voluntary contributions made by many individuals on behalf of openSEAL and was originally based on software contributed by Entessa, LLC, http://www.entessa.com. For more information on the openSEAL, please see . diff --git a/tests/licensedcode/data/more_licenses/tests/Entessa/Entessa.yml b/tests/licensedcode/data/more_licenses/tests/Entessa/Entessa.yml deleted file mode 100644 index eb8181497fe..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Entessa/Entessa.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - entessa-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/ErlPL/ErlPL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/ErlPL/ErlPL-1.1.txt deleted file mode 100644 index 419abc78a58..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ErlPL/ErlPL-1.1.txt +++ /dev/null @@ -1,286 +0,0 @@ -ERLANG PUBLIC LICENSE -Version 1.1 - -1. Definitions. - -1.1. ``Contributor'' means each entity that creates or contributes to -the creation of Modifications. - -1.2. ``Contributor Version'' means the combination of the Original -Code, prior Modifications used by a Contributor, and the Modifications -made by that particular Contributor. - -1.3. ``Covered Code'' means the Original Code or Modifications or the -combination of the Original Code and Modifications, in each case -including portions thereof. - -1.4. ``Electronic Distribution Mechanism'' means a mechanism generally -accepted in the software development community for the electronic -transfer of data. - -1.5. ``Executable'' means Covered Code in any form other than Source -Code. - -1.6. ``Initial Developer'' means the individual or entity identified -as the Initial Developer in the Source Code notice required by Exhibit -A. - -1.7. ``Larger Work'' means a work which combines Covered Code or -portions thereof with code not governed by the terms of this License. - -1.8. ``License'' means this document. - -1.9. ``Modifications'' means any addition to or deletion from the -substance or structure of either the Original Code or any previous -Modifications. When Covered Code is released as a series of files, a -Modification is: - -A. Any addition to or deletion from the contents of a file containing - Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or - previous Modifications. - -1.10. ``Original Code'' means Source Code of computer software code -which is described in the Source Code notice required by Exhibit A as -Original Code, and which, at the time of its release under this -License is not already Covered Code governed by this License. - -1.11. ``Source Code'' means the preferred form of the Covered Code for -making modifications to it, including all modules it contains, plus -any associated interface definition files, scripts used to control -compilation and installation of an Executable, or a list of source -code differential comparisons against either the Original Code or -another well known, available Covered Code of the Contributor's -choice. The Source Code can be in a compressed or archival form, -provided the appropriate decompression or de-archiving software is -widely available for no charge. - -1.12. ``You'' means an individual or a legal entity exercising rights -under, and complying with all of the terms of, this License. For legal -entities,``You'' includes any entity which controls, is controlled by, -or is under common control with You. For purposes of this definition, -``control'' means (a) the power, direct or indirect, to cause the -direction or management of such entity, whether by contract or -otherwise, or (b) ownership of fifty percent (50%) or more of the -outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) to use, reproduce, modify, display, perform, sublicense and - distribute the Original Code (or portions thereof) with or without - Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial - Developer, to make, have made, use and sell (``Utilize'') the - Original Code (or portions thereof), but solely to the extent that - any such patent is reasonably necessary to enable You to Utilize - the Original Code (or portions thereof) and not to any greater - extent that may be necessary to Utilize further Modifications or - combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) to use, reproduce, modify, display, perform, sublicense and - distribute the Modifications created by such Contributor (or - portions thereof) either on an unmodified basis, with other - Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, - to Utilize the Contributor Version (or portions thereof), but - solely to the extent that any such patent is reasonably necessary - to enable You to Utilize the Contributor Version (or portions - thereof), and not to any greater extent that may be necessary to - Utilize further Modifications or combinations. - -3. Distribution Obligations. - -3.1. Application of License. -The Modifications which You contribute are governed by the terms of -this License, including without limitation Section 2.2. The Source -Code version of Covered Code may be distributed only under the terms -of this License, and You must include a copy of this License with -every copy of the Source Code You distribute. You may not offer or -impose any terms on any Source Code version that alters or restricts -the applicable version of this License or the recipients' rights -hereunder. However, You may include an additional document offering -the additional rights described in Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You contribute must be made available in Source -Code form under the terms of this License either on the same media as -an Executable version or via an accepted Electronic Distribution -Mechanism to anyone to whom you made an Executable version available; -and if made available via Electronic Distribution Mechanism, must -remain available for at least twelve (12) months after the date it -initially became available, or at least six (6) months after a -subsequent version of that particular Modification has been made -available to such recipients. You are responsible for ensuring that -the Source Code version remains available even if the Electronic -Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a -file documenting the changes You made to create that Covered Code and -the date of any change. You must include a prominent statement that -the Modification is derived, directly or indirectly, from Original -Code provided by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any notice in an -Executable version or related documentation in which You describe the -origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. - If You have knowledge that a party claims an intellectual property - right in particular functionality or code (or its utilization - under this License), you must include a text file with the source - code distribution titled ``LEGAL'' which describes the claim and - the party making the claim in sufficient detail that a recipient - will know whom to contact. If you obtain such knowledge after You - make Your Modification available as described in Section 3.2, You - shall promptly modify the LEGAL file in all copies You make - available thereafter and shall take other steps (such as notifying - appropriate mailing lists or newsgroups) reasonably calculated to - inform those who received the Covered Code that new knowledge has - been obtained. - -(b) Contributor APIs. - If Your Modification is an application programming interface and - You own or control patents which are reasonably necessary to - implement that API, you must also include this information in the - LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source -Code, and this License in any documentation for the Source Code, where -You describe recipients' rights relating to Covered Code. If You -created one or more Modification(s), You may add your name as a -Contributor to the notice described in Exhibit A. If it is not -possible to put such notice in a particular Source Code file due to -its structure, then you must include such notice in a location (such -as a relevant directory file) where a user would be likely to look for -such a notice. You may choose to offer, and to charge a fee for, -warranty, support, indemnity or liability obligations to one or more -recipients of Covered Code. However, You may do so only on Your own -behalf, and not on behalf of the Initial Developer or any -Contributor. You must make it absolutely clear than any such warranty, -support, indemnity or liability obligation is offered by You alone, -and You hereby agree to indemnify the Initial Developer and every -Contributor for any liability incurred by the Initial Developer or -such Contributor as a result of warranty, support, indemnity or -liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the -requirements of Section 3.1-3.5 have been met for that Covered Code, -and if You include a notice stating that the Source Code version of -the Covered Code is available under the terms of this License, -including a description of how and where You have fulfilled the -obligations of Section 3.2. The notice must be conspicuously included -in any notice in an Executable version, related documentation or -collateral in which You describe recipients' rights relating to the -Covered Code. You may distribute the Executable version of Covered -Code under a license of Your choice, which may contain terms different -from this License, provided that You are in compliance with the terms -of this License and that the license for the Executable version does -not attempt to limit or alter the recipient's rights in the Source -Code version from the rights set forth in this License. If You -distribute the Executable version under a different license You must -make it absolutely clear that any terms which differ from this License -are offered by You alone, not by the Initial Developer or any -Contributor. You hereby agree to indemnify the Initial Developer and -every Contributor for any liability incurred by the Initial Developer -or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code -not governed by the terms of this License and distribute the Larger -Work as a single product. In such a case, You must make sure the -requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Code due to statute -or regulation then You must: (a) comply with the terms of this License -to the maximum extent possible; and (b) describe the limitations and -the code they affect. Such description must be included in the LEGAL -file described in Section 3.4 and must be included with all -distributions of the Source Code. Except to the extent prohibited by -statute or regulation, such description must be sufficiently detailed -for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has -attached the notice in Exhibit A, and to related Covered Code. - -6. CONNECTION TO MOZILLA PUBLIC LICENSE - -This Erlang License is a derivative work of the Mozilla Public -License, Version 1.0. It contains terms which differ from the Mozilla -Public License, Version 1.0. - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR -NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF -THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE -IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER -CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR -CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART -OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER -EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. -This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. All -sublicenses to the Covered Code which are properly granted shall -survive any termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this License -shall survive. - -9. DISCLAIMER OF LIABILITY -Any utilization of Covered Code shall not cause the Initial Developer -or any Contributor to be liable for any damages (neither direct nor -indirect). - -10. MISCELLANEOUS -This License represents the complete agreement concerning the subject -matter hereof. If any provision is held to be unenforceable, such -provision shall be reformed only to the extent necessary to make it -enforceable. This License shall be construed by and in accordance with -the substantive laws of Sweden. Any dispute, controversy or claim -arising out of or relating to this License, or the breach, termination -or invalidity thereof, shall be subject to the exclusive jurisdiction -of Swedish courts, with the Stockholm City Court as the first -instance. - -EXHIBIT A. - -``The contents of this file are subject to the Erlang Public License, -Version 1.1, (the "License"); you may not use this file except in -compliance with the License. You should have received a copy of the -Erlang Public License along with this software. If not, it can be -retrieved via the world wide web at http://www.erlang.org/. - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -the License for the specific language governing rights and limitations -under the License. - -The Initial Developer of the Original Code is Ericsson Utvecklings AB. -Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings -AB. All Rights Reserved.'' diff --git a/tests/licensedcode/data/more_licenses/tests/ErlPL/ErlPL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/ErlPL/ErlPL-1.1.yml deleted file mode 100644 index 9a6c1be11b9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ErlPL/ErlPL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - erlangpl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/Fair/Fair.txt b/tests/licensedcode/data/more_licenses/tests/Fair/Fair.txt deleted file mode 100644 index ed034a37108..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Fair/Fair.txt +++ /dev/null @@ -1,9 +0,0 @@ -Fair License -(plain text) - - -Usage of the works is permitted provided that this instrument is retained with the works, so that any entity that uses the works is notified of this instrument. - -DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. - -[2004, Fair License: rhid.com/fair (this URL no longer works)] diff --git a/tests/licensedcode/data/more_licenses/tests/Fair/Fair.yml b/tests/licensedcode/data/more_licenses/tests/Fair/Fair.yml deleted file mode 100644 index ad04fcf9337..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Fair/Fair.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - fair diff --git a/tests/licensedcode/data/more_licenses/tests/Flora/Flora-1.1.txt b/tests/licensedcode/data/more_licenses/tests/Flora/Flora-1.1.txt deleted file mode 100644 index 8fe8746dc8b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Flora/Flora-1.1.txt +++ /dev/null @@ -1,95 +0,0 @@ -Flora License - -Version 1.1, April, 2013 - -http://floralicense.org/license - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -"Tizen Certified Platform" shall mean a software platform that complies with the standards set forth in the Tizen Compliance Specification and passes the Tizen Compliance Tests as defined from time to time by the Tizen Technical Steering Group and certified by the Tizen Association or its designated agent. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work solely as incorporated into a Tizen Certified Platform, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work solely as incorporated into a Tizen Certified Platform to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof pursuant to the copyright license above, in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of this License; and -You must cause any modified files to carry prominent notices stating that You changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License and your own copyright statement or terms and conditions do not conflict the conditions stated in this License including section 3. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) 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. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Flora License to your work - -To apply the Flora License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - - - -Licensed under the Flora License, Version 1.1 (the "License"); - -you may not use this file except in compliance with the License. - -You may obtain a copy of the License at - - - -http://floralicense.org/license - - - -Unless required by applicable law or agreed to in writing, software - -distributed under the License is distributed on an "AS IS" BASIS, - - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - - See the License for the specific language governing permissions and - - limitations under the License. - - Change Log - - * Version 1.1, April, 2013 - - The term "Compatibility Definition Document" has been changed to "Tizen Compliance Specification" - The term "Compatibility Test Suites" has been changed to "Tizen Compliance Tests" - Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications - - - diff --git a/tests/licensedcode/data/more_licenses/tests/Flora/Flora-1.1.yml b/tests/licensedcode/data/more_licenses/tests/Flora/Flora-1.1.yml deleted file mode 100644 index 3093f132750..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Flora/Flora-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - flora-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/Frameworx/Frameworx-1.0.txt b/tests/licensedcode/data/more_licenses/tests/Frameworx/Frameworx-1.0.txt deleted file mode 100644 index 173075d537f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Frameworx/Frameworx-1.0.txt +++ /dev/null @@ -1,67 +0,0 @@ -THE FRAMEWORX OPEN LICENSE 1.0 -This License Agreement, The Frameworx Open License 1.0, has been entered into between The Frameworx Company and you, the licensee hereunder, effective as of Your acceptance of the Frameworx Code Base or an Downstream Distribution (each as defined below). - -AGREEMENT BACKGROUND -The Frameworx Company is committed to the belief that open source software results in better quality, greater technical and product innovation in the market place and a more empowered and productive developer and end-user community. Our objective is to ensure that the Frameworx Code Base, and the source code for improvements and innovations to it, remain free and open to the community.To further these beliefs and objectives, we are distributing the Frameworx Code Base, without royalties and in source code form, to the community pursuant to this License Agreement. - -AGREEMENT TERMS -The Frameworx Company and You have agreed as follows: -1.Definitions.The following terms have the following respective meanings: - -(a) Frameworx Code Base means the software developed by The Frameworx Company and made available under this License Agreement - -(b) Downstream Distribution means any direct or indirect release, distribution or remote availability of software (i) that directly or indirectly contains, or depends for its intended functioning on, the Frameworx Code Base or any portion or element thereof and (ii) in which rights to use and distribute such Frameworx Code Base software depend, directly or indirectly, on the License provided in Section 2 below. - -(c) "Source Code" to any software means the preferred form for making modifications to that software, including any associated documentation, interface definition files and compilation or installation scripts, or any version thereof that has been compressed or archived, and can be reconstituted, using an appropriate and generally available archival or compression technology. - -(d) Value-Added Services means any commercial or fee-based software-related service, including without limitation: system or application development or consulting; technical or end-user support or training; distribution maintenance, configuration or versioning; or outsourced, hosted or network-based application services. - -2. License Grant. Subject to the terms and conditions hereof, The Frameworx Company hereby grants You a non-exclusive license (the License), subject to third party intellectual property claims, and for no fee other than a nominal charge reflecting the costs of physical distribution, to: - -(a) use the Frameworx Code Base, in either Source Code or machine-readable form; - -(b) make modifications, additions and deletions to the content or structure of the Frameworx Code Base; or - -(c) create larger works or derivative works including the Frameworx Code Base or any portion or element thereof; and - -(d) release, distribute or make available, either generally or to any specific third-party, any of the foregoing in Source Code or binary form. - -3. License Conditions. The grant of the License under Section 1 hereof, and your exercise of all rights in connection with this License Agreement, will remain subject to the following terms and conditions, as well as to the other provisions hereof: - -(a) Complete Source Code for any Downstream Distribution directly or indirectly made by You that contains, or depends for its intended functionality on, the Frameworx Code Base, or any portion or element thereof, shall be made freely available to all users thereof on terms and conditions no more restrictive, and no less favorable for any user (including, without limitation, with regard to Source Code availability and royalty-free use) than those terms and conditions provided in this License Agreement. - -(b) Any Value-Added Services that you offer or provide, directly or indirectly, in relation to any Downstream Distribution shall be offered and provided on commercial terms that are reasonably commensurate to the fair market value of such Value-Added Services. In addition, the terms and conditions on which any such Value Added Services are so offered or provided shall be consistent with, and shall fully support, the intent and purpose of this License Agreement. - -(c) All Downstream Distributions shall: - - (i) include all portions and elements of the Frameworx Code Base required to build the Source Code of such Downstream Distribution into a fully functional machine-executable system, or additional build scripts or comparable software necessary and sufficient for such purposes; - - (ii) include, in each file containing any portion or element of the Frameworx Code Base, the following identifying legend: This file contains software that has been made available under The Frameworx Open License 1.0. Use and distribution hereof are subject to the restrictions set forth therein. - - (iii) include all other copyright notices, authorship credits, warranty disclaimers (including that provided in Section 6 below), legends, documentation, annotations and comments contained in the Frameworx Code Base as provided to You hereunder; - - (iv) contain an unaltered copy of the html file named frameworx_community_invitation.html included within the Frameworx Code Base that acknowledges new users and provides them with information on the Frameworx Code Base community; - - (v) contain an unaltered copy of the text file named the_frameworx_license.txt included within the Frameworx Code Base that includes a text copy of the form of this License Agreement; and - - (vi) prominently display to any viewer or user of the Source Code of such Open Downstream Distribution, in the place and manner normally used for such displays, the following legend: - -Source code licensed under from The Frameworx Company is contained herein, and such source code has been obtained either under The Frameworx Open License, or another license granted by The Frameworx Company. Use and distribution hereof is subject to the restrictions provided in the relevant such license and to the copyrights of the licensor thereunder. A copy of The Frameworx Open License is provided in a file named the_frameworx_license.txt and included herein, and may also be available for inspection at http://www.frameworx.com. - -4. Restrictions on Open Downstream Distributions. Each Downstream Distribution made by You, and by any party directly or indirectly obtaining rights to the Frameworx Code Base through You, shall be made subject to a license grant or agreement to the extent necessary so that each distributee under that Downstream Distribution will be subject to the same restrictions on re-distribution and use as are binding on You hereunder. You may satisfy this licensing requirement either by: - -(a) requiring as a condition to any Downstream Distribution made by you, or by any direct or indirect distributee of Your Downstream Distribution (or any portion or element thereof), that each distributee under the relevant Downstream Distribution obtain a direct license (on the same terms and conditions as those in this License Agreement) from The Frameworx Company; or - -(b) sub-licensing all (and not less than all) of Your rights and obligations hereunder to that distributee, including (without limitation) Your obligation to require distributees to be bound by license restrictions as contemplated by this Section 4 above. - -The Frameworx Company hereby grants to you all rights to sub-license your rights hereunder as necessary to fully effect the intent and purpose of this Section 4 above, provided, however, that your rights and obligations hereunder shall be unaffected by any such sublicensing. In addition, The Frameworx Company expressly retains all rights to take all appropriate action (including legal action) against any such direct or indirect sub-licensee to ensure its full compliance with the intent and purposes of this License Agreement. - -5. Intellectual Property. Except as expressly provided herein, this License Agreement preserves and respects Your and The Frameworx Companys respective intellectual property rights, including, in the case of The Frameworx Company, its copyrights and patent rights relating to the Frameworx Code Base. - -6. Warranty Disclaimer. THE SOFTWARE LICENSED HEREUNDER IS PROVIDED ``AS IS.'' ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT, ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE LICENSOR OF THIS SOFTWARE, 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. - -7. License Violation. The License, and all of your rights thereunder, shall be deemed automatically terminated and void as of any Downstream Distribution directly or indirectly made or facilitated by You that violates the provisions of this License Agreement, provided, however, that this License Agreement shall survive any such termination in order to remedy the effects of such violation. This License Agreement shall be binding on the legal successors and assigns of the parties hereto. - -Your agreement to the foregoing as of the date hereof has been evidenced by your acceptance of the relevant software distribution hereunder. - -(C) THE FRAMEWORX COMPANY 2003 diff --git a/tests/licensedcode/data/more_licenses/tests/Frameworx/Frameworx-1.0.yml b/tests/licensedcode/data/more_licenses/tests/Frameworx/Frameworx-1.0.yml deleted file mode 100644 index 5cadc8b80c7..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Frameworx/Frameworx-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - frameworx-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Freeware/cblas.license b/tests/licensedcode/data/more_licenses/tests/Freeware/cblas.license deleted file mode 100644 index 04bccc7f9a3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Freeware/cblas.license +++ /dev/null @@ -1,14 +0,0 @@ -The reference BLAS is a freely-available software package. It is -available from netlib via anonymous ftp and the World Wide Web. Thus, -it can be included in commercial software packages (and has been). We -only ask that proper credit be given to the authors. - -Like all software, it is copyrighted. It is not trademarked, but we do -ask the following: - -If you modify the source for these routines we ask that you change the -name of the routine and comment the changes made to the original. - -We will gladly answer any questions regarding the software. If a -modification is done, however, it is the responsibility of the person -who modified the routine to provide support \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/Freeware/cblas.yml b/tests/licensedcode/data/more_licenses/tests/Freeware/cblas.yml deleted file mode 100644 index 48e131fb1d0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Freeware/cblas.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - blas-2017 diff --git a/tests/licensedcode/data/more_licenses/tests/Freeware/pg_dump.txt b/tests/licensedcode/data/more_licenses/tests/Freeware/pg_dump.txt deleted file mode 100644 index bf2afa5ce65..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Freeware/pg_dump.txt +++ /dev/null @@ -1,3 +0,0 @@ - Rights are granted to use this software in any way so long as this notice is - not removed. The author is not responsible for loss or damages that may - result from its use. diff --git a/tests/licensedcode/data/more_licenses/tests/Freeware/pg_dump.yml b/tests/licensedcode/data/more_licenses/tests/Freeware/pg_dump.yml deleted file mode 100644 index 0a4cd1ab0bb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Freeware/pg_dump.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - other-permissive - diff --git a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.1.txt deleted file mode 100644 index 1d742231562..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.1.txt +++ /dev/null @@ -1,355 +0,0 @@ - GNU Free Documentation License - Version 1.1, March 2000 - - Copyright (C) 2000 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - -0. PREAMBLE - -The purpose of this License is to make a manual, textbook, or other -written document "free" in the sense of freedom: to assure everyone -the effective freedom to copy and redistribute it, with or without -modifying it, either commercially or noncommercially. Secondarily, -this License preserves for the author and publisher a way to get -credit for their work, while not being considered responsible for -modifications made by others. - -This License is a kind of "copyleft", which means that derivative -works of the document must themselves be free in the same sense. It -complements the GNU General Public License, which is a copyleft -license designed for free software. - -We have designed this License in order to use it for manuals for free -software, because free software needs free documentation: a free -program should come with manuals providing the same freedoms that the -software does. But this License is not limited to software manuals; -it can be used for any textual work, regardless of subject matter or -whether it is published as a printed book. We recommend this License -principally for works whose purpose is instruction or reference. - - -1. APPLICABILITY AND DEFINITIONS - -This License applies to any manual or other work that contains a -notice placed by the copyright holder saying it can be distributed -under the terms of this License. The "Document", below, refers to any -such manual or work. Any member of the public is a licensee, and is -addressed as "you". - -A "Modified Version" of the Document means any work containing the -Document or a portion of it, either copied verbatim, or with -modifications and/or translated into another language. - -A "Secondary Section" is a named appendix or a front-matter section of -the Document that deals exclusively with the relationship of the -publishers or authors of the Document to the Document's overall subject -(or to related matters) and contains nothing that could fall directly -within that overall subject. (For example, if the Document is in part a -textbook of mathematics, a Secondary Section may not explain any -mathematics.) The relationship could be a matter of historical -connection with the subject or with related matters, or of legal, -commercial, philosophical, ethical or political position regarding -them. - -The "Invariant Sections" are certain Secondary Sections whose titles -are designated, as being those of Invariant Sections, in the notice -that says that the Document is released under this License. - -The "Cover Texts" are certain short passages of text that are listed, -as Front-Cover Texts or Back-Cover Texts, in the notice that says that -the Document is released under this License. - -A "Transparent" copy of the Document means a machine-readable copy, -represented in a format whose specification is available to the -general public, whose contents can be viewed and edited directly and -straightforwardly with generic text editors or (for images composed of -pixels) generic paint programs or (for drawings) some widely available -drawing editor, and that is suitable for input to text formatters or -for automatic translation to a variety of formats suitable for input -to text formatters. A copy made in an otherwise Transparent file -format whose markup has been designed to thwart or discourage -subsequent modification by readers is not Transparent. A copy that is -not "Transparent" is called "Opaque". - -Examples of suitable formats for Transparent copies include plain -ASCII without markup, Texinfo input format, LaTeX input format, SGML -or XML using a publicly available DTD, and standard-conforming simple -HTML designed for human modification. Opaque formats include -PostScript, PDF, proprietary formats that can be read and edited only -by proprietary word processors, SGML or XML for which the DTD and/or -processing tools are not generally available, and the -machine-generated HTML produced by some word processors for output -purposes only. - -The "Title Page" means, for a printed book, the title page itself, -plus such following pages as are needed to hold, legibly, the material -this License requires to appear in the title page. For works in -formats which do not have any title page as such, "Title Page" means -the text near the most prominent appearance of the work's title, -preceding the beginning of the body of the text. - - -2. VERBATIM COPYING - -You may copy and distribute the Document in any medium, either -commercially or noncommercially, provided that this License, the -copyright notices, and the license notice saying this License applies -to the Document are reproduced in all copies, and that you add no other -conditions whatsoever to those of this License. You may not use -technical measures to obstruct or control the reading or further -copying of the copies you make or distribute. However, you may accept -compensation in exchange for copies. If you distribute a large enough -number of copies you must also follow the conditions in section 3. - -You may also lend copies, under the same conditions stated above, and -you may publicly display copies. - - -3. COPYING IN QUANTITY - -If you publish printed copies of the Document numbering more than 100, -and the Document's license notice requires Cover Texts, you must enclose -the copies in covers that carry, clearly and legibly, all these Cover -Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on -the back cover. Both covers must also clearly and legibly identify -you as the publisher of these copies. The front cover must present -the full title with all words of the title equally prominent and -visible. You may add other material on the covers in addition. -Copying with changes limited to the covers, as long as they preserve -the title of the Document and satisfy these conditions, can be treated -as verbatim copying in other respects. - -If the required texts for either cover are too voluminous to fit -legibly, you should put the first ones listed (as many as fit -reasonably) on the actual cover, and continue the rest onto adjacent -pages. - -If you publish or distribute Opaque copies of the Document numbering -more than 100, you must either include a machine-readable Transparent -copy along with each Opaque copy, or state in or with each Opaque copy -a publicly-accessible computer-network location containing a complete -Transparent copy of the Document, free of added material, which the -general network-using public has access to download anonymously at no -charge using public-standard network protocols. If you use the latter -option, you must take reasonably prudent steps, when you begin -distribution of Opaque copies in quantity, to ensure that this -Transparent copy will remain thus accessible at the stated location -until at least one year after the last time you distribute an Opaque -copy (directly or through your agents or retailers) of that edition to -the public. - -It is requested, but not required, that you contact the authors of the -Document well before redistributing any large number of copies, to give -them a chance to provide you with an updated version of the Document. - - -4. MODIFICATIONS - -You may copy and distribute a Modified Version of the Document under -the conditions of sections 2 and 3 above, provided that you release -the Modified Version under precisely this License, with the Modified -Version filling the role of the Document, thus licensing distribution -and modification of the Modified Version to whoever possesses a copy -of it. In addition, you must do these things in the Modified Version: - -A. Use in the Title Page (and on the covers, if any) a title distinct - from that of the Document, and from those of previous versions - (which should, if there were any, be listed in the History section - of the Document). You may use the same title as a previous version - if the original publisher of that version gives permission. -B. List on the Title Page, as authors, one or more persons or entities - responsible for authorship of the modifications in the Modified - Version, together with at least five of the principal authors of the - Document (all of its principal authors, if it has less than five). -C. State on the Title page the name of the publisher of the - Modified Version, as the publisher. -D. Preserve all the copyright notices of the Document. -E. Add an appropriate copyright notice for your modifications - adjacent to the other copyright notices. -F. Include, immediately after the copyright notices, a license notice - giving the public permission to use the Modified Version under the - terms of this License, in the form shown in the Addendum below. -G. Preserve in that license notice the full lists of Invariant Sections - and required Cover Texts given in the Document's license notice. -H. Include an unaltered copy of this License. -I. Preserve the section entitled "History", and its title, and add to - it an item stating at least the title, year, new authors, and - publisher of the Modified Version as given on the Title Page. If - there is no section entitled "History" in the Document, create one - stating the title, year, authors, and publisher of the Document as - given on its Title Page, then add an item describing the Modified - Version as stated in the previous sentence. -J. Preserve the network location, if any, given in the Document for - public access to a Transparent copy of the Document, and likewise - the network locations given in the Document for previous versions - it was based on. These may be placed in the "History" section. - You may omit a network location for a work that was published at - least four years before the Document itself, or if the original - publisher of the version it refers to gives permission. -K. In any section entitled "Acknowledgements" or "Dedications", - preserve the section's title, and preserve in the section all the - substance and tone of each of the contributor acknowledgements - and/or dedications given therein. -L. Preserve all the Invariant Sections of the Document, - unaltered in their text and in their titles. Section numbers - or the equivalent are not considered part of the section titles. -M. Delete any section entitled "Endorsements". Such a section - may not be included in the Modified Version. -N. Do not retitle any existing section as "Endorsements" - or to conflict in title with any Invariant Section. - -If the Modified Version includes new front-matter sections or -appendices that qualify as Secondary Sections and contain no material -copied from the Document, you may at your option designate some or all -of these sections as invariant. To do this, add their titles to the -list of Invariant Sections in the Modified Version's license notice. -These titles must be distinct from any other section titles. - -You may add a section entitled "Endorsements", provided it contains -nothing but endorsements of your Modified Version by various -parties--for example, statements of peer review or that the text has -been approved by an organization as the authoritative definition of a -standard. - -You may add a passage of up to five words as a Front-Cover Text, and a -passage of up to 25 words as a Back-Cover Text, to the end of the list -of Cover Texts in the Modified Version. Only one passage of -Front-Cover Text and one of Back-Cover Text may be added by (or -through arrangements made by) any one entity. If the Document already -includes a cover text for the same cover, previously added by you or -by arrangement made by the same entity you are acting on behalf of, -you may not add another; but you may replace the old one, on explicit -permission from the previous publisher that added the old one. - -The author(s) and publisher(s) of the Document do not by this License -give permission to use their names for publicity for or to assert or -imply endorsement of any Modified Version. - - -5. COMBINING DOCUMENTS - -You may combine the Document with other documents released under this -License, under the terms defined in section 4 above for modified -versions, provided that you include in the combination all of the -Invariant Sections of all of the original documents, unmodified, and -list them all as Invariant Sections of your combined work in its -license notice. - -The combined work need only contain one copy of this License, and -multiple identical Invariant Sections may be replaced with a single -copy. If there are multiple Invariant Sections with the same name but -different contents, make the title of each such section unique by -adding at the end of it, in parentheses, the name of the original -author or publisher of that section if known, or else a unique number. -Make the same adjustment to the section titles in the list of -Invariant Sections in the license notice of the combined work. - -In the combination, you must combine any sections entitled "History" -in the various original documents, forming one section entitled -"History"; likewise combine any sections entitled "Acknowledgements", -and any sections entitled "Dedications". You must delete all sections -entitled "Endorsements." - - -6. COLLECTIONS OF DOCUMENTS - -You may make a collection consisting of the Document and other documents -released under this License, and replace the individual copies of this -License in the various documents with a single copy that is included in -the collection, provided that you follow the rules of this License for -verbatim copying of each of the documents in all other respects. - -You may extract a single document from such a collection, and distribute -it individually under this License, provided you insert a copy of this -License into the extracted document, and follow this License in all -other respects regarding verbatim copying of that document. - - -7. AGGREGATION WITH INDEPENDENT WORKS - -A compilation of the Document or its derivatives with other separate -and independent documents or works, in or on a volume of a storage or -distribution medium, does not as a whole count as a Modified Version -of the Document, provided no compilation copyright is claimed for the -compilation. Such a compilation is called an "aggregate", and this -License does not apply to the other self-contained works thus compiled -with the Document, on account of their being thus compiled, if they -are not themselves derivative works of the Document. - -If the Cover Text requirement of section 3 is applicable to these -copies of the Document, then if the Document is less than one quarter -of the entire aggregate, the Document's Cover Texts may be placed on -covers that surround only the Document within the aggregate. -Otherwise they must appear on covers around the whole aggregate. - - -8. TRANSLATION - -Translation is considered a kind of modification, so you may -distribute translations of the Document under the terms of section 4. -Replacing Invariant Sections with translations requires special -permission from their copyright holders, but you may include -translations of some or all Invariant Sections in addition to the -original versions of these Invariant Sections. You may include a -translation of this License provided that you also include the -original English version of this License. In case of a disagreement -between the translation and the original English version of this -License, the original English version will prevail. - - -9. TERMINATION - -You may not copy, modify, sublicense, or distribute the Document except -as expressly provided for under this License. Any other attempt to -copy, modify, sublicense or distribute the Document is void, and will -automatically terminate your rights under this License. However, -parties who have received copies, or rights, from you under this -License will not have their licenses terminated so long as such -parties remain in full compliance. - - -10. FUTURE REVISIONS OF THIS LICENSE - -The Free Software Foundation may publish new, revised versions -of the GNU Free Documentation License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. See -http://www.gnu.org/copyleft/. - -Each version of the License is given a distinguishing version number. -If the Document specifies that a particular numbered version of this -License "or any later version" applies to it, you have the option of -following the terms and conditions either of that specified version or -of any later version that has been published (not as a draft) by the -Free Software Foundation. If the Document does not specify a version -number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. - - -ADDENDUM: How to use this License for your documents - -To use this License in a document you have written, include a copy of -the License in the document and put the following copyright and -license notices just after the title page: - - Copyright (c) YEAR YOUR NAME. - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.1 - or any later version published by the Free Software Foundation; - with the Invariant Sections being LIST THEIR TITLES, with the - Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. - A copy of the license is included in the section entitled "GNU - Free Documentation License". - -If you have no Invariant Sections, write "with no Invariant Sections" -instead of saying which ones are invariant. If you have no -Front-Cover Texts, write "no Front-Cover Texts" instead of -"Front-Cover Texts being LIST"; likewise for Back-Cover Texts. - -If your document contains nontrivial examples of program code, we -recommend releasing these examples in parallel under your choice of -free software license, such as the GNU General Public License, -to permit their use in free software. diff --git a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.1.yml deleted file mode 100644 index 7aa61e2e08a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gfdl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2+_OR_GPL-2.0+.yml b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2+_OR_GPL-2.0+.yml index 7b76c1751f4..39ce2395615 100644 --- a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2+_OR_GPL-2.0+.yml +++ b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2+_OR_GPL-2.0+.yml @@ -1,8 +1,3 @@ license_expressions: - - gpl-2.0 - - unknown - - gfdl-1.2-plus - - gpl-1.0-plus - - gpl-2.0 - - gpl-1.0-plus - - gpl-1.0-plus + - gfdl-1.2-plus OR gpl-2.0-plus + diff --git a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2.txt b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2.txt deleted file mode 100644 index a988da5af14..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2.txt +++ /dev/null @@ -1,397 +0,0 @@ - GNU Free Documentation License - Version 1.2, November 2002 - - - Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - -0. PREAMBLE - -The purpose of this License is to make a manual, textbook, or other -functional and useful document "free" in the sense of freedom: to -assure everyone the effective freedom to copy and redistribute it, -with or without modifying it, either commercially or noncommercially. -Secondarily, this License preserves for the author and publisher a way -to get credit for their work, while not being considered responsible -for modifications made by others. - -This License is a kind of "copyleft", which means that derivative -works of the document must themselves be free in the same sense. It -complements the GNU General Public License, which is a copyleft -license designed for free software. - -We have designed this License in order to use it for manuals for free -software, because free software needs free documentation: a free -program should come with manuals providing the same freedoms that the -software does. But this License is not limited to software manuals; -it can be used for any textual work, regardless of subject matter or -whether it is published as a printed book. We recommend this License -principally for works whose purpose is instruction or reference. - - -1. APPLICABILITY AND DEFINITIONS - -This License applies to any manual or other work, in any medium, that -contains a notice placed by the copyright holder saying it can be -distributed under the terms of this License. Such a notice grants a -world-wide, royalty-free license, unlimited in duration, to use that -work under the conditions stated herein. The "Document", below, -refers to any such manual or work. Any member of the public is a -licensee, and is addressed as "you". You accept the license if you -copy, modify or distribute the work in a way requiring permission -under copyright law. - -A "Modified Version" of the Document means any work containing the -Document or a portion of it, either copied verbatim, or with -modifications and/or translated into another language. - -A "Secondary Section" is a named appendix or a front-matter section of -the Document that deals exclusively with the relationship of the -publishers or authors of the Document to the Document's overall subject -(or to related matters) and contains nothing that could fall directly -within that overall subject. (Thus, if the Document is in part a -textbook of mathematics, a Secondary Section may not explain any -mathematics.) The relationship could be a matter of historical -connection with the subject or with related matters, or of legal, -commercial, philosophical, ethical or political position regarding -them. - -The "Invariant Sections" are certain Secondary Sections whose titles -are designated, as being those of Invariant Sections, in the notice -that says that the Document is released under this License. If a -section does not fit the above definition of Secondary then it is not -allowed to be designated as Invariant. The Document may contain zero -Invariant Sections. If the Document does not identify any Invariant -Sections then there are none. - -The "Cover Texts" are certain short passages of text that are listed, -as Front-Cover Texts or Back-Cover Texts, in the notice that says that -the Document is released under this License. A Front-Cover Text may -be at most 5 words, and a Back-Cover Text may be at most 25 words. - -A "Transparent" copy of the Document means a machine-readable copy, -represented in a format whose specification is available to the -general public, that is suitable for revising the document -straightforwardly with generic text editors or (for images composed of -pixels) generic paint programs or (for drawings) some widely available -drawing editor, and that is suitable for input to text formatters or -for automatic translation to a variety of formats suitable for input -to text formatters. A copy made in an otherwise Transparent file -format whose markup, or absence of markup, has been arranged to thwart -or discourage subsequent modification by readers is not Transparent. -An image format is not Transparent if used for any substantial amount -of text. A copy that is not "Transparent" is called "Opaque". - -Examples of suitable formats for Transparent copies include plain -ASCII without markup, Texinfo input format, LaTeX input format, SGML -or XML using a publicly available DTD, and standard-conforming simple -HTML, PostScript or PDF designed for human modification. Examples of -transparent image formats include PNG, XCF and JPG. Opaque formats -include proprietary formats that can be read and edited only by -proprietary word processors, SGML or XML for which the DTD and/or -processing tools are not generally available, and the -machine-generated HTML, PostScript or PDF produced by some word -processors for output purposes only. - -The "Title Page" means, for a printed book, the title page itself, -plus such following pages as are needed to hold, legibly, the material -this License requires to appear in the title page. For works in -formats which do not have any title page as such, "Title Page" means -the text near the most prominent appearance of the work's title, -preceding the beginning of the body of the text. - -A section "Entitled XYZ" means a named subunit of the Document whose -title either is precisely XYZ or contains XYZ in parentheses following -text that translates XYZ in another language. (Here XYZ stands for a -specific section name mentioned below, such as "Acknowledgements", -"Dedications", "Endorsements", or "History".) To "Preserve the Title" -of such a section when you modify the Document means that it remains a -section "Entitled XYZ" according to this definition. - -The Document may include Warranty Disclaimers next to the notice which -states that this License applies to the Document. These Warranty -Disclaimers are considered to be included by reference in this -License, but only as regards disclaiming warranties: any other -implication that these Warranty Disclaimers may have is void and has -no effect on the meaning of this License. - - -2. VERBATIM COPYING - -You may copy and distribute the Document in any medium, either -commercially or noncommercially, provided that this License, the -copyright notices, and the license notice saying this License applies -to the Document are reproduced in all copies, and that you add no other -conditions whatsoever to those of this License. You may not use -technical measures to obstruct or control the reading or further -copying of the copies you make or distribute. However, you may accept -compensation in exchange for copies. If you distribute a large enough -number of copies you must also follow the conditions in section 3. - -You may also lend copies, under the same conditions stated above, and -you may publicly display copies. - - -3. COPYING IN QUANTITY - -If you publish printed copies (or copies in media that commonly have -printed covers) of the Document, numbering more than 100, and the -Document's license notice requires Cover Texts, you must enclose the -copies in covers that carry, clearly and legibly, all these Cover -Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on -the back cover. Both covers must also clearly and legibly identify -you as the publisher of these copies. The front cover must present -the full title with all words of the title equally prominent and -visible. You may add other material on the covers in addition. -Copying with changes limited to the covers, as long as they preserve -the title of the Document and satisfy these conditions, can be treated -as verbatim copying in other respects. - -If the required texts for either cover are too voluminous to fit -legibly, you should put the first ones listed (as many as fit -reasonably) on the actual cover, and continue the rest onto adjacent -pages. - -If you publish or distribute Opaque copies of the Document numbering -more than 100, you must either include a machine-readable Transparent -copy along with each Opaque copy, or state in or with each Opaque copy -a computer-network location from which the general network-using -public has access to download using public-standard network protocols -a complete Transparent copy of the Document, free of added material. -If you use the latter option, you must take reasonably prudent steps, -when you begin distribution of Opaque copies in quantity, to ensure -that this Transparent copy will remain thus accessible at the stated -location until at least one year after the last time you distribute an -Opaque copy (directly or through your agents or retailers) of that -edition to the public. - -It is requested, but not required, that you contact the authors of the -Document well before redistributing any large number of copies, to give -them a chance to provide you with an updated version of the Document. - - -4. MODIFICATIONS - -You may copy and distribute a Modified Version of the Document under -the conditions of sections 2 and 3 above, provided that you release -the Modified Version under precisely this License, with the Modified -Version filling the role of the Document, thus licensing distribution -and modification of the Modified Version to whoever possesses a copy -of it. In addition, you must do these things in the Modified Version: - -A. Use in the Title Page (and on the covers, if any) a title distinct - from that of the Document, and from those of previous versions - (which should, if there were any, be listed in the History section - of the Document). You may use the same title as a previous version - if the original publisher of that version gives permission. -B. List on the Title Page, as authors, one or more persons or entities - responsible for authorship of the modifications in the Modified - Version, together with at least five of the principal authors of the - Document (all of its principal authors, if it has fewer than five), - unless they release you from this requirement. -C. State on the Title page the name of the publisher of the - Modified Version, as the publisher. -D. Preserve all the copyright notices of the Document. -E. Add an appropriate copyright notice for your modifications - adjacent to the other copyright notices. -F. Include, immediately after the copyright notices, a license notice - giving the public permission to use the Modified Version under the - terms of this License, in the form shown in the Addendum below. -G. Preserve in that license notice the full lists of Invariant Sections - and required Cover Texts given in the Document's license notice. -H. Include an unaltered copy of this License. -I. Preserve the section Entitled "History", Preserve its Title, and add - to it an item stating at least the title, year, new authors, and - publisher of the Modified Version as given on the Title Page. If - there is no section Entitled "History" in the Document, create one - stating the title, year, authors, and publisher of the Document as - given on its Title Page, then add an item describing the Modified - Version as stated in the previous sentence. -J. Preserve the network location, if any, given in the Document for - public access to a Transparent copy of the Document, and likewise - the network locations given in the Document for previous versions - it was based on. These may be placed in the "History" section. - You may omit a network location for a work that was published at - least four years before the Document itself, or if the original - publisher of the version it refers to gives permission. -K. For any section Entitled "Acknowledgements" or "Dedications", - Preserve the Title of the section, and preserve in the section all - the substance and tone of each of the contributor acknowledgements - and/or dedications given therein. -L. Preserve all the Invariant Sections of the Document, - unaltered in their text and in their titles. Section numbers - or the equivalent are not considered part of the section titles. -M. Delete any section Entitled "Endorsements". Such a section - may not be included in the Modified Version. -N. Do not retitle any existing section to be Entitled "Endorsements" - or to conflict in title with any Invariant Section. -O. Preserve any Warranty Disclaimers. - -If the Modified Version includes new front-matter sections or -appendices that qualify as Secondary Sections and contain no material -copied from the Document, you may at your option designate some or all -of these sections as invariant. To do this, add their titles to the -list of Invariant Sections in the Modified Version's license notice. -These titles must be distinct from any other section titles. - -You may add a section Entitled "Endorsements", provided it contains -nothing but endorsements of your Modified Version by various -parties--for example, statements of peer review or that the text has -been approved by an organization as the authoritative definition of a -standard. - -You may add a passage of up to five words as a Front-Cover Text, and a -passage of up to 25 words as a Back-Cover Text, to the end of the list -of Cover Texts in the Modified Version. Only one passage of -Front-Cover Text and one of Back-Cover Text may be added by (or -through arrangements made by) any one entity. If the Document already -includes a cover text for the same cover, previously added by you or -by arrangement made by the same entity you are acting on behalf of, -you may not add another; but you may replace the old one, on explicit -permission from the previous publisher that added the old one. - -The author(s) and publisher(s) of the Document do not by this License -give permission to use their names for publicity for or to assert or -imply endorsement of any Modified Version. - - -5. COMBINING DOCUMENTS - -You may combine the Document with other documents released under this -License, under the terms defined in section 4 above for modified -versions, provided that you include in the combination all of the -Invariant Sections of all of the original documents, unmodified, and -list them all as Invariant Sections of your combined work in its -license notice, and that you preserve all their Warranty Disclaimers. - -The combined work need only contain one copy of this License, and -multiple identical Invariant Sections may be replaced with a single -copy. If there are multiple Invariant Sections with the same name but -different contents, make the title of each such section unique by -adding at the end of it, in parentheses, the name of the original -author or publisher of that section if known, or else a unique number. -Make the same adjustment to the section titles in the list of -Invariant Sections in the license notice of the combined work. - -In the combination, you must combine any sections Entitled "History" -in the various original documents, forming one section Entitled -"History"; likewise combine any sections Entitled "Acknowledgements", -and any sections Entitled "Dedications". You must delete all sections -Entitled "Endorsements". - - -6. COLLECTIONS OF DOCUMENTS - -You may make a collection consisting of the Document and other documents -released under this License, and replace the individual copies of this -License in the various documents with a single copy that is included in -the collection, provided that you follow the rules of this License for -verbatim copying of each of the documents in all other respects. - -You may extract a single document from such a collection, and distribute -it individually under this License, provided you insert a copy of this -License into the extracted document, and follow this License in all -other respects regarding verbatim copying of that document. - - -7. AGGREGATION WITH INDEPENDENT WORKS - -A compilation of the Document or its derivatives with other separate -and independent documents or works, in or on a volume of a storage or -distribution medium, is called an "aggregate" if the copyright -resulting from the compilation is not used to limit the legal rights -of the compilation's users beyond what the individual works permit. -When the Document is included in an aggregate, this License does not -apply to the other works in the aggregate which are not themselves -derivative works of the Document. - -If the Cover Text requirement of section 3 is applicable to these -copies of the Document, then if the Document is less than one half of -the entire aggregate, the Document's Cover Texts may be placed on -covers that bracket the Document within the aggregate, or the -electronic equivalent of covers if the Document is in electronic form. -Otherwise they must appear on printed covers that bracket the whole -aggregate. - - -8. TRANSLATION - -Translation is considered a kind of modification, so you may -distribute translations of the Document under the terms of section 4. -Replacing Invariant Sections with translations requires special -permission from their copyright holders, but you may include -translations of some or all Invariant Sections in addition to the -original versions of these Invariant Sections. You may include a -translation of this License, and all the license notices in the -Document, and any Warranty Disclaimers, provided that you also include -the original English version of this License and the original versions -of those notices and disclaimers. In case of a disagreement between -the translation and the original version of this License or a notice -or disclaimer, the original version will prevail. - -If a section in the Document is Entitled "Acknowledgements", -"Dedications", or "History", the requirement (section 4) to Preserve -its Title (section 1) will typically require changing the actual -title. - - -9. TERMINATION - -You may not copy, modify, sublicense, or distribute the Document except -as expressly provided for under this License. Any other attempt to -copy, modify, sublicense or distribute the Document is void, and will -automatically terminate your rights under this License. However, -parties who have received copies, or rights, from you under this -License will not have their licenses terminated so long as such -parties remain in full compliance. - - -10. FUTURE REVISIONS OF THIS LICENSE - -The Free Software Foundation may publish new, revised versions -of the GNU Free Documentation License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. See -http://www.gnu.org/copyleft/. - -Each version of the License is given a distinguishing version number. -If the Document specifies that a particular numbered version of this -License "or any later version" applies to it, you have the option of -following the terms and conditions either of that specified version or -of any later version that has been published (not as a draft) by the -Free Software Foundation. If the Document does not specify a version -number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. - - -ADDENDUM: How to use this License for your documents - -To use this License in a document you have written, include a copy of -the License in the document and put the following copyright and -license notices just after the title page: - - Copyright (c) YEAR YOUR NAME. - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.2 - or any later version published by the Free Software Foundation; - with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. - A copy of the license is included in the section entitled "GNU - Free Documentation License". - -If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, -replace the "with...Texts." line with this: - - with the Invariant Sections being LIST THEIR TITLES, with the - Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. - -If you have Invariant Sections without Cover Texts, or some other -combination of the three, merge those two alternatives to suit the -situation. - -If your document contains nontrivial examples of program code, we -recommend releasing these examples in parallel under your choice of -free software license, such as the GNU General Public License, -to permit their use in free software. diff --git a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2.yml b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2.yml deleted file mode 100644 index 1eea18172d3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gfdl-1.2 diff --git a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.3.txt b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.3.txt deleted file mode 100644 index 2f7e03ca516..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.3.txt +++ /dev/null @@ -1,451 +0,0 @@ - - GNU Free Documentation License - Version 1.3, 3 November 2008 - - - Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -0. PREAMBLE - -The purpose of this License is to make a manual, textbook, or other -functional and useful document "free" in the sense of freedom: to -assure everyone the effective freedom to copy and redistribute it, -with or without modifying it, either commercially or noncommercially. -Secondarily, this License preserves for the author and publisher a way -to get credit for their work, while not being considered responsible -for modifications made by others. - -This License is a kind of "copyleft", which means that derivative -works of the document must themselves be free in the same sense. It -complements the GNU General Public License, which is a copyleft -license designed for free software. - -We have designed this License in order to use it for manuals for free -software, because free software needs free documentation: a free -program should come with manuals providing the same freedoms that the -software does. But this License is not limited to software manuals; -it can be used for any textual work, regardless of subject matter or -whether it is published as a printed book. We recommend this License -principally for works whose purpose is instruction or reference. - - -1. APPLICABILITY AND DEFINITIONS - -This License applies to any manual or other work, in any medium, that -contains a notice placed by the copyright holder saying it can be -distributed under the terms of this License. Such a notice grants a -world-wide, royalty-free license, unlimited in duration, to use that -work under the conditions stated herein. The "Document", below, -refers to any such manual or work. Any member of the public is a -licensee, and is addressed as "you". You accept the license if you -copy, modify or distribute the work in a way requiring permission -under copyright law. - -A "Modified Version" of the Document means any work containing the -Document or a portion of it, either copied verbatim, or with -modifications and/or translated into another language. - -A "Secondary Section" is a named appendix or a front-matter section of -the Document that deals exclusively with the relationship of the -publishers or authors of the Document to the Document's overall -subject (or to related matters) and contains nothing that could fall -directly within that overall subject. (Thus, if the Document is in -part a textbook of mathematics, a Secondary Section may not explain -any mathematics.) The relationship could be a matter of historical -connection with the subject or with related matters, or of legal, -commercial, philosophical, ethical or political position regarding -them. - -The "Invariant Sections" are certain Secondary Sections whose titles -are designated, as being those of Invariant Sections, in the notice -that says that the Document is released under this License. If a -section does not fit the above definition of Secondary then it is not -allowed to be designated as Invariant. The Document may contain zero -Invariant Sections. If the Document does not identify any Invariant -Sections then there are none. - -The "Cover Texts" are certain short passages of text that are listed, -as Front-Cover Texts or Back-Cover Texts, in the notice that says that -the Document is released under this License. A Front-Cover Text may -be at most 5 words, and a Back-Cover Text may be at most 25 words. - -A "Transparent" copy of the Document means a machine-readable copy, -represented in a format whose specification is available to the -general public, that is suitable for revising the document -straightforwardly with generic text editors or (for images composed of -pixels) generic paint programs or (for drawings) some widely available -drawing editor, and that is suitable for input to text formatters or -for automatic translation to a variety of formats suitable for input -to text formatters. A copy made in an otherwise Transparent file -format whose markup, or absence of markup, has been arranged to thwart -or discourage subsequent modification by readers is not Transparent. -An image format is not Transparent if used for any substantial amount -of text. A copy that is not "Transparent" is called "Opaque". - -Examples of suitable formats for Transparent copies include plain -ASCII without markup, Texinfo input format, LaTeX input format, SGML -or XML using a publicly available DTD, and standard-conforming simple -HTML, PostScript or PDF designed for human modification. Examples of -transparent image formats include PNG, XCF and JPG. Opaque formats -include proprietary formats that can be read and edited only by -proprietary word processors, SGML or XML for which the DTD and/or -processing tools are not generally available, and the -machine-generated HTML, PostScript or PDF produced by some word -processors for output purposes only. - -The "Title Page" means, for a printed book, the title page itself, -plus such following pages as are needed to hold, legibly, the material -this License requires to appear in the title page. For works in -formats which do not have any title page as such, "Title Page" means -the text near the most prominent appearance of the work's title, -preceding the beginning of the body of the text. - -The "publisher" means any person or entity that distributes copies of -the Document to the public. - -A section "Entitled XYZ" means a named subunit of the Document whose -title either is precisely XYZ or contains XYZ in parentheses following -text that translates XYZ in another language. (Here XYZ stands for a -specific section name mentioned below, such as "Acknowledgements", -"Dedications", "Endorsements", or "History".) To "Preserve the Title" -of such a section when you modify the Document means that it remains a -section "Entitled XYZ" according to this definition. - -The Document may include Warranty Disclaimers next to the notice which -states that this License applies to the Document. These Warranty -Disclaimers are considered to be included by reference in this -License, but only as regards disclaiming warranties: any other -implication that these Warranty Disclaimers may have is void and has -no effect on the meaning of this License. - -2. VERBATIM COPYING - -You may copy and distribute the Document in any medium, either -commercially or noncommercially, provided that this License, the -copyright notices, and the license notice saying this License applies -to the Document are reproduced in all copies, and that you add no -other conditions whatsoever to those of this License. You may not use -technical measures to obstruct or control the reading or further -copying of the copies you make or distribute. However, you may accept -compensation in exchange for copies. If you distribute a large enough -number of copies you must also follow the conditions in section 3. - -You may also lend copies, under the same conditions stated above, and -you may publicly display copies. - - -3. COPYING IN QUANTITY - -If you publish printed copies (or copies in media that commonly have -printed covers) of the Document, numbering more than 100, and the -Document's license notice requires Cover Texts, you must enclose the -copies in covers that carry, clearly and legibly, all these Cover -Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on -the back cover. Both covers must also clearly and legibly identify -you as the publisher of these copies. The front cover must present -the full title with all words of the title equally prominent and -visible. You may add other material on the covers in addition. -Copying with changes limited to the covers, as long as they preserve -the title of the Document and satisfy these conditions, can be treated -as verbatim copying in other respects. - -If the required texts for either cover are too voluminous to fit -legibly, you should put the first ones listed (as many as fit -reasonably) on the actual cover, and continue the rest onto adjacent -pages. - -If you publish or distribute Opaque copies of the Document numbering -more than 100, you must either include a machine-readable Transparent -copy along with each Opaque copy, or state in or with each Opaque copy -a computer-network location from which the general network-using -public has access to download using public-standard network protocols -a complete Transparent copy of the Document, free of added material. -If you use the latter option, you must take reasonably prudent steps, -when you begin distribution of Opaque copies in quantity, to ensure -that this Transparent copy will remain thus accessible at the stated -location until at least one year after the last time you distribute an -Opaque copy (directly or through your agents or retailers) of that -edition to the public. - -It is requested, but not required, that you contact the authors of the -Document well before redistributing any large number of copies, to -give them a chance to provide you with an updated version of the -Document. - - -4. MODIFICATIONS - -You may copy and distribute a Modified Version of the Document under -the conditions of sections 2 and 3 above, provided that you release -the Modified Version under precisely this License, with the Modified -Version filling the role of the Document, thus licensing distribution -and modification of the Modified Version to whoever possesses a copy -of it. In addition, you must do these things in the Modified Version: - -A. Use in the Title Page (and on the covers, if any) a title distinct - from that of the Document, and from those of previous versions - (which should, if there were any, be listed in the History section - of the Document). You may use the same title as a previous version - if the original publisher of that version gives permission. -B. List on the Title Page, as authors, one or more persons or entities - responsible for authorship of the modifications in the Modified - Version, together with at least five of the principal authors of the - Document (all of its principal authors, if it has fewer than five), - unless they release you from this requirement. -C. State on the Title page the name of the publisher of the - Modified Version, as the publisher. -D. Preserve all the copyright notices of the Document. -E. Add an appropriate copyright notice for your modifications - adjacent to the other copyright notices. -F. Include, immediately after the copyright notices, a license notice - giving the public permission to use the Modified Version under the - terms of this License, in the form shown in the Addendum below. -G. Preserve in that license notice the full lists of Invariant Sections - and required Cover Texts given in the Document's license notice. -H. Include an unaltered copy of this License. -I. Preserve the section Entitled "History", Preserve its Title, and add - to it an item stating at least the title, year, new authors, and - publisher of the Modified Version as given on the Title Page. If - there is no section Entitled "History" in the Document, create one - stating the title, year, authors, and publisher of the Document as - given on its Title Page, then add an item describing the Modified - Version as stated in the previous sentence. -J. Preserve the network location, if any, given in the Document for - public access to a Transparent copy of the Document, and likewise - the network locations given in the Document for previous versions - it was based on. These may be placed in the "History" section. - You may omit a network location for a work that was published at - least four years before the Document itself, or if the original - publisher of the version it refers to gives permission. -K. For any section Entitled "Acknowledgements" or "Dedications", - Preserve the Title of the section, and preserve in the section all - the substance and tone of each of the contributor acknowledgements - and/or dedications given therein. -L. Preserve all the Invariant Sections of the Document, - unaltered in their text and in their titles. Section numbers - or the equivalent are not considered part of the section titles. -M. Delete any section Entitled "Endorsements". Such a section - may not be included in the Modified Version. -N. Do not retitle any existing section to be Entitled "Endorsements" - or to conflict in title with any Invariant Section. -O. Preserve any Warranty Disclaimers. - -If the Modified Version includes new front-matter sections or -appendices that qualify as Secondary Sections and contain no material -copied from the Document, you may at your option designate some or all -of these sections as invariant. To do this, add their titles to the -list of Invariant Sections in the Modified Version's license notice. -These titles must be distinct from any other section titles. - -You may add a section Entitled "Endorsements", provided it contains -nothing but endorsements of your Modified Version by various -parties--for example, statements of peer review or that the text has -been approved by an organization as the authoritative definition of a -standard. - -You may add a passage of up to five words as a Front-Cover Text, and a -passage of up to 25 words as a Back-Cover Text, to the end of the list -of Cover Texts in the Modified Version. Only one passage of -Front-Cover Text and one of Back-Cover Text may be added by (or -through arrangements made by) any one entity. If the Document already -includes a cover text for the same cover, previously added by you or -by arrangement made by the same entity you are acting on behalf of, -you may not add another; but you may replace the old one, on explicit -permission from the previous publisher that added the old one. - -The author(s) and publisher(s) of the Document do not by this License -give permission to use their names for publicity for or to assert or -imply endorsement of any Modified Version. - - -5. COMBINING DOCUMENTS - -You may combine the Document with other documents released under this -License, under the terms defined in section 4 above for modified -versions, provided that you include in the combination all of the -Invariant Sections of all of the original documents, unmodified, and -list them all as Invariant Sections of your combined work in its -license notice, and that you preserve all their Warranty Disclaimers. - -The combined work need only contain one copy of this License, and -multiple identical Invariant Sections may be replaced with a single -copy. If there are multiple Invariant Sections with the same name but -different contents, make the title of each such section unique by -adding at the end of it, in parentheses, the name of the original -author or publisher of that section if known, or else a unique number. -Make the same adjustment to the section titles in the list of -Invariant Sections in the license notice of the combined work. - -In the combination, you must combine any sections Entitled "History" -in the various original documents, forming one section Entitled -"History"; likewise combine any sections Entitled "Acknowledgements", -and any sections Entitled "Dedications". You must delete all sections -Entitled "Endorsements". - - -6. COLLECTIONS OF DOCUMENTS - -You may make a collection consisting of the Document and other -documents released under this License, and replace the individual -copies of this License in the various documents with a single copy -that is included in the collection, provided that you follow the rules -of this License for verbatim copying of each of the documents in all -other respects. - -You may extract a single document from such a collection, and -distribute it individually under this License, provided you insert a -copy of this License into the extracted document, and follow this -License in all other respects regarding verbatim copying of that -document. - - -7. AGGREGATION WITH INDEPENDENT WORKS - -A compilation of the Document or its derivatives with other separate -and independent documents or works, in or on a volume of a storage or -distribution medium, is called an "aggregate" if the copyright -resulting from the compilation is not used to limit the legal rights -of the compilation's users beyond what the individual works permit. -When the Document is included in an aggregate, this License does not -apply to the other works in the aggregate which are not themselves -derivative works of the Document. - -If the Cover Text requirement of section 3 is applicable to these -copies of the Document, then if the Document is less than one half of -the entire aggregate, the Document's Cover Texts may be placed on -covers that bracket the Document within the aggregate, or the -electronic equivalent of covers if the Document is in electronic form. -Otherwise they must appear on printed covers that bracket the whole -aggregate. - - -8. TRANSLATION - -Translation is considered a kind of modification, so you may -distribute translations of the Document under the terms of section 4. -Replacing Invariant Sections with translations requires special -permission from their copyright holders, but you may include -translations of some or all Invariant Sections in addition to the -original versions of these Invariant Sections. You may include a -translation of this License, and all the license notices in the -Document, and any Warranty Disclaimers, provided that you also include -the original English version of this License and the original versions -of those notices and disclaimers. In case of a disagreement between -the translation and the original version of this License or a notice -or disclaimer, the original version will prevail. - -If a section in the Document is Entitled "Acknowledgements", -"Dedications", or "History", the requirement (section 4) to Preserve -its Title (section 1) will typically require changing the actual -title. - - -9. TERMINATION - -You may not copy, modify, sublicense, or distribute the Document -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense, or distribute it is void, and -will automatically terminate your rights under this License. - -However, if you cease all violation of this License, then your license -from a particular copyright holder is reinstated (a) provisionally, -unless and until the copyright holder explicitly and finally -terminates your license, and (b) permanently, if the copyright holder -fails to notify you of the violation by some reasonable means prior to -60 days after the cessation. - -Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - -Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, receipt of a copy of some or all of the same material does -not give you any rights to use it. - - -10. FUTURE REVISIONS OF THIS LICENSE - -The Free Software Foundation may publish new, revised versions of the -GNU Free Documentation License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in -detail to address new problems or concerns. See -http://www.gnu.org/copyleft/. - -Each version of the License is given a distinguishing version number. -If the Document specifies that a particular numbered version of this -License "or any later version" applies to it, you have the option of -following the terms and conditions either of that specified version or -of any later version that has been published (not as a draft) by the -Free Software Foundation. If the Document does not specify a version -number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. If the Document -specifies that a proxy can decide which future versions of this -License can be used, that proxy's public statement of acceptance of a -version permanently authorizes you to choose that version for the -Document. - -11. RELICENSING - -"Massive Multiauthor Collaboration Site" (or "MMC Site") means any -World Wide Web server that publishes copyrightable works and also -provides prominent facilities for anybody to edit those works. A -public wiki that anybody can edit is an example of such a server. A -"Massive Multiauthor Collaboration" (or "MMC") contained in the site -means any set of copyrightable works thus published on the MMC site. - -"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 -license published by Creative Commons Corporation, a not-for-profit -corporation with a principal place of business in San Francisco, -California, as well as future copyleft versions of that license -published by that same organization. - -"Incorporate" means to publish or republish a Document, in whole or in -part, as part of another Document. - -An MMC is "eligible for relicensing" if it is licensed under this -License, and if all works that were first published under this License -somewhere other than this MMC, and subsequently incorporated in whole or -in part into the MMC, (1) had no cover texts or invariant sections, and -(2) were thus incorporated prior to November 1, 2008. - -The operator of an MMC Site may republish an MMC contained in the site -under CC-BY-SA on the same site at any time before August 1, 2009, -provided the MMC is eligible for relicensing. - - -ADDENDUM: How to use this License for your documents - -To use this License in a document you have written, include a copy of -the License in the document and put the following copyright and -license notices just after the title page: - - Copyright (c) YEAR YOUR NAME. - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 - or any later version published by the Free Software Foundation; - with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. - A copy of the license is included in the section entitled "GNU - Free Documentation License". - -If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, -replace the "with...Texts." line with this: - - with the Invariant Sections being LIST THEIR TITLES, with the - Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. - -If you have Invariant Sections without Cover Texts, or some other -combination of the three, merge those two alternatives to suit the -situation. - -If your document contains nontrivial examples of program code, we -recommend releasing these examples in parallel under your choice of -free software license, such as the GNU General Public License, -to permit their use in free software. diff --git a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.3.yml b/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.3.yml deleted file mode 100644 index bbaac4e83ad..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GFDL/GFDL-1.3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gfdl-1.3 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/COPYING.GPL-2.0 b/tests/licensedcode/data/more_licenses/tests/GPL/COPYING.GPL-2.0 deleted file mode 100644 index 89ab4fac0bb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/COPYING.GPL-2.0 +++ /dev/null @@ -1,341 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - - Preamble - -The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - -When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - -We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - -Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - -Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - -a) You must cause the modified files to carry prominent notices -stating that you changed the files and the date of any change. - -b) You must cause any work that you distribute or publish, that in -whole or in part contains or is derived from the Program or any -part thereof, to be licensed as a whole at no charge to all third -parties under the terms of this License. - -c) If the modified program normally reads commands interactively -when run, you must cause it, when started running for such -interactive use in the most ordinary way, to print or display an -announcement including an appropriate copyright notice and a -notice that there is no warranty (or else, saying that you provide -a warranty) and that users may redistribute the program under -these conditions, and telling the user how to view a copy of this -License. (Exception: if the Program itself is interactive but -does not normally print such an announcement, your work based on -the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - -a) Accompany it with the complete corresponding machine-readable -source code, which must be distributed under the terms of Sections -1 and 2 above on a medium customarily used for software interchange; or, - -b) Accompany it with a written offer, valid for at least three -years, to give any third party, for a charge no more than your -cost of physically performing source distribution, a complete -machine-readable copy of the corresponding source code, to be -distributed under the terms of Sections 1 and 2 above on a medium -customarily used for software interchange; or, - -c) Accompany it with the information you received as to the offer -to distribute corresponding source code. (This alternative is -allowed only for noncommercial distribution and only if you -received the program in object code or executable form with such -an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - -5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - -7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - -10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - -Copyright (C) 19yy - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - -Gnomovision version 69, Copyright (C) 19yy name of author -Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. -This is free software, and you are welcome to redistribute it -under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in the program -`Gnomovision' (which makes passes at compilers) written by James Hacker. - -, 1 April 1989 -Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. - diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/COPYING.GPL-2.yml b/tests/licensedcode/data/more_licenses/tests/GPL/COPYING.GPL-2.yml deleted file mode 100644 index a118efcc9c6..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/COPYING.GPL-2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-1.0.txt deleted file mode 100644 index 80a581620d5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-1.0.txt +++ /dev/null @@ -1,250 +0,0 @@ -GNU General Public License, version 1 - - GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 - - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The license agreements of most software companies try to keep users -at the mercy of those companies. By contrast, our General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. The -General Public License applies to the Free Software Foundation's -software and to any other program whose authors commit to using it. -You can use it for your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Specifically, the General Public License is designed to make -sure that you have the freedom to give away or sell copies of free -software, that you receive source code or can get it if you want it, -that you can change the software or use pieces of it in new free -programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of a such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must tell them their rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any program or other work which -contains a notice placed by the copyright holder saying it may be -distributed under the terms of this General Public License. The -"Program", below, refers to any such program or work, and a "work based -on the Program" means either the Program or any work containing the -Program or a portion of it, either verbatim or with modifications. Each -licensee is addressed as "you". - - 1. You may copy and distribute verbatim copies of the Program's source -code as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this -General Public License and to the absence of any warranty; and give any -other recipients of the Program a copy of this General Public License -along with the Program. You may charge a fee for the physical act of -transferring a copy. - - 2. You may modify your copy or copies of the Program or any portion of -it, and copy and distribute such modifications under the terms of Paragraph -1 above, provided that you also do the following: - - a) cause the modified files to carry prominent notices stating that - you changed the files and the date of any change; and - - b) cause the whole of any work that you distribute or publish, that - in whole or in part contains the Program or any part thereof, either - with or without modifications, to be licensed at no charge to all - third parties under the terms of this General Public License (except - that you may choose to grant warranty protection to some or all - third parties, at your option). - - c) If the modified program normally reads commands interactively when - run, you must cause it, when started running for such interactive use - in the simplest and most usual way, to print or display an - announcement including an appropriate copyright notice and a notice - that there is no warranty (or else, saying that you provide a - warranty) and that users may redistribute the program under these - conditions, and telling the user how to view a copy of this General - Public License. - - d) You may charge a fee for the physical act of transferring a - copy, and you may at your option offer warranty protection in - exchange for a fee. - -Mere aggregation of another independent work with the Program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other work under the scope of these terms. - - 3. You may copy and distribute the Program (or a portion or derivative of -it, under Paragraph 2) in object code or executable form under the terms of -Paragraphs 1 and 2 above provided that you also do one of the following: - - a) accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of - Paragraphs 1 and 2 above; or, - - b) accompany it with a written offer, valid for at least three - years, to give any third party free (except for a nominal charge - for the cost of distribution) a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of - Paragraphs 1 and 2 above; or, - - c) accompany it with the information you received as to where the - corresponding source code may be obtained. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form alone.) - -Source code for a work means the preferred form of the work for making -modifications to it. For an executable file, complete source code means -all the source code for all modules it contains; but, as a special -exception, it need not include source code for modules which are standard -libraries that accompany the operating system on which the executable -file runs, or for standard header files or definitions files that -accompany that operating system. - - 4. You may not copy, modify, sublicense, distribute or transfer the -Program except as expressly provided under this General Public License. -Any attempt otherwise to copy, modify, sublicense, distribute or transfer -the Program is void, and will automatically terminate your rights to use -the Program under this License. However, parties who have received -copies, or rights to use copies, from you under this General Public -License will not have their licenses terminated so long as such parties -remain in full compliance. - - 5. By copying, distributing or modifying the Program (or any work based -on the Program) you indicate your acceptance of this license to do so, -and all its terms and conditions. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the original -licensor to copy, distribute or modify the Program subject to these -terms and conditions. You may not impose any further restrictions on the -recipients' exercise of the rights granted herein. - - 7. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of the license which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -the license, you may choose any version ever published by the Free Software -Foundation. - - 8. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - Appendix: How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to humanity, the best way to achieve this is to make it -free software which everyone can redistribute and change under these -terms. - - To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey -the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) 19yy - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 1, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19xx name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w' and `show -c'; they could even be mouse-clicks or menu items--whatever suits your -program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - program `Gnomovision' (a program to direct compilers to make passes - at assemblers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-1.0.yml deleted file mode 100644 index eebced73cc3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0+.txt b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0+.txt deleted file mode 100644 index 6ccd8976ef1..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0+.txt +++ /dev/null @@ -1,130 +0,0 @@ -GNU GENERAL PUBLIC LICENSE - -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. - -Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. -b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. -c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: - -a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, -c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) -The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the program's name and an idea of what it does. -Copyright (C) yyyy name of author - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this when it starts in an interactive mode: - -Gnomovision version 69, Copyright (C) year name of author -Gnomovision comes with ABSOLUTELY NO WARRANTY; for details -type `show w'. This is free software, and you are welcome -to redistribute it under certain conditions; type `show c' -for details. -The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright -interest in the program `Gnomovision' -(which makes passes at compilers) written -by James Hacker. - -signature of Ty Coon, 1 April 1989 -Ty Coon, President of Vice -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0+.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0+.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0+.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-GCC-exception.txt b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-GCC-exception.txt deleted file mode 100644 index d670d0c31ed..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-GCC-exception.txt +++ /dev/null @@ -1,4 +0,0 @@ -insert GPL v2 text here - -GCC Linking Exception -In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combine executable.) diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-GCC-exception.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-GCC-exception.yml deleted file mode 100644 index 5a7a179dc1b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-GCC-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 WITH gcc-linking-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-bison-exception.txt b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-bison-exception.txt deleted file mode 100644 index af312093e2a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-bison-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v2 text here - -Bison Exception - -As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - -This special exception was added by the Free Software Foundation in version 2.2 of Bison. diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-bison-exception.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-bison-exception.yml deleted file mode 100644 index 5e602598d33..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-bison-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 WITH bison-exception-2.2 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-classpath-exception.txt b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-classpath-exception.txt deleted file mode 100644 index f02c2b04955..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-classpath-exception.txt +++ /dev/null @@ -1,7 +0,0 @@ -insert GPL v2 license text here - -Class Path Exception - -Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. - -As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-classpath-exception.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-classpath-exception.yml deleted file mode 100644 index 6511f455f22..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-classpath-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 WITH classpath-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-font-exception.txt b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-font-exception.txt deleted file mode 100644 index fdf87352744..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-font-exception.txt +++ /dev/null @@ -1,5 +0,0 @@ -insert GPL v2 text here - -Font Exception - -As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-font-exception.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-font-exception.yml deleted file mode 100644 index fa6bd89a185..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0-with-font-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 WITH font-exception-gpl diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0_h.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0_h.yml index 6370d665e1d..a118efcc9c6 100644 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0_h.yml +++ b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-2.0_h.yml @@ -1,2 +1,2 @@ license_expressions: - - gpl-1.0-plus + - gpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-3.0-with-autoconf-exception.txt b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-3.0-with-autoconf-exception.txt deleted file mode 100644 index ab88f576f6d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-3.0-with-autoconf-exception.txt +++ /dev/null @@ -1,26 +0,0 @@ -insert GPL v3 text here - -AUTOCONF CONFIGURE SCRIPT EXCEPTION - -Version 3.0, 18 August 2009 - -Copyright © 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -This Exception is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. - -The purpose of this Exception is to allow distribution of Autoconf's typical output under terms of the recipient's choice (including proprietary). - -0. Definitions. -"Covered Code" is the source or object code of a version of Autoconf that is a covered work under this License. - -"Normally Copied Code" for a version of Autoconf means all parts of its Covered Code which that version can copy from its code (i.e., not from its input file) into its minimally verbose, non-debugging and non-tracing output. - -"Ineligible Code" is Covered Code that is not Normally Copied Code. - -1. Grant of Additional Permission. -You have permission to propagate output of Autoconf, even if such propagation would otherwise violate the terms of GPLv3. However, if by modifying Autoconf you cause any Ineligible Code of the version you received to become Normally Copied Code of your modified version, then you void this Exception for the resulting covered work. If you convey that resulting covered work, you must remove this Exception in accordance with the second paragraph of Section 7 of GPLv3. - -2. No Weakening of Autoconf Copyleft. -The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of Autoconf. diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-3.0-with-autoconf-exception.yml b/tests/licensedcode/data/more_licenses/tests/GPL/GPL-3.0-with-autoconf-exception.yml deleted file mode 100644 index 7a7ee79ba56..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/GPL-3.0-with-autoconf-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 WITH autoconf-exception-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/evd-pki-pubkey-lic.c b/tests/licensedcode/data/more_licenses/tests/GPL/evd-pki-pubkey-lic.c deleted file mode 100644 index c10aa72bab0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/evd-pki-pubkey-lic.c +++ /dev/null @@ -1,11 +0,0 @@ - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public License - version 3, or (at your option) any later version as published by - the Free Software Foundation. * - This library is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License at http://www.gnu.org/licenses/lgpl-3.0.txt - for more details. - diff --git a/tests/licensedcode/data/more_licenses/tests/GPL/evd-pki-pubkey-lic.yml b/tests/licensedcode/data/more_licenses/tests/GPL/evd-pki-pubkey-lic.yml deleted file mode 100644 index 7a3cb767f8c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/GPL/evd-pki-pubkey-lic.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0-plus diff --git a/tests/licensedcode/data/more_licenses/tests/HPND/HPND.txt b/tests/licensedcode/data/more_licenses/tests/HPND/HPND.txt deleted file mode 100644 index 6da93711e3a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/HPND/HPND.txt +++ /dev/null @@ -1,7 +0,0 @@ -Historical Permission Notice and Disclaimer - - - -Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies[,] [and] that both [that] [the] copyright notice and this permission notice appear in supporting documentation[, and that the name [of] [or ] not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission]. [ makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.] - -[ DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS[,][.] IN NO EVENT SHALL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.] diff --git a/tests/licensedcode/data/more_licenses/tests/HPND/HPND.yml b/tests/licensedcode/data/more_licenses/tests/HPND/HPND.yml deleted file mode 100644 index 0fea2985397..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/HPND/HPND.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - historical diff --git a/tests/licensedcode/data/more_licenses/tests/IBM/IBM-as-is.txt b/tests/licensedcode/data/more_licenses/tests/IBM/IBM-as-is.txt deleted file mode 100644 index 6d20bd2e0b6..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/IBM/IBM-as-is.txt +++ /dev/null @@ -1,25 +0,0 @@ -This source and object code has been made available to you by IBM on an -AS-IS basis. - -IT IS PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING THE WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR OF NONINFRINGEMENT -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL IBM OR ITS LICENSORS BE LIABLE -FOR INCIDENTAL, CONSEQUENTIAL OR PUNITIVE DAMAGES. IBMS OR ITS LICENSORS -DAMAGES FOR ANY CAUSE OF ACTION, WHETHER IN CONTRACT OR IN TORT, AT LAW OR -AT EQUITY, SHALL BE LIMITED TO A MAXIMUM OF $1,000 PER LICENSE. No license -under IBM patents or patent applications is to be implied by the copyright -license. - -Any user of this software should understand that neither IBM nor its -licensors will be responsible for any consequences resulting from the use -of this software. - -Any person who transfers this source code or any derivative work must -include the IBM copyright notice, this paragraph, and the preceding two -paragraphs in the transferred software. - -Any person who transfers this object code or any derivative work must -include the IBM copyright notice in the transferred software. - -COPYRIGHT I B M CORPORATION 2000 -LICENSED MATERIAL - PROGRAM PROPERTY OF I B M diff --git a/tests/licensedcode/data/more_licenses/tests/IBM/IBM-as-is.yml b/tests/licensedcode/data/more_licenses/tests/IBM/IBM-as-is.yml deleted file mode 100644 index e5692e02b39..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/IBM/IBM-as-is.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ibm-as-is diff --git a/tests/licensedcode/data/more_licenses/tests/IETF/IETF.txt b/tests/licensedcode/data/more_licenses/tests/IETF/IETF.txt deleted file mode 100644 index c89b9cd56a5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/IETF/IETF.txt +++ /dev/null @@ -1,23 +0,0 @@ -This document and translations of it may be copied and furnished to -others, and derivative works that comment on or otherwise explain it -or assist in its implementation may be prepared, copied, published -and distributed, in whole or in part, without restriction of any -kind, provided that the above copyright notice and this paragraph are -included on all such copies and derivative works. However, this -document itself may not be modified in any way, such as by removing -the copyright notice or references to the Internet Society or other -Internet organizations, except as needed for the purpose of -developing Internet standards in which case the procedures for -copyrights defined in the Internet Standards process must be -followed, or as required to translate it into languages other than -English. - -The limited permissions granted above are perpetual and will not be -revoked by the Internet Society or its successors or assigns. - -This document and the information contained herein is provided on an -"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF -MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. diff --git a/tests/licensedcode/data/more_licenses/tests/IETF/IETF.yml b/tests/licensedcode/data/more_licenses/tests/IETF/IETF.yml deleted file mode 100644 index 4f9e280d4fa..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/IETF/IETF.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ietf diff --git a/tests/licensedcode/data/more_licenses/tests/IPA/IPA.txt b/tests/licensedcode/data/more_licenses/tests/IPA/IPA.txt deleted file mode 100644 index 6ac300a2fa7..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/IPA/IPA.txt +++ /dev/null @@ -1,93 +0,0 @@ -IPA Font License Agreement v1.0 - - -The Licensor provides the Licensed Program (as defined in Article 1 below) under the terms of this license agreement ("Agreement"). Any use, reproduction or distribution of the Licensed Program, or any exercise of rights under this Agreement by a Recipient (as defined in Article 1 below) constitutes the Recipient's acceptance of this Agreement. - - -Article 1 (Definitions) - -1. "Digital Font Program" shall mean a computer program containing, or used to render or display fonts. - -2. "Licensed Program" shall mean a Digital Font Program licensed by the Licensor under this Agreement. - -3. "Derived Program" shall mean a Digital Font Program created as a result of a modification, addition, deletion, replacement or any other adaptation to or of a part or all of the Licensed Program, and includes a case where a Digital Font Program newly created by retrieving font information from a part or all of the Licensed Program or Embedded Fonts from a Digital Document File with or without modification of the retrieved font information. - -4. "Digital Content" shall mean products provided to end users in the form of digital data, including video content, motion and/or still pictures, TV programs or other broadcasting content and products consisting of character text, pictures, photographic images, graphic symbols and/or the like. - -5. "Digital Document File" shall mean a PDF file or other Digital Content created by various software programs in which a part or all of the Licensed Program becomes embedded or contained in the file for the display of the font ("Embedded Fonts"). Embedded Fonts are used only in the display of characters in the particular Digital Document File within which they are embedded, and shall be distinguished from those in any Digital Font Program, which may be used for display of characters outside that particular Digital Document File. - -6. "Computer" shall include a server in this Agreement. - -7. "Reproduction and Other Exploitation" shall mean reproduction, transfer, distribution, lease, public transmission, presentation, exhibition, adaptation and any other exploitation. - -8. "Recipient" shall mean anyone who receives the Licensed Program under this Agreement, including one that receives the Licensed Program from a Recipient. - - - -Article 2 (Grant of License) - -The Licensor grants to the Recipient a license to use the Licensed Program in any and all countries in accordance with each of the provisions set forth in this Agreement. However, any and all rights underlying in the Licensed Program shall be held by the Licensor. In no sense is this Agreement intended to transfer any right relating to the Licensed Program held by the Licensor except as specifically set forth herein or any right relating to any trademark, trade name, or service mark to the Recipient. - - - -1. The Recipient may install the Licensed Program on any number of Computers and use the same in accordance with the provisions set forth in this Agreement. - -2. The Recipient may use the Licensed Program, with or without modification in printed materials or in Digital Content as an expression of character texts or the like. - -3. The Recipient may conduct Reproduction and Other Exploitation of the printed materials and Digital Content created in accordance with the preceding Paragraph, for commercial or non-commercial purposes and in any form of media including but not limited to broadcasting, communication and various recording media. - -4. If any Recipient extracts Embedded Fonts from a Digital Document File to create a Derived Program, such Derived Program shall be subject to the terms of this agreement. - -5. If any Recipient performs Reproduction or Other Exploitation of a Digital Document File in which Embedded Fonts of the Licensed Program are used only for rendering the Digital Content within such Digital Document File then such Recipient shall have no further obligations under this Agreement in relation to such actions. - -6. The Recipient may reproduce the Licensed Program as is without modification and transfer such copies, publicly transmit or otherwise redistribute the Licensed Program to a third party for commercial or non-commercial purposes ("Redistribute"), in accordance with the provisions set forth in Article 3 Paragraph 2. - -7. The Recipient may create, use, reproduce and/or Redistribute a Derived Program under the terms stated above for the Licensed Program: provided, that the Recipient shall follow the provisions set forth in Article 3 Paragraph 1 when Redistributing the Derived Program. - - -Article 3 (Restriction) - -The license granted in the preceding Article shall be subject to the following restrictions: - - -1. If a Derived Program is Redistributed pursuant to Paragraph 4 and 7 of the preceding Article, the following conditions must be met : - -(1) The following must be also Redistributed together with the Derived Program, or be made available online or by means of mailing mechanisms in exchange for a cost which does not exceed the total costs of postage, storage medium and handling fees: - -(a) a copy of the Derived Program; and - -(b) any additional file created by the font developing program in the course of creating the Derived Program that can be used for further modification of the Derived Program, if any. - -(2) It is required to also Redistribute means to enable recipients of the Derived Program to replace the Derived Program with the Licensed Program first released under this License (the "Original Program"). Such means may be to provide a difference file from the Original Program, or instructions setting out a method to replace the Derived Program with the Original Program. - -(3) The Recipient must license the Derived Program under the terms and conditions of this Agreement. - -(4) No one may use or include the name of the Licensed Program as a program name, font name or file name of the Derived Program. - -(5) Any material to be made available online or by means of mailing a medium to satisfy the requirements of this paragraph may be provided, verbatim, by any party wishing to do so. - -2. If the Recipient Redistributes the Licensed Program pursuant to Paragraph 6 of the preceding Article, the Recipient shall meet all of the following conditions: - -(1) The Recipient may not change the name of the Licensed Program. - -(2) The Recipient may not alter or otherwise modify the Licensed Program. - -(3) The Recipient must attach a copy of this Agreement to the Licensed Program. - -3. THIS LICENSED PROGRAM IS PROVIDED BY THE LICENSOR "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTY AS TO THE LICENSED PROGRAM OR ANY DERIVED PROGRAM, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXTENDED, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO; PROCUREMENT OF SUBSTITUTED GOODS OR SERVICE; DAMAGES ARISING FROM SYSTEM FAILURE; LOSS OR CORRUPTION OF EXISTING DATA OR PROGRAM; 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 INSTALLATION, USE, THE REPRODUCTION OR OTHER EXPLOITATION OF THE LICENSED PROGRAM OR ANY DERIVED PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -4. The Licensor is under no obligation to respond to any technical questions or inquiries, or provide any other user support in connection with the installation, use or the Reproduction and Other Exploitation of the Licensed Program or Derived Programs thereof. - - -Article 4 (Termination of Agreement) - -1. The term of this Agreement shall begin from the time of receipt of the Licensed Program by the Recipient and shall continue as long as the Recipient retains any such Licensed Program in any way. - -2. Notwithstanding the provision set forth in the preceding Paragraph, in the event of the breach of any of the provisions set forth in this Agreement by the Recipient, this Agreement shall automatically terminate without any notice. In the case of such termination, the Recipient may not use or conduct Reproduction and Other Exploitation of the Licensed Program or a Derived Program: provided that such termination shall not affect any rights of any other Recipient receiving the Licensed Program or the Derived Program from such Recipient who breached this Agreement. - - -Article 5 (Governing Law) - -1. IPA may publish revised and/or new versions of this License. In such an event, the Recipient may select either this Agreement or any subsequent version of the Agreement in using, conducting the Reproduction and Other Exploitation of, or Redistributing the Licensed Program or a Derived Program. Other matters not specified above shall be subject to the Copyright Law of Japan and other related laws and regulations of Japan. - -2. This Agreement shall be construed under the laws of Japan. diff --git a/tests/licensedcode/data/more_licenses/tests/IPA/IPA.yml b/tests/licensedcode/data/more_licenses/tests/IPA/IPA.yml deleted file mode 100644 index 54fc2248d37..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/IPA/IPA.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ipa-font diff --git a/tests/licensedcode/data/more_licenses/tests/Imlib2/Imlib2.text b/tests/licensedcode/data/more_licenses/tests/Imlib2/Imlib2.text deleted file mode 100644 index 6339669c317..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Imlib2/Imlib2.text +++ /dev/null @@ -1,33 +0,0 @@ -Imlib2 License - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies of the Software and its Copyright notices. In addition publicly -documented acknowledgment must be given that this software has been used if no -source code of this software is made available publicly. Making the source -available publicly means including the source for this software with the -distribution, or a method to get this software via some reasonable mechanism -(electronic transfer via a network or media) as well as making an offer to -supply the source on request. This Copyright notice serves as an offer to -supply the source on on request as well. Instead of this, supplying -acknowledgments of use of this software in either Copyright notices, Manuals, - Publicity and Marketing documents or any documentation provided with any - product containing this software. This License does not apply to any software - that links to the libraries provided by this software (statically or - dynamically), but only to the software provided. - - Please see the COPYING-PLAIN for a plain-english explanation of this notice - and its intent. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tests/licensedcode/data/more_licenses/tests/Imlib2/Imlib2.yml b/tests/licensedcode/data/more_licenses/tests/Imlib2/Imlib2.yml deleted file mode 100644 index 5c9b830f14d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Imlib2/Imlib2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - imlib2 diff --git a/tests/licensedcode/data/more_licenses/tests/InnerNet/InnerNet-2.00 b/tests/licensedcode/data/more_licenses/tests/InnerNet/InnerNet-2.00 deleted file mode 100644 index 16e106eb062..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/InnerNet/InnerNet-2.00 +++ /dev/null @@ -1,21 +0,0 @@ -The Inner Net License, Version 2 - -The author(s) grant permission for redistribution and use in source and binary forms, with or without modification, of the software and documentation provided that the following conditions are met: - -0. If you receive a version of the software that is specifically labeled as not being for redistribution (check the version message and/or README), you are not permitted to redistribute that version of the software in any way or form. - -1. All terms of the all other applicable copyrights and licenses must be followed. - -2. Redistributions of source code must retain the authors' copyright notice(s), this list of conditions, and the following disclaimer. - -3. Redistributions in binary form must reproduce the authors' copyright notice(s), this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. - -4. All advertising materials mentioning features or use of this software must display the following acknowledgement with the name(s) of the authors as specified in the copyright notice(s) substituted where indicated: - -This product includes software developed by , The Inner Net, and other contributors. - -5. Neither the name(s) of the author(s) 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 ITS AUTHORS 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 AUTHORS 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. - -Please distribute a copy of this license with the software and make it reasonably easy for others to find. diff --git a/tests/licensedcode/data/more_licenses/tests/InnerNet/InnerNet-2.yml b/tests/licensedcode/data/more_licenses/tests/InnerNet/InnerNet-2.yml deleted file mode 100644 index 5e7d0e5693c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/InnerNet/InnerNet-2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - inner-net-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/JISP/Maze.yml b/tests/licensedcode/data/more_licenses/tests/JISP/Maze.yml index 1b43c33905b..2d7ede25d57 100644 --- a/tests/licensedcode/data/more_licenses/tests/JISP/Maze.yml +++ b/tests/licensedcode/data/more_licenses/tests/JISP/Maze.yml @@ -1,3 +1,3 @@ license_expressions: - - nilsson-historical - - libpng + - libmng-2007 + diff --git a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.0.txt deleted file mode 100644 index f462f29e6ea..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.0.txt +++ /dev/null @@ -1,171 +0,0 @@ -GNU LIBRARY GENERAL PUBLIC LICENSE - -Version 2, June 1991 - -Copyright (C) 1991 Free Software Foundation, Inc. -51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the library GPL. It is - numbered 2 because it goes with version 2 of the ordinary GPL.] -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library. - -Also, for each distributor's protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don't assume that anything in it is the same as in the ordinary license. - -The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such. - -Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better. - -However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, while the latter only works together with the library. - -Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Library General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also compile or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) -b) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. -c) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. -d) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Library General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Libraries - -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library's name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the -Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, -Boston, MA 02110-1301, USA. -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library `Frob' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That's all there is to it! diff --git a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.0.yml deleted file mode 100644 index ee408b32ab6..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1.txt b/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1.txt deleted file mode 100644 index 7df6d8a9fa3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1.txt +++ /dev/null @@ -1,175 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE - -Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. - -When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. - -To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. - -To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author''s reputation will not be affected by problems that might be introduced by others. - -Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. - -When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. - -We call this license the "Lesser" General Public License because it does Less to protect the user''s freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. - -For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. - -In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. - -Although the Lesser General Public License is Less protective of the users'' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library''s complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. - -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. - -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. - -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. - -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer''s own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) - -b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user''s computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. - -c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. - -d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. - -e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. - -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. - -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. - -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients'' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Libraries - -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library''s name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library ''Frob'' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That''s all there is to it! diff --git a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1.yml b/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1.yml deleted file mode 100644 index 830b0c374c9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1b.txt b/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1b.txt deleted file mode 100644 index 5aed1b1b909..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1b.txt +++ /dev/null @@ -1,175 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE - -Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. - -When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. - -To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. - -To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. - -Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. - -When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. - -We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. - -For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. - -In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. - -Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) -b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. -c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. -d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. -e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Libraries - -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library's name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library `Frob' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That's all there is to it! diff --git a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1b.yml b/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1b.yml deleted file mode 100644 index 830b0c374c9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LGPL/LGPL-2.1b.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.0.txt deleted file mode 100644 index 9425aab83cd..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.0.txt +++ /dev/null @@ -1,211 +0,0 @@ -LaTeX Project Public License -============================ - -LPPL Version 1.0 1999-03-01 - -Copyright 1999 LaTeX3 Project - Everyone is permitted to copy and distribute verbatim copies - of this license document, but modification is not allowed. - - -Preamble -======== - -The LaTeX Project Public License (LPPL) is the license under which the -base LaTeX distribution is distributed. As described below you may use -this licence for any software that you wish to distribute. - -It may be particularly suitable if your software is TeX related (such -as a LaTeX package file) but it may be used for any software, even if -it is unrelated to TeX. - -To use this license, the files of your distribution should have an -explicit copyright notice giving your name and the year, together -with a reference to this license. - -A typical example would be - - %% pig.sty - %% Copyright 2001 M. Y. Name - - % This program can redistributed and/or modified under the terms - % of the LaTeX Project Public License Distributed from CTAN - % archives in directory macros/latex/base/lppl.txt; either - % version 1 of the License, or (at your option) any later version. - -Given such a notice in the file, the conditions of this document would -apply, with: - -`The Program' referring to the software `pig.sty' and -`The Copyright Holder' referring to the person `M. Y. Name'. - -To see a real example, see the file legal.txt which carries the -copyright notice for the base latex distribution. - -This license gives terms under which files of The Program may be -distributed and modified. Individual files may have specific further -constraints on modification, but no file should have restrictions on -distribution other than those specified below. -This is to ensure that a distributor wishing to distribute a complete -unmodified copy of The Program need only check the conditions in this -file, and does not need to check every file in The Program for extra -restrictions. If you do need to modify the distribution terms of some -files, do not refer to this license, instead distribute The Program -under a different license. You may use the parts of the text of LPPL as -a model for your own license, but your license should not directly refer -to the LPPL or otherwise give the impression that The Program is -distributed under the LPPL. - - - -The LaTeX Project Public License -================================ -Terms And Conditions For Copying, Distribution And Modification -=============================================================== - - -WARRANTY -======== - -There is no warranty for The Program, to the extent permitted by -applicable law. Except when otherwise stated in writing, The -Copyright Holder provides The Program `as is' without warranty of any -kind, either expressed or implied, including, but not limited to, the -implied warranties of merchantability and fitness for a particular -purpose. The entire risk as to the quality and performance of the -program is with you. Should The Program prove defective, you assume -the cost of all necessary servicing, repair or correction. - -In no event unless required by applicable law or agreed to in writing -will The Copyright Holder, or any of the individual authors named in -the source for The Program, be liable to you for damages, including -any general, special, incidental or consequential damages arising out -of any use of The Program or out of inability to use The Program -(including but not limited to loss of data or data being rendered -inaccurate or losses sustained by you or by third parties as a result -of a failure of The Program to operate with any other programs), even -if such holder or other party has been advised of the possibility of -such damages. - - -DISTRIBUTION -============ - -Redistribution of unchanged files is allowed provided that all files -that make up the distribution of The Program are distributed. -In particular this means that The Program has to be distributed -including its documentation if documentation was part of the original -distribution. - -The distribution of The Program will contain a prominent file -listing all the files covered by this license. - -If you receive only some of these files from someone, complain! - -The distribution of changed versions of certain files included in the -The Program, and the reuse of code from The Program, are allowed -under the following restrictions: - - * It is allowed only if the legal notice in the file does not - expressly forbid it. - See note below, under "Conditions on individual files". - - * You rename the file before you make any changes to it, unless the - file explicitly says that renaming is not required. Any such changed - files must be distributed under a license that forbids distribution - of those files, and any files derived from them, under the names used - by the original files in the distribution of The Program. - - * You change any `identification string' in The Program to clearly - indicate that the file is not part of the standard system. - - * If The Program includes an `error report address' so that errors - may be reported to The Copyright Holder, or other specified - addresses, this address must be changed in any modified versions of - The Program, so that reports for files not maintained by the - original program maintainers are directed to the maintainers of the - changed files. - - * You acknowledge the source and authorship of the original version - in the modified file. - - * You also distribute the unmodified version of the file or - alternatively provide sufficient information so that the - user of your modified file can be reasonably expected to be - able to obtain an original, unmodified copy of The Program. - For example, you may specify a URL to a site that you expect - will freely provide the user with a copy of The Program (either - the version on which your modification is based, or perhaps a - later version). - - * If The Program is intended to be used with, or is based on, LaTeX, - then files with the following file extensions which have special - meaning in LaTeX Software, have special modification rules under the - license: - - - Files with extension `.ins' (installation files): these files may - not be modified at all because they contain the legal notices - that are placed in the generated files. - - - Files with extension `.fd' (LaTeX font definitions files): these - files are allowed to be modified without changing the name, but - only to enable use of all available fonts and to prevent attempts - to access unavailable fonts. However, modified files are not - allowed to be distributed in place of original files. - - - Files with extension `.cfg' (configuration files): these files - can be created or modified to enable easy configuration of the - system. The documentation in cfgguide.tex in the base LaTeX - distribution describes when it makes sense to modify or generate - such files. - - -The above restrictions are not intended to prohibit, and hence do -not apply to, the updating, by any method, of a file so that it -becomes identical to the latest version of that file in The Program. - -======================================================================== - -NOTES -===== - -We believe that these requirements give you the freedom you to make -modifications that conform with whatever technical specifications you -wish, whilst maintaining the availability, integrity and reliability of -The Program. If you do not see how to achieve your goal whilst -adhering to these requirements then read the document cfgguide.tex -in the base LaTeX distribution for suggestions. - -Because of the portability and exchangeability aspects of systems -like LaTeX, The LaTeX3 Project deprecates the distribution of -non-standard versions of components of LaTeX or of generally available -contributed code for them but such distributions are permitted under the -above restrictions. - -The document modguide.tex in the base LaTeX distribution details -the reasons for the legal requirements detailed above. -Even if The Program is unrelated to LaTeX, the argument in -modguide.tex may still apply, and should be read before -a modified version of The Program is distributed. - - -Conditions on individual files -============================== - -The individual files may bear additional conditions which supersede -the general conditions on distribution and modification contained in -this file. If there are any such files, the distribution of The -Program will contain a prominent file that lists all the exceptional -files. - -Typical examples of files with more restrictive modification -conditions would be files that contain the text of copyright notices. - - * The conditions on individual files differ only in the - extent of *modification* that is allowed. - - * The conditions on *distribution* are the same for all the files. - Thus a (re)distributor of a complete, unchanged copy of The Program - need meet only the conditions in this file; it is not necessary to - check the header of every file in the distribution to check that a - distribution meets these requirements. diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.0.yml deleted file mode 100644 index 5b8bf98dd0f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lppl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.1.txt deleted file mode 100644 index 52100607d17..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.1.txt +++ /dev/null @@ -1,314 +0,0 @@ - -The LaTeX Project Public License -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - -LPPL Version 1.1 1999-07-10 - -Copyright 1999 LaTeX3 Project - Everyone is allowed to distribute verbatim copies of this - license document, but modification of it is not allowed. - - -PREAMBLE -======== - -The LaTeX Project Public License (LPPL) is the license under which the -base LaTeX distribution is distributed. - -You may use this license for any program that you have written and wish -to distribute. This license may be particularly suitable if your -program is TeX-related (such as a LaTeX package), but you may use it -even if your program is unrelated to TeX. The section `WHETHER AND HOW -TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE', below, gives instructions, -examples, and recommendations for authors who are considering -distributing their programs under this license. - -In this license document, `The Program' refers to any program -distributed under this license. - -This license gives conditions under which The Program may be distributed -and conditions under which modified versions of The Program may be -distributed. Individual files of The Program may bear supplementary -and/or superseding conditions on modification of themselves and on the -distribution of modified versions of themselves, but *no* file of The -Program may bear supplementary or superseding conditions on the -distribution of an unmodified copy of the file. A distributor wishing -to distribute a complete, unmodified copy of The Program therefore -needs to check the conditions only in this license and nowhere else. - -Activities other than distribution and/or modification of The Program -are not covered by this license; they are outside its scope. In -particular, the act of running The Program is not restricted. - -We, the LaTeX3 Project, believe that the conditions below give you -the freedom to make and distribute modified versions of The Program -that conform with whatever technical specifications you wish while -maintaining the availability, integrity, and reliability of -The Program. If you do not see how to achieve your goal while -meeting these conditions, then read the document `cfgguide.tex' -in the base LaTeX distribution for suggestions. - - -CONDITIONS ON DISTRIBUTION AND MODIFICATION -=========================================== - -You may distribute a complete, unmodified copy of The Program. -Distribution of only part of The Program is not allowed. - -You may not modify in any way a file of The Program that bears a legal -notice forbidding modification of that file. - -You may distribute a modified file of The Program if, and only if, the -following eight conditions are met: - - 1. You must meet any additional conditions borne by the file on the - distribution of a modified version of the file as described below - in the subsection `Additional Conditions on Individual Files of - The Program'. - - 2. If the file is a LaTeX software file, then you must meet any - applicable additional conditions on the distribution of a modified - version of the file that are described below in the subsection - `Additional Conditions on LaTeX Software Files'. - - 3. You must not distribute the modified file with the filename of the - original file. - - 4. In the modified file, you must acknowledge the authorship and - name of the original file, and the name (if any) of the program - which contains it. - - 5. You must change any identification string in the file to indicate - clearly that the modified file is not part of The Program. - - 6. You must change any addresses in the modified file for the - reporting of errors in the file or in The Program generally to - ensure that reports for files no longer maintained by the original - maintainers will be directed to the maintainers of the modified - files. - - 7. You must distribute the modified file under a license that forbids - distribution both of the modified file and of any files derived - from the modified file with the filename of the original file. - - 8. You must do either (A) or (B): - - (A) distribute a copy of The Program (that is, a complete, - unmodified copy of The Program) together with the modified - file; if your distribution of the modified file is made by - offering access to copy the modified file from a designated - place, then offering equivalent access to copy The Program - from the same place meets this condition, even though third - parties are not compelled to copy The Program along with the - modified file; - - (B) provide to those who receive the modified file information - that is sufficient for them to obtain a copy of The Program; - for example, you may provide a Uniform Resource Locator (URL) - for a site that you expect will provide them with a copy of - The Program free of charge (either the version from which - your modification is derived, or perhaps a later version). - -Note that in the above, `distribution' of a file means making the -file available to others by any means. This includes, for instance, -installing the file on any machine in such a way that the file is -accessible by users other than yourself. `Modification' of a file -means any procedure that produces a derivative file under any -applicable law -- that is, a file containing the original file or -a significant portion of it, either verbatim or with modifications -and/or translated into another language. - -Changing the name of a file is considered to be a modification of -the file. - -The distribution conditions in this license do not have to be -applied to files that have been modified in accordance with the -above conditions. Note, however, that Condition 7. does apply to -any such modified file. - -The conditions above are not intended to prohibit, and hence do not -apply to, the updating, by any method, of a file so that it becomes -identical to the latest version of that file of The Program. - - - -A Recommendation on Modification Without Distribution ------------------------------------------------------ - -It is wise never to modify a file of The Program, even for your own -personal use, without also meeting the above eight conditions for -distributing the modified file. While you might intend that such -modified files will never be distributed, often this will happen by -accident -- you may forget that you have modified the file; or it may -not occur to you when allowing others to access the modified file -that you are thus distributing it and violating the conditions of -this license. It is usually in your best interest to keep your copy -of The Program identical with the public one. Many programs provide -ways to control the behavior of that program without altering its -licensed files. - - -Additional Conditions on Individual Files of The Program --------------------------------------------------------- - -An individual file of The Program may bear additional conditions that -supplement and/or supersede the conditions in this license if, and only -if, such additional conditions exclusively concern modification of the -file or distribution of a modified version of the file. The conditions -on individual files of The Program therefore may differ only with -respect to the kind and extent of modification of those files that -is allowed, and with respect to the distribution of modified versions -of those files. - - -Additional Conditions on LaTeX Software Files ---------------------------------------------- - -If a file of The Program is intended to be used with LaTeX (that is, -if it is a LaTeX software file), then the following additional -conditions, which supplement and/or supersede the conditions -above, apply to the file according to its filename extension: - - - You may not modify any file with filename extension `.ins' since - these are installation files containing the legal notices that are - placed in the files they generate. - - - You may distribute modified versions of files with filename - extension `.fd' (LaTeX font definition files) under the standard - conditions of the LPPL as described above. You may also distribute - such modified LaTeX font definition files with their original names - provided that: - (1) the only changes to the original files either enable use of - available fonts or prevent attempts to access unavailable fonts; - (2) you also distribute the original, unmodified files (TeX input - paths can be used to control which set of LaTeX font definition - files is actually used by TeX). - - - You may distribute modified versions of files with filename - extension `.cfg' (configuration files) with their original names. - The Program may (and usually will) specify the range of commands - that are allowed in a particular configuration file. - -Because of portability and exchangeability issues in LaTeX software, -The LaTeX3 Project deprecates the distribution of modified versions of -components of LaTeX or of generally available contributed code for them, -but such distribution can meet the conditions of this license. - - -NO WARRANTY -=========== - -There is no warranty for The Program. Except when otherwise stated in -writing, The Copyright Holder provides The Program `as is', without -warranty of any kind, either expressed or implied, including, but not -limited to, the implied warranties of merchantability and fitness for -a particular purpose. The entire risk as to the quality and performance -of The Program is with you. Should The Program prove defective, you -assume the cost of all necessary servicing, repair, or correction. - -In no event unless agreed to in writing will The Copyright Holder, or -any author named in the files of The Program, or any other party who may -distribute and/or modify The Program as permitted below, be liable to -you for damages, including any general, special, incidental or -consequential damages arising out of any use of The Program or out of -inability to use The Program (including, but not limited to, loss of -data, data being rendered inaccurate, or losses sustained by anyone as -a result of any failure of The Program to operate with any other -programs), even if The Copyright Holder or said author or said other -party has been advised of the possibility of such damages. - - -WHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE -========================================================= - -This section contains important instructions, examples, and -recommendations for authors who are considering distributing their -programs under this license. These authors are addressed as `you' in -this section. - - -Choosing This License or Another License ----------------------------------------- - -If for any part of your program you want or need to use *distribution* -conditions that differ from those in this license, then do not refer to -this license anywhere in your program but instead distribute your -program under a different license. You may use the text of this license -as a model for your own license, but your license should not refer to -the LPPL or otherwise give the impression that your program is -distributed under the LPPL. - -The document `modguide.tex' in the base LaTeX distribution explains -the motivation behind the conditions of this license. It explains, -for example, why distributing LaTeX under the GNU General Public -License (GPL) was considered inappropriate. Even if your program is -unrelated to LaTeX, the discussion in `modguide.tex' may still be -relevant, and authors intending to distribute their programs under any -license are encouraged to read it. - - -How to Use This License ------------------------ - -To use this license, place in each of the files of your program both -an explicit copyright notice including your name and the year and also -a statement that the distribution and/or modification of the file is -constrained by the conditions in this license. - -Here is an example of such a notice and statement: - - %% pig.dtx - %% Copyright 2001 M. Y. Name - % - % This program may be distributed and/or modified under the - % conditions of the LaTeX Project Public License, either version 1.1 - % of this license or (at your option) any later version. - % The latest version of this license is in - % http://www.latex-project.org/lppl.txt - % and version 1.1 or later is part of all distributions of LaTeX - % version 1999/06/01 or later. - % - % This program consists of the files pig.dtx and pig.ins - -Given such a notice and statement in a file, the conditions given in -this license document would apply, with `The Program' referring to the -two files `pig.dtx' and `pig.ins', and `The Copyright Holder' referring -to the person `M. Y. Name'. - - -Important Recommendations -------------------------- - - Defining What Constitutes The Program - - The LPPL requires that distributions of The Program contain all the - files of The Program. It is therefore important that you provide a - way for the licensee to determine which files constitute The Program. - This could, for example, be achieved by explicitly listing all the - files of The Program near the copyright notice of each file or by - using a line like - - % This program consists of all files listed in manifest.txt. - - in that place. In the absence of an unequivocal list it might be - impossible for the licensee to determine what is considered by you - to comprise The Program. - - Noting Exceptional Files - - If The Program contains any files bearing additional conditions on - modification, or on distribution of modified versions, of those - files (other than those listed in `Additional Conditions on LaTeX - Software Files'), then it is recommended that The Program contain a - prominent file that defines the exceptional conditions, and either - lists the exceptional files or defines one or more categories of - exceptional files. - - Files containing the text of a license (such as this file) are - often examples of files bearing more restrictive conditions on - modification. LaTeX configuration files (with filename extension - `.cfg') are examples of files bearing less restrictive conditions - on the distribution of a modified version of the file. The - additional conditions on LaTeX software given above are examples - of declaring a category of files bearing exceptional additional - conditions. diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.1.yml deleted file mode 100644 index aa8d249d0ea..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lppl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.2.txt b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.2.txt deleted file mode 100644 index 185023641f4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.2.txt +++ /dev/null @@ -1,317 +0,0 @@ - -The LaTeX Project Public License -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - -LPPL Version 1.2 1999-09-03 - -Copyright 1999 LaTeX3 Project - Everyone is allowed to distribute verbatim copies of this - license document, but modification of it is not allowed. - - -PREAMBLE -======== - -The LaTeX Project Public License (LPPL) is the license under which the -base LaTeX distribution is distributed. - -You may use this license for any program that you have written and wish -to distribute. This license may be particularly suitable if your -program is TeX-related (such as a LaTeX package), but you may use it -even if your program is unrelated to TeX. The section `WHETHER AND HOW -TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE', below, gives instructions, -examples, and recommendations for authors who are considering -distributing their programs under this license. - -In this license document, `The Program' refers to any program -distributed under this license. - -This license gives conditions under which The Program may be distributed -and conditions under which modified versions of The Program may be -distributed. Individual files of The Program may bear supplementary -and/or superseding conditions on modification of themselves and on the -distribution of modified versions of themselves, but *no* file of The -Program may bear supplementary or superseding conditions on the -distribution of an unmodified copy of the file. A distributor wishing -to distribute a complete, unmodified copy of The Program therefore -needs to check the conditions only in this license and nowhere else. - -Activities other than distribution and/or modification of The Program -are not covered by this license; they are outside its scope. In -particular, the act of running The Program is not restricted. - -We, the LaTeX3 Project, believe that the conditions below give you -the freedom to make and distribute modified versions of The Program -that conform with whatever technical specifications you wish while -maintaining the availability, integrity, and reliability of -The Program. If you do not see how to achieve your goal while -meeting these conditions, then read the document `cfgguide.tex' -in the base LaTeX distribution for suggestions. - - -CONDITIONS ON DISTRIBUTION AND MODIFICATION -=========================================== - -You may distribute a complete, unmodified copy of The Program. -Distribution of only part of The Program is not allowed. - -You may not modify in any way a file of The Program that bears a legal -notice forbidding modification of that file. - -You may distribute a modified file of The Program if, and only if, the -following eight conditions are met: - - 1. You must meet any additional conditions borne by the file on the - distribution of a modified version of the file as described below - in the subsection `Additional Conditions on Individual Files of - The Program'. - - 2. If the file is a LaTeX software file, then you must meet any - applicable additional conditions on the distribution of a modified - version of the file that are described below in the subsection - `Additional Conditions on LaTeX Software Files'. - - 3. You must not distribute the modified file with the filename of the - original file. - - 4. In the modified file, you must acknowledge the authorship and - name of the original file, and the name (if any) of the program - which contains it. - - 5. You must change any identification string in the file to indicate - clearly that the modified file is not part of The Program. - - 6. You must change any addresses in the modified file for the - reporting of errors in the file or in The Program generally to - ensure that reports for files no longer maintained by the original - maintainers will be directed to the maintainers of the modified - files. - - 7. You must distribute the modified file under a license that forbids - distribution both of the modified file and of any files derived - from the modified file with the filename of the original file. - - 8. You must do either (A) or (B): - - (A) distribute a copy of The Program (that is, a complete, - unmodified copy of The Program) together with the modified - file; if your distribution of the modified file is made by - offering access to copy the modified file from a designated - place, then offering equivalent access to copy The Program - from the same place meets this condition, even though third - parties are not compelled to copy The Program along with the - modified file; - - (B) provide to those who receive the modified file information - that is sufficient for them to obtain a copy of The Program; - for example, you may provide a Uniform Resource Locator (URL) - for a site that you expect will provide them with a copy of - The Program free of charge (either the version from which - your modification is derived, or perhaps a later version). - -Note that in the above, `distribution' of a file means making the -file available to others by any means. This includes, for instance, -installing the file on any machine in such a way that the file is -accessible by users other than yourself. `Modification' of a file -means any procedure that produces a derivative file under any -applicable law -- that is, a file containing the original file or -a significant portion of it, either verbatim or with modifications -and/or translated into another language. - -Changing the name of a file (other than as necessitated by the file -conventions of the target file systems) is considered to be a -modification of the file. - -The distribution conditions in this license do not have to be -applied to files that have been modified in accordance with the -above conditions. Note, however, that Condition 7. does apply to -any such modified file. - -The conditions above are not intended to prohibit, and hence do not -apply to, the updating, by any method, of a file so that it becomes -identical to the latest version of that file of The Program. - - - -A Recommendation on Modification Without Distribution ------------------------------------------------------ - -It is wise never to modify a file of The Program, even for your own -personal use, without also meeting the above eight conditions for -distributing the modified file. While you might intend that such -modified files will never be distributed, often this will happen by -accident -- you may forget that you have modified the file; or it may -not occur to you when allowing others to access the modified file -that you are thus distributing it and violating the conditions of -this license. It is usually in your best interest to keep your copy -of The Program identical with the public one. Many programs provide -ways to control the behavior of that program without altering its -licensed files. - - -Additional Conditions on Individual Files of The Program --------------------------------------------------------- - -An individual file of The Program may bear additional conditions that -supplement and/or supersede the conditions in this license if, and only -if, such additional conditions exclusively concern modification of the -file or distribution of a modified version of the file. The conditions -on individual files of The Program therefore may differ only with -respect to the kind and extent of modification of those files that -is allowed, and with respect to the distribution of modified versions -of those files. - - -Additional Conditions on LaTeX Software Files ---------------------------------------------- - -If a file of The Program is intended to be used with LaTeX (that is, -if it is a LaTeX software file), then the following additional -conditions, which supplement and/or supersede the conditions -above, apply to the file according to its filename extension: - - - You may not modify any file with filename extension `.ins' since - these are installation files containing the legal notices that are - placed in the files they generate. - - - You may distribute modified versions of files with filename - extension `.fd' (LaTeX font definition files) under the standard - conditions of the LPPL as described above. You may also distribute - such modified LaTeX font definition files with their original names - provided that: - (1) the only changes to the original files either enable use of - available fonts or prevent attempts to access unavailable fonts; - (2) you also distribute the original, unmodified files (TeX input - paths can be used to control which set of LaTeX font definition - files is actually used by TeX). - - - You may distribute modified versions of files with filename - extension `.cfg' (configuration files) with their original names. - The Program may (and usually will) specify the range of commands - that are allowed in a particular configuration file. - -Because of portability and exchangeability issues in LaTeX software, -The LaTeX3 Project deprecates the distribution of modified versions of -components of LaTeX or of generally available contributed code for them, -but such distribution can meet the conditions of this license. - - -NO WARRANTY -=========== - -There is no warranty for The Program. Except when otherwise stated in -writing, The Copyright Holder provides The Program `as is', without -warranty of any kind, either expressed or implied, including, but not -limited to, the implied warranties of merchantability and fitness for -a particular purpose. The entire risk as to the quality and performance -of The Program is with you. Should The Program prove defective, you -assume the cost of all necessary servicing, repair, or correction. - -In no event unless agreed to in writing will The Copyright Holder, or -any author named in the files of The Program, or any other party who may -distribute and/or modify The Program as permitted above, be liable to -you for damages, including any general, special, incidental or -consequential damages arising out of any use of The Program or out of -inability to use The Program (including, but not limited to, loss of -data, data being rendered inaccurate, or losses sustained by anyone as -a result of any failure of The Program to operate with any other -programs), even if The Copyright Holder or said author or said other -party has been advised of the possibility of such damages. - - -WHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE -========================================================= - -This section contains important instructions, examples, and -recommendations for authors who are considering distributing their -programs under this license. These authors are addressed as `you' in -this section. - - -Choosing This License or Another License ----------------------------------------- - -If for any part of your program you want or need to use *distribution* -conditions that differ from those in this license, then do not refer to -this license anywhere in your program but instead distribute your -program under a different license. You may use the text of this license -as a model for your own license, but your license should not refer to -the LPPL or otherwise give the impression that your program is -distributed under the LPPL. - -The document `modguide.tex' in the base LaTeX distribution explains -the motivation behind the conditions of this license. It explains, -for example, why distributing LaTeX under the GNU General Public -License (GPL) was considered inappropriate. Even if your program is -unrelated to LaTeX, the discussion in `modguide.tex' may still be -relevant, and authors intending to distribute their programs under any -license are encouraged to read it. - - -How to Use This License ------------------------ - -To use this license, place in each of the files of your program both -an explicit copyright notice including your name and the year and also -a statement that the distribution and/or modification of the file is -constrained by the conditions in this license. - -Here is an example of such a notice and statement: - - %% pig.dtx - %% Copyright 2001 M. Y. Name - % - % This program may be distributed and/or modified under the - % conditions of the LaTeX Project Public License, either version 1.2 - % of this license or (at your option) any later version. - % The latest version of this license is in - % http://www.latex-project.org/lppl.txt - % and version 1.2 or later is part of all distributions of LaTeX - % version 1999/12/01 or later. - % - % This program consists of the files pig.dtx and pig.ins - -Given such a notice and statement in a file, the conditions given in -this license document would apply, with `The Program' referring to the -two files `pig.dtx' and `pig.ins', and `The Copyright Holder' referring -to the person `M. Y. Name'. - - -Important Recommendations -------------------------- - - Defining What Constitutes The Program - - The LPPL requires that distributions of The Program contain all the - files of The Program. It is therefore important that you provide a - way for the licensee to determine which files constitute The Program. - This could, for example, be achieved by explicitly listing all the - files of The Program near the copyright notice of each file or by - using a line like - - % This program consists of all files listed in manifest.txt. - - in that place. In the absence of an unequivocal list it might be - impossible for the licensee to determine what is considered by you - to comprise The Program. - - Noting Exceptional Files - - If The Program contains any files bearing additional conditions on - modification, or on distribution of modified versions, of those - files (other than those listed in `Additional Conditions on LaTeX - Software Files'), then it is recommended that The Program contain a - prominent file that defines the exceptional conditions, and either - lists the exceptional files or defines one or more categories of - exceptional files. - - Files containing the text of a license (such as this file) are - often examples of files bearing more restrictive conditions on - modification. LaTeX configuration files (with filename extension - `.cfg') are examples of files bearing less restrictive conditions - on the distribution of a modified version of the file. The - additional conditions on LaTeX software given above are examples - of declaring a category of files bearing exceptional additional - conditions. - - diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.2.yml b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.2.yml deleted file mode 100644 index 21f608e1c31..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lppl-1.2 diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.3c.txt b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.3c.txt deleted file mode 100644 index 4db9b5af292..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.3c.txt +++ /dev/null @@ -1,415 +0,0 @@ -The LaTeX Project Public License -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - -LPPL Version 1.3c 2008-05-04 - -Copyright 1999 2002-2008 LaTeX3 Project - Everyone is allowed to distribute verbatim copies of this - license document, but modification of it is not allowed. - - -PREAMBLE -======== - -The LaTeX Project Public License (LPPL) is the primary license under -which the LaTeX kernel and the base LaTeX packages are distributed. - -You may use this license for any work of which you hold the copyright -and which you wish to distribute. This license may be particularly -suitable if your work is TeX-related (such as a LaTeX package), but -it is written in such a way that you can use it even if your work is -unrelated to TeX. - -The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE', -below, gives instructions, examples, and recommendations for authors -who are considering distributing their works under this license. - -This license gives conditions under which a work may be distributed -and modified, as well as conditions under which modified versions of -that work may be distributed. - -We, the LaTeX3 Project, believe that the conditions below give you -the freedom to make and distribute modified versions of your work -that conform with whatever technical specifications you wish while -maintaining the availability, integrity, and reliability of -that work. If you do not see how to achieve your goal while -meeting these conditions, then read the document `cfgguide.tex' -and `modguide.tex' in the base LaTeX distribution for suggestions. - - -DEFINITIONS -=========== - -In this license document the following terms are used: - - `Work' - Any work being distributed under this License. - - `Derived Work' - Any work that under any applicable law is derived from the Work. - - `Modification' - Any procedure that produces a Derived Work under any applicable - law -- for example, the production of a file containing an - original file associated with the Work or a significant portion of - such a file, either verbatim or with modifications and/or - translated into another language. - - `Modify' - To apply any procedure that produces a Derived Work under any - applicable law. - - `Distribution' - Making copies of the Work available from one person to another, in - whole or in part. Distribution includes (but is not limited to) - making any electronic components of the Work accessible by - file transfer protocols such as FTP or HTTP or by shared file - systems such as Sun's Network File System (NFS). - - `Compiled Work' - A version of the Work that has been processed into a form where it - is directly usable on a computer system. This processing may - include using installation facilities provided by the Work, - transformations of the Work, copying of components of the Work, or - other activities. Note that modification of any installation - facilities provided by the Work constitutes modification of the Work. - - `Current Maintainer' - A person or persons nominated as such within the Work. If there is - no such explicit nomination then it is the `Copyright Holder' under - any applicable law. - - `Base Interpreter' - A program or process that is normally needed for running or - interpreting a part or the whole of the Work. - - A Base Interpreter may depend on external components but these - are not considered part of the Base Interpreter provided that each - external component clearly identifies itself whenever it is used - interactively. Unless explicitly specified when applying the - license to the Work, the only applicable Base Interpreter is a - `LaTeX-Format' or in the case of files belonging to the - `LaTeX-format' a program implementing the `TeX language'. - - - -CONDITIONS ON DISTRIBUTION AND MODIFICATION -=========================================== - -1. Activities other than distribution and/or modification of the Work -are not covered by this license; they are outside its scope. In -particular, the act of running the Work is not restricted and no -requirements are made concerning any offers of support for the Work. - -2. You may distribute a complete, unmodified copy of the Work as you -received it. Distribution of only part of the Work is considered -modification of the Work, and no right to distribute such a Derived -Work may be assumed under the terms of this clause. - -3. You may distribute a Compiled Work that has been generated from a -complete, unmodified copy of the Work as distributed under Clause 2 -above, as long as that Compiled Work is distributed in such a way that -the recipients may install the Compiled Work on their system exactly -as it would have been installed if they generated a Compiled Work -directly from the Work. - -4. If you are the Current Maintainer of the Work, you may, without -restriction, modify the Work, thus creating a Derived Work. You may -also distribute the Derived Work without restriction, including -Compiled Works generated from the Derived Work. Derived Works -distributed in this manner by the Current Maintainer are considered to -be updated versions of the Work. - -5. If you are not the Current Maintainer of the Work, you may modify -your copy of the Work, thus creating a Derived Work based on the Work, -and compile this Derived Work, thus creating a Compiled Work based on -the Derived Work. - -6. If you are not the Current Maintainer of the Work, you may -distribute a Derived Work provided the following conditions are met -for every component of the Work unless that component clearly states -in the copyright notice that it is exempt from that condition. Only -the Current Maintainer is allowed to add such statements of exemption -to a component of the Work. - - a. If a component of this Derived Work can be a direct replacement - for a component of the Work when that component is used with the - Base Interpreter, then, wherever this component of the Work - identifies itself to the user when used interactively with that - Base Interpreter, the replacement component of this Derived Work - clearly and unambiguously identifies itself as a modified version - of this component to the user when used interactively with that - Base Interpreter. - - b. Every component of the Derived Work contains prominent notices - detailing the nature of the changes to that component, or a - prominent reference to another file that is distributed as part - of the Derived Work and that contains a complete and accurate log - of the changes. - - c. No information in the Derived Work implies that any persons, - including (but not limited to) the authors of the original version - of the Work, provide any support, including (but not limited to) - the reporting and handling of errors, to recipients of the - Derived Work unless those persons have stated explicitly that - they do provide such support for the Derived Work. - - d. You distribute at least one of the following with the Derived Work: - - 1. A complete, unmodified copy of the Work; - if your distribution of a modified component is made by - offering access to copy the modified component from a - designated place, then offering equivalent access to copy - the Work from the same or some similar place meets this - condition, even though third parties are not compelled to - copy the Work along with the modified component; - - 2. Information that is sufficient to obtain a complete, - unmodified copy of the Work. - -7. If you are not the Current Maintainer of the Work, you may -distribute a Compiled Work generated from a Derived Work, as long as -the Derived Work is distributed to all recipients of the Compiled -Work, and as long as the conditions of Clause 6, above, are met with -regard to the Derived Work. - -8. The conditions above are not intended to prohibit, and hence do not -apply to, the modification, by any method, of any component so that it -becomes identical to an updated version of that component of the Work as -it is distributed by the Current Maintainer under Clause 4, above. - -9. Distribution of the Work or any Derived Work in an alternative -format, where the Work or that Derived Work (in whole or in part) is -then produced by applying some process to that format, does not relax or -nullify any sections of this license as they pertain to the results of -applying that process. - -10. a. A Derived Work may be distributed under a different license - provided that license itself honors the conditions listed in - Clause 6 above, in regard to the Work, though it does not have - to honor the rest of the conditions in this license. - - b. If a Derived Work is distributed under a different license, that - Derived Work must provide sufficient documentation as part of - itself to allow each recipient of that Derived Work to honor the - restrictions in Clause 6 above, concerning changes from the Work. - -11. This license places no restrictions on works that are unrelated to -the Work, nor does this license place any restrictions on aggregating -such works with the Work by any means. - -12. Nothing in this license is intended to, or may be used to, prevent -complete compliance by all parties with all applicable laws. - - -NO WARRANTY -=========== - -There is no warranty for the Work. Except when otherwise stated in -writing, the Copyright Holder provides the Work `as is', without -warranty of any kind, either expressed or implied, including, but not -limited to, the implied warranties of merchantability and fitness for a -particular purpose. The entire risk as to the quality and performance -of the Work is with you. Should the Work prove defective, you assume -the cost of all necessary servicing, repair, or correction. - -In no event unless required by applicable law or agreed to in writing -will The Copyright Holder, or any author named in the components of the -Work, or any other party who may distribute and/or modify the Work as -permitted above, be liable to you for damages, including any general, -special, incidental or consequential damages arising out of any use of -the Work or out of inability to use the Work (including, but not limited -to, loss of data, data being rendered inaccurate, or losses sustained by -anyone as a result of any failure of the Work to operate with any other -programs), even if the Copyright Holder or said author or said other -party has been advised of the possibility of such damages. - - -MAINTENANCE OF THE WORK -======================= - -The Work has the status `author-maintained' if the Copyright Holder -explicitly and prominently states near the primary copyright notice in -the Work that the Work can only be maintained by the Copyright Holder -or simply that it is `author-maintained'. - -The Work has the status `maintained' if there is a Current Maintainer -who has indicated in the Work that they are willing to receive error -reports for the Work (for example, by supplying a valid e-mail -address). It is not required for the Current Maintainer to acknowledge -or act upon these error reports. - -The Work changes from status `maintained' to `unmaintained' if there -is no Current Maintainer, or the person stated to be Current -Maintainer of the work cannot be reached through the indicated means -of communication for a period of six months, and there are no other -significant signs of active maintenance. - -You can become the Current Maintainer of the Work by agreement with -any existing Current Maintainer to take over this role. - -If the Work is unmaintained, you can become the Current Maintainer of -the Work through the following steps: - - 1. Make a reasonable attempt to trace the Current Maintainer (and - the Copyright Holder, if the two differ) through the means of - an Internet or similar search. - - 2. If this search is successful, then enquire whether the Work - is still maintained. - - a. If it is being maintained, then ask the Current Maintainer - to update their communication data within one month. - - b. If the search is unsuccessful or no action to resume active - maintenance is taken by the Current Maintainer, then announce - within the pertinent community your intention to take over - maintenance. (If the Work is a LaTeX work, this could be - done, for example, by posting to comp.text.tex.) - - 3a. If the Current Maintainer is reachable and agrees to pass - maintenance of the Work to you, then this takes effect - immediately upon announcement. - - b. If the Current Maintainer is not reachable and the Copyright - Holder agrees that maintenance of the Work be passed to you, - then this takes effect immediately upon announcement. - - 4. If you make an `intention announcement' as described in 2b. above - and after three months your intention is challenged neither by - the Current Maintainer nor by the Copyright Holder nor by other - people, then you may arrange for the Work to be changed so as - to name you as the (new) Current Maintainer. - - 5. If the previously unreachable Current Maintainer becomes - reachable once more within three months of a change completed - under the terms of 3b) or 4), then that Current Maintainer must - become or remain the Current Maintainer upon request provided - they then update their communication data within one month. - -A change in the Current Maintainer does not, of itself, alter the fact -that the Work is distributed under the LPPL license. - -If you become the Current Maintainer of the Work, you should -immediately provide, within the Work, a prominent and unambiguous -statement of your status as Current Maintainer. You should also -announce your new status to the same pertinent community as -in 2b) above. - - -WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE -====================================================== - -This section contains important instructions, examples, and -recommendations for authors who are considering distributing their -works under this license. These authors are addressed as `you' in -this section. - -Choosing This License or Another License ----------------------------------------- - -If for any part of your work you want or need to use *distribution* -conditions that differ significantly from those in this license, then -do not refer to this license anywhere in your work but, instead, -distribute your work under a different license. You may use the text -of this license as a model for your own license, but your license -should not refer to the LPPL or otherwise give the impression that -your work is distributed under the LPPL. - -The document `modguide.tex' in the base LaTeX distribution explains -the motivation behind the conditions of this license. It explains, -for example, why distributing LaTeX under the GNU General Public -License (GPL) was considered inappropriate. Even if your work is -unrelated to LaTeX, the discussion in `modguide.tex' may still be -relevant, and authors intending to distribute their works under any -license are encouraged to read it. - -A Recommendation on Modification Without Distribution ------------------------------------------------------ - -It is wise never to modify a component of the Work, even for your own -personal use, without also meeting the above conditions for -distributing the modified component. While you might intend that such -modifications will never be distributed, often this will happen by -accident -- you may forget that you have modified that component; or -it may not occur to you when allowing others to access the modified -version that you are thus distributing it and violating the conditions -of this license in ways that could have legal implications and, worse, -cause problems for the community. It is therefore usually in your -best interest to keep your copy of the Work identical with the public -one. Many works provide ways to control the behavior of that work -without altering any of its licensed components. - -How to Use This License ------------------------ - -To use this license, place in each of the components of your work both -an explicit copyright notice including your name and the year the work -was authored and/or last substantially modified. Include also a -statement that the distribution and/or modification of that -component is constrained by the conditions in this license. - -Here is an example of such a notice and statement: - - %% pig.dtx - %% Copyright 2005 M. Y. Name - % - % This work may be distributed and/or modified under the - % conditions of the LaTeX Project Public License, either version 1.3 - % of this license or (at your option) any later version. - % The latest version of this license is in - % http://www.latex-project.org/lppl.txt - % and version 1.3 or later is part of all distributions of LaTeX - % version 2005/12/01 or later. - % - % This work has the LPPL maintenance status `maintained'. - % - % The Current Maintainer of this work is M. Y. Name. - % - % This work consists of the files pig.dtx and pig.ins - % and the derived file pig.sty. - -Given such a notice and statement in a file, the conditions -given in this license document would apply, with the `Work' referring -to the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being -generated from `pig.dtx' using `pig.ins'), the `Base Interpreter' -referring to any `LaTeX-Format', and both `Copyright Holder' and -`Current Maintainer' referring to the person `M. Y. Name'. - -If you do not want the Maintenance section of LPPL to apply to your -Work, change `maintained' above into `author-maintained'. -However, we recommend that you use `maintained', as the Maintenance -section was added in order to ensure that your Work remains useful to -the community even when you can no longer maintain and support it -yourself. - -Derived Works That Are Not Replacements ---------------------------------------- - -Several clauses of the LPPL specify means to provide reliability and -stability for the user community. They therefore concern themselves -with the case that a Derived Work is intended to be used as a -(compatible or incompatible) replacement of the original Work. If -this is not the case (e.g., if a few lines of code are reused for a -completely different task), then clauses 6b and 6d shall not apply. - - -Important Recommendations -------------------------- - - Defining What Constitutes the Work - - The LPPL requires that distributions of the Work contain all the - files of the Work. It is therefore important that you provide a - way for the licensee to determine which files constitute the Work. - This could, for example, be achieved by explicitly listing all the - files of the Work near the copyright notice of each file or by - using a line such as: - - % This work consists of all files listed in manifest.txt. - - in that place. In the absence of an unequivocal list it might be - impossible for the licensee to determine what is considered by you - to comprise the Work and, in such a case, the licensee would be - entitled to make reasonable conjectures as to which files comprise - the Work. diff --git a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.3c.yml b/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.3c.yml deleted file mode 100644 index f2321bf7741..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/LPPL/LPPL-1.3c.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lppl-1.3c diff --git a/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng.txt b/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng.txt deleted file mode 100644 index 15aea09ed1b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng.txt +++ /dev/null @@ -1,110 +0,0 @@ -This copy of the libpng notices is provided for your convenience. In case of -any discrepancy between this copy and the notices in the file png.h that is -included in the libpng distribution, the latter shall prevail. - -COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: - -If you modify libpng you may insert additional notices immediately following -this sentence. - -This code is released under the libpng license. - -libpng versions 1.2.6, August 15, 2004, through 1.4.5, December 9, 2010, are -Copyright (c) 2004, 2006-2010 Glenn Randers-Pehrson, and are -distributed according to the same disclaimer and license as libpng-1.2.5 -with the following individual added to the list of Contributing Authors - - Cosmin Truta - -libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are -Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are -distributed according to the same disclaimer and license as libpng-1.0.6 -with the following individuals added to the list of Contributing Authors - - Simon-Pierre Cadieux - Eric S. Raymond - Gilles Vollant - -and with the following additions to the disclaimer: - - There is no warranty against interference with your enjoyment of the - library or against infringement. There is no warranty that our - efforts or the library will fulfill any of your particular purposes - or needs. This library is provided with all faults, and the entire - risk of satisfactory quality, performance, accuracy, and effort is with - the user. - -libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are -Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are -distributed according to the same disclaimer and license as libpng-0.96, -with the following individuals added to the list of Contributing Authors: - - Tom Lane - Glenn Randers-Pehrson - Willem van Schaik - -libpng versions 0.89, June 1996, through 0.96, May 1997, are -Copyright (c) 1996, 1997 Andreas Dilger -Distributed according to the same disclaimer and license as libpng-0.88, -with the following individuals added to the list of Contributing Authors: - - John Bowler - Kevin Bracey - Sam Bushell - Magnus Holmgren - Greg Roelofs - Tom Tanner - -libpng versions 0.5, May 1995, through 0.88, January 1996, are -Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. - -For the purposes of this copyright and license, "Contributing Authors" -is defined as the following set of individuals: - - Andreas Dilger - Dave Martindale - Guy Eric Schalnat - Paul Schmidt - Tim Wegner - -The PNG Reference Library is supplied "AS IS". The Contributing Authors -and Group 42, Inc. disclaim all warranties, expressed or implied, -including, without limitation, the warranties of merchantability and of -fitness for any purpose. The Contributing Authors and Group 42, Inc. -assume no liability for direct, indirect, incidental, special, exemplary, -or consequential damages, which may result from the use of the PNG -Reference Library, even if advised of the possibility of such damage. - -Permission is hereby granted to use, copy, modify, and distribute this -source code, or portions hereof, for any purpose, without fee, subject -to the following restrictions: - -1. The origin of this source code must not be misrepresented. - -2. Altered versions must be plainly marked as such and must not - be misrepresented as being the original source. - -3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - -The Contributing Authors and Group 42, Inc. specifically permit, without -fee, and encourage the use of this source code as a component to -supporting the PNG file format in commercial products. If you use this -source code in a product, acknowledgment is not required but would be -appreciated. - - -A "png_get_copyright" function is available, for convenient use in "about" -boxes and the like: - - printf("%s",png_get_copyright(NULL)); - -Also, the PNG logo (in PNG format, of course) is supplied in the -files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). - -Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a -certification mark of the Open Source Initiative. - -Glenn Randers-Pehrson -glennrp at users.sourceforge.net -December 9, 2010 diff --git a/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng.yml b/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng.yml deleted file mode 100644 index 7152ca4dbd2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - libpng diff --git a/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng_not_W3C-style.yml b/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng_not_W3C-style.yml index 1b43c33905b..c69b21aa666 100644 --- a/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng_not_W3C-style.yml +++ b/tests/licensedcode/data/more_licenses/tests/Libpng/Libpng_not_W3C-style.yml @@ -1,3 +1,2 @@ license_expressions: - - nilsson-historical - - libpng + - libmng-2007 diff --git a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-advertising.txt b/tests/licensedcode/data/more_licenses/tests/MIT/MIT-advertising.txt deleted file mode 100644 index 996544e7eae..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-advertising.txt +++ /dev/null @@ -1,9 +0,0 @@ - -Copyright (C) 2000-2008 Carsten Haitzler, Geoff Harrison and various contributors Copyright (C) 2004-2008 Kim Woelders - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies of the Software, its documentation and marketing & publicity materials, and acknowledgment shall be given in the documentation, materials and software packages that this Software was used. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-advertising.yml b/tests/licensedcode/data/more_licenses/tests/MIT/MIT-advertising.yml deleted file mode 100644 index 3eb09882a90..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-advertising.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - enlightenment diff --git a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-feh.txt b/tests/licensedcode/data/more_licenses/tests/MIT/MIT-feh.txt deleted file mode 100644 index eb36afd7b0c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-feh.txt +++ /dev/null @@ -1,7 +0,0 @@ - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies of the Software and its documentation and acknowledgment shall be given in the documentation and software packages that this Software was used. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-feh.yml b/tests/licensedcode/data/more_licenses/tests/MIT/MIT-feh.yml deleted file mode 100644 index 6d257b7fcab..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MIT/MIT-feh.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit-ack diff --git a/tests/licensedcode/data/more_licenses/tests/MIT/MITNFA.txt b/tests/licensedcode/data/more_licenses/tests/MIT/MITNFA.txt deleted file mode 100644 index 2d81cb62b78..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MIT/MITNFA.txt +++ /dev/null @@ -1,9 +0,0 @@ - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -Distributions of all or part of the Software intended to be used by the recipients as they would use the unmodified Software, containing modifications that substantially alter, remove, or disable functionality of the Software, outside of the documented configuration mechanisms provided by the Software, shall be modified such that the Original Author's bug reporting email addresses and urls are either replaced with the contact information of the parties responsible for the changes, or removed entirely. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/tests/licensedcode/data/more_licenses/tests/MIT/MITNFA.yml b/tests/licensedcode/data/more_licenses/tests/MIT/MITNFA.yml deleted file mode 100644 index e8f320c9c8c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MIT/MITNFA.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mit-no-false-attribs diff --git a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.0.txt deleted file mode 100644 index 24c2378d317..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.0.txt +++ /dev/null @@ -1,107 +0,0 @@ -MOZILLA PUBLIC LICENSE -Version 1.0 - -1. Definitions. - -1.1. ``Contributor'' means each entity that creates or contributes to the creation of Modifications. -1.2. ``Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. ``Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. ``Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. ``Executable'' means Covered Code in any form other than Source Code. - -1.6. ``Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. ``Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. ``License'' means this document. - -1.9. ``Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10. ``Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.11. ``Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. ``You'' means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, ``You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, ``control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -2. Source Code License. -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (``Utilize'') the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -3. Distribution Obligations. -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled ``LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. -If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. -This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. -6. Versions of the License. -6.1. New Versions. -Netscape Communications Corporation (``Netscape'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works. -If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. -8. TERMINATION. -This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -9. LIMITATION OF LIABILITY. -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. -10. U.S. GOVERNMENT END USERS. -The Covered Code is a ``commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer software'' and ``commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. -11. MISCELLANEOUS. -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. -12. RESPONSIBILITY FOR CLAIMS. -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. -EXHIBIT A. -``The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is ________________________. Portions created by ______________________ are Copyright (C) ______ _______________________. All Rights Reserved. - -Contributor(s): ______________________________________.'' diff --git a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.0.yml deleted file mode 100644 index aa3947187fb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.1.txt deleted file mode 100644 index 4da04e174fc..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.1.txt +++ /dev/null @@ -1,183 +0,0 @@ -Mozilla Public License Version 1.1 - -1. Definitions. - -1.0.1. "Commercial Use" -means distribution or otherwise making the Covered Code available to a third party. -1.1. "Contributor" -means each entity that creates or contributes to the creation of Modifications. -1.2. "Contributor Version" -means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. -1.3. "Covered Code" -means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. -1.4. "Electronic Distribution Mechanism" -means a mechanism generally accepted in the software development community for the electronic transfer of data. -1.5. "Executable" -means Covered Code in any form other than Source Code. -1.6. "Initial Developer" -means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. -1.7. "Larger Work" -means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. -1.8. "License" -means this document. -1.8.1. "Licensable" -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.9. "Modifications" -means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: -Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. -Any new file that contains any part of the Original Code or previous Modifications. -1.10. "Original Code" -means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. -1.10.1. "Patent Claims" -means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. -1.11. "Source Code" -means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. -1.12. "You" (or "Your") -means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. -2. Source Code License. - -2.1. The Initial Developer Grant. - -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and -under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). -the licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. -Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. -2.2. Contributor Grant. - -Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license - -under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and -under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). -the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first makes Commercial Use of the Covered Code. -Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. -3. Distribution Obligations. - -3.1. Application of License. - -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2. Availability of Source Code. - -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. - -You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters - -(a) Third Party Claims - -If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs - -If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. - -(c) Representations. - -Contributor represents that, except as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. - -You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. - -You may distribute Covered Code in Executable form only if the requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -3.7. Larger Works. - -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions - -Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2. Effect of New Versions - -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. - -6.3. Derivative Works - -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. Termination - -8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: - -such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. -any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. -8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. government end users - -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. Miscellaneous - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. Responsibility for claims - -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -13. Multiple-licensed code - -Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. - -Exhibit A - Mozilla Public License. - -"The contents of this file are subject to the Mozilla Public License -Version 1.1 (the "License"); you may not use this file except in -compliance with the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL/ - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations -under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is ________________________. -Portions created by ______________________ are Copyright (C) ______ -_______________________. All Rights Reserved. - -Contributor(s): ______________________________________. - -Alternatively, the contents of this file may be used under the terms -of the _____ license (the "[___] License"), in which case the -provisions of [______] License are applicable instead of those -above. If you wish to allow use of your version of this file only -under the terms of the [____] License and not to allow others to use -your version of this file under the MPL, indicate your decision by -deleting the provisions above and replace them with the notice and -other provisions required by the [___] License. If you do not delete -the provisions above, a recipient may use your version of this file -under either the MPL or the [___] License." -NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications. diff --git a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.1.yml deleted file mode 100644 index 55c264f526f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/MPL/MPL-2.0.txt deleted file mode 100644 index 83f2c24a76c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-2.0.txt +++ /dev/null @@ -1,144 +0,0 @@ -Mozilla Public License Version 2.0 - -1. Definitions - -1.1. "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - -1.2. "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" means Covered Software of a particular Contributor. - -1.4. "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - -1.5. "Incompatible With Secondary Licenses" means - -(a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - -(b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - -1.6. "Executable Form" means any form of the work other than Source Code Form. - -1.7. "Larger Work" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - -1.8. "License" means this document. - -1.9. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - -1.10. "Modifications" means any of the following: - -(a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - -(b) any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. - -2.2. Effective Date -The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. - -2.3. Limitations on Grant Scope -The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - -(a) for any code that a Contributor has removed from Covered Software; or - -(b) for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of its Contributions. - -This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). - -2.4. Subsequent Licenses -No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - -2.5. Representation -Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use -This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - -3. Responsibilities - -3.1. Distribution of Source Form -All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form. - -3.2. Distribution of Executable Form -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work -You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). - -3.4. Notices -You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms -You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - -4. Inability to Comply Due to Statute or Regulation -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - -6. Disclaimer of Warranty -Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - -7. Limitation of Liability -Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation -Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party's ability to bring cross-claims or counter-claims. - -9. Miscellaneous -This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. - -10. Versions of the License - -10.1. New Versions -Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. - -10.2. Effect of New Versions -You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - -10.3. Modified Versions -If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses -If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. diff --git a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/MPL/MPL-2.0.yml deleted file mode 100644 index afdd345305e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MPL/MPL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/MS/MS-PL.txt b/tests/licensedcode/data/more_licenses/tests/MS/MS-PL.txt deleted file mode 100644 index 23c62e28bb4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MS/MS-PL.txt +++ /dev/null @@ -1,18 +0,0 @@ -Microsoft Public License (Ms-PL) - - -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. - -1. Definitions -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. A "contribution" is the original software, or any additions or changes to the software. A "contributor" is any person that distributes its contribution under this license. "Licensed patents" are a contributor's patent claims that read directly on its contribution. - -2. Grant of Rights -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. - -3. Conditions and Limitations -(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. -(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/tests/licensedcode/data/more_licenses/tests/MS/MS-PL.yml b/tests/licensedcode/data/more_licenses/tests/MS/MS-PL.yml deleted file mode 100644 index 19a40e5a388..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MS/MS-PL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-pl diff --git a/tests/licensedcode/data/more_licenses/tests/MS/MS-RL.txt b/tests/licensedcode/data/more_licenses/tests/MS/MS-RL.txt deleted file mode 100644 index cabee845952..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MS/MS-RL.txt +++ /dev/null @@ -1,21 +0,0 @@ -Microsoft Reciprocal License (Ms-RL) - -This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. - -1. Definitions -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. -A "contribution" is the original software, or any additions or changes to the software. -A "contributor" is any person that distributes its contribution under this license. -"Licensed patents" are a contributor's patent claims that read directly on its contribution. - -2. Grant of Rights -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. - -3. Conditions and Limitations -(A) Reciprocal Grants- For any file you distribute that contains code from the software (in source code or binary format), you must provide recipients the source code to that file along with a copy of this license, which license will govern that file. You may license other files that are entirely your own work and do not contain code from the software under any terms you choose. -(B) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. -(C) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -(D) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -(E) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -(F) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/tests/licensedcode/data/more_licenses/tests/MS/MS-RL.yml b/tests/licensedcode/data/more_licenses/tests/MS/MS-RL.yml deleted file mode 100644 index b18a3c4d2db..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MS/MS-RL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ms-rl diff --git a/tests/licensedcode/data/more_licenses/tests/MTLL/MTLL.txt b/tests/licensedcode/data/more_licenses/tests/MTLL/MTLL.txt deleted file mode 100644 index 4ba906b3d5c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MTLL/MTLL.txt +++ /dev/null @@ -1,26 +0,0 @@ - -Software License for MTL - -Copyright (c) 2007 The Trustees of Indiana University. -2008 Dresden University of Technology and the Trustees of Indiana University. -2010 SimuNova UG (haftungsbeschränkt), www.simunova.com. -All rights reserved. -Authors: Peter Gottschling and Andrew Lumsdaine - -This file is part of the Matrix Template Library - -Dresden University of Technology -- short TUD -- and Indiana University -- short IU -- have the exclusive rights to license this product under the following license. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. All redistributions of source code must retain the above copyright notice, the list of authors in the original source code, this list of conditions and the disclaimer listed in this license; - 2. All redistributions in binary form must reproduce the above copyright notice, this list of conditions and the disclaimer listed in this license in the documentation and/or other materials provided with the distribution; - 3. Any documentation included with all redistributions must include the following acknowledgement: - "This product includes software developed at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, and Dresden University of Technology. For technical information contact Andrew Lumsdaine at the Pervasive Technology Labs at Indiana University. For administrative and license questions contact the Advanced Research and Technology Institute at 1100 Waterway Blvd. Indianapolis, Indiana 46202, phone 317-274-5905, fax 317-274-5902." - Alternatively, this acknowledgement may appear in the software itself, and wherever such third-party acknowledgments normally appear. - 4. The name "MTL" shall not be used to endorse or promote products derived from this software without prior written permission from IU or TUD. For written permission, please contact Indiana University Advanced Research & Technology Institute. - 5. Products derived from this software may not be called "MTL", nor may "MTL" appear in their name, without prior written permission of Indiana University Advanced Research & Technology Institute. - -TUD and IU provide no reassurances that the source code provided does not infringe the patent or any other intellectual property rights of any other entity. TUD and IU disclaim any liability to any recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. - -LICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED "AS IS" FOR WHICH NO WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. DRESDEN UNIVERSITY OF TECHNOLOGY AND INDIANA UNIVERSITY GIVE NO WARRANTIES AND MAKE NO REPRESENTATION THAT SOFTWARE IS FREE OF INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR OTHER PROPRIETARY RIGHTS. DRESDEN UNIVERSITY OF TECHNOLOGY AND INDIANA UNIVERSITY MAKE NO WARRANTIES THAT SOFTWARE IS FREE FROM "BUGS", "VIRUSES", "TROJAN HORSES", "TRAP DOORS", "WORMS", OR OTHER HARMFUL CODE. LICENSEE ASSUMES THE ENTIRE RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS, AND TO THE PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING SOFTWARE. - diff --git a/tests/licensedcode/data/more_licenses/tests/MTLL/MTLL.yml b/tests/licensedcode/data/more_licenses/tests/MTLL/MTLL.yml deleted file mode 100644 index c5a854d635a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MTLL/MTLL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mtll diff --git a/tests/licensedcode/data/more_licenses/tests/MakeIndex/MakeIndex.txt b/tests/licensedcode/data/more_licenses/tests/MakeIndex/MakeIndex.txt deleted file mode 100644 index 98ffecab562..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MakeIndex/MakeIndex.txt +++ /dev/null @@ -1,21 +0,0 @@ - -MakeIndex Distribution Notice - -11/11/1989 - -Copyright (C) 1989 by Chen & Harrison International Systems, Inc. -Copyright (C) 1988 by Olivetti Research Center -Copyright (C) 1987 by Regents of the University of California - -Author: -Pehong Chen (phc@renoir.berkeley.edu) -Chen & Harrison International Systems, Inc. -Palo Alto, California -USA - -Permission is hereby granted to make and distribute original copies of this program provided that the copyright notice and this permission notice are preserved and provided that the recipient is not asked to waive or limit his right to redistribute copies as allowed by this permission notice and provided that anyone who receives an executable form of this program is granted access to a machine-readable form of the source code for this program at a cost not greater than reasonable reproduction, shipping, and handling costs. Executable forms of this program distributed without the source code must be accompanied by a conspicuous copy of this permission notice and a statement that tells the recipient how to obtain the source code. - -Permission is granted to distribute modified versions of all or part of this program under the conditions above with the additional requirement that the entire modified work must be covered by a permission notice identical to this permission notice. Anything distributed with and usable only in conjunction with something derived from this program, whose useful purpose is to extend or adapt or add capabilities to this program, is to be considered a modified version of this program under the requirement above. Ports of this program to other systems not supported in the distribution are also considered modified versions. All modified versions should be reported back to the author. - -This program is distributed with no warranty of any sort. No contributor accepts responsibility for the consequences of using this program or for whether it serves any particular purpose. - diff --git a/tests/licensedcode/data/more_licenses/tests/MakeIndex/MakeIndex.yml b/tests/licensedcode/data/more_licenses/tests/MakeIndex/MakeIndex.yml deleted file mode 100644 index 55124ce4aa8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/MakeIndex/MakeIndex.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - makeindex diff --git a/tests/licensedcode/data/more_licenses/tests/Motosoto/Motosoto.txt b/tests/licensedcode/data/more_licenses/tests/Motosoto/Motosoto.txt deleted file mode 100644 index 66560b5e463..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Motosoto/Motosoto.txt +++ /dev/null @@ -1,320 +0,0 @@ -MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1 - -This Motosoto Open Source License (the "License") applies to "Community -Portal Server" and related software products as well as any updatesor -maintenance releases of that software ("Motosoto Products") that are -distributed by Motosoto.Com B.V. ("Licensor"). Any Motosoto -Product licensed pursuant to this License is a "Licensed Product." Licensed -Product, in its entirety, is protected by Dutch copyright law. -This License identifies the terms under which you may use, copy, distribute or modify -Licensed Product and has been submitted to the Open Software Initiative (OSI) -for approval. - -Preamble - -This Preamble is intended to describe, in plain English, the nature and scope of -this License. However, this Preamble is not a part of this license. The legal -effect of this License is dependent only upon the terms of the License and not -this Preamble. -This License complies with the Open Source Definition and has been approved by -Open Source Initiative. Software distributed under this License may be marked -as "OSI Certified Open Source Software." - -This License provides that: - -1. You may use, sell or give away the Licensed Product, alone or as a -component of an aggregate software distribution containing -programs from several different sources. No royalty or other fee is -required. - -2. Both Source Code and executable versions of the Licensed Product, -including Modifications made by previous Contributors, are -available for your use. (The terms "Licensed Product," "Modifications," -"Contributors" and "Source Code" are defined in the License.) - -3. You are allowed to make Modifications to the Licensed Product, and you -can create Derivative Works from it. (The term "Derivative -Works" is defined in the License.) - -4. By accepting the Licensed Product under the provisions of this License, -you agree that any Modifications you make to the Licensed -Product and then distribute are governed by the provisions of this -License. In particular, you must make the Source Code of your -Modifications available to others. - -5. You may use the Licensed Product for any purpose, but the Licensor is -not providing you any warranty whatsoever, nor is the Licensor -accepting any liability in the event that the Licensed Product doesn't -work properly or causes you any injury or damages. - -6. If you sublicense the Licensed Product or Derivative Works, you may -charge fees for warranty or support, or for accepting indemnity -or liability obligations to your customers. You cannot charge for the -Source Code. - -7. If you assert any patent claims against the Licensor relating to the -Licensed Product, or if you breach any terms of the License, your -rights to the Licensed Product under this License automatically -terminate. - -You may use this License to distribute your own Derivative Works, in which -case the provisions of this License will apply to your Derivative -Works just as they do to the original Licensed Product. - -Alternatively, you may distribute your Derivative Works under any other -OSI-approved Open Source license, or under a proprietary license of -your choice. If you use any license other than this License, however, you must -continue to fulfill the requirements of this License (including the -provisions relating to publishing the Source Code) for those portions of your -Derivative Works that consist of the Licensed Product, including -the files containing Modifications. - -New versions of this License may be published from time to time. You may -choose to continue to use the license terms in this version of the -License or those from the new version. However, only the Licensor has the right -to change the License terms as they apply to the Licensed -Product. This License relies on precise definitions for certain terms. Those terms are -defined when they are first used, and the definitions are repeated for -your convenience in a Glossary at the end of the License. - -License Terms - -1. Grant of License From Licensor. - -Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: - -a. Use, reproduce, modify, display, perform, sublicense and -distribute Licensed Product or portions thereof (including -Modifications as hereinafter defined), in both Source Code or as -an executable program. "Source Code" means the preferred -form for making modifications to the Licensed Product, including -all modules contained therein, plus any associated -interface definition files, scripts used to control compilation -and installation of an executable program, or a list of -differential comparisons against the Source Code of the Licensed -Product. - -b. Create Derivative Works (as that term is defined under Dutch -copyright law) of Licensed Product by adding to or deleting -from the substance or structure of said Licensed Product. - -c. Under claims of patents now or hereafter owned or controlled -by Licensor, to make, use, sell, offer for sale, have made, -and/or otherwise dispose of Licensed Product or portions thereof, -but solely to the extent that any such claim is necessary to -enable you to make, use, sell, offer for sale, have made, and/or -otherwise dispose of Licensed Product or portions thereof or -Derivative Works thereof. - -2. Grant of License to Modifications From Contributor. - -"Modifications" means any additions to or deletions from the substance or -structure of (i) a file containing Licensed Product, or (ii) any new file -that contains any part of Licensed Product. Hereinafter in this -License, the term "Licensed Product" shall include all previous -Modifications that you receive from any Contributor. By -application of the provisions in Section 4(a) below, each person or -entity who created or contributed to the creation of, and distributed, -a Modification (a "Contributor") hereby grants you a world-wide, -royalty-free, non-exclusive license, subject to third party -intellectual property claims, to do the following: - -a. Use, reproduce, modify, display, perform, sublicense and -distribute any Modifications created by such Contributor or -portions thereof, in both Source Code or as an executable program, -either on an unmodified basis or as part of Derivative -Works. - -b. Under claims of patents now or hereafter owned or controlled by -Contributor, to make, use, sell, offer for sale, have made, -and/or otherwise dispose of Modifications or portions thereof, but -solely to the extent that any such claim is necessary to -enable you to make, use, sell, offer for sale, have made, and/or -otherwise dispose of Modifications or portions thereof or -Derivative Works thereof. - -3. Exclusions From License Grant. - -Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is -granted separate from the Licensed Product, for code that you delete from -the Licensed Product, or for combinations of the Licensed -Product with other software or hardware. No right is granted to the -trademarks of Licensor or any Contributor even if such marks are -included in the Licensed Product. Nothing in this License shall be -interpreted to prohibit Licensor from licensing under different -terms from this License any code that Licensor otherwise would have a -right to license. - -4. Your Obligations Regarding Distribution. - -a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the -terms of this License including, without limitation, Section 2. -Any Modifications that you create or to which you contribute -may be distributed only under the terms of this License or a -future version of this License released under Section 7. You must -include a copy of this License with every copy of the -Modifications you distribute. You agree not to offer or impose any -terms on any Source Code or executable version of the Licensed -Product or Modifications that alter or restrict the applicable -version of this License or the recipients' rights hereunder. -However, you may include an additional document offering the -additional rights described in Section 4(e). - -b. Availability of Source Code. You must make -available, under the terms of this License, the Source Code of the Licensed -Product and any Modifications that you distribute, either on the -same media as you distribute any executable or other form -of the Licensed Product, or via a mechanism generally accepted in -the software development community for the electronic -transfer of data (an "Electronic Distribution Mechanism"). The -Source Code for any version of Licensed Product or -Modifications that you distribute must remain available for at -least twelve (12) months after the date it initially became -available, or at least six (6) months after a subsequent version -of said Licensed Product or Modifications has been made -available. You are responsible for ensuring that the Source Code -version remains available even if the Electronic Distribution -Mechanism is maintained by a third party. - -c. Description of Modifications. You must cause any -Modifications that you create or to which you contribute, and which -you distribute, to contain a file documenting the additions, -changes or deletions you made to create or contribute to those -Modifications, and the dates of any such additions, changes or -deletions. You must include a prominent statement that the -Modifications are derived, directly or indirectly, from the -Licensed Product and include the names of the Licensor and any -Contributor to the Licensed Product in (i) the Source Code and -(ii) in any notice displayed by a version of the Licensed -Product you distribute or in related documentation in which you -describe the origin or ownership of the Licensed Product. -You may not modify or delete any preexisting copyright notices in -the Licensed Product. - -d. Intellectual Property Matters. - - i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled -"LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. - - ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - - iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. - -e. Required Notices. You must duplicate this -License in any documentation you provide along with the Source Code of any -Modifications you create or to which you contribute, and which you -distribute, wherever you describe recipients' rights -relating to Licensed Product. You must duplicate the notice -contained in Exhibit A (the "Notice") in each file of the Source -Code of any copy you distribute of the Licensed Product. If you -created a Modification, you may add your name as a -Contributor to the Notice. If it is not possible to put the Notice -in a particular Source Code file due to its structure, then -you must include such Notice in a location (such as a relevant -directory file) where a user would be likely to look for such a -notice. You may choose to offer, and charge a fee for, warranty, -support, indemnity or liability obligations to one or more -recipients of Licensed Product. However, you may do so only on -your own behalf, and not on behalf of the Licensor or any -Contributor. You must make it clear that any such warranty, -support, indemnity or liability obligation is offered by you -alone, and you hereby agree to indemnify the Licensor and every -Contributor for any liability incurred by the Licensor or such -Contributor as a result of warranty, support, indemnity or -liability terms you offer. - -f. Distribution of Executable Versions. You may -distribute Licensed Product as an executable program under a license of -your choice that may contain terms different from this License -provided (i) you have satisfied the requirements of Sections -4(a) through 4(e) for that distribution, (ii) you include a -conspicuous notice in the executable version, related documentation -and collateral materials stating that the Source Code version of -the Licensed Product is available under the terms of this -License, including a description of how and where you have -fulfilled the obligations of Section 4(b), (iii) you retain all -existing copyright notices in the Licensed Product, and (iv) you -make it clear that any terms that differ from this License are -offered by you alone, not by Licensor or any Contributor. You -hereby agree to indemnify the Licensor and every Contributor -for any liability incurred by Licensor or such Contributor as a -result of any terms you offer. - -g. Distribution of Derivative Works. You may -create Derivative Works (e.g., combinations of some or all of the Licensed -Product with other code) and distribute the Derivative Works as -products under any other license you select, with the -proviso that the requirements of this License are fulfilled for -those portions of the Derivative Works that consist of the -Licensed Product or any Modifications thereto. - -5. Inability to Comply Due to Statute or -Regulation. - -If it is impossible for you to comply with any of the terms of this License with -respect to some or all of the Licensed Product due to statute, judicial -order, or regulation, then you must (i) comply with the terms of -this License to the maximum extent possible, (ii) cite the statute or -regulation that prohibits you from adhering to the License, and -(iii) describe the limitations and the code they affect. Such description -must be included in the LEGAL file described in Section 4(d), -and must be included with all distributions of the Source Code. Except to -the extent prohibited by statute or regulation, such -description must be sufficiently detailed for a recipient of ordinary -skill at computer programming to be able to understand it. - -6. Application of This License. - -This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. - -7. Versions of This License. - -a. Version. The Motosoto Open Source License is derived from the Jabber Open Source License. All changes are related to applicable law and the location of court. - -b. New Versions. Licensor may publish from time to time revised and/or new versions of the License. - -c. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product under the terms of any subsequent version of the License published by Licensor. No one other than Lic ensor has the right to modify the terms -applicable to Licensed Product created under this License. - -d. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not -confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. - -8. Disclaimer of Warranty. - -LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT -WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT -LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED -PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -9. Termination. - -a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. -All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. - -b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file -such an action is referred to herein as "Respondent") alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable -reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and -payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice -Period. - -c. Reasonable Value of This License. If you assert a -patent infringement claim against Respondent alleging that Licensed -Product directly or indirectly infringes any patent where such -claim is resolved (such as by license or settlement) prior to -the initiation of patent infringement litigation, then the -reasonable value of the licenses granted by said Respondent under -Sections 1 and 2 shall be taken into account in determining the -amount or value of any payment or license. - -d. No Retroactive Effect of Termination. In the -event of termination under Sections 9(a) or 9(b) above, all end user license -agreements (excluding licenses to distributors and reselle rs) -that have been validly granted by you or any distributor -hereunder prior to termination shall survive -termination. - -10. Limitation of Liability. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY -DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, -BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY diff --git a/tests/licensedcode/data/more_licenses/tests/Motosoto/Motosoto.yml b/tests/licensedcode/data/more_licenses/tests/Motosoto/Motosoto.yml deleted file mode 100644 index 0501a22f06a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Motosoto/Motosoto.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - motosoto-0.9.1 diff --git a/tests/licensedcode/data/more_licenses/tests/Multics/Multics.txt b/tests/licensedcode/data/more_licenses/tests/Multics/Multics.txt deleted file mode 100644 index 1bba6d0f723..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Multics/Multics.txt +++ /dev/null @@ -1,38 +0,0 @@ -Multics License - -Historical Background - -This edition of the Multics software materials and documentation is -provided and donated to Massachusetts Institute of Technology by Group -BULL including BULL HN Information Systems Inc. as a contribution to -computer science knowledge. This donation is made also to give evidence -of the common contributions of Massachusetts Institute of Technology, -Bell Laboratories, General Electric, Honeywell Information Systems -Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems -Inc. to the development of this operating system. Multics development -was initiated by Massachusetts Institute of Technology Project MAC -(1963-1970), renamed the MIT Laboratory for Computer Science and -Artificial Intelligence in the mid 1970s, under the leadership of -Professor Fernando Jose Corbato. Users consider that Multics provided the -best software architecture for managing computer hardware properly and -for executing programs. Many subsequent operating systems incorporated -Multics principles. Multics was distributed in 1975 to 2000 by Group -Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as -successor in interest by change in name only to Honeywell Bull Inc. and -Honeywell Information Systems Inc. . - ------------------------------------------------------------ - -Permission to use, copy, modify, and distribute these programs and their -documentation for any purpose and without fee is hereby granted,provided -that the below copyright notice and historical background appear in all -copies and that both the copyright notice and historical background and -this permission notice appear in supporting documentation, and that -the names of MIT, HIS, BULL or BULL HN not be used in advertising or -publicity pertaining to distribution of the programs without specific -prior written permission. -Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information -Systems Inc. -Copyright 2006 by BULL HN Information Systems Inc. -Copyright 2006 by Bull SAS -All Rights Reserved diff --git a/tests/licensedcode/data/more_licenses/tests/Multics/Multics.yml b/tests/licensedcode/data/more_licenses/tests/Multics/Multics.yml deleted file mode 100644 index 5d9677d8dd5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Multics/Multics.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - multics diff --git a/tests/licensedcode/data/more_licenses/tests/Mup/Mup.txt b/tests/licensedcode/data/more_licenses/tests/Mup/Mup.txt deleted file mode 100644 index 669a441cf6d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Mup/Mup.txt +++ /dev/null @@ -1,13 +0,0 @@ - -Copyright (c) 1995-2012 by Arkkra Enterprises. 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. Any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation. including the reasons for the changes, and the names of those who made the modifications. - -DISCLAIMER - -THIS SOFTWARE IS PROVIDED "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 AUTHORS 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/tests/licensedcode/data/more_licenses/tests/Mup/Mup.yml b/tests/licensedcode/data/more_licenses/tests/Mup/Mup.yml deleted file mode 100644 index 8ebef0e9513..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Mup/Mup.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mup diff --git a/tests/licensedcode/data/more_licenses/tests/NASA/NASA-1.3.txt b/tests/licensedcode/data/more_licenses/tests/NASA/NASA-1.3.txt deleted file mode 100644 index 6951bfc03f8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NASA/NASA-1.3.txt +++ /dev/null @@ -1,77 +0,0 @@ -NASA OPEN SOURCE AGREEMENT VERSION 1.3 - -THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY"). THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT. - -Government Agency: _____ Government Agency Original Software Designation: __ Government Agency Original Software Title: _____ User Registration Requested. Please Visit http://___ Government Agency Point of Contact for Original Software: _____ - -DEFINITIONS -A. "Contributor" means Government Agency, as the developer of the Original Software, and any entity that makes a Modification. B. "Covered Patents" mean patent claims licensable by a Contributor that are necessarily infringed by the use or sale of its Modification alone or when combined with the Subject Software. C. "Display" means the showing of a copy of the Subject Software, either directly or by means of an image, or any other device. D. "Distribution" means conveyance or transfer of the Subject Software, regardless of means, to another. E. "Larger Work" means computer software that combines Subject Software, or portions thereof, with software separate from the Subject Software that is not governed by the terms of this Agreement. F. "Modification" means any alteration of, including addition to or deletion from, the substance or structure of either the Original Software or Subject Software, and includes derivative works, as that term is defined in the Copyright Statute, 17 USC 101. However, the act of including Subject Software as part of a Larger Work does not in and of itself constitute a Modification. G. "Original Software" means the computer software first released under this Agreement by Government Agency with Government Agency designation __ and entitled _________, including source code, object code and accompanying documentation, if any. H. "Recipient" means anyone who acquires the Subject Software under this Agreement, including all Contributors. I. "Redistribution" means Distribution of the Subject Software after a Modification has been made. J. "Reproduction" means the making of a counterpart, image or copy of the Subject Software. K. "Sale" means the exchange of the Subject Software for money or equivalent value. L. "Subject Software" means the Original Software, Modifications, or any respective parts thereof. M. "Use" means the application or employment of the Subject Software for any purpose. - -GRANT OF RIGHTS -A. Under Non-Patent Rights: Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own contribution to the Subject Software, hereby grants to each Recipient a non-exclusive, world-wide, royalty-free license to engage in the following activities pertaining to the Subject Software: - -Use -Distribution -Reproduction -Modification -Redistribution -Display -B. Under Patent Rights: Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own contribution to the Subject Software, hereby grants to each Recipient under Covered Patents a non-exclusive, world-wide, royalty-free license to engage in the following activities pertaining to the Subject Software: - -Use -Distribution -Reproduction -Sale -Offer for Sale -C. The rights granted under Paragraph B. also apply to the combination of a Contributor's Modification and the Subject Software if, at the time the Modification is added by the Contributor, the addition of such Modification causes the combination to be covered by the Covered Patents. It does not apply to any other combinations that include a Modification. - -D. The rights granted in Paragraphs A. and B. allow the Recipient to sublicense those same rights. Such sublicense must be under the same terms and conditions of this Agreement. - -OBLIGATIONS OF RECIPIENT -A. Distribution or Redistribution of the Subject Software must be made under this Agreement except for additions covered under paragraph 3H. - -Whenever a Recipient distributes or redistributes the Subject Software, a copy of this Agreement must be included with each copy of the Subject Software; and -If Recipient distributes or redistributes the Subject Software in any form other than source code, Recipient must also make the source code freely available, and must provide with each copy of the Subject Software information on how to obtain the source code in a reasonable manner on or through a medium customarily used for software exchange. -B. Each Recipient must ensure that the following copyright notice appears prominently in the Subject Software: - -[Government Agency will insert the applicable copyright notice in each agreement accompanying the initial distribution of original software and remove this bracketed language.] - -[The following copyright notice will be used if created by a contractor pursuant to Government Agency contract and rights obtained from creator by assignment. Government Agency will insert the year and its Agency designation and remove the bracketed language.] Copyright � {YEAR} United States Government as represented by ___ ____. All Rights Reserved. - -[The following copyright notice will be used if created by civil servants only. Government Agency will insert the year and its Agency designation and remove the bracketed language.] Copyright � {YEAR} United States Government as represented by ____ ____. No copyright is claimed in the United States under Title 17, U.S.Code. All Other Rights Reserved. - -C. Each Contributor must characterize its alteration of the Subject Software as a Modification and must identify itself as the originator of its Modification in a manner that reasonably allows subsequent Recipients to identify the originator of the Modification. In fulfillment of these requirements, Contributor must include a file (e.g., a change log file) that describes the alterations made and the date of the alterations, identifies Contributor as originator of the alterations, and consents to characterization of the alterations as a Modification, for example, by including a statement that the Modification is derived, directly or indirectly, from Original Software provided by Government Agency. Once consent is granted, it may not thereafter be revoked. - -D. A Contributor may add its own copyright notice to the Subject Software. Once a copyright notice has been added to the Subject Software, a Recipient may not remove it without the express permission of the Contributor who added the notice. - -E. A Recipient may not make any representation in the Subject Software or in any promotional, advertising or other material that may be construed as an endorsement by Government Agency or by any prior Recipient of any product or service provided by Recipient, or that may seek to obtain commercial advantage by the fact of Government Agency's or a prior Recipient's participation in this Agreement. - -F. In an effort to track usage and maintain accurate records of the Subject Software, each Recipient, upon receipt of the Subject Software, is requested to register with Government Agency by visiting the following website: ______. Recipient's name and personal information shall be used for statistical purposes only. Once a Recipient makes a Modification available, it is requested that the Recipient inform Government Agency at the web site provided above how to access the Modification. - -[Alternative paragraph for use when a web site for release and monitoring of subject software will not be supported by releasing Government Agency] In an effort to track usage and maintain accurate records of the Subject Software, each Recipient, upon receipt of the Subject Software, is requested to provide Government Agency, by e-mail to the Government Agency Point of Contact listed in clause 5.F., the following information: ______. Recipient's name and personal information shall be used for statistical purposes only. Once a Recipient makes a Modification available, it is requested that the Recipient inform Government Agency, by e-mail to the Government Agency Point of Contact listed in clause 5.F., how to access the Modification. - -G. Each Contributor represents that that its Modification is believed to be Contributor's original creation and does not violate any existing agreements, regulations, statutes or rules, and further that Contributor has sufficient rights to grant the rights conveyed by this Agreement. - -H. A Recipient may choose to offer, and to charge a fee for, warranty, support, indemnity and/or liability obligations to one or more other Recipients of the Subject Software. A Recipient may do so, however, only on its own behalf and not on behalf of Government Agency or any other Recipient. Such a Recipient must make it absolutely clear that any such warranty, support, indemnity and/or liability obligation is offered by that Recipient alone. Further, such Recipient agrees to indemnify Government Agency and every other Recipient for any liability incurred by them as a result of warranty, support, indemnity and/or liability offered by such Recipient. - -I. A Recipient may create a Larger Work by combining Subject Software with separate software not governed by the terms of this agreement and distribute the Larger Work as a single product. In such case, the Recipient must make sure Subject Software, or portions thereof, included in the Larger Work is subject to this Agreement. - -J. Notwithstanding any provisions contained herein, Recipient is hereby put on notice that export of any goods or technical data from the United States may require some form of export license from the U.S. Government. Failure to obtain necessary export licenses may result in criminal liability under U.S. laws. Government Agency neither represents that a license shall not be required nor that, if required, it shall be issued. Nothing granted herein provides any such export license. - -DISCLAIMER OF WARRANTIES AND LIABILITIES; WAIVER AND INDEMNIFICATION -A. No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS." - -B. Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT. - -GENERAL TERMS -A. Termination: This Agreement and the rights granted hereunder will terminate automatically if a Recipient fails to comply with these terms and conditions, and fails to cure such noncompliance within thirty (30) days of becoming aware of such noncompliance. Upon termination, a Recipient agrees to immediately cease use and distribution of the Subject Software. All sublicenses to the Subject Software properly granted by the breaching Recipient shall survive any such termination of this Agreement. - -B. Severability: 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. - -C. Applicable Law: This Agreement shall be subject to United States federal law only for all purposes, including, but not limited to, determining the validity of this Agreement, the meaning of its provisions and the rights, obligations and remedies of the parties. - -D. Entire Understanding: This Agreement constitutes the entire understanding and agreement of the parties relating to release of the Subject Software and may not be superseded, modified or amended except by further written agreement duly executed by the parties. - -E. Binding Authority: By accepting and using the Subject Software under this Agreement, a Recipient affirms its authority to bind the Recipient to all terms and conditions of this Agreement and that that Recipient hereby agrees to all terms and conditions herein. - -F. Point of Contact: Any Recipient contact with Government Agency is to be directed to the designated representative as follows: ___________. diff --git a/tests/licensedcode/data/more_licenses/tests/NASA/NASA-1.3.yml b/tests/licensedcode/data/more_licenses/tests/NASA/NASA-1.3.yml deleted file mode 100644 index 5f60b2da342..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NASA/NASA-1.3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nasa-1.3 diff --git a/tests/licensedcode/data/more_licenses/tests/NBPL/NBPL-1.0 b/tests/licensedcode/data/more_licenses/tests/NBPL/NBPL-1.0 deleted file mode 100644 index 811f0f09183..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NBPL/NBPL-1.0 +++ /dev/null @@ -1,122 +0,0 @@ -The Net Boolean Public License - -Version 1, 22 August 1998 -Copyright 1998, Net Boolean Incorporated, Redwood City, California, USA -All Rights Reserved. - -Note: -This license is derived from the "Artistic License" as distributed -with the Perl Programming Language. Its terms are different from -those of the "Artistic License." - -PREAMBLE - -The intent of this document is to state the conditions under which a -Package may be copied, such that the Copyright Holder maintains some -semblance of artistic control over the development of the package, - while giving the users of the package the right to use and distribute - the Package in a more-or-less customary fashion, plus the right to make - reasonable modifications. - - Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder. - - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. - - "You" is you, if you're thinking about copying or distributing - this Package. - - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people involved, - and so on. (You will not be required to justify it to the - Copyright Holder, but only to the computing community at large - as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions they received it. - - 1. You may make and give away verbatim copies of the source form of the - Standard Version of this Package without restriction, provided that you - duplicate all of the original copyright notices and associated disclaimers. - - 2. You may apply bug fixes, portability fixes and other modifications - derived from the Public Domain or from the Copyright Holder. A Package - modified in such a way shall still be considered the Standard Version. - - 3. You may otherwise modify your copy of this Package in any way, provided - that you insert a prominent notice in each changed file stating how and - when you changed that file, and provided that you do at least ONE of the - following: - - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or - an equivalent medium, or placing the modifications on a major archive - site such as uunet.uu.net, or by allowing the Copyright Holder to include - your modifications in the Standard Version of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided, and provide - a separate manual page for each non-standard executable that clearly - documents how it differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - - 4. You may distribute the programs of this Package in object code or - executable form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where - to get the Standard Version. - - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - - c) accompany any non-standard executables with their corresponding - Standard Version executables, giving the non-standard executables - non-standard names, and clearly documenting the differences in manual - pages (or equivalent), together with instructions on where to get - the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - - 5. You may charge a reasonable copying fee for any distribution of this - Package. You may charge any fee you choose for support of this Package. - You may not charge a fee for this Package itself. However, - you may distribute this Package in aggregate with other (possibly - commercial) programs as part of a larger (possibly commercial) software - distribution provided that you do not advertise this Package as a - product of your own. - - 6. The scripts and library files supplied as input to or produced as - output from the programs of this Package do not automatically fall - under the copyright of this Package, but belong to whomever generated - them, and may be sold commercially, and may be aggregated with this - Package. - - 7. C subroutines supplied by you and linked into this Package in order - to emulate subroutines and variables of the language defined by this - Package shall not be considered part of this Package, but are the - equivalent of input as in Paragraph 6, provided these subroutines do - not change the language in any way that would cause it to fail the - regression tests for the language. - - 8. The name of the Copyright Holder may not be used to endorse or promote - products derived from this software without specific prior written permission. - - 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - The End diff --git a/tests/licensedcode/data/more_licenses/tests/NBPL/NBPL-1.yml b/tests/licensedcode/data/more_licenses/tests/NBPL/NBPL-1.yml deleted file mode 100644 index f1e17d6fa03..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NBPL/NBPL-1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nbpl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/NGPL/NGPL.txt b/tests/licensedcode/data/more_licenses/tests/NGPL/NGPL.txt deleted file mode 100644 index 3e1bcdaa1f2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NGPL/NGPL.txt +++ /dev/null @@ -1,43 +0,0 @@ - -NETHACK GENERAL PUBLIC LICENSE - -(Copyright 1989 M. Stephenson) -(Based on the BISON general public license, copyright 1988 Richard M. Stallman) - -Everyone is permitted to copy and distribute verbatim copies of this license, but changing it is not allowed. You can also use this wording to make the terms for other programs. -The license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share NetHack. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement. - -Specifically, we want to make sure that you have the right to give away copies of NetHack, that you receive source code or else can get it if you want it, that you can change NetHack or use pieces of it in new free programs, and that you know you can do these things. - -To make sure that everyone has such rights, we have to forbid you to deprive anyone else of these rights. For example, if you distribute copies of NetHack, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. - -Also, for our own protection, we must make certain that everyone finds out that there is no warranty for NetHack. If NetHack is modified by someone else and passed on, we want its recipients to know that what they have is not what we distributed. - -Therefore we (Mike Stephenson and other holders of NetHack copyrights) make the following terms which say what you must do to be allowed to distribute or change NetHack. - -COPYING POLICIES - -You may copy and distribute verbatim copies of NetHack source code as you receive it, in any medium, provided that you keep intact the notices on all files that refer to copyrights, to this License Agreement, and to the absence of any warranty; and give any other recipients of the NetHack program a copy of this License Agreement along with the program. -You may modify your copy or copies of NetHack or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above (including distributing this License Agreement), provided that you also do the following: -a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and - -b) cause the whole of any work that you distribute or publish, that in whole or in part contains or is a derivative of NetHack or any part thereof, to be licensed at no charge to all third parties on terms identical to those contained in this License Agreement (except that you may choose to grant more extensive warranty protection to some or all third parties, at your option) - -c) You may charge a distribution fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -You may copy and distribute NetHack (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: -a) accompany it with the complete machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, - -b) accompany it with full information as to how to obtain the complete machine-readable source code from an appropriate archive site. (This alternative is allowed only for noncommercial distribution.) - -For these purposes, complete source code means either the full source distribution as originally released over Usenet or updated copies of the files in this distribution used to create the object code or executable. - -You may not copy, sublicense, distribute or transfer NetHack except as expressly provided under this License Agreement. Any attempt otherwise to copy, sublicense, distribute or transfer NetHack is void and your rights to use the program under this License agreement shall be automatically terminated. However, parties who have received computer software programs from you with this License Agreement will not have their licenses terminated so long as such parties remain in full compliance. -Stated plainly: You are permitted to modify NetHack, or otherwise use parts of NetHack, provided that you comply with the conditions specified above; in particular, your modified NetHack or program containing parts of NetHack must remain freely available as provided in this License Agreement. In other words, go ahead and share NetHack, but don't try to stop anyone else from sharing it farther. -[ Home | Version 3.4.3 | Contact Us ] - - - -Hosted by: -NetHack is Copyright 1985-2003 by Stichting Mathematisch Centrum and M. Stephenson. See our license for details. -This site is Copyright 1999-2009 by Kenneth Lorber, Kensington, Maryland. diff --git a/tests/licensedcode/data/more_licenses/tests/NGPL/NGPL.yml b/tests/licensedcode/data/more_licenses/tests/NGPL/NGPL.yml deleted file mode 100644 index 0cc8ce6c430..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NGPL/NGPL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ngpl diff --git a/tests/licensedcode/data/more_licenses/tests/NPL/NPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/NPL/NPL-1.0.txt deleted file mode 100644 index aa02ec597e9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NPL/NPL-1.0.txt +++ /dev/null @@ -1,429 +0,0 @@ - NETSCAPE PUBLIC LICENSE -Version 1.0 - -1. Definitions. - - 1.1. ``Contributor'' means each entity that creates or contributes - to the creation of Modifications. - - 1.2. ``Contributor Version'' means the combination of the - Original Code, prior Modifications used by a Contributor, and the - Modifications made by that particular Contributor. - - 1.3. ``Covered Code'' means the Original Code or Modifications or - the combination of the Original Code and Modifications, in each - case including portions thereof. - - 1.4. ``Electronic Distribution Mechanism'' means a mechanism - generally accepted in the software development community for the - electronic transfer of data. - - 1.5. ``Executable'' means Covered Code in any form other than - Source Code. - - 1.6. ``Initial Developer'' means the individual or entity identified - as the Initial Developer in the Source Code notice required by - Exhibit A. - - 1.7. ``Larger Work'' means a work which combines Covered Code - or portions thereof with code not governed by the terms of this - License. - - 1.8. ``License'' means this document. - - 1.9. ``Modifications'' means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, - a Modification is: - - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code - or previous Modifications. - - 1.10. ``Original Code'' means Source Code of computer software code - which is described in the Source Code notice required by Exhibit - A as Original Code, and which, at the time of its release under - this License is not already Covered Code governed by this License. - - 1.11. ``Source Code'' means the preferred form of the Covered - Code for making modifications to it, including all modules it - contains, plus any associated interface definition files, scripts - used to control compilation and installation of an Executable, - or a list of source code differential comparisons against either - the Original Code or another well known, available Covered Code of - the Contributor's choice. The Source Code can be in a compressed - or archival form, provided the appropriate decompression or - de-archiving software is widely available for no charge. - - 1.12. ``You'' means an individual or a legal entity exercising - rights under, and complying with all of the terms of, this License - or a future version of this License issued under Section 6.1. For - legal entities, ``You'' includes any entity which controls, is - controlled by, or is under common control with You. For purposes - of this definition, ``control'' means (a) the power, direct or - indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of fifty percent - (50%) or more of the outstanding shares or beneficial ownership - of such entity. - -2. Source Code License. - - 2.1. The Initial Developer Grant. The Initial Developer hereby - grants You a world-wide, royalty-free, non-exclusive license, - subject to third party intellectual property claims: - - (a) to use, reproduce, modify, display, perform, sublicense - and distribute the Original Code (or portions thereof) with - or without Modifications, or as part of a Larger Work; and - - (b) under patents now or hereafter owned or controlled - by Initial Developer, to make, have made, use and sell - (``Utilize'') the Original Code (or portions thereof), but - solely to the extent that any such patent is reasonably - necessary to enable You to Utilize the Original Code (or - portions thereof) and not to any greater extent that may be - necessary to Utilize further Modifications or combinations. - - 2.2. Contributor Grant. Each Contributor hereby grants You a - world-wide, royalty-free, non-exclusive license, subject to third - party intellectual property claims: - - (a) to use, reproduce, modify, display, perform, sublicense - and distribute the Modifications created by such Contributor - (or portions thereof) either on an unmodified basis, with - other Modifications, as Covered Code or as part of a Larger - Work; and - - (b) under patents now or hereafter owned or controlled - by Contributor, to Utilize the Contributor Version (or - portions thereof), but solely to the extent that any such - patent is reasonably necessary to enable You to Utilize - the Contributor Version (or portions thereof), and not to - any greater extent that may be necessary to Utilize further - Modifications or combinations. - -3. Distribution Obligations. - - 3.1. Application of License. The Modifications which You create or - to which You contribute are governed by the terms of this License, - including without limitation Section 2.2. The Source Code version - of Covered Code may be distributed only under the terms of this - License or a future version of this License released under Section - 6.1, and You must include a copy of this License with every copy - of the Source Code You distribute. You may not offer or impose - any terms on any Source Code version that alters or restricts - the applicable version of this License or the recipients' rights - hereunder. However, You may include an additional document offering - the additional rights described in Section 3.5. - - 3.2. Availability of Source Code. Any Modification which You - create or to which You contribute must be made available in - Source Code form under the terms of this License either on the - same media as an Executable version or via an accepted Electronic - Distribution Mechanism to anyone to whom you made an Executable - version available; and if made available via Electronic Distribution - Mechanism, must remain available for at least twelve (12) months - after the date it initially became available, or at least six (6) - months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - - 3.3. Description of Modifications. You must cause all Covered Code - to which you contribute to contain a file documenting the changes - You made to create that Covered Code and the date of any change. You - must include a prominent statement that the Modification is derived, - directly or indirectly, from Original Code provided by the Initial - Developer and including the name of the Initial Developer in (a) - the Source Code, and (b) in any notice in an Executable version or - related documentation in which You describe the origin or ownership - of the Covered Code. - - 3.4. Intellectual Property Matters - - (a) Third Party Claims. If You have knowledge that a - party claims an intellectual property right in particular - functionality or code (or its utilization under this License), - you must include a text file with the source code distribution - titled ``LEGAL'' which describes the claim and the party - making the claim in sufficient detail that a recipient will - know whom to contact. If you obtain such knowledge after - You make Your Modification available as described in Section - 3.2, You shall promptly modify the LEGAL file in all copies - You make available thereafter and shall take other steps - (such as notifying appropriate mailing lists or newsgroups) - reasonably calculated to inform those who received the - Covered Code that new knowledge has been obtained. - - (b) Contributor APIs. If Your Modification is an application - programming interface and You own or control patents which - are reasonably necessary to implement that API, you must - also include this information in the LEGAL file. - - 3.5. Required Notices. You must duplicate the notice in Exhibit - A in each file of the Source Code, and this License in any - documentation for the Source Code, where You describe recipients' - rights relating to Covered Code. If You created one or more - Modification(s), You may add your name as a Contributor to the - notice described in Exhibit A. If it is not possible to put such - notice in a particular Source Code file due to its structure, - then you must include such notice in a location (such as a - relevant directory file) where a user would be likely to look for - such a notice. You may choose to offer, and to charge a fee for, - warranty, support, indemnity or liability obligations to one or - more recipients of Covered Code. However, You may do so only on - Your own behalf, and not on behalf of the Initial Developer or - any Contributor. You must make it absolutely clear than any such - warranty, support, indemnity or liability obligation is offered by - You alone, and You hereby agree to indemnify the Initial Developer - and every Contributor for any liability incurred by the Initial - Developer or such Contributor as a result of warranty, support, - indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. You may distribute - Covered Code in Executable form only if the requirements of Section - 3.1-3.5 have been met for that Covered Code, and if You include a - notice stating that the Source Code version of the Covered Code is - available under the terms of this License, including a description - of how and where You have fulfilled the obligations of Section - 3.2. The notice must be conspicuously included in any notice in an - Executable version, related documentation or collateral in which - You describe recipients' rights relating to the Covered Code. You - may distribute the Executable version of Covered Code under a - license of Your choice, which may contain terms different from - this License, provided that You are in compliance with the terms - of this License and that the license for the Executable version - does not attempt to limit or alter the recipient's rights in the - Source Code version from the rights set forth in this License. If - You distribute the Executable version under a different license - You must make it absolutely clear that any terms which differ - from this License are offered by You alone, not by the Initial - Developer or any Contributor. You hereby agree to indemnify the - Initial Developer and every Contributor for any liability incurred - by the Initial Developer or such Contributor as a result of any - such terms You offer. - - 3.7. Larger Works. You may create a Larger Work by combining - Covered Code with other code not governed by the terms of this - License and distribute the Larger Work as a single product. In - such a case, You must make sure the requirements of this License - are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of - this License with respect to some or all of the Covered Code due - to statute or regulation then You must: (a) comply with the terms - of this License to the maximum extent possible; and (b) describe - the limitations and the code they affect. Such description must - be included in the LEGAL file described in Section 3.4 and must - be included with all distributions of the Source Code. Except to - the extent prohibited by statute or regulation, such description - must be sufficiently detailed for a recipient of ordinary skill - to be able to understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A, and to related Covered Code. - -6. Versions of the License. - - 6.1. New Versions. Netscape Communications Corporation - (``Netscape'') may publish revised and/or new versions of - the License from time to time. Each version will be given a - distinguishing version number. - - 6.2. Effect of New Versions. Once Covered Code has been published - under a particular version of the License, You may always continue - to use it under the terms of that version. You may also choose to - use such Covered Code under the terms of any subsequent version of - the License published by Netscape. No one other than Netscape has - the right to modify the terms applicable to Covered Code created - under this License. - - 6.3. Derivative Works. If you create or use a modified version - of this License (which you may only do in order to apply it to - code which is not already Covered Code governed by this License), - you must (a) rename Your license so that the phrases ``Mozilla'', - ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or any confusingly - similar phrase do not appear anywhere in your license and (b) - otherwise make it clear that your version of the license contains - terms which differ from the Mozilla Public License and Netscape - Public License. (Filling in the name of the Initial Developer, - Original Code or Contributor in the notice described in Exhibit - A shall not of themselves be deemed to be modifications of this - License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' - BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, - INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE - IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR - NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE - OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE - DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY - OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, - REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES - AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS - AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to - cure such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by - their nature, must remain in effect beyond the termination of this - License shall survive. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE - INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR - OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE - LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, - INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, - WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, - COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL - DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF - THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL - NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM - SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS - SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION - OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT - EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a ``commercial item,'' as that term is defined - in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer - software'' and ``commercial computer software documentation,'' as - such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent - with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 - (June 1995), all U.S. Government End Users acquire Covered Code - with only those rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed - by California law provisions (except to the extent applicable - law, if any, provides otherwise), excluding its conflict-of-law - provisions. With respect to disputes in which at least one party is - a citizen of, or an entity chartered or registered to do business - in, the United States of America: (a) unless otherwise agreed - in writing, all disputes relating to this License (excepting any - dispute relating to intellectual property rights) shall be subject - to final and binding arbitration, with the losing party paying - all costs of arbitration; (b) any arbitration relating to this - Agreement shall be held in Santa Clara County, California, under - the auspices of JAMS/EndDispute; and (c) any litigation relating - to this Agreement shall be subject to the jurisdiction of the - Federal Courts of the Northern District of California, with venue - lying in Santa Clara County, California, with the losing party - responsible for costs, including without limitation, court costs - and reasonable attorneys fees and expenses. The application of - the United Nations Convention on Contracts for the International - Sale of Goods is expressly excluded. Any law or regulation which - provides that the language of a contract shall be construed against - the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. - - Except in cases where another Contributor has failed to comply with - Section 3.4, You are responsible for damages arising, directly or - indirectly, out of Your utilization of rights under this License, - based on the number of copies of Covered Code you made available, - the revenues you received from utilizing such rights, and other - relevant factors. You agree to work with affected parties to - distribute responsibility on an equitable basis. - -AMENDMENTS Additional Terms applicable to the Netscape Public License. - - I. Effect. These additional terms described in this Netscape - Public License -- Amendments shall apply to the Mozilla Communicator - client code and to all Covered Code under this License. - - II. ``Netscape's Branded Code'' means Covered Code that Netscape - distributes and/or permits others to distribute under one or more - trademark(s) which are controlled by Netscape but which are not - licensed for use under this License. - - III. Netscape and logo. This License does not grant any rights - to use the trademark ``Netscape'', the ``Netscape N and horizon'' - logo or the Netscape lighthouse logo, even if such marks are - included in the Original Code. - - IV. Inability to Comply Due to Contractual Obligation. Prior to - licensing the Original Code under this License, Netscape has - licensed third party code for use in Netscape's Branded Code. To - the extent that Netscape is limited contractually from making such - third party code available under this License, Netscape may choose - to reintegrate such code into Covered Code without being required - to distribute such code in Source Code form, even if such code - would otherwise be considered ``Modifications'' under this License. - - V. Use of Modifications and Covered Code by Initial Developer. - - V.1. In General. The obligations of Section 3 apply to - Netscape, except to the extent specified in this Amendment, - Section V.2 and V.3. - - V.2. Other Products. Netscape may include Covered Code in - products other than the Netscape's Branded Code which are - released by Netscape during the two (2) years following the - release date of the Original Code, without such additional - products becoming subject to the terms of this License, - and may license such additional products on different terms - from those contained in this License. - - V.3. Alternative Licensing. Netscape may license the Source - Code of Netscape's Branded Code, including Modifications - incorporated therein, without such additional products - becoming subject to the terms of this License, and may - license such additional products on different terms from - those contained in this License. - - VI. Arbitration and Litigation. Notwithstanding the limitations - of Section 11 above, the provisions regarding arbitration and - litigation in Section 11(a), (b) and (c) of the License shall - apply to all disputes relating to this License. - -EXHIBIT A. - - ``The contents of this file are subject to the Netscape Public - License Version 1.0 (the "License"); you may not use this file - except in compliance with the License. You may obtain a copy of - the License at http://www.mozilla.org/NPL/ - - Software distributed under the License is distributed on an - "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - implied. See the License for the specific language governing rights - and limitations under the License. - - The Original Code is Mozilla Communicator client code, released - March 31, 1998. - - The Initial Developer of the Original Code is Netscape - Communications Corporation. Portions created by Netscape are - Copyright (C) 1998 Netscape Communications Corporation. All Rights - Reserved. - - Contributor(s): ______________________________________.'' - - - - [NOTE: The text of this Exhibit A may differ slightly from the text - of the notices in the Source Code files of the Original Code. This - is due to time constraints encountered in simultaneously finalizing - the License and in preparing the Original Code for release. You - should use the text of this Exhibit A rather than the text found - in the Original Code Source Code for Your Modifications.] diff --git a/tests/licensedcode/data/more_licenses/tests/NPL/NPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/NPL/NPL-1.0.yml deleted file mode 100644 index 1bdb7e70704..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NPL/NPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - npl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/NPOSL/NPOSL-3.0.txt b/tests/licensedcode/data/more_licenses/tests/NPOSL/NPOSL-3.0.txt deleted file mode 100644 index 7ace4066fa5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NPOSL/NPOSL-3.0.txt +++ /dev/null @@ -1,59 +0,0 @@ -Non-Profit Open Software License ("Non-Profit OSL") 3.0 - -This Non-Profit Open Software License ("Non-Profit OSL") version 3.0 (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: - -Licensed under the Non-Profit Open Software License version 3.0 - -1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: - -a) to reproduce the Original Work in copies, either alone or as part of a collective work; - -b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Non-Profit Open Software License or as provided in section 17(d); - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. The Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. - -9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. - -12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Open Software License" or "OSL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. - -17) Non-Profit Amendment. The name of this amended version of the Open Software License ("OSL 3.0") is "Non-Profit Open Software License 3.0". The original OSL 3.0 license has been amended as follows: - -(a) Licensor represents and declares that it is a not-for-profit organization that derives no revenue whatsoever from the distribution of the Original Work or Derivative Works thereof, or from support or services relating thereto. - -(b) The first sentence of Section 7 ["Warranty of Provenance"] of OSL 3.0 has been stricken. For Original Works licensed under this Non-Profit OSL 3.0, LICENSOR OFFERS NO WARRANTIES WHATSOEVER. - -(c) In the first sentence of Section 8 ["Limitation of Liability"] of this Non-Profit OSL 3.0, the list of damages for which LIABILITY IS LIMITED now includes "direct" damages. - -(d) The proviso in Section 1(c) of this License now refers to this "Non-Profit Open Software License" rather than the "Open Software License". You may distribute or communicate the Original Work or Derivative Works thereof under this Non-Profit OSL 3.0 license only if You make the representation and declaration in paragraph (a) of this Section 17. Otherwise, You shall distribute or communicate the Original Work or Derivative Works thereof only under the OSL 3.0 license and You shall publish clear licensing notices so stating. Also by way of clarification, this License does not authorize You to distribute or communicate works under this Non-Profit OSL 3.0 if You received them under the original OSL 3.0 license. - -(e) Original Works licensed under this license shall reference "Non-Profit OSL 3.0" in licensing notices to distinguish them from works licensed under the original OSL 3.0 license. diff --git a/tests/licensedcode/data/more_licenses/tests/NPOSL/NPOSL-3.0.yml b/tests/licensedcode/data/more_licenses/tests/NPOSL/NPOSL-3.0.yml deleted file mode 100644 index 0bf89f1f5fa..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/NPOSL/NPOSL-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - nosl-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/NTP/NTP-COPYRIGHT.yml b/tests/licensedcode/data/more_licenses/tests/NTP/NTP-COPYRIGHT.yml index 8e9ec5f972c..7c82cebed84 100644 --- a/tests/licensedcode/data/more_licenses/tests/NTP/NTP-COPYRIGHT.yml +++ b/tests/licensedcode/data/more_licenses/tests/NTP/NTP-COPYRIGHT.yml @@ -1,2 +1,2 @@ license_expressions: - - ntpl + - mit-old-style-no-advert diff --git a/tests/licensedcode/data/more_licenses/tests/NTP/NTP.yml b/tests/licensedcode/data/more_licenses/tests/NTP/NTP.yml index 8e9ec5f972c..7c82cebed84 100644 --- a/tests/licensedcode/data/more_licenses/tests/NTP/NTP.yml +++ b/tests/licensedcode/data/more_licenses/tests/NTP/NTP.yml @@ -1,2 +1,2 @@ license_expressions: - - ntpl + - mit-old-style-no-advert diff --git a/tests/licensedcode/data/more_licenses/tests/NTP/ntp_a.yml b/tests/licensedcode/data/more_licenses/tests/NTP/ntp_a.yml index a22e70e5dde..ade72b67f6b 100644 --- a/tests/licensedcode/data/more_licenses/tests/NTP/ntp_a.yml +++ b/tests/licensedcode/data/more_licenses/tests/NTP/ntp_a.yml @@ -1,3 +1,3 @@ license_expressions: - - ntpl + - mit-old-style-no-advert - beerware diff --git a/tests/licensedcode/data/more_licenses/tests/Naumen/Naumen.txt b/tests/licensedcode/data/more_licenses/tests/Naumen/Naumen.txt deleted file mode 100644 index f690423098d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Naumen/Naumen.txt +++ /dev/null @@ -1,48 +0,0 @@ -NAUMEN Public License -This software is Copyright (c) NAUMEN (tm) and Contributors. -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 in 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. The name NAUMEN (tm) must not be used to -endorse or promote products derived from this software without prior -written permission from NAUMEN. - -4. The right to distribute this software or to use it for any -purpose does not give you the right to use Servicemarks (sm) -or Trademarks (tm) of NAUMEN. - -5. If any files originating from NAUMEN or Contributors are modified, you must -cause the modified files to carry prominent notices stating -that you changed the files and the date of any change. - -Disclaimer: - -THIS SOFTWARE IS PROVIDED BY NAUMEN "AS IS" AND ANY EXPRESSED -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 NAUMEN -OR ITS 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. - -This software consists of contributions made by NAUMEN -and Contributors. Specific attributions are listed in the -accompanying credits file. diff --git a/tests/licensedcode/data/more_licenses/tests/Naumen/Naumen.yml b/tests/licensedcode/data/more_licenses/tests/Naumen/Naumen.yml deleted file mode 100644 index 19963a31c46..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Naumen/Naumen.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - naumen diff --git a/tests/licensedcode/data/more_licenses/tests/ODC/ODC-By-1.0.txt b/tests/licensedcode/data/more_licenses/tests/ODC/ODC-By-1.0.txt deleted file mode 100644 index 17baaa00c51..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ODC/ODC-By-1.0.txt +++ /dev/null @@ -1,167 +0,0 @@ -## -ODC Attribution License (ODC-By) -### - -Preamble - -The Open Data Commons Attribution License is a license agreement intended to allow users to freely share, modify, and use this Database subject only to the attribution requirements set out in Section 4. - -Databases can contain a wide variety of types of content (images, audiovisual material, and sounds all in the same database, for example), and so this license only governs the rights over the Database, and not the contents of the Database individually. Licensors may therefore wish to use this license together with another license for the contents. - -Sometimes the contents of a database, or the database itself, can be covered by other rights not addressed here (such as private contracts, trademark over the name, or privacy rights / data protection rights over information in the contents), and so you are advised that you may have to consult other documents or clear other rights before doing activities not covered by this License. - ------- - -The Licensor (as defined below) - -and - -You (as defined below) - -agree as follows: - - 1.0 Definitions of Capitalised Words - - "Collective Database" - Means this Database in unmodified form as part of a collection of independent databases in themselves that together are assembled into a collective whole. A work that constitutes a Collective Database will not be considered a Derivative Database. - - "Convey" - As a verb, means Using the Database, a Derivative Database, or the Database as part of a Collective Database in any way that enables a Person to make or receive copies of the Database or a Derivative Database. Conveying does not include interaction with a user through a computer network, or creating and Using a Produced Work, where no transfer of a copy of the Database or a Derivative Database occurs. - - "Contents" - The contents of this Database, which includes the information, independent works, or other material collected into the Database. For example, the contents of the Database could be factual data or works such as images, audiovisual material, text, or sounds. - - "Database" - A collection of material (the Contents) arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this License. - - "Database Directive" - Means Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended or succeeded. - - "Database Right" - Means rights resulting from the Chapter III ("sui generis") rights in the Database Directive (as amended and as transposed by member states), which includes the Extraction and Re-utilisation of the whole or a Substantial part of the Contents, as well as any similar rights available in the relevant jurisdiction under Section 10.4. - - "Derivative Database" - Means a database based upon the Database, and includes any translation, adaptation, arrangement, modification, or any other alteration of the Database or of a Substantial part of the Contents. This includes, but is not limited to, Extracting or Re-utilising the whole or a Substantial part of the Contents in a new Database. - - "Extraction" - Means the permanent or temporary transfer of all or a Substantial part of the Contents to another medium by any means or in any form. - - "License" - Means this license agreement and is both a license of rights such as copyright and Database Rights and an agreement in contract. - - "Licensor" - Means the Person that offers the Database under the terms of this License. - - "Person" - Means a natural or legal person or a body of persons corporate or incorporate. - - "Produced Work" - a work (such as an image, audiovisual material, text, or sounds) resulting from using the whole or a Substantial part of the Contents (via a search or other query) from this Database, a Derivative Database, or this Database as part of a Collective Database. - - "Publicly" - means to Persons other than You or under Your control by either more than 50% ownership or by the power to direct their activities (such as contracting with an independent consultant). - - "Re-utilisation" - means any form of making available to the public all or a Substantial part of the Contents by the distribution of copies, by renting, by online or other forms of transmission. - - "Substantial" - Means substantial in terms of quantity or quality or a combination of both. The repeated and systematic Extraction or Re-utilisation of insubstantial parts of the Contents may amount to the Extraction or Re-utilisation of a Substantial part of the Contents. - - "Use" - As a verb, means doing any act that is restricted by copyright or Database Rights whether in the original medium or any other; and includes without limitation distributing, copying, publicly performing, publicly displaying, and preparing derivative works of the Database, as well as modifying the Database as may be technically necessary to use it in a different mode or format. - - "You" - Means a Person exercising rights under this License who has not previously violated the terms of this License with respect to the Database, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. - - Words in the singular include the plural and vice versa. - - 2.0 What this License covers - - 2.1. Legal effect of this document. This License is: - a. A license of applicable copyright and neighbouring rights; - b. A license of the Database Right; and - c. An agreement in contract between You and the Licensor. - - 2.2 Legal rights covered. This License covers the legal rights in the Database, including: - a. Copyright. Any copyright or neighbouring rights in the Database. The copyright licensed includes any individual elements of the Database, but does not cover the copyright over the Contents independent of this Database. See Section 2.4 for details. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Contents stored in the Database; - b. Database Rights. Database Rights only extend to the Extraction and Re-utilisation of the whole or a Substantial part of the Contents. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Contents are removed from the Database and are selected and arranged in a way that would not infringe any applicable copyright; and - c. Contract. This is an agreement between You and the Licensor for access to the Database. In return you agree to certain conditions of use on this access as outlined in this License. - - 2.3 Rights not covered. - a. This License does not apply to computer programs used in the making or operation of the Database; - b. This License does not cover any patents over the Contents or the Database; and - c. This License does not cover any trademarks associated with the Database. - - 2.4 Relationship to Contents in the Database. The individual items of the Contents contained in this Database may be covered by other rights, including copyright, patent, data protection, privacy, or personality rights, and this License does not cover any rights (other than Database Rights or in contract) in individual Contents contained in the Database. For example, if used on a Database of images (the Contents), this License would not apply to copyright over individual images, which could have their own separate licenses, or one single license covering all of the rights over the images. - - 3.0 Rights granted - - 3.1 Subject to the terms and conditions of this License, the Licensor grants to You a worldwide, royalty-free, non-exclusive, terminable (but only under Section 9) license to Use the Database for the duration of any applicable copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future. - - The rights granted cover, for example: - a. Extraction and Re-utilisation of the whole or a Substantial part of the Contents; - b. Creation of Derivative Databases; - c. Creation of Collective Databases; - d. Creation of temporary or permanent reproductions by any means and in any form, in whole or in part, including of any Derivative Databases or as a part of Collective Databases; and - e. Distribution, communication, display, lending, making available, or performance to the public by any means and in any form, in whole or in part, including of any Derivative Database or as a part of Collective Databases. - - 3.2 Compulsory license schemes. For the avoidance of doubt: - a. Non-waivable compulsory license schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; - b. Waivable compulsory license schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, - c. Voluntary license schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. - - 3.3 The right to release the Database under different terms, or to stop distributing or making available the Database, is reserved. Note that this Database may be multiple-licensed, and so You may have the choice of using alternative licenses for this Database. Subject to Section 10.4, all other rights not expressly granted by Licensor are reserved. - - 4.0 Conditions of Use - - 4.1 The rights granted in Section 3 above are expressly made subject to Your complying with the following conditions of use. These are important conditions of this License, and if You fail to follow them, You will be in material breach of its terms. - - 4.2 Notices. If You Publicly Convey this Database, any Derivative Database, or the Database as part of a Collective Database, then You must: - a. Do so only under the terms of this License; - b. Include a copy of this License or its Uniform Resource Identifier (URI) with the Database or Derivative Database, including both in the Database or Derivative Database and in any relevant documentation; - c. Keep intact any copyright or Database Right notices and notices that refer to this License; and - d. If it is not possible to put the required notices in a particular file due to its structure, then You must include the notices in a location (such as a relevant directory) where users would be likely to look for it. - - 4.3 Notice for using output (Contents). Creating and Using a Produced Work does not require the notice in Section 4.2. However, if you Publicly Use a Produced Work, You must include a notice associated with the Produced Work reasonably calculated to make any Person that uses, views, accesses, interacts with, or is otherwise exposed to the Produced Work aware that Content was obtained from the Database, Derivative Database, or the Database as part of a Collective Database, and that it is available under this License. - a. Example notice. The following text will satisfy notice under Section 4.3: - - Contains information from DATABASE NAME which is made available under the ODC Attribution License. - - DATABASE NAME should be replaced with the name of the Database and a hyperlink to the location of the Database. "ODC Attribution License" should contain a hyperlink to the URI of the text of this License. If hyperlinks are not possible, You should include the plain text of the required URI's with the above notice. - - 4.4 Licensing of others. You may not sublicense the Database. Each time You communicate the Database, the whole or Substantial part of the Contents, or any Derivative Database to anyone else in any way, the Licensor offers to the recipient a license to the Database on the same terms and conditions as this License. You are not responsible for enforcing compliance by third parties with this License, but You may enforce any rights that You have over a Derivative Database. You are solely responsible for any modifications of a Derivative Database made by You or another Person at Your direction. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. - - 5.0 Moral rights - - 5.1 Moral rights. This section covers moral rights, including any rights to be identified as the author of the Database or to object to treatment that would otherwise prejudice the author's honour and reputation, or any other derogatory treatment: - a. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Database to the fullest extent possible by the law of the relevant jurisdiction under Section 10.4; - b. If waiver of moral rights under Section 5.1 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Database and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 10.4; and - c. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 5.1 a and b, the author may retain their moral rights over certain aspects of the Database. - - Please note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the Database in some jurisdictions. - - 6.0 Fair dealing, Database exceptions, and other rights not affected - - 6.1 This License does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Database, including without limitation: - a. Exceptions to the Database Right including: Extraction of Contents from non-electronic Databases for private purposes, Extraction for purposes of illustration for teaching or scientific research, and Extraction or Re-utilisation for public security or an administrative or judicial procedure. - b. Fair dealing, fair use, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws. - - 6.2 This License does not affect any rights of lawful users to Extract and Re-utilise insubstantial parts of the Contents, evaluated quantitatively or qualitatively, for any purposes whatsoever, including creating a Derivative Database (subject to other rights over the Contents, see Section 2.4). The repeated and systematic Extraction or Re-utilisation of insubstantial parts of the Contents may however amount to the Extraction or Re-utilisation of a Substantial part of the Contents. - - 7.0 Warranties and Disclaimer - - 7.1 The Database is licensed by the Licensor "as is" and without any warranty of any kind, either express, implied, or arising by statute, custom, course of dealing, or trade usage. Licensor specifically disclaims any and all implied warranties or conditions of title, non-infringement, accuracy or completeness, the presence or absence of errors, fitness for a particular purpose, merchantability, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You. - - 8.0 Limitation of liability - - 8.1 Subject to any liability that may not be excluded or limited by law, the Licensor is not liable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this License, whether by You or by anyone else, and whether caused by any fault on the part of the Licensor or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages such as loss of revenue, data, anticipated profits, and lost business. This exclusion applies even if the Licensor has been advised of the possibility of such damages. - - 8.2 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Licensor. - - 9.0 Termination of Your rights under this License - - 9.1 Any breach by You of the terms and conditions of this License automatically terminates this License with immediate effect and without notice to You. For the avoidance of doubt, Persons who have received the Database, the whole or a Substantial part of the Contents, Derivative Databases, or the Database as part of a Collective Database from You under this License will not have their licenses terminated provided their use is in full compliance with this License or a license granted under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will survive any termination of this License. - - 9.2 If You are not in breach of the terms of this License, the Licensor will not terminate Your rights under it. - - 9.3 Unless terminated under Section 9.1, this License is granted to You for the duration of applicable rights in the Database. - - 9.4 Reinstatement of rights. If you cease any breach of the terms and conditions of this License, then your full rights under this License will be reinstated: - a. Provisionally and subject to permanent termination until the 60th day after cessation of breach; - b. Permanently on the 60th day after cessation of breach unless otherwise reasonably notified by the Licensor; or - c. Permanently if reasonably notified by the Licensor of the violation, this is the first time You have received notice of violation of this License from the Licensor, and You cure the violation prior to 30 days after your receipt of the notice. - - 9.5 Notwithstanding the above, Licensor reserves the right to release the Database under different license terms or to stop distributing or making available the Database. Releasing the Database under different license terms or stopping the distribution of the Database will not withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. - - 10.0 General - - 10.1 If any provision of this License is held to be invalid or unenforceable, that must not affect the validity or enforceability of the remainder of the terms and conditions of this License and each remaining provision of this License shall be valid and enforced to the fullest extent permitted by law. - - 10.2 This License is the entire agreement between the parties with respect to the rights granted here over the Database. It replaces any earlier understandings, agreements or representations with respect to the Database. - - 10.3 If You are in breach of the terms of this License, You will not be entitled to rely on the terms of this License or to complain of any breach by the Licensor. - - 10.4 Choice of law. This License takes effect in and will be governed by the laws of the relevant jurisdiction in which the License terms are sought to be enforced. If the standard suite of rights granted under applicable copyright law and Database Rights in the relevant jurisdiction includes additional rights not granted under this License, these additional rights are granted in this License in order to meet the terms of this License. diff --git a/tests/licensedcode/data/more_licenses/tests/ODC/ODC-By-1.0.yml b/tests/licensedcode/data/more_licenses/tests/ODC/ODC-By-1.0.yml deleted file mode 100644 index 9c6ae95922f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ODC/ODC-By-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - odc-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/ODbL/ODbL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/ODbL/ODbL-1.0.txt deleted file mode 100644 index b03120fdfc0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ODbL/ODbL-1.0.txt +++ /dev/null @@ -1,540 +0,0 @@ -## ODC Open Database License (ODbL) - -### Preamble - -The Open Database License (ODbL) is a license agreement intended to -allow users to freely share, modify, and use this Database while -maintaining this same freedom for others. Many databases are covered by -copyright, and therefore this document licenses these rights. Some -jurisdictions, mainly in the European Union, have specific rights that -cover databases, and so the ODbL addresses these rights, too. Finally, -the ODbL is also an agreement in contract for users of this Database to -act in certain ways in return for accessing this Database. - -Databases can contain a wide variety of types of content (images, -audiovisual material, and sounds all in the same database, for example), -and so the ODbL only governs the rights over the Database, and not the -contents of the Database individually. Licensors should use the ODbL -together with another license for the contents, if the contents have a -single set of rights that uniformly covers all of the contents. If the -contents have multiple sets of different rights, Licensors should -describe what rights govern what contents together in the individual -record or in some other way that clarifies what rights apply. - -Sometimes the contents of a database, or the database itself, can be -covered by other rights not addressed here (such as private contracts, -trade mark over the name, or privacy rights / data protection rights -over information in the contents), and so you are advised that you may -have to consult other documents or clear other rights before doing -activities not covered by this License. - ------- - -The Licensor (as defined below) - -and - -You (as defined below) - -agree as follows: - -### 1.0 Definitions of Capitalised Words - -"Collective Database" – Means this Database in unmodified form as part -of a collection of independent databases in themselves that together are -assembled into a collective whole. A work that constitutes a Collective -Database will not be considered a Derivative Database. - -"Convey" – As a verb, means Using the Database, a Derivative Database, -or the Database as part of a Collective Database in any way that enables -a Person to make or receive copies of the Database or a Derivative -Database. Conveying does not include interaction with a user through a -computer network, or creating and Using a Produced Work, where no -transfer of a copy of the Database or a Derivative Database occurs. -"Contents" – The contents of this Database, which includes the -information, independent works, or other material collected into the -Database. For example, the contents of the Database could be factual -data or works such as images, audiovisual material, text, or sounds. - -"Database" – A collection of material (the Contents) arranged in a -systematic or methodical way and individually accessible by electronic -or other means offered under the terms of this License. - -"Database Directive" – Means Directive 96/9/EC of the European -Parliament and of the Council of 11 March 1996 on the legal protection -of databases, as amended or succeeded. - -"Database Right" – Means rights resulting from the Chapter III ("sui -generis") rights in the Database Directive (as amended and as transposed -by member states), which includes the Extraction and Re-utilisation of -the whole or a Substantial part of the Contents, as well as any similar -rights available in the relevant jurisdiction under Section 10.4. - -"Derivative Database" – Means a database based upon the Database, and -includes any translation, adaptation, arrangement, modification, or any -other alteration of the Database or of a Substantial part of the -Contents. This includes, but is not limited to, Extracting or -Re-utilising the whole or a Substantial part of the Contents in a new -Database. - -"Extraction" – Means the permanent or temporary transfer of all or a -Substantial part of the Contents to another medium by any means or in -any form. - -"License" – Means this license agreement and is both a license of rights -such as copyright and Database Rights and an agreement in contract. - -"Licensor" – Means the Person that offers the Database under the terms -of this License. - -"Person" – Means a natural or legal person or a body of persons -corporate or incorporate. - -"Produced Work" – a work (such as an image, audiovisual material, text, -or sounds) resulting from using the whole or a Substantial part of the -Contents (via a search or other query) from this Database, a Derivative -Database, or this Database as part of a Collective Database. - -"Publicly" – means to Persons other than You or under Your control by -either more than 50% ownership or by the power to direct their -activities (such as contracting with an independent consultant). - -"Re-utilisation" – means any form of making available to the public all -or a Substantial part of the Contents by the distribution of copies, by -renting, by online or other forms of transmission. - -"Substantial" – Means substantial in terms of quantity or quality or a -combination of both. The repeated and systematic Extraction or -Re-utilisation of insubstantial parts of the Contents may amount to the -Extraction or Re-utilisation of a Substantial part of the Contents. - -"Use" – As a verb, means doing any act that is restricted by copyright -or Database Rights whether in the original medium or any other; and -includes without limitation distributing, copying, publicly performing, -publicly displaying, and preparing derivative works of the Database, as -well as modifying the Database as may be technically necessary to use it -in a different mode or format. - -"You" – Means a Person exercising rights under this License who has not -previously violated the terms of this License with respect to the -Database, or who has received express permission from the Licensor to -exercise rights under this License despite a previous violation. - -Words in the singular include the plural and vice versa. - -### 2.0 What this License covers - -2.1. Legal effect of this document. This License is: - - a. A license of applicable copyright and neighbouring rights; - - b. A license of the Database Right; and - - c. An agreement in contract between You and the Licensor. - -2.2 Legal rights covered. This License covers the legal rights in the -Database, including: - - a. Copyright. Any copyright or neighbouring rights in the Database. - The copyright licensed includes any individual elements of the - Database, but does not cover the copyright over the Contents - independent of this Database. See Section 2.4 for details. Copyright - law varies between jurisdictions, but is likely to cover: the Database - model or schema, which is the structure, arrangement, and organisation - of the Database, and can also include the Database tables and table - indexes; the data entry and output sheets; and the Field names of - Contents stored in the Database; - - b. Database Rights. Database Rights only extend to the Extraction and - Re-utilisation of the whole or a Substantial part of the Contents. - Database Rights can apply even when there is no copyright over the - Database. Database Rights can also apply when the Contents are removed - from the Database and are selected and arranged in a way that would - not infringe any applicable copyright; and - - c. Contract. This is an agreement between You and the Licensor for - access to the Database. In return you agree to certain conditions of - use on this access as outlined in this License. - -2.3 Rights not covered. - - a. This License does not apply to computer programs used in the making - or operation of the Database; - - b. This License does not cover any patents over the Contents or the - Database; and - - c. This License does not cover any trademarks associated with the - Database. - -2.4 Relationship to Contents in the Database. The individual items of -the Contents contained in this Database may be covered by other rights, -including copyright, patent, data protection, privacy, or personality -rights, and this License does not cover any rights (other than Database -Rights or in contract) in individual Contents contained in the Database. -For example, if used on a Database of images (the Contents), this -License would not apply to copyright over individual images, which could -have their own separate licenses, or one single license covering all of -the rights over the images. - -### 3.0 Rights granted - -3.1 Subject to the terms and conditions of this License, the Licensor -grants to You a worldwide, royalty-free, non-exclusive, terminable (but -only under Section 9) license to Use the Database for the duration of -any applicable copyright and Database Rights. These rights explicitly -include commercial use, and do not exclude any field of endeavour. To -the extent possible in the relevant jurisdiction, these rights may be -exercised in all media and formats whether now known or created in the -future. - -The rights granted cover, for example: - - a. Extraction and Re-utilisation of the whole or a Substantial part of - the Contents; - - b. Creation of Derivative Databases; - - c. Creation of Collective Databases; - - d. Creation of temporary or permanent reproductions by any means and - in any form, in whole or in part, including of any Derivative - Databases or as a part of Collective Databases; and - - e. Distribution, communication, display, lending, making available, or - performance to the public by any means and in any form, in whole or in - part, including of any Derivative Database or as a part of Collective - Databases. - -3.2 Compulsory license schemes. For the avoidance of doubt: - - a. Non-waivable compulsory license schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme cannot be waived, the Licensor reserves - the exclusive right to collect such royalties for any exercise by You - of the rights granted under this License; - - b. Waivable compulsory license schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme can be waived, the Licensor waives the - exclusive right to collect such royalties for any exercise by You of - the rights granted under this License; and, - - c. Voluntary license schemes. The Licensor waives the right to collect - royalties, whether individually or, in the event that the Licensor is - a member of a collecting society that administers voluntary licensing - schemes, via that society, from any exercise by You of the rights - granted under this License. - -3.3 The right to release the Database under different terms, or to stop -distributing or making available the Database, is reserved. Note that -this Database may be multiple-licensed, and so You may have the choice -of using alternative licenses for this Database. Subject to Section -10.4, all other rights not expressly granted by Licensor are reserved. - -### 4.0 Conditions of Use - -4.1 The rights granted in Section 3 above are expressly made subject to -Your complying with the following conditions of use. These are important -conditions of this License, and if You fail to follow them, You will be -in material breach of its terms. - -4.2 Notices. If You Publicly Convey this Database, any Derivative -Database, or the Database as part of a Collective Database, then You -must: - - a. Do so only under the terms of this License or another license - permitted under Section 4.4; - - b. Include a copy of this License (or, as applicable, a license - permitted under Section 4.4) or its Uniform Resource Identifier (URI) - with the Database or Derivative Database, including both in the - Database or Derivative Database and in any relevant documentation; and - - c. Keep intact any copyright or Database Right notices and notices - that refer to this License. - - d. If it is not possible to put the required notices in a particular - file due to its structure, then You must include the notices in a - location (such as a relevant directory) where users would be likely to - look for it. - -4.3 Notice for using output (Contents). Creating and Using a Produced -Work does not require the notice in Section 4.2. However, if you -Publicly Use a Produced Work, You must include a notice associated with -the Produced Work reasonably calculated to make any Person that uses, -views, accesses, interacts with, or is otherwise exposed to the Produced -Work aware that Content was obtained from the Database, Derivative -Database, or the Database as part of a Collective Database, and that it -is available under this License. - - a. Example notice. The following text will satisfy notice under - Section 4.3: - - Contains information from DATABASE NAME, which is made available - here under the Open Database License (ODbL). - -DATABASE NAME should be replaced with the name of the Database and a -hyperlink to the URI of the Database. "Open Database License" should -contain a hyperlink to the URI of the text of this License. If -hyperlinks are not possible, You should include the plain text of the -required URI's with the above notice. - -4.4 Share alike. - - a. Any Derivative Database that You Publicly Use must be only under - the terms of: - - i. This License; - - ii. A later version of this License similar in spirit to this - License; or - - iii. A compatible license. - - If You license the Derivative Database under one of the licenses - mentioned in (iii), You must comply with the terms of that license. - - b. For the avoidance of doubt, Extraction or Re-utilisation of the - whole or a Substantial part of the Contents into a new database is a - Derivative Database and must comply with Section 4.4. - - c. Derivative Databases and Produced Works. A Derivative Database is - Publicly Used and so must comply with Section 4.4. if a Produced Work - created from the Derivative Database is Publicly Used. - - d. Share Alike and additional Contents. For the avoidance of doubt, - You must not add Contents to Derivative Databases under Section 4.4 a - that are incompatible with the rights granted under this License. - - e. Compatible licenses. Licensors may authorise a proxy to determine - compatible licenses under Section 4.4 a iii. If they do so, the - authorised proxy's public statement of acceptance of a compatible - license grants You permission to use the compatible license. - - -4.5 Limits of Share Alike. The requirements of Section 4.4 do not apply -in the following: - - a. For the avoidance of doubt, You are not required to license - Collective Databases under this License if You incorporate this - Database or a Derivative Database in the collection, but this License - still applies to this Database or a Derivative Database as a part of - the Collective Database; - - b. Using this Database, a Derivative Database, or this Database as - part of a Collective Database to create a Produced Work does not - create a Derivative Database for purposes of Section 4.4; and - - c. Use of a Derivative Database internally within an organisation is - not to the public and therefore does not fall under the requirements - of Section 4.4. - -4.6 Access to Derivative Databases. If You Publicly Use a Derivative -Database or a Produced Work from a Derivative Database, You must also -offer to recipients of the Derivative Database or Produced Work a copy -in a machine readable form of: - - a. The entire Derivative Database; or - - b. A file containing all of the alterations made to the Database or - the method of making the alterations to the Database (such as an - algorithm), including any additional Contents, that make up all the - differences between the Database and the Derivative Database. - -The Derivative Database (under a.) or alteration file (under b.) must be -available at no more than a reasonable production cost for physical -distributions and free of charge if distributed over the internet. - -4.7 Technological measures and additional terms - - a. This License does not allow You to impose (except subject to - Section 4.7 b.) any terms or any technological measures on the - Database, a Derivative Database, or the whole or a Substantial part of - the Contents that alter or restrict the terms of this License, or any - rights granted under it, or have the effect or intent of restricting - the ability of any person to exercise those rights. - - b. Parallel distribution. You may impose terms or technological - measures on the Database, a Derivative Database, or the whole or a - Substantial part of the Contents (a "Restricted Database") in - contravention of Section 4.74 a. only if You also make a copy of the - Database or a Derivative Database available to the recipient of the - Restricted Database: - - i. That is available without additional fee; - - ii. That is available in a medium that does not alter or restrict - the terms of this License, or any rights granted under it, or have - the effect or intent of restricting the ability of any person to - exercise those rights (an "Unrestricted Database"); and - - iii. The Unrestricted Database is at least as accessible to the - recipient as a practical matter as the Restricted Database. - - c. For the avoidance of doubt, You may place this Database or a - Derivative Database in an authenticated environment, behind a - password, or within a similar access control scheme provided that You - do not alter or restrict the terms of this License or any rights - granted under it or have the effect or intent of restricting the - ability of any person to exercise those rights. - -4.8 Licensing of others. You may not sublicense the Database. Each time -You communicate the Database, the whole or Substantial part of the -Contents, or any Derivative Database to anyone else in any way, the -Licensor offers to the recipient a license to the Database on the same -terms and conditions as this License. You are not responsible for -enforcing compliance by third parties with this License, but You may -enforce any rights that You have over a Derivative Database. You are -solely responsible for any modifications of a Derivative Database made -by You or another Person at Your direction. You may not impose any -further restrictions on the exercise of the rights granted or affirmed -under this License. - -### 5.0 Moral rights - -5.1 Moral rights. This section covers moral rights, including any rights -to be identified as the author of the Database or to object to treatment -that would otherwise prejudice the author's honour and reputation, or -any other derogatory treatment: - - a. For jurisdictions allowing waiver of moral rights, Licensor waives - all moral rights that Licensor may have in the Database to the fullest - extent possible by the law of the relevant jurisdiction under Section - 10.4; - - b. If waiver of moral rights under Section 5.1 a in the relevant - jurisdiction is not possible, Licensor agrees not to assert any moral - rights over the Database and waives all claims in moral rights to the - fullest extent possible by the law of the relevant jurisdiction under - Section 10.4; and - - c. For jurisdictions not allowing waiver or an agreement not to assert - moral rights under Section 5.1 a and b, the author may retain their - moral rights over certain aspects of the Database. - -Please note that some jurisdictions do not allow for the waiver of moral -rights, and so moral rights may still subsist over the Database in some -jurisdictions. - -### 6.0 Fair dealing, Database exceptions, and other rights not affected - -6.1 This License does not affect any rights that You or anyone else may -independently have under any applicable law to make any use of this -Database, including without limitation: - - a. Exceptions to the Database Right including: Extraction of Contents - from non-electronic Databases for private purposes, Extraction for - purposes of illustration for teaching or scientific research, and - Extraction or Re-utilisation for public security or an administrative - or judicial procedure. - - b. Fair dealing, fair use, or any other legally recognised limitation - or exception to infringement of copyright or other applicable laws. - -6.2 This License does not affect any rights of lawful users to Extract -and Re-utilise insubstantial parts of the Contents, evaluated -quantitatively or qualitatively, for any purposes whatsoever, including -creating a Derivative Database (subject to other rights over the -Contents, see Section 2.4). The repeated and systematic Extraction or -Re-utilisation of insubstantial parts of the Contents may however amount -to the Extraction or Re-utilisation of a Substantial part of the -Contents. - -### 7.0 Warranties and Disclaimer - -7.1 The Database is licensed by the Licensor "as is" and without any -warranty of any kind, either express, implied, or arising by statute, -custom, course of dealing, or trade usage. Licensor specifically -disclaims any and all implied warranties or conditions of title, -non-infringement, accuracy or completeness, the presence or absence of -errors, fitness for a particular purpose, merchantability, or otherwise. -Some jurisdictions do not allow the exclusion of implied warranties, so -this exclusion may not apply to You. - -### 8.0 Limitation of liability - -8.1 Subject to any liability that may not be excluded or limited by law, -the Licensor is not liable for, and expressly excludes, all liability -for loss or damage however and whenever caused to anyone by any use -under this License, whether by You or by anyone else, and whether caused -by any fault on the part of the Licensor or not. This exclusion of -liability includes, but is not limited to, any special, incidental, -consequential, punitive, or exemplary damages such as loss of revenue, -data, anticipated profits, and lost business. This exclusion applies -even if the Licensor has been advised of the possibility of such -damages. - -8.2 If liability may not be excluded by law, it is limited to actual and -direct financial loss to the extent it is caused by proved negligence on -the part of the Licensor. - -### 9.0 Termination of Your rights under this License - -9.1 Any breach by You of the terms and conditions of this License -automatically terminates this License with immediate effect and without -notice to You. For the avoidance of doubt, Persons who have received the -Database, the whole or a Substantial part of the Contents, Derivative -Databases, or the Database as part of a Collective Database from You -under this License will not have their licenses terminated provided -their use is in full compliance with this License or a license granted -under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will -survive any termination of this License. - -9.2 If You are not in breach of the terms of this License, the Licensor -will not terminate Your rights under it. - -9.3 Unless terminated under Section 9.1, this License is granted to You -for the duration of applicable rights in the Database. - -9.4 Reinstatement of rights. If you cease any breach of the terms and -conditions of this License, then your full rights under this License -will be reinstated: - - a. Provisionally and subject to permanent termination until the 60th - day after cessation of breach; - - b. Permanently on the 60th day after cessation of breach unless - otherwise reasonably notified by the Licensor; or - - c. Permanently if reasonably notified by the Licensor of the - violation, this is the first time You have received notice of - violation of this License from the Licensor, and You cure the - violation prior to 30 days after your receipt of the notice. - -Persons subject to permanent termination of rights are not eligible to -be a recipient and receive a license under Section 4.8. - -9.5 Notwithstanding the above, Licensor reserves the right to release -the Database under different license terms or to stop distributing or -making available the Database. Releasing the Database under different -license terms or stopping the distribution of the Database will not -withdraw this License (or any other license that has been, or is -required to be, granted under the terms of this License), and this -License will continue in full force and effect unless terminated as -stated above. - -### 10.0 General - -10.1 If any provision of this License is held to be invalid or -unenforceable, that must not affect the validity or enforceability of -the remainder of the terms and conditions of this License and each -remaining provision of this License shall be valid and enforced to the -fullest extent permitted by law. - -10.2 This License is the entire agreement between the parties with -respect to the rights granted here over the Database. It replaces any -earlier understandings, agreements or representations with respect to -the Database. - -10.3 If You are in breach of the terms of this License, You will not be -entitled to rely on the terms of this License or to complain of any -breach by the Licensor. - -10.4 Choice of law. This License takes effect in and will be governed by -the laws of the relevant jurisdiction in which the License terms are -sought to be enforced. If the standard suite of rights granted under -applicable copyright law and Database Rights in the relevant -jurisdiction includes additional rights not granted under this License, -these additional rights are granted in this License in order to meet the -terms of this License. diff --git a/tests/licensedcode/data/more_licenses/tests/ODbL/ODbL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/ODbL/ODbL-1.0.yml deleted file mode 100644 index 6096f345b04..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ODbL/ODbL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - odbl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/OGTSL/OGTSL.txt b/tests/licensedcode/data/more_licenses/tests/OGTSL/OGTSL.txt deleted file mode 100644 index a2cfbec5ef0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OGTSL/OGTSL.txt +++ /dev/null @@ -1,118 +0,0 @@ -The Open Group Test Suite License - -Preamble - -The intent of this document is to state the conditions under which -a Package may be copied, such that the Copyright Holder maintains -some semblance of artistic control over the development of the -package, while giving the users of the package the right to use and -distribute the Package in a more-or-less customary fashion, plus -the right to make reasonable modifications. - -Testing is essential for proper development and maintenance of -standards-based products. - -For buyers: adequate conformance testing leads to reduced -integration costs and protection of investments in applications, -software and people. - -For software developers: conformance testing of platforms and -middleware greatly reduces the cost of developing and maintaining -multi-platform application software. - -For suppliers: In-depth testing increases customer satisfaction and -keeps development and support costs in check. API conformance is -highly measurable and suppliers who claim it must be able to -substantiate that claim. - -As such, since these are benchmark measures of conformance, we feel -the integrity of test tools is of importance. In order to preserve -the integrity of the existing conformance modes of this test -package and to permit recipients of modified versions of this -package to run the original test modes, this license requires that -the original test modes be preserved. - -If you find a bug in one of the standards mode test cases, please -let us know so we can feed this back into the original, and also -raise any specification issues with the appropriate bodies (for -example the POSIX committees). - -Definitions: - - "Package" refers to the collection of files distributed by the - Copyright Holder, and derivatives of that collection of files - created through textual modification. - "Standard Version" refers to such a Package if it has not been - modified, or has been modified in accordance with the wishes - of the Copyright Holder. - "Copyright Holder" is whoever is named in the copyright or - copyrights for the package. "You" is you, if you're thinking - about copying or distributing this Package. - "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people - involved, and so on. (You will not be required to justify it - to the Copyright Holder, but only to the computing community - at large as a market that must bear the fee.) - "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the - item. It also means that recipients of the item may - redistribute it under the same conditions they received it. - -1. You may make and give away verbatim copies of the source form of -the Standard Version of this Package without restriction, provided -that you duplicate all of the original copyright notices and -associated disclaimers. - -2. You may apply bug fixes, portability fixes and other -modifications derived from the Public Domain or from the Copyright -Holder. A Package modified in such a way shall still be considered -the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, -provided that you insert a prominent notice in each changed file -stating how and when you changed that file, and provided that you -do at least the following: - - rename any non-standard executables and testcases so the - names do not conflict with standard executables and - testcases, which must also be provided, and provide a - separate manual page for each non-standard executable and - testcase that clearly documents how it differs from the - Standard Version. - -4. You may distribute the programs of this Package in object code -or executable form, provided that you do at least the following: - - accompany any non-standard executables and testcases with - their corresponding Standard Version executables and - testcases, giving the non-standard executables and - testcases non-standard names, and clearly documenting the - differences in manual pages (or equivalent), together with - instructions on where to get the Standard Version. - -5. You may charge a reasonable copying fee for any distribution of -this Package. You may charge any fee you choose for support of this -Package. You may not charge a fee for this Package itself. However, -you may distribute this Package in aggregate with other (possibly -commercial) programs as part of a larger (possibly commercial) -software distribution provided that you do not advertise this -Package as a product of your own. - -6. The scripts and library files supplied as input to or produced -as output from the programs of this Package do not automatically -fall under the copyright of this Package, but belong to whomever -generated them, and may be sold commercially, and may be aggregated -with this Package. - -7.Subroutines supplied by you and linked into this Package shall -not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or -promote products derived from this software without specific prior -written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End diff --git a/tests/licensedcode/data/more_licenses/tests/OGTSL/OGTSL.yml b/tests/licensedcode/data/more_licenses/tests/OGTSL/OGTSL.yml deleted file mode 100644 index 938851e06a2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OGTSL/OGTSL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - opengroup diff --git a/tests/licensedcode/data/more_licenses/tests/OLDAP/OLDAP-2.8.txt b/tests/licensedcode/data/more_licenses/tests/OLDAP/OLDAP-2.8.txt deleted file mode 100644 index 05ad7571e44..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OLDAP/OLDAP-2.8.txt +++ /dev/null @@ -1,47 +0,0 @@ -The OpenLDAP Public License - Version 2.8, 17 August 2003 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions in source form must retain copyright statements - and notices, - -2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - -3. Redistributions must contain a verbatim copy of this document. - -The OpenLDAP Foundation may revise this license from time to time. -Each revision is distinguished by a version number. You may use -this Software under terms of this license revision or under the -terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS -CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) -OR OWNER(S) OF THE SOFTWARE 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. - -The names of the authors and copyright holders must not be used in -advertising or otherwise to promote the sale, use or other dealing -in this Software without specific, written prior permission. Title -to copyright in this Software shall at all times remain with copyright -holders. - -OpenLDAP is a registered trademark of the OpenLDAP Foundation. - -Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. diff --git a/tests/licensedcode/data/more_licenses/tests/OLDAP/OLDAP-2.8.yml b/tests/licensedcode/data/more_licenses/tests/OLDAP/OLDAP-2.8.yml deleted file mode 100644 index 02beafd2641..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OLDAP/OLDAP-2.8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openldap-2.8 diff --git a/tests/licensedcode/data/more_licenses/tests/OLDAP/OpenLDAP-2.3 b/tests/licensedcode/data/more_licenses/tests/OLDAP/OpenLDAP-2.3 deleted file mode 100644 index f4fc4ae57dd..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OLDAP/OpenLDAP-2.3 +++ /dev/null @@ -1,52 +0,0 @@ -The OpenLDAP Public License - Version 2.3, 28 July 2000 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements -and notices. - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Redistributions must contain a verbatim copy of this document. - -4. The name "OpenLDAP" must not be used to endorse or promote -products derived from this Software without prior written permission -of the OpenLDAP Foundation. - -5. Products derived from this Software may not be called "OpenLDAP" -nor may "OpenLDAP" appear in their names without prior written -permission of the OpenLDAP Foundation. - -6. Due credit should be given to the OpenLDAP Project -(http://www.openldap.org/). - -7. The OpenLDAP Foundation may revise this license from time to -time. Each revision is distinguished by a version number. You -may use the Software under terms of this license revision or under -the terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS -``AS IS'' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION OR ITS 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. - -OpenLDAP is a trademark of the OpenLDAP Foundation. - -Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. - diff --git a/tests/licensedcode/data/more_licenses/tests/OLDAP/OpenLDAP-2.yml b/tests/licensedcode/data/more_licenses/tests/OLDAP/OpenLDAP-2.yml deleted file mode 100644 index 968f60c4f8d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OLDAP/OpenLDAP-2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openldap-2.3 diff --git a/tests/licensedcode/data/more_licenses/tests/OPL/opl-1.0 b/tests/licensedcode/data/more_licenses/tests/OPL/opl-1.0 deleted file mode 100644 index 3cbc51eaa8a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OPL/opl-1.0 +++ /dev/null @@ -1,432 +0,0 @@ - OPEN PUBLIC LICENSE - Version 1.0 - - - -1. Definitions. - - 1.1. "Contributor" means each entity that creates or contributes - to the creation of Modifications. - - 1.2. "Contributor Version" means the combination of the - Original Code, prior Modifications used by a Contributor, and - the Modifications made by that particular Contributor. - - 1.3. "Covered Code" means the Original Code or Modifications or - the combination of the Original Code and Modifications, in each - case including portions thereof. - - 1.4. "Electronic Distribution Mechanism" means a mechanism - generally accepted in the software development community for - the electronic transfer of data. - - 1.5. "Executable" means Covered Code in any form other than - Source Code. - - 1.6. "Initial Developer" means the individual or entity identified - as the Initial Developer in the Source Code notice required by - Exhibit A. - - 1.7. "Larger Work" means a work, which combines Covered Code - or portions thereof with code not governed by the terms of - this License. - - 1.8. "License" means this document and the corresponding addendum - described in section 6.4 below. - - 1.9. "Modifications" means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, - a Modification is: - - A. Any addition to or deletion from the contents of a - file containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original - Code or previous Modifications. - - 1.10. "Original Code" means Source Code of computer software code - which is described in the Source Code notice required by Exhibit - A as Original Code, and which, at the time of its release under - this License is not already Covered Code governed by this License. - - 1.11. "Source Code" means the preferred form of the Covered Code - for making modifications to it, including all modules it contains, - plus any associated interface definition files, scripts used - to control compilation and installation of an Executable, or a - list of source code differential comparisons against either the - Original Code or another well known, available Covered Code of - the Contributor's choice. The Source Code can be in a compressed - or archival form, provided the appropriate decompression or - de-archiving software is widely available for no charge. - - 1.12. "You" means an individual or a legal entity exercising - rights under, and complying with all of the terms of, this License - or a future version of this License issued under Section 6.1. For - legal entities, "You'' includes any entity which controls, is - controlled by, or is under common control with You. For purposes - of this definition, "control'' means (a) the power, direct or - indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of fifty - percent (50%) or more of the outstanding shares or beneficial - ownership of such entity. - - 1.13 "License Author" means Lutris Technologies, Inc. - -2. Source Code License. - - 2.1. The Initial Developer Grant. The Initial Developer hereby - grants You a worldwide, royalty-free, non-exclusive license, - subject to third party intellectual property claims: - - (a) under intellectual property rights (other than patent - or trademark) to use, reproduce, modify, display, perform, - sublicense and distribute the Original Code (or portions - thereof) with or without Modifications, or as part of a - Larger Work; and - - (b) under patents now or hereafter owned or controlled - by Initial Developer, to make, have made, use and sell - (``offer to sell and import'') the Original Code (or - portions thereof), but solely to the extent that any such - patent is reasonably necessary to enable You to Utilize - the Original Code (or portions thereof) and not to any - greater extent that may be necessary to Utilize further - Modifications or combinations. - - 2.2. Contributor Grant. Each Contributor hereby grants You a - worldwide, royalty-free, non-exclusive license, subject to third - party intellectual property claims: - - (a) under intellectual property rights (other than patent - or trademark) to use, reproduce, modify, display, perform, - sublicense and distribute the Modifications created - by such Contributor (or portions thereof) either on an - unmodified basis, with other Modifications, as Covered - Code or as part of a Larger Work; and - - (b) under patents now or hereafter owned or controlled - by Contributor, to to make, have made, use and sell - (``offer to sell and import'') the Contributor Version - (or portions thereof), but solely to the extent that - any such patent is reasonably necessary to enable You to - Utilize the Contributor Version (or portions thereof), - and not to any greater extent that may be necessary to - Utilize further Modifications or combinations - -3. Distribution Obligations. - - 3.1. Application of License. The Modifications which You create - or to which You contribute are governed by the terms of this - License, including without limitation Section 2.2. The Source - Code version of Covered Code may be distributed only under - the terms of this License or a future version of this License - released under Section 6.1, and You must include a copy of this - License with every copy of the Source Code You distribute. You - may not offer or impose any terms on any Source Code version - that alters or restricts the applicable version of this License - or the recipients' rights hereunder. However, You may include - an additional document offering the additional rights described - in Section 3.5. - - 3.2. Availability of Source Code. Any Modification which - You create or to which You contribute must be made available, - prior to any use, except for internal development and practice, - in Source Code form under the terms of this License either - on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve - (12) months after the date it initially became available, or at - least six (6) months after a subsequent version of that particular - Modification has been made available to such recipients. You - shall notify the Initial Developer of the Modification and the - location of the Source Code via the contact means provided for in - the Developer Specific license. Initial Developer will be acting - as maintainer of the Source Code and may provide an Electronic - Distribution mechanism for the Modification to be made available. - - 3.3. Description of Modifications. You must cause all Covered - Code to which you contribute to contain a file documenting the - changes You made to create that Covered Code and the date of - any change. You must include a prominent statement that the - Modification is derived, directly or indirectly, from Original - Code provided by the Initial Developer and including the name - of the Initial Developer in (a) the Source Code, and (b) in - any notice in an Executable version or related documentation in - which You describe the origin or ownership of the Covered Code. - - 3.4. Intellectual Property Matters - - (a) Third Party Claims. If You have knowledge that a - party claims an intellectual property right in particular - functionality or code (or its utilization under this - License), you must include a text file with the source - code distribution titled "LEGAL" which describes the claim - and the party making the claim in sufficient detail that - a recipient will know whom to contact. If you obtain such - knowledge after You make Your Modification available as - described in Section 3.2, You shall promptly modify the - LEGAL file in all copies You make available thereafter - and shall take other steps (such as notifying appropriate - mailing lists or newsgroups) reasonably calculated to - inform those who received the Covered Code that new - knowledge has been obtained. - - (b) Representations. - - Contributor represents that, except as disclosed pursuant - to Section 3.4(a) above, Contributor believes that - Contributor's Modifications are Contributor's original - creation(s) and/or Contributor has sufficient rights to - grant the rights conveyed by this License. - - 3.5. Required Notices. You must duplicate the notice in Exhibit - A in each file of the Source Code, and this License in any - documentation for the Source Code, where You describe recipients' - rights relating to Covered Code. If You created one or more - Modification(s), You may add your name as a Contributor to the - notice described in Exhibit A. If it is not possible to put such - notice in a particular Source Code file due to its structure, - then you must include such notice in a location (such as a - relevant directory file) where a user would be likely to look for - such a notice. You may choose to offer, and to charge a fee for, - warranty, support, indemnity or liability obligations to one or - more recipients of Covered Code. However, You may do so only on - Your own behalf, and not on behalf of the Initial Developer or - any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity or liability obligation is offered by - You alone, and You hereby agree to indemnify the Initial Developer - and every Contributor for any liability incurred by the Initial - Developer or such Contributor as a result of warranty, support, - indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. You may distribute - Covered Code in Executable form only if the requirements of - Section 3.1-3.5 have been met for that Covered Code, and if - You include a notice stating that the Source Code version of - the Covered Code is available under the terms of this License, - including a description of how and where You have fulfilled the - obligations of Section 3.2. The notice must be conspicuously - included in any notice in an Executable version, related - documentation or collateral in which You describe recipients' - rights relating to the Covered Code. You may distribute the - Executable version of Covered Code under a license of Your choice, - which may contain terms different from this License, provided - that You are in compliance with the terms of this License and - that the license for the Executable version does not attempt to - limit or alter the recipient's rights in the Source Code version - from the rights set forth in this License. If You distribute the - Executable version under a different license You must make it - absolutely clear that any terms which differ from this License - are offered by You alone, not by the Initial Developer or any - Contributor. You hereby agree to indemnify the Initial Developer - and every Contributor for any liability incurred by the Initial - Developer or such Contributor as a result of any such terms - You offer. If you distribute executable versions containing - Covered Code, you must reproduce the notice in Exhibit B in the - documentation and/or other materials provided with the product. - - 3.7. Larger Works. You may create a Larger Work by combining - Covered Code with other code not governed by the terms of this - License and distribute the Larger Work as a single product. In - such a case, You must make sure the requirements of this License - are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of - this License with respect to some or all of the Covered Code - due to statute or regulation then You must: (a) comply with the - terms of this License to the maximum extent possible; and (b) - Cite all of the statutes or regulations that prohibit you from - complying fully with this license. (c) describe the limitations - and the code they affect. Such description must be included in - the LEGAL file described in Section 3.4 and must be included - with all distributions of the Source Code. Except to the extent - prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be - able to understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A, and to related Covered Code. - -6. Versions of the License. - - 6.1. New Versions. License Author may publish revised and/or - new versions of the License from time to time. Each version will - be given a distinguishing version number and shall be submitted - to opensource.org for certification. - - 6.2. Effect of New Versions. Once Covered Code has been published - under a particular version of the License, You may always continue - to use it under the terms of that version. You may also choose to - use such Covered Code under the terms of any subsequent version - of the License published by Initial Developer. No one other than - Initial Developer has the right to modify the terms applicable - to Covered Code created under this License. - - 6.3. Derivative Works. If you create or use a modified version of - this License, except in association with the required Developer - Specific License described in section 6.4, (which you may only do - in order to apply it to code which is not already Covered Code - governed by this License), you must (a) rename Your license so - that the phrases ``Open'', ``OpenPL'', ``OPL'' or any confusingly - similar phrase do not appear anywhere in your license and (b) - otherwise make it clear that your version of the license contains - terms which differ from the Open Public License. (Filling in - the name of the Initial Developer, Original Code or Contributor - in the notice described in Exhibit A shall not of themselves be - deemed to be modifications of this License.) - -6.4. Required Additional Developer Specific License - - This license is a union of the following two parts that should - be found as text files in the same place (directory), in the - order of preeminence: - - [1] A Developer specific license. - - [2] The contents of this file OPL_1_0.TXT, stating the general - licensing policy of the software. - - In case of conflicting dispositions in the parts of this license, - the terms of the lower-numbered part will always be superseded - by the terms of the higher numbered part. - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, - INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE - IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR - NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE - OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE - DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY - OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, - REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES - AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE - IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - 8.1 Termination upon Breach - - This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to - cure such breach within 30 days of becoming aware of the breach. - All sublicenses to the Covered Code, which are properly granted, - shall survive any termination of this License. Provisions that, - by their nature, must remain in effect beyond the termination - of this License shall survive. - - - - 8.2. Termination Upon Litigation. If You initiate litigation - by asserting a patent infringement claim (excluding declatory - judgment actions) against Initial Developer or a Contributor - (the Initial Developer or Contributor against whom You file such - action is referred to as "Participant") alleging that: - - (a) such Participant's Contributor Version directly or - indirectly infringes any patent, then any and all rights - granted by such Participant to You under Sections 2.1 - and/or 2.2 of this License shall, upon 60 days notice - from Participant terminate prospectively, unless if within - 60 days after receipt of notice You either: (i) agree in - writing to pay Participant a mutually agreeable reasonable - royalty for Your past and future use of Modifications - made by such Participant, or (ii) withdraw Your litigation - claim with respect to the Contributor Version against such - Participant. If within 60 days of notice, a reasonable - royalty and payment arrangement are not mutually agreed - upon in writing by the parties or the litigation claim is - not withdrawn, the rights granted by Participant to You - under Sections 2.1 and/or 2.2 automatically terminate at - the expiration of the 60 day notice period specified above. - - (b) any software, hardware, or device, other than such - Participant's Contributor Version, directly or indirectly - infringes any patent, then any rights granted to You by - such Participant under Sections 2.1(b) and 2.2(b) are - revoked effective as of the date You first made, used, - sold, distributed, or had made, Modifications made by - that Participant. - - 8.3. If You assert a patent infringement claim against - Participant alleging that such Participant's Contributor Version - directly or indirectly infringes any patent where such claim - is resolved (such as by license or settlement) prior to the - initiation of patent infringement litigation, then the reasonable - value of the licenses granted by such Participant under Sections - 2.1 or 2.2 shall be taken into account in determining the amount - or value of any payment or license. - - 8.4. In the event of termination under Sections 8.1 or 8.2 - above, all end user license agreements (excluding distributors - and resellers) which have been validly granted by You or - any distributor hereunder prior to termination shall survive - termination. - - - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED - CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO - YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, - OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT - LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER - FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES - OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE - POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL - NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM - SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS - SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION - OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT - EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a ``commercial item,'' as that term - is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of - ``commercial computer software'' and ``commercial computer - software documentation,'' as such terms are used in 48 - C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 - and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all - U.S. Government End Users acquire Covered Code with only those - rights set forth herein. - -11. MISCELLANEOUS. - - This section was intentionally left blank. The contents of this - section are found in the corresponding addendum described above. - -12. RESPONSIBILITY FOR CLAIMS. - - Except in cases where another Contributor has failed to comply - with Section 3.4, You are responsible for damages arising, - directly or indirectly, out of Your utilization of rights under - this License, based on the number of copies of Covered Code - you made available, the revenues you received from utilizing - such rights, and other relevant factors. You agree to work - with affected parties to distribute with Initial Developer - responsibility on an equitable basis. - -EXHIBIT A. - - Text for this Exhibit A is found in the corresponding addendum, - described in section 6.4 above, text file provided by the - Initial Developer. This license is not valid or complete with - out that file. - -EXHIBIT B. - - Text for this Exhibit B is found in the corresponding addendum, - described in section 6.4 above, text file provided by the - Initial Developer. This license is not valid or complete with - out that file. diff --git a/tests/licensedcode/data/more_licenses/tests/OPL/opl-1.yml b/tests/licensedcode/data/more_licenses/tests/OPL/opl-1.yml deleted file mode 100644 index 7fb0b48b807..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OPL/opl-1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - open-public diff --git a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.0.txt deleted file mode 100644 index e5bc64d512a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.0.txt +++ /dev/null @@ -1,48 +0,0 @@ -Open Software License -v. 2.0 - -This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: - -Licensed under the Open Software License version 2.0 - -1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: - -a) to reproduce the Original Work in copies; - -b) to prepare derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein. - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, for patent infringement (i) against Licensor with respect to a patent applicable to software or (ii) against any entity with respect to a patent applicable to the Original Work (but excluding combinations of the Original Work with other software or hardware). - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2003 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. diff --git a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.0.yml deleted file mode 100644 index 43ba8acd5df..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - osl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.1.txt b/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.1.txt deleted file mode 100644 index 5bea9971a41..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.1.txt +++ /dev/null @@ -1,48 +0,0 @@ -The Open Software License -v. 2.1 - -This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: - -Licensed under the Open Software License version 2.1 - -1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: - -a) to reproduce the Original Work in copies; - -b) to prepare derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein. - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. � 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. diff --git a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.1.yml b/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.1.yml deleted file mode 100644 index eab3a013ab0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OSL/OSL-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - osl-2.1 diff --git a/tests/licensedcode/data/more_licenses/tests/OZPLB/OZPLB-1.1.txt b/tests/licensedcode/data/more_licenses/tests/OZPLB/OZPLB-1.1.txt deleted file mode 100644 index fd9342b395c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OZPLB/OZPLB-1.1.txt +++ /dev/null @@ -1,85 +0,0 @@ -Australian Public Licence B (OZPLB) - -Version 1-1 - -Copyright (c) 2006, P2P Networks and Applications Research Group, The University -of Melbourne - -All rights reserved. - -Developed by: P2P Networks and Applications Research Group - The University of Melbourne, Australia - http://www.cs.mu.oz.au/p2p - -Where the country of The University of Melbourne (as indicated above) is not -Australia, permission is granted by The University of Melbourne, free of charge, -to any person obtaining a copy of this software and any associated documentation -files (the "Software") to deal with the Software, without restriction, under the -terms of the University of Illinois/NCSA Open Source License (available at -http://www.opensource.org/licenses/UoI-NCSA.php), in which case the provisions -of the University of Illinois/NCSA Open Source License are applicable instead of -those of this licence. - -Permission is otherwise granted by The University of Melbourne, free of charge, -to any person obtaining a copy of the Software to deal with the Software without -restriction, including (without limitation) the rights to use, copy, modify, -adapt, merge, publish, distribute, communicate to the public, sublicense, and/or -sell, lend or rent out copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -- Redistributions of source code must retain the above copyright notice, the - above permissions, this list of conditions and the following disclaimers and - limitations. - -- Redistributions in binary form must reproduce the above copyright notice, the - above permissions, this list of conditions and the following disclaimers in - the documentation and/or other materials provided with the distribution and - limitations. - -- Neither the name of The University of Melbourne, nor the names of its - contributors, may be used to endorse or promote products derived from this - Software without specific prior written permission. - -- The construction, validity and performance of this licence is governed by the - laws in force in Victoria, Australia. - -EXCEPT AS EXPRESSLY STATED IN THIS LICENCE AND TO THE FULL EXTENT PERMITTED BY -APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS-IS", AND The University of -Melboune AND ITS CONTRIBUTORS MAKE NO REPRESENTATIONS, WARRANTIES OR CONDITIONS -OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY -REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS OR ACCURACY OF -THE SOFTWARE, OR OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, -NONINFRINGEMENT, THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR -ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. - -TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL The University -of Melbourne OR ITS CONTRIBUTORS BE LIABLE ON ANY LEGAL THEORY (INCLUDING, -WITHOUT LIMITATION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHERWISE) FOR ANY -CLAIM, LOSS, DAMAGES OR OTHER LIABILITY, INCLUDING (WITHOUT LIMITATION) LOSS OF -PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR -LOSS OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER -ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -EXEMPLARY DAMAGES, ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE, THE -SOFTWARE OR THE USE OF OR OTHER DEALINGS WITH THE SOFTWARE, EVEN IF The -University of Melbourne OR ITS CONTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY -OF SUCH CLAIM, LOSS, DAMAGES OR OTHER LIABILITY. - -If applicable legislation implies representations, warranties, or conditions, or -imposes obligations or liability on The University of Melbourne or one of its -contributors in respect of the Software that cannot be wholly or partly excluded, -restricted or modified, the liability of The University of Melbourne or the -contributor is limited, to the full extent permitted by the applicable -legislation, at its option, to: - -a. in the case of goods, any one or more of the following: - -i. the replacement of the goods or the supply of equivalent goods; -ii. the repair of the goods; -iii. the payment of the cost of replacing the goods or of acquiring equivalent - goods; -iv. the payment of the cost of having the goods repaired; or - -b. in the case of services: - -i. the supplying of the services again; or -ii. the payment of the cost of having the services supplied again. diff --git a/tests/licensedcode/data/more_licenses/tests/OZPLB/OZPLB-1.1.yml b/tests/licensedcode/data/more_licenses/tests/OZPLB/OZPLB-1.1.yml deleted file mode 100644 index 34e0e4f4968..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OZPLB/OZPLB-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ozplb-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/OpenMap/openmap.md b/tests/licensedcode/data/more_licenses/tests/OpenMap/openmap.md deleted file mode 100644 index cba0d76e630..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OpenMap/openmap.md +++ /dev/null @@ -1,145 +0,0 @@ -OpenMap Software License Agreement -====== - -This Agreement sets forth the terms and conditions under which -the software known as OpenMap(tm) will be licensed by BBN -Technologies ("BBN") to you ("Licensee"), and by which Derivative -Works (as hereafter defined) of OpenMap will be licensed by you to BBN. - -Definitions: - -- "Derivative Work(s)" shall mean any revision, enhancement, - modification, translation, abridgement, condensation or - expansion created by Licensee or BBN that is based upon the - Software or a portion thereof that would be a copyright - infringement if prepared without the authorization of the - copyright owners of the Software or portion thereof. - -- "OpenMap" shall mean a programmer's toolkit for building map - based applications as originally created by BBN, and any - Derivative Works thereof as created by either BBN or Licensee, - but shall include only those Derivative Works BBN has approved - for inclusion into, and BBN has integrated into OpenMap. - -- "Standard Version" shall mean OpenMap, as originally created by - BBN. - -- "Software" shall mean OpenMap and the Derivative Works created - by Licensee and the collection of files distributed by the - Licensee with OpenMap, and the collection of files created - through textual modifications. - -- "Copyright Holder" is whoever is named in the copyright or - copyrights for the Derivative Works. - -- "Licensee" is you, only if you agree to be bound by the terms - and conditions set forth in this Agreement. - -- "Reasonable copying fee" is whatever you can justify on the - basis of media cost, duplication charges, time of people - involved. - -- "Freely Available" means that no fee is charged for the item - itself, though there may be fees involved in handling the item. - It also means that recipients of the item may redistribute it - under the same conditions that they received it. - -1. BBN maintains all rights, title and interest in and to -OpenMap, including all applicable copyrights, trade secrets, -patents and other intellectual rights therein. Licensee hereby -grants to BBN all right, title and interest into the compilation -of OpenMap. Licensee shall own all rights, title and interest -into the Derivative Works created by Licensee (subject to the -compilation ownership by BBN). - -2. BBN hereby grants to Licensee a royalty free, worldwide right -and license to use, copy, distribute and make Derivative Works of -OpenMap, and sublicensing rights of any of the foregoing in -accordance with the terms and conditions of this Agreement, -provided that you duplicate all of the original copyright notices -and associated disclaimers. - -3. Licensee hereby grants to BBN a royalty free, worldwide right -and license to use, copy, distribute and make Derivative Works of -Derivative Works created by Licensee and sublicensing rights of -any of the foregoing. - -4. Licensee's right to create Derivative Works in the Software is -subject to Licensee agreement to insert a prominent notice in -each changed file stating how and when you changed that file, and -provided that you do at least ONE of the following: - - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or - placing the modifications on a major archive site and by - providing your modifications to the Copyright Holder. - - - b) use the modified Package only within your corporation or - organization. - - - c) rename any non-standard executables so the names do not - conflict with standard executables, which must also be - provided, and provide a separate manual page for each - non-standard executable that clearly documents how it - differs from OpenMap. - - - d) make other distribution arrangements with the Copyright - Holder. -5. Licensee may distribute the programs of this Software in -object code or executable form, provided that you do at least ONE -of the following: - - - a) distribute an OpenMap version of the executables and - library files, together with instructions (in the manual - page or equivalent) on where to get OpenMap. - - - b) accompany the distribution with the machine-readable - source code with your modifications. - - - c) accompany any non-standard executables with their - corresponding OpenMap executables, giving the non-standard - executables non-standard names, and clearly documenting - the differences in manual pages (or equivalent), together - with instructions on where to get OpenMap. - - - d) make other distribution arrangements with the Copyright - Holder. -6. You may charge a reasonable copying fee for any distribution -of this Software. You may charge any fee you choose for support -of this Software. You may not charge a fee for this Software -itself. However, you may distribute this Software in aggregate -with other (possibly commercial) programs as part of a larger -(possibly commercial) software distribution provided that you do -not advertise this Software as a product of your own. - -7. The data and images supplied as input to or produced as output -from the Software do not automatically fall under the copyright -of this Software, but belong to whomever generated them, and may -be sold commercially, and may be aggregated with this Software. - -8. BBN makes no representation about the suitability of OpenMap -for any purposes. BBN shall have no duty or requirement to -include any Derivative Works into OpenMap. - -9. Each party hereto represents and warrants that they have the -full unrestricted right to grant all rights and licenses granted -to the other party herein. - -10. THIS PACKAGE IS PROVIDED "AS IS" WITHOUT WARRANTIES OF ANY -KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING (BUT NOT LIMITED TO) -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND -WITHOUT ANY WARRANTIES AS TO NONINFRINGEMENT. - -11. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, -SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER RESULTING -FROM LOSS OF USE OF DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS CONDUCT, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS PACKAGE. - -12. Without limitation of the foregoing, You agree to commit no -act which, directly or indirectly, would violate any U.S. law, -regulation, or treaty, or any other international treaty or -agreement to which the United States adheres or with which the -United States complies, relating to the export or re-export of -any commodities, software, or technical data. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/OpenMap/openmap.yml b/tests/licensedcode/data/more_licenses/tests/OpenMap/openmap.yml deleted file mode 100644 index e17a9eed7ae..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/OpenMap/openmap.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openmap diff --git a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.0.txt b/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.0.txt deleted file mode 100644 index 72c2805f6bd..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.0.txt +++ /dev/null @@ -1,68 +0,0 @@ --------------------------------------------------------------------- -The PHP License, version 3.0 -Copyright (c) 1999 - 2006 The PHP Group. All rights reserved. --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products -derived from this software without prior written permission. For -written permission, please contact group@php.net. - -4. Products derived from this software may not be called "PHP", nor -may "PHP" appear in their name, without prior written permission -from group@php.net. You may indicate that your software works in -conjunction with PHP by saying "Foo for PHP" instead of calling -it "PHP Foo" or "phpfoo" - -5. The PHP Group may publish revised and/or new versions of the -license from time to time. Each version will be given a -distinguishing version number. -Once covered code has been published under a particular version -of the license, you may always continue to use it under the terms -of that version. You may also choose to use such covered code -under the terms of any subsequent version of the license -published by the PHP Group. No one other than the PHP Group has -the right to modify the terms applicable to covered code created -under this License. - -6. Redistributions of any form whatsoever must retain the following -acknowledgment: -"This product includes PHP, freely available from -". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP - DEVELOPMENT TEAM OR ITS 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. - - -------------------------------------------------------------------- - - This software consists of voluntary contributions made by many - individuals on behalf of the PHP Group. - - The PHP Group can be contacted via Email at group@php.net. - - For more information on the PHP Group and the PHP project, - please see . - - This product includes the Zend Engine, freely available at - . diff --git a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.0.yml b/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.0.yml deleted file mode 100644 index b3d819d0df3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.01.txt b/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.01.txt deleted file mode 100644 index 4f175fb2b79..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.01.txt +++ /dev/null @@ -1,68 +0,0 @@ -The PHP License, version 3.01 - -Copyright (c) 1999 - 2012 The PHP Group. All rights reserved. - - -Redistribution and use in source and binary forms, with or without -modification, is 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. The name "PHP" must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact group@php.net. - - 4. Products derived from this software may not be called "PHP", nor - may "PHP" appear in their name, without prior written permission - from group@php.net. You may indicate that your software works in - conjunction with PHP by saying "Foo for PHP" instead of calling - it "PHP Foo" or "phpfoo" - - 5. The PHP Group may publish revised and/or new versions of the - license from time to time. Each version will be given a - distinguishing version number. - Once covered code has been published under a particular version - of the license, you may always continue to use it under the terms - of that version. You may also choose to use such covered code - under the terms of any subsequent version of the license - published by the PHP Group. No one other than the PHP Group has - the right to modify the terms applicable to covered code created - under this License. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes PHP software, freely available from - ". - -THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND -ANY EXPRESSED 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 PHP -DEVELOPMENT TEAM OR ITS 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. - --------------------------------------------------------------------- - -This software consists of voluntary contributions made by many -individuals on behalf of the PHP Group. - -The PHP Group can be contacted via Email at group@php.net. - -For more information on the PHP Group and the PHP project, -please see . - -PHP includes the Zend Engine, freely available at -. diff --git a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.01.yml b/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.01.yml deleted file mode 100644 index 9cd39497194..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/PHP/PHP-3.01.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - php-3.01 diff --git a/tests/licensedcode/data/more_licenses/tests/PostgreSQL/PostgreSQL.txt b/tests/licensedcode/data/more_licenses/tests/PostgreSQL/PostgreSQL.txt deleted file mode 100644 index f5775a4c593..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/PostgreSQL/PostgreSQL.txt +++ /dev/null @@ -1,12 +0,0 @@ -PostgreSQL Database Management System -(formerly known as Postgres, then as Postgres95) - -Portions Copyright (c) 1996-2010, The PostgreSQL Global Development Group - -Portions Copyright (c) 1994, The Regents of the University of California - -Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies. - -IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. diff --git a/tests/licensedcode/data/more_licenses/tests/PostgreSQL/PostgreSQL.yml b/tests/licensedcode/data/more_licenses/tests/PostgreSQL/PostgreSQL.yml deleted file mode 100644 index 7749d28a57e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/PostgreSQL/PostgreSQL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - postgresql diff --git a/tests/licensedcode/data/more_licenses/tests/Python/Jython.txt b/tests/licensedcode/data/more_licenses/tests/Python/Jython.txt deleted file mode 100644 index 4b90c86a786..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Python/Jython.txt +++ /dev/null @@ -1,198 +0,0 @@ -A. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING JYTHON -======================================================= - -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 --------------------------------------------- - -1. This LICENSE AGREEMENT is between the Python Software Foundation -("PSF"), and the Individual or Organization ("Licensee") accessing and -otherwise using this software ("Jython") in source or binary form and -its associated documentation. - -2. Subject to the terms and conditions of this License Agreement, PSF -hereby grants Licensee a nonexclusive, royalty-free, world-wide -license to reproduce, analyze, test, perform and/or display publicly, -prepare derivative works, distribute, and otherwise use Jython alone -or in any derivative version, provided, however, that PSF's License -Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2007 -Python Software Foundation; All Rights Reserved" are retained in -Jython alone or in any derivative version prepared by Licensee. - -3. In the event Licensee prepares a derivative work that is based on -or incorporates Jython or any part thereof, and wants to make -the derivative work available to others as provided herein, then -Licensee hereby agrees to include in any such work a brief summary of -the changes made to Jython. - -4. PSF is making Jython available to Licensee on an "AS IS" -basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS -FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF JYTHON WILL NOT -INFRINGE ANY THIRD PARTY RIGHTS. - -5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF JYTHON -FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS -A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING JYTHON, -OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -7. Nothing in this License Agreement shall be deemed to create any -relationship of agency, partnership, or joint venture between PSF and -Licensee. This License Agreement does not grant permission to use PSF -trademarks or trade name in a trademark sense to endorse or promote -products or services of Licensee, or any third party. - -8. By copying, installing or otherwise using Jython, Licensee -agrees to be bound by the terms and conditions of this License -Agreement. - -Jython 2.0, 2.1 License -================================ - -Copyright (c) 2000-2009 Jython Developers. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -- Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -- 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. - -- Neither the name of the Jython Developers 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 REGENTS 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. - - - - -JPython 1.1.x Software License. -========================= - -______________________________________________________________________ - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON THE "ACCEPT" BUTTON WHERE INDICATED, OR BY INSTALLING, -COPYING OR OTHERWISE USING THE SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO -THE TERMS AND CONDITIONS OF THIS AGREEMENT. - -______________________________________________________________________ - -JPython version 1.1.x - -1. This LICENSE AGREEMENT is between the Corporation for National Research -Initiatives, having an office at 1895 Preston White Drive, Reston, VA -20191 ("CNRI"), and the Individual or Organization ("Licensee") -accessing and using JPython version 1.1.x in source or binary form and -its associated documentation as provided herein ("Software"). - -2. Subject to the terms and conditions of this License Agreement, CNRI -hereby grants Licensee a non-exclusive, non-transferable, royalty-free, -world-wide license to reproduce, analyze, test, perform and/or display -publicly, prepare derivative works, distribute, and otherwise use the -Software alone or in any derivative version, provided, however, that -CNRI's License Agreement and CNRI's notice of copyright, i.e., -"Copyright ©1996-1999 Corporation for National Research Initiatives; -All Rights Reserved" are both retained in the Software, alone or in any -derivative version prepared by Licensee. - -Alternatively, in lieu of CNRI's License Agreement, Licensee may -substitute the following text (omitting the quotes), provided, however, -that such text is displayed prominently in the Software alone or in any -derivative version prepared by Licensee: "JPython (Version 1.1.x) is -made available subject to the terms and conditions in CNRI's License -Agreement. This Agreement may be located on the Internet using the -following unique, persistent identifier (known as a handle): -1895.22/1006. The License may also be obtained from a proxy server on -the Web using the following URL: http://hdl.handle.net/1895.22/1006." - -3. In the event Licensee prepares a derivative work that is based on or -incorporates the Software or any part thereof, and wants to make the -derivative work available to the public as provided herein, then -Licensee hereby agrees to indicate in any such work, in a prominently -visible way, the nature of the modifications made to CNRI's Software. - -4. Licensee may not use CNRI trademarks or trade name, including JPython -or CNRI, in a trademark sense to endorse or promote products or -services of Licensee, or any third party. Licensee may use the mark -JPython in connection with Licensee's derivative versions that are -based on or incorporate the Software, but only in the form -"JPython-based ___________________," or equivalent. - -5. CNRI is making the Software available to Licensee on an "AS IS" basis. -CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY -OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY -REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY -PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE -ANY THIRD PARTY RIGHTS. - -6. CNRI SHALL NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR -ANY INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF -USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE -THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME STATES DO NOT -ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER -MAY NOT APPLY TO LICENSEE. - -7. This License Agreement may be terminated by CNRI (i) immediately upon -written notice from CNRI of any material breach by the Licensee, if the -nature of the breach is such that it cannot be promptly remedied; or -(ii) sixty (60) days following notice from CNRI to Licensee of a -material remediable breach, if Licensee has not remedied such breach -within that sixty-day period. - -8. This License Agreement shall be governed by and interpreted in all -respects by the law of the State of Virginia, excluding conflict of law -provisions. Nothing in this Agreement shall be deemed to create any -relationship of agency, partnership, or joint venture between CNRI and -Licensee. - -9. By clicking on the "ACCEPT" button where indicated, or by installing, -copying or otherwise using the Software, Licensee agrees to be bound by -the terms and conditions of this License Agreement. - -[ACCEPT BUTTON] - -B. HISTORY OF THE SOFTWARE -======================================================= - -JPython was created in late 1997 by Jim Hugunin. Jim was also the -primary developer while he was at CNRI. In February 1999 Barry Warsaw -took over as primary developer and released JPython version 1.1. - -In October 2000 Barry helped move the software to SourceForge -where it was renamed to Jython. Jython 2.0 and 2.1 were developed -under the Jython specific license below. - -From the 2.2 release on, Jython contributors have signed -Python Software Foundation contributor agreements and releases are -covered under the Python Software Foundation license version 2. - -The standard library is covered by the Python Software Foundation -license as well. See the Lib/LICENSE file for details. - -The zxJDBC package was written by Brian Zimmer and originally licensed -under the GNU Public License. The package is now covered by the Jython -Software License. - -The command line interpreter is covered by the Apache Software -License. See the org/apache/LICENSE file for details. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/Python/Jython.yml b/tests/licensedcode/data/more_licenses/tests/Python/Jython.yml deleted file mode 100644 index 449ec948776..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Python/Jython.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expressions: - - cnri-jython - - bsd-new - - bsd-simplified - - jpython-1.1 - - unknown - - apache-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Python/Python-2.0.txt b/tests/licensedcode/data/more_licenses/tests/Python/Python-2.0.txt deleted file mode 100644 index 8def3092240..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Python/Python-2.0.txt +++ /dev/null @@ -1,192 +0,0 @@ -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 --------------------------------------------- - -1. This LICENSE AGREEMENT is between the Python Software Foundation -("PSF"), and the Individual or Organization ("Licensee") accessing and -otherwise using this software ("Python") in source or binary form and -its associated documentation. - -2. Subject to the terms and conditions of this License Agreement, PSF -hereby grants Licensee a nonexclusive, royalty-free, world-wide -license to reproduce, analyze, test, perform and/or display publicly, -prepare derivative works, distribute, and otherwise use Python -alone or in any derivative version, provided, however, that PSF's -License Agreement and PSF's notice of copyright, i.e., "Copyright (c) -2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights -Reserved" are retained in Python alone or in any derivative version -prepared by Licensee. - -3. In the event Licensee prepares a derivative work that is based on -or incorporates Python or any part thereof, and wants to make -the derivative work available to others as provided herein, then -Licensee hereby agrees to include in any such work a brief summary of -the changes made to Python. - -4. PSF is making Python available to Licensee on an "AS IS" -basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS -FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT -INFRINGE ANY THIRD PARTY RIGHTS. - -5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON -FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS -A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, -OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -6. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -7. Nothing in this License Agreement shall be deemed to create any -relationship of agency, partnership, or joint venture between PSF and -Licensee. This License Agreement does not grant permission to use PSF -trademarks or trade name in a trademark sense to endorse or promote -products or services of Licensee, or any third party. - -8. By copying, installing or otherwise using Python, Licensee -agrees to be bound by the terms and conditions of this License -Agreement. - -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 -------------------------------------------- - -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 - -1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an -office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the -Individual or Organization ("Licensee") accessing and otherwise using -this software in source or binary form and its associated -documentation ("the Software"). - -2. Subject to the terms and conditions of this BeOpen Python License -Agreement, BeOpen hereby grants Licensee a non-exclusive, -royalty-free, world-wide license to reproduce, analyze, test, perform -and/or display publicly, prepare derivative works, distribute, and -otherwise use the Software alone or in any derivative version, -provided, however, that the BeOpen Python License is retained in the -Software, alone or in any derivative version prepared by Licensee. - -3. BeOpen is making the Software available to Licensee on an "AS IS" -basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS -FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT -INFRINGE ANY THIRD PARTY RIGHTS. - -4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE -SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS -AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY -DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. - -5. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -6. This License Agreement shall be governed by and interpreted in all -respects by the law of the State of California, excluding conflict of -law provisions. Nothing in this License Agreement shall be deemed to -create any relationship of agency, partnership, or joint venture -between BeOpen and Licensee. This License Agreement does not grant -permission to use BeOpen trademarks or trade names in a trademark -sense to endorse or promote products or services of Licensee, or any -third party. As an exception, the "BeOpen Python" logos available at -http://www.pythonlabs.com/logos.html may be used according to the -permissions granted on that web page. - -7. By copying, installing or otherwise using the software, Licensee -agrees to be bound by the terms and conditions of this License -Agreement. - -CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) --------------------------------------------------- - -IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. - -BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, -INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE -DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE -AGREEMENT. - -1. This LICENSE AGREEMENT is between the Corporation for National -Research Initiatives, having an office at 1895 Preston White Drive, -Reston, VA 20191 ("CNRI"), and the Individual or Organization -("Licensee") accessing and otherwise using Python 1.6, beta 1 -software in source or binary form and its associated documentation, -as released at the www.python.org Internet site on August 4, 2000 -("Python 1.6b1"). - -2. Subject to the terms and conditions of this License Agreement, CNRI -hereby grants Licensee a non-exclusive, royalty-free, world-wide -license to reproduce, analyze, test, perform and/or display -publicly, prepare derivative works, distribute, and otherwise use -Python 1.6b1 alone or in any derivative version, provided, however, -that CNRIs License Agreement is retained in Python 1.6b1, alone or -in any derivative version prepared by Licensee. - -Alternately, in lieu of CNRIs License Agreement, Licensee may -substitute the following text (omitting the quotes): "Python 1.6, -beta 1, is made available subject to the terms and conditions in -CNRIs License Agreement. This Agreement may be located on the -Internet using the following unique, persistent identifier (known -as a handle): 1895.22/1011. This Agreement may also be obtained -from a proxy server on the Internet using the -URL:http://hdl.handle.net/1895.22/1011". - -3. In the event Licensee prepares a derivative work that is based on -or incorporates Python 1.6b1 or any part thereof, and wants to make -the derivative work available to the public as provided herein, -then Licensee hereby agrees to indicate in any such work the nature -of the modifications made to Python 1.6b1. - -4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" -basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND -DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR -FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 -WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. - -5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE -SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR -LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, -OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY -THEREOF. - -6. This License Agreement will automatically terminate upon a material -breach of its terms and conditions. - -7. This License Agreement shall be governed by and interpreted in all -respects by the law of the State of Virginia, excluding conflict of -law provisions. Nothing in this License Agreement shall be deemed -to create any relationship of agency, partnership, or joint venture -between CNRI and Licensee. This License Agreement does not grant -permission to use CNRI trademarks or trade name in a trademark -sense to endorse or promote products or services of Licensee, or -any third party. - -8. By clicking on the "ACCEPT" button where indicated, or by copying, -installing or otherwise using Python 1.6b1, Licensee agrees to be -bound by the terms and conditions of this License Agreement. - -ACCEPT - -CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 --------------------------------------------------- - -Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, -The Netherlands. All rights reserved. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the name of Stichting Mathematisch -Centrum or CWI not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. - -STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE -FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tests/licensedcode/data/more_licenses/tests/Python/Python-2.0.yml b/tests/licensedcode/data/more_licenses/tests/Python/Python-2.0.yml deleted file mode 100644 index b3011b1788e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Python/Python-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - python diff --git a/tests/licensedcode/data/more_licenses/tests/QPL/QPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/QPL/QPL-1.0.txt deleted file mode 100644 index 6c7e2e297f4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/QPL/QPL-1.0.txt +++ /dev/null @@ -1,45 +0,0 @@ -THE Q PUBLIC LICENSE version 1.0 - -Copyright (C) 1999-2005 Trolltech AS, Norway. -Everyone is permitted to copy and distribute this license document. - -The intent of this license is to establish freedom to share and change the software regulated by this license under the open source model. - -This license applies to any software containing a notice placed by the copyright holder saying that it may be distributed under the terms of the Q Public License version 1.0. Such software is herein referred to as the Software. This license covers modification and distribution of the Software, use of third-party application programs based on the Software, and development of free software which uses the Software. - -Granted Rights - -1. You are granted the non-exclusive rights set forth in this license provided you agree to and comply with any and all conditions in this license. Whole or partial distribution of the Software, or software items that link with the Software, in any form signifies acceptance of this license. - -2. You may copy and distribute the Software in unmodified form provided that the entire package, including - but not restricted to - copyright, trademark notices and disclaimers, as released by the initial developer of the Software, is distributed. - -3. You may make modifications to the Software and distribute your modifications, in a form that is separate from the Software, such as patches. The following restrictions apply to modifications: - -a. Modifications must not alter or remove any copyright notices in the Software. -b. When modifications to the Software are released under this license, a non-exclusive royalty-free right is granted to the initial developer of the Software to distribute your modification in future versions of the Software provided such versions remain available under these terms in addition to any other license(s) of the initial developer. - -4. You may distribute machine-executable forms of the Software or machine-executable forms of modified versions of the Software, provided that you meet these restrictions: - -a. You must include this license document in the distribution. -b. You must ensure that all recipients of the machine-executable forms are also able to receive the complete machine-readable source code to the distributed Software, including all modifications, without any charge beyond the costs of data transfer, and place prominent notices in the distribution explaining this. -c. You must ensure that all modifications included in the machine-executable forms are available under the terms of this license. - -5. You may use the original or modified versions of the Software to compile, link and run application programs legally developed by you or by others. - -6. You may develop application programs, reusable components and other software items that link with the original or modified versions of the Software. These items, when distributed, are subject to the following requirements: - -a. You must ensure that all recipients of machine-executable forms of these items are also able to receive and use the complete machine-readable source code to the items without any charge beyond the costs of data transfer. -b. You must explicitly license all recipients of your items to use and re-distribute original and modified versions of the items in both machine-executable and source code forms. The recipients must be able to do so without any charges whatsoever, and they must be able to re-distribute to anyone they choose. -c. If the items are not available to the general public, and the initial developer of the Software requests a copy of the items, then you must supply one. - -Limitations of Liability - -In no event shall the initial developers or copyright holders be liable for any damages whatsoever, including - but not restricted to - lost revenue or profits or other direct, indirect, special, incidental or consequential damages, even if they have been advised of the possibility of such damages, except to the extent invariable law, if any, provides otherwise. - -No Warranty - -The Software and this license document are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -Choice of Law - -This license is governed by the Laws of Norway. Disputes shall be settled by Oslo City Court. diff --git a/tests/licensedcode/data/more_licenses/tests/QPL/QPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/QPL/QPL-1.0.yml deleted file mode 100644 index 9cc156a996b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/QPL/QPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qpl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/QT/LGPL-EXCEPTION.txt b/tests/licensedcode/data/more_licenses/tests/QT/LGPL-EXCEPTION.txt deleted file mode 100644 index 312cbdf2c8e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/QT/LGPL-EXCEPTION.txt +++ /dev/null @@ -1,22 +0,0 @@ -The Qt Company Qt LGPL Exception version 1.1 - -As an additional permission to the GNU Lesser General Public License version -2.1, the object code form of a "work that uses the Library" may incorporate -material from a header file that is part of the Library. You may distribute -such object code under terms of your choice, provided that: -(i) the header files of the Library have not been modified; and -(ii) the incorporated material is limited to numerical parameters, data -structure layouts, accessors, macros, inline functions and -templates; and -(iii) you comply with the terms of Section 6 of the GNU Lesser General -Public License version 2.1. - -Moreover, you may apply this exception to a modified version of the Library, -provided that such modification does not involve copying material from the -Library into the modified Library's header files unless such material is -limited to (i) numerical parameters; (ii) data structure layouts; -(iii) accessors; and (iv) small macros, templates and inline functions of -five lines or less in length. - -Furthermore, you are not required to apply this additional permission to a -modified version of the Library. diff --git a/tests/licensedcode/data/more_licenses/tests/QT/LGPL-EXCEPTION.yml b/tests/licensedcode/data/more_licenses/tests/QT/LGPL-EXCEPTION.yml deleted file mode 100644 index 2455af34734..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/QT/LGPL-EXCEPTION.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qt-lgpl-exception-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/QT/Qt-GPL-Exception-1.0 b/tests/licensedcode/data/more_licenses/tests/QT/Qt-GPL-Exception-1.0 deleted file mode 100644 index 761d0327a4c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/QT/Qt-GPL-Exception-1.0 +++ /dev/null @@ -1,21 +0,0 @@ -The Qt Company GPL Exception 1.0 - -Exception 1: - -As a special exception you may create a larger work which contains the -output of this application and distribute that work under terms of your -choice, so long as the work is not otherwise derived from or based on -this application and so long as the work does not in itself generate -output that contains the output from this application in its original -or modified form. - -Exception 2: - -As a special exception, you have permission to combine this application -with Plugins licensed under the terms of your choice, to produce an -executable, and to copy and distribute the resulting executable under -the terms of your choice. However, the executable must be accompanied -by a prominent notice offering all users of the executable the entire -source code to this application, excluding the source code of the -independent modules, but including any changes you have made to this -application, under the terms of this license. diff --git a/tests/licensedcode/data/more_licenses/tests/QT/Qt-GPL-Exception-1.yml b/tests/licensedcode/data/more_licenses/tests/QT/Qt-GPL-Exception-1.yml deleted file mode 100644 index c57c79105ec..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/QT/Qt-GPL-Exception-1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qt-gpl-exception-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/RHeCos/RHeCos-1.1.txt b/tests/licensedcode/data/more_licenses/tests/RHeCos/RHeCos-1.1.txt deleted file mode 100644 index 42c13463749..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/RHeCos/RHeCos-1.1.txt +++ /dev/null @@ -1,149 +0,0 @@ -Red Hat eCos Public License v1.1 - -1. DEFINITIONS - -1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source Code. - -1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. - -1.8. "License" means this document. - -1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - -A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. - -1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - -1.12. "You" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - -1.13. "Red Hat Branded Code" is code that Red Hat distributes and/or permits others to distribute under different terms than the Red Hat eCos Public License. Red Hat's Branded Code may contain part or all of the Covered Code. - -2. SOURCE CODE LICENSE - -2.1. The Initial Developer Grant. -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell ("Utilize") the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -2.2. Contributor Grant. -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - -(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and - -(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations. - -3. DISTRIBUTION OBLIGATIONS - -3.1. Application of License. -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2. Availability of Source Code. -Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available and to the Initial Developer; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. You are responsible for notifying the Initial Developer of the Modification and the location of the Source if a contact means is provided. Red Hat will be acting as maintainer of the Source and may provide an Electronic Distribution mechanism for the Modification to be made available. You can contact Red Hat to make the Modification available and to notify the Initial Developer. (http://sourceware.cygnus.com/ecos/) - -3.3. Description of Modifications. -You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters -(a) Third Party Claims. -If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. -If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - -3.5. Required Notices. -You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. - -However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - -If you distribute executable versions containing Covered Code, you must reproduce the notice in Exhibit B in the documentation and/or other materials provided with the product. - -3.7. Larger Works. -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; (b) cite the statute or regulation that prohibits you from adhering to the license; and (c) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. You must submit this LEGAL file to Red Hat for review, and You will not be able use the covered code in any means until permission is granted from Red Hat to allow for the inability to comply due to statute or regulation. - -5. APPLICATION OF THIS LICENSE - -This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. - -Red Hat may include Covered Code in products without such additional products becoming subject to the terms of this License, and may license such additional products on different terms from those contained in this License. - -Red Hat may license the Source Code of Red Hat Branded Code without Red Hat Branded Code becoming subject to the terms of this License, and may license Red Hat Branded Code on different terms from those contained in this License. Contact Red Hat for details of alternate licensing terms available. - -6. VERSIONS OF THE LICENSE - -6.1. New Versions. -Red Hat may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2. Effect of New Versions. -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Red Hat. No one other than Red Hat has the right to modify the terms applicable to Covered Code beyond what is granted under this and subsequent Licenses. - -6.3. Derivative Works. -If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases "ECOS", "eCos", "Red Hat", "RHEPL" or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Red Hat eCos Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION - -This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -9. LIMITATION OF LIABILITY - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS - -The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. - -11. MISCELLANEOUS - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS - -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. - -13. ADDITIONAL TERMS APPLICABLE TO THE RED HAT ECOS PUBLIC LICENSE - -Nothing in this License shall be interpreted to prohibit Red Hat from licensing under different terms than this License any code which Red Hat otherwise would have a right to license. - -Red Hat and logo - This License does not grant any rights to use the trademark Red Hat, the Red Hat logo, eCos logo, even if such marks are included in the Original Code. You may contact Red Hat for permission to display the Red Hat and eCos marks in either the documentation or the Executable version beyond that required in Exhibit B. - -Inability to Comply Due to Contractual Obligation - To the extent that Red Hat is limited contractually from making third party code available under this License, Red Hat may choose to integrate such third party code into Covered Code without being required to distribute such third party code in Source Code form, even if such third party code would otherwise be considered "Modifications" under this License. - -EXHIBIT A - -"The contents of this file are subject to the Red Hat eCos Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.redhat.com/ - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -The Original Code is eCos - Embedded Configurable Operating System, released September 30, 1998. The Initial Developer of the Original Code is Red Hat. Portions created by Red Hat are Copyright (C) 1998, 1999, 2000 Red Hat, Inc. All Rights Reserved." - -EXHIBIT B - -Part of the software embedded in this product is eCos - Embedded Configurable Operating System, a trademark of Red Hat. Portions created by Red Hat are Copyright (C) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/). All Rights Reserved. - -THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY RED HAT 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 AUTHOR 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/tests/licensedcode/data/more_licenses/tests/RHeCos/RHeCos-1.1.yml b/tests/licensedcode/data/more_licenses/tests/RHeCos/RHeCos-1.1.yml deleted file mode 100644 index 432a5dd51aa..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/RHeCos/RHeCos-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ecosrh-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/RSA-Cryptoki/RSA-Cryptoki.txt b/tests/licensedcode/data/more_licenses/tests/RSA-Cryptoki/RSA-Cryptoki.txt deleted file mode 100644 index 31f3a6dd3bb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/RSA-Cryptoki/RSA-Cryptoki.txt +++ /dev/null @@ -1,10 +0,0 @@ -DISCLAIMER -Regarding the header / include files: -License to copy and use this software is granted provided that it is identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing this software or this function. - -License is also granted to make and use derivative works provided that such works are identified as "derived from the RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing the derived work. - -This software is provided “AS IS” and RSA Security, Inc. disclaims all warranties including but not limited to the implied warranty of merchantability, fitness for a particular purpose, and noninfringement. - -Regarding reference implementations: -RSA Laboratories is providing links to external reference implementations for the benefit of PKCS #11 developers. RSA Laboratories has not verified or reviewed these implementations and therefore can make no statement regarding their conformance to the current PKCS #11 specification. RSA Laboratories also makes no representations regarding intellectual property coverage or ownership of the reference implementations. The implementations may also be subject to regulations on the import, export and/or use of cryptography. Resolution of these issues is the responsibility of the user. diff --git a/tests/licensedcode/data/more_licenses/tests/RSA-Cryptoki/RSA-Cryptoki.yml b/tests/licensedcode/data/more_licenses/tests/RSA-Cryptoki/RSA-Cryptoki.yml deleted file mode 100644 index a94c577f8cf..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/RSA-Cryptoki/RSA-Cryptoki.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - rsa-cryptoki diff --git a/tests/licensedcode/data/more_licenses/tests/RSCPL/RSCPL.txt b/tests/licensedcode/data/more_licenses/tests/RSCPL/RSCPL.txt deleted file mode 100644 index 7a123c54fee..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/RSCPL/RSCPL.txt +++ /dev/null @@ -1,191 +0,0 @@ -Ricoh Source Code Public License - -Version 1.0 - - -1. Definitions. - - -1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. - - -1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. - - -1.3. "Electronic Distribution Mechanism" means a website or any other mechanism generally accepted in the software development community for the electronic transfer of data. - - -1.4. "Executable Code" means Governed Code in any form other than Source Code. - - -1.5. "Governed Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. - - -1.6. "Larger Work" means a work which combines Governed Code or portions thereof with code not governed by the terms of this License. - - -1.7. "Licensable" means the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - - -1.8. "License" means this document. - - -1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Governed Code is released as a series of files, a Modification is: - - -(a) Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - -(b) Any new file that contains any part of the Original Code or previous Modifications. - - - -1.10. "Original Code" means the "Platform for Information Applications" Source Code as released under this License by RSV. - - -1.11 "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by the grantor of a license thereto. - -1.12. "RSV" means Ricoh Silicon Valley, Inc., a California corporation with offices at 2882 Sand Hill Road, Suite 115, Menlo Park, CA 94025-7022. - -1.13. "Source Code" means the preferred form of the Governed Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of Executable Code, or a list of source code differential comparisons against either the Original Code or another well known, available Governed Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. - - -1.14. "You" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. - - - -2. Source Code License. - -2.1. Grant from RSV. RSV hereby grants You a worldwide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - - -(a) to use, reproduce, modify, create derivative works of, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). - - - -2.2. Contributor Grant. Each Contributor hereby grants You a worldwide, royalty-free, non-exclusive license, subject to third party intellectual property claims: - - -(a) to use, reproduce, modify, create derivative works of, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Governed Code or as part of a Larger Work; and - -(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (i) Modifications made by that Contributor (or portions thereof); and (ii) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - - - -3. Distribution Obligations. - - - -3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Governed Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - - -3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable Code version or via an Electronic Distribution Mechanism to anyone to whom you made an Executable Code version available; and if made available via an Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. - - -3.3. Description of Modifications. You must cause all Governed Code to which you contribute to contain a file documenting the changes You made to create that Governed Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by RSV and including the name of RSV in (a) the Source Code, and (b) in any notice in an Executable Code version or related documentation in which You describe the origin or ownership of the Governed Code. - - -3.4. Intellectual Property Matters. - -3.4.1. Third Party Claims. If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying RSV and appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Governed Code that new knowledge has been obtained. In the event that You are a Contributor, You represent that, except as disclosed in the LEGAL file, your Modifications are your original creations and, to the best of your knowledge, no third party has any claim (including but not limited to intellectual property claims) relating to your Modifications. You represent that the LEGAL file includes complete details of any license or other restriction associated with any part of your Modifications. - -3.4.2. Contributor APIs. If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. - - -3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Governed Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Governed Code. However, You may do so only on Your own behalf, and not on behalf of RSV or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify RSV and every Contributor for any liability incurred by RSV or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - - -3.6. Distribution of Executable Code Versions. You may distribute Governed Code in Executable Code form only if the requirements of Section 3.1-3.5 have been met for that Governed Code, and if You include a prominent notice stating that the Source Code version of the Governed Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable Code version, related documentation or collateral in which You describe recipients' rights relating to the Governed Code. You may distribute the Executable Code version of Governed Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable Code version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable Code version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by RSV or any Contributor. You hereby agree to indemnify RSV and every Contributor for any liability incurred by RSV or such Contributor as a result of any such terms You offer. - - -3.7. Larger Works. You may create a Larger Work by combining Governed Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Governed Code. - - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of theterms of this License with respect to some or all of the Governed Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - - -5. Trademark Usage. - - - -5.1. Advertising Materials. All advertising materials mentioning features or use of the Governed Code must display the following acknowledgement: "This product includes software developed by Ricoh Silicon Valley, Inc." - - -5.2. Endorsements. The names "Ricoh," "Ricoh Silicon Valley," and "RSV" must not be used to endorse or promote Contributor Versions or Larger Works without the prior written permission of RSV. - - -5.3. Product Names. Contributor Versions and Larger Works may not be called "Ricoh" nor may the word "Ricoh" appear in their names without the prior written permission of RSV. - - -6. Versions of the License. - - - -6.1. New Versions. RSV may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - - -6.2. Effect of New Versions. Once Governed Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Governed Code under the terms of any subsequent version of the License published by RSV. No one other than RSV has the right to modify the terms applicable to Governed Code created under this License. - - -7. Disclaimer of Warranty. - -GOVERNED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE GOVERNED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE GOVERNED CODE IS WITH YOU. SHOULD ANY GOVERNED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT RSV OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY GOVERNED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - - -8. Termination. - - - -8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Governed Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - - -8.2. If You initiate patent infringement litigation against RSV or a Contributor (RSV or the Contributor against whom You file such action is referred to as "Participant") alleging that: - - -(a) such Participant's Original Code or Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of the Original Code or the Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Original Code or the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. - -(b) any software, hardware, or device provided to You by the Participant, other than such Participant's Original Code or Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Original Code or the Modifications made by that Participant. - - - -8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Original Code or Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. - - -8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - - -9. Limitation of Liability. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL RSV, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF GOVERNED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. TO THE EXTENT THAT ANY EXCLUSION OF DAMAGES ABOVE IS NOT VALID, YOU AGREE THAT IN NO EVENT WILL RSVS LIABILITY UNDER OR RELATED TO THIS AGREEMENT EXCEED FIVE THOUSAND DOLLARS ($5,000). THE GOVERNED CODE IS NOT INTENDED FOR USE IN CONNECTION WITH ANY NUCLER, AVIATION, MASS TRANSIT OR MEDICAL APPLICATION OR ANY OTHER INHERENTLY DANGEROUS APPLICATION THAT COULD RESULT IN DEATH, PERSONAL INJURY, CATASTROPHIC DAMAGE OR MASS DESTRUCTION, AND YOU AGREE THAT NEITHER RSV NOR ANY CONTRIBUTOR SHALL HAVE ANY LIABILITY OF ANY NATURE AS A RESULT OF ANY SUCH USE OF THE GOVERNED CODE. - - -10. U.S. Government End Users. - -The Governed Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Governed Code with only those rights set forth herein. - - -11. Miscellaneous. - -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. The parties submit to personal jurisdiction in California and further agree that any cause of action arising under or related to this Agreement shall be brought in the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California. The losing party shall be responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. Notwithstanding anything to the contrary herein, RSV may seek injunctive relief related to a breach of this Agreement in any court of competent jurisdiction. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - - -12. Responsibility for Claims. - -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Governed Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. - - - - - -EXHIBIT A - -"The contents of this file are subject to the Ricoh Source Code Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.risource.org/RPL - -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - -This code was initially developed by Ricoh Silicon Valley, Inc. Portions created by Ricoh Silicon Valley, Inc. are Copyright (C) 1995-1999. All Rights Reserved. - -Contributor(s): ______________________________________." diff --git a/tests/licensedcode/data/more_licenses/tests/RSCPL/RSCPL.yml b/tests/licensedcode/data/more_licenses/tests/RSCPL/RSCPL.yml deleted file mode 100644 index 913ca324253..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/RSCPL/RSCPL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ricoh-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Ruby/Ruby.txt b/tests/licensedcode/data/more_licenses/tests/Ruby/Ruby.txt deleted file mode 100644 index ab2bb63063b..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Ruby/Ruby.txt +++ /dev/null @@ -1,57 +0,0 @@ -Ruby is copyrighted free software by Yukihiro Matsumoto . -You can redistribute it and/or modify it under either the terms of the GPL -(see COPYING.txt file), or the conditions below: - - 1. You may make and give away verbatim copies of the source form of the - software without restriction, provided that you duplicate all of the - original copyright notices and associated disclaimers. - - 2. You may modify your copy of the software in any way, provided that - you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said - modifications to Usenet or an equivalent medium, or by allowing - the author to include your modifications in the software. - - b) use the modified software only within your corporation or - organization. - - c) rename any non-standard executables so the names do not conflict - with standard executables, which must also be provided. - - d) make other distribution arrangements with the author. - - 3. You may distribute the software in object code or executable - form, provided that you do at least ONE of the following: - - a) distribute the executables and library files of the software, - together with instructions (in the manual page or equivalent) - on where to get the original distribution. - - b) accompany the distribution with the machine-readable source of - the software. - - c) give non-standard executables non-standard names, with - instructions on where to get the original software distribution. - - d) make other distribution arrangements with the author. - - 4. You may modify and include the part of the software into any other - software (possibly commercial). But some files in the distribution - are not written by the author, so that they are not under this terms. - - They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some - files under the ./missing directory. See each file for the copying - condition. - - 5. The scripts and library files supplied as input to or produced as - output from the software do not automatically fall under the - copyright of the software, but belong to whomever generated them, - and may be sold commercially, and may be aggregated with this - software. - - 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. diff --git a/tests/licensedcode/data/more_licenses/tests/Ruby/Ruby.yml b/tests/licensedcode/data/more_licenses/tests/Ruby/Ruby.yml deleted file mode 100644 index 1f2090da914..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Ruby/Ruby.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SCEA/SCEA-1.0.txt b/tests/licensedcode/data/more_licenses/tests/SCEA/SCEA-1.0.txt deleted file mode 100644 index 9a4126ddc86..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SCEA/SCEA-1.0.txt +++ /dev/null @@ -1,60 +0,0 @@ -SCEA Shared Source License 1.0 - -Terms and Conditions: - -1. Definitions: - -"Software" shall mean the software and related documentation, whether in Source or Object Form, made available under this SCEA Shared Source license ("License"), that is indicated by a copyright notice file included in the source files or attached or accompanying the source files. - -"Licensor" shall mean Sony Computer Entertainment America, Inc. (herein "SCEA") - -"Object Code" or "Object Form" shall mean any form that results from translation or transformation of Source Code, including but not limited to compiled object code or conversions to other forms intended for machine execution. -"Source Code" or "Source Form" shall have the plain meaning generally accepted in the software industry, including but not limited to software source code, documentation source, header and configuration files. - -"You" or "Your" shall mean you as an individual or as a company, or whichever form under which you are exercising rights under this License. - -2. License Grant. - -Licensor hereby grants to You, free of charge subject to the terms and conditions of this License, an irrevocable, non-exclusive, worldwide, perpetual, and royalty-free license to use, modify, reproduce, distribute, publicly perform or display the Software in Object or Source Form . - -3. No Right to File for Patent. -In exchange for the rights that are granted to You free of charge under this License, You agree that You will not file for any patent application, seek copyright protection or take any other action that might otherwise impair the ownership rights in and to the Software that may belong to SCEA or any of the other contributors/authors of the Software. - -4. Contributions. - -SCEA welcomes contributions in form of modifications, optimizations, tools or documentation designed to improve or expand the performance and scope of the Software (collectively "Contributions"). Per the terms of this License You are free to modify the Software and those modifications would belong to You. You may however wish to donate Your Contributions to SCEA for consideration for inclusion into the Software. For the avoidance of doubt, if You elect to send Your Contributions to SCEA, You are doing so voluntarily and are giving the Contributions to SCEA and its parent company Sony Computer Entertainment, Inc., free of charge, to use, modify or distribute in any form or in any manner. SCEA acknowledges that if You make a donation of Your Contributions to SCEA, such Contributions shall not exclusively belong to SCEA or its parent company and such donation shall not be to Your exclusion. SCEA, in its sole discretion, shall determine whether or not to include Your donated Contributions into the Software, in whole, in part, or as modified by SCEA. Should SCEA elect to include any such Contributions into the Software, it shall do so at its own risk and may elect to give credit or special thanks to any such contributors in the attached copyright notice. However, if any of Your contributions are included into the Software, they will become part of the Software and will be distributed under the terms and conditions of this License. Further, if Your donated Contributions are integrated into the Software then Sony Computer Entertainment, Inc. shall become the copyright owner of the Software now containing Your contributions and SCEA would be the Licensor. - -5. Redistribution in Source Form - -You may redistribute copies of the Software, modifications or derivatives thereof in Source Code Form, provided that You: - -a. Include a copy of this License and any copyright notices with source - -b. Identify modifications if any were made to the Software - -c. Include a copy of all documentation accompanying the Software and modifications made by You - -6. Redistribution in Object Form - -If You redistribute copies of the Software, modifications or derivatives thereof in Object Form only (as incorporated into finished goods, i.e. end user applications) then You will not have a duty to include any copies of the code, this License, copyright notices, other attributions or documentation. - -7. No Warranty - -THE SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USING, MODIFYING OR REDISTRIBUTING THE SOFTWARE AND ASSUME ANY RISKS ASSOCIATED WITH YOUR EXERCISE OF PERMISSIONS UNDER THIS LICENSE. - -8. Limitation of Liability - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY WILL EITHER PARTY BE LIABLE TO THE OTHER PARTY OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, SPECIAL, INCIDENTAL, OR EXEMPLARY DAMAGES WITH RESPECT TO ANY INJURY, LOSS, OR DAMAGE, ARISING UNDER OR IN CONNECTION WITH THIS LETTER AGREEMENT, WHETHER FORESEEABLE OR UNFORESEEABLE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH INJURY, LOSS, OR DAMAGE. THE LIMITATIONS OF LIABILITY SET FORTH IN THIS SECTION SHALL APPLY TO THE FULLEST EXTENT PERMISSIBLE AT LAW OR ANY GOVERMENTAL REGULATIONS. - -9. Governing Law and Consent to Jurisdiction - -This Agreement shall be governed by and interpreted in accordance with the laws of the State of California, excluding that body of law related to choice of laws, and of the United States of America. Any action or proceeding brought to enforce the terms of this Agreement or to adjudicate any dispute arising hereunder shall be brought in the Superior Court of the County of San Mateo, State of California or the United States District Court for the Northern District of California. Each of the parties hereby submits itself to the exclusive jurisdiction and venue of such courts for purposes of any such action. In addition, each party hereby waives the right to a jury trial in any action or proceeding related to this Agreement. - -10. Copyright Notice for Redistribution of Source Code - -Copyright 2005 Sony Computer Entertainment Inc. - -Licensed under the SCEA Shared Source License, Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: -http://research.scea.com/scea_shared_source_license.html - -Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/SCEA/SCEA-1.0.yml b/tests/licensedcode/data/more_licenses/tests/SCEA/SCEA-1.0.yml deleted file mode 100644 index d85d30c38fb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SCEA/SCEA-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - scea-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SGI/SGI-B-2.0 b/tests/licensedcode/data/more_licenses/tests/SGI/SGI-B-2.0 deleted file mode 100644 index 54eadcb7a94..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SGI/SGI-B-2.0 +++ /dev/null @@ -1,27 +0,0 @@ -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) - -Copyright (C) [dates of first publication] Silicon Graphics, Inc. All Rights -Reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice including the dates of first publication and either -this permission notice or a reference to http://oss.sgi.com/projects/FreeB/ -shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON -GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of Silicon Graphics, Inc. shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from Silicon -Graphics, Inc. diff --git a/tests/licensedcode/data/more_licenses/tests/SGI/SGI-B-2.yml b/tests/licensedcode/data/more_licenses/tests/SGI/SGI-B-2.yml deleted file mode 100644 index 5c21b8506c6..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SGI/SGI-B-2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sgi-freeb-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SGI/sgi.txt b/tests/licensedcode/data/more_licenses/tests/SGI/sgi.txt deleted file mode 100644 index 213355e8e33..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SGI/sgi.txt +++ /dev/null @@ -1,42 +0,0 @@ -SGI FREE SOFTWARE LICENSE B (Version 1.1 [02/22/2000]) -1. Definitions. -1.1. "Additional Notice Provisions" means such additional provisions as appear in the Notice in Original Code under the heading "Additional Notice Provisions." -1.2. "Covered Code" means the Original Code or Modifications, or any combination thereof. -1.3. "Hardware" means any physical device that accepts input, processes input, stores the results of processing, and/or provides output. -1.4. "Larger Work" means a work that combines Covered Code or portions thereof with code not governed by the terms of this License. -1.5. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.6. "License" means this document. -1.7. "Licensed Patents" means patent claims Licensable by SGI that are infringed by the use or sale of Original Code or any Modifications provided by SGI, or any combination thereof. -1.8. "Modifications" means any addition to or deletion from the substance or structure of the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: -A. Any addition to the contents of a file containing Original Code and/or addition to or deletion from the contents of a file containing previous Modifications. -B. Any new file that contains any part of the Original Code or previous Modifications. -1.9. "Notice" means any notice in Original Code or Covered Code, as required by and in compliance with this License. -1.10. "Original Code" means source code of computer software code that is described in the source code Notice required by Exhibit A as Original Code, and updates and error corrections specifically thereto. -1.11. "Recipient" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 8. For legal entities, "Recipient" includes any entity that controls, is controlled by, or is under common control with Recipient. For purposes of this definition, "control" of an entity means (a) the power, direct or indirect, to direct or manage such entity, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. -1.12. "Recipient Patents" means patent claims Licensable by a Recipient that are infringed by the use or sale of Original Code or any Modifications provided by SGI, or any combination thereof. -1.13. "SGI" means Silicon Graphics, Inc. -1.14. "SGI Patents" means patent claims Licensable by SGI other than the Licensed Patents. -2. License Grant and Restrictions. -2.1. SGI License Grant. Subject to the terms of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code and/or any Modifications provided by SGI alone and/or as part of a Larger Work; and (ii) under any Licensable Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. The patent license shall apply to the Covered Code if, at the time any related Modification is added, such addition of the Modification causes such combination to be covered by the Licensed Patents. The patent license in Section 2.1(ii) shall not apply to any other combinations that include the Modification. No patent license is provided under SGI Patents for infringements of SGI Patents by Modifications not provided by SGI or combinations of Original Code and Modifications not provided by SGI. -2.2. Recipient License Grant. Subject to the terms of this License and any third party intellectual property claims, Recipient hereby grants SGI and any other Recipients a worldwide, royalty-free, non-exclusive license, under any Recipient Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. -2.3. No License For Hardware Implementations. The licenses granted in Section 2.1 and 2.2 are not applicable to implementation in Hardware of the algorithms embodied in the Original Code or any Modifications provided by SGI . -3. Redistributions. -3.1. Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must be conspicuously retained or included in any and all redistributions of Covered Code. For distributions of the Covered Code in source code form, the Notice must appear in every file that can include a text comments field; in executable form, the Notice and a copy of this License must appear in related documentation or collateral where the Recipient's rights relating to Covered Code are described. Any Additional Notice Provisions which actually appears in the Original Code must also be retained or included in any and all redistributions of Covered Code. -3.2. Alternative License. Provided that Recipient is in compliance with the terms of this License, Recipient may, so long as without derogation of any of SGI's rights in and to the Original Code, distribute the source code and/or executable version(s) of Covered Code under (1) this License; (2) a license identical to this License but for only such changes as are necessary in order to clarify Recipient's role as licensor of Modifications; and/or (3) a license of Recipient's choosing, containing terms different from this License, provided that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded by any other terms of such license. If Recipient elects to use any license other than this License, Recipient must make it absolutely clear that any of its terms which differ from this License are offered by Recipient alone, and not by SGI. It is emphasized that this License is a limited license, and, regardless of the license form employed by Recipient in accordance with this Section 3.2, Recipient may relicense only such rights, in Original Code and Modifications by SGI, as it has actually been granted by SGI in this License. -3.3. Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as a result of any such alternative license terms Recipient offers. -4. Termination. This License and the rights granted hereunder will terminate automatically if Recipient breaches any term herein and fails to cure such breach within 30 days thereof. Any sublicense to the Covered Code that is properly granted shall survive any termination of this License, absent termination by the terms of such sublicense. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. -5. No Trademark Or Other Rights. This License does not grant any rights to: (i) any software apart from the Covered Code, nor shall any other rights or licenses not expressly granted hereunder arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any trade name, trademark or service mark whatsoever, including without limitation any related right for purposes of endorsement or promotion of products derived from the Covered Code, without prior written permission of SGI; or (iii) any title to or ownership of the Original Code, which shall at all times remains with SGI. All rights in the Original Code not expressly granted under this License are reserved. -6. Compliance with Laws; Non-Infringement. There are various worldwide laws, regulations, and executive orders applicable to dispositions of Covered Code, including without limitation export, re-export, and import control laws, regulations, and executive orders, of the U.S. government and other countries, and Recipient is reminded it is obliged to obey such laws, regulations, and executive orders. Recipient may not distribute Covered Code that (i) in any way infringes (directly or contributorily) any intellectual property rights of any kind of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject. -7. Claims of Infringement. If Recipient learns of any third party claim that any disposition of Covered Code and/or functionality wholly or partially infringes the third party's intellectual property rights, Recipient will promptly notify SGI of such claim. -8. Versions of the License. SGI may publish revised and/or new versions of the License from time to time, each with a distinguishing version number. Once Covered Code has been published under a particular version of the License, Recipient may, for the duration of the license, continue to use it under the terms of that version, or choose to use such Covered Code under the terms of any subsequent version published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only SGI may modify the terms applicable to Covered Code created under this License. -9. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED "AS IS." ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. -10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. -11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient. -12. U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License. -13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. -Exhibit A -License Applicability. Except to the extent portions of this file are made subject to an alternative license as permitted in the SGI Free Software License B, Version 1.1 (the "License"), the contents of this file are subject only to the provisions of the License. You may not use this file except in compliance with the License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services, 1600 Amphitheatre Parkway, Mountain View, CA 94043-1351, or at: -http://oss.sgi.com/projects/FreeB -Note that, as provided in the License, the Software is distributed on an "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. -Original Code. The Original Code is: [name of software, version number, and release date], developed by Silicon Graphics, Inc. The Original Code is Copyright (c) [dates of first publication, as appearing in the Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created by third parties is as indicated elsewhere herein. All Rights Reserved. -Additional Notice Provisions: [such additional provisions, if any, as appear in the Notice in the Original Code under the heading "Additional Notice Provisions"] diff --git a/tests/licensedcode/data/more_licenses/tests/SGI/sgi.yml b/tests/licensedcode/data/more_licenses/tests/SGI/sgi.yml deleted file mode 100644 index 886b4f6d2e8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SGI/sgi.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sgi-freeb-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/SISSL/SISSL.txt b/tests/licensedcode/data/more_licenses/tests/SISSL/SISSL.txt deleted file mode 100644 index 8f556258027..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SISSL/SISSL.txt +++ /dev/null @@ -1,110 +0,0 @@ -Sun Industry Standards Source License - Version 1.1 - -1.0 DEFINITIONS - -1.1 "Commercial Use" means distribution or otherwise making the Original Code available to a third party. - -1.2 "Contributor Version" means the combination of the Original Code, and the Modifications made by that particular Contributor. - -1.3 "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. - -1.4 "Executable" means Original Code in any form other than Source Code. - -1.5 "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. - -1.6 "Larger Work" means a work which combines Original Code or portions thereof with code not governed by the terms of this License. - -1.7 "License" means this document. - -1.8 "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - -1.9 "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. A Modification is: - A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - B. Any new file that contains any part of the Original Code or previous Modifications. - -1.10 "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code. - -1.11 "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - -1.12 "Source Code" means the preferred form of the Original Code for making modifications to it, including all modules it contains, plus any associated interface definition files, or scripts used to control compilation and installation of an Executable. - -1.13 "Standards" means the standards identified in Exhibit B. - -1.14 "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2.0 SOURCE CODE LICENSE - -2.1 The Initial Developer Grant 
The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:  - (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and - (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).
 (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.
 (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices, including but not limited to Modifications.  - -3.0 DISTRIBUTION OBLIGATIONS - -3.1 Application of License. 
The Source Code version of Original Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. Your license for shipment of the Contributor Version is conditioned upon Your full compliance with this Section. The Modifications which You create must comply with all requirements set out by the Standards body in effect one hundred twenty (120) days before You ship the Contributor Version. In the event that the Modifications do not meet such requirements, You agree to publish either (i) any deviation from the Standards protocol resulting from implementation of Your Modifications and a reference implementation of Your Modifications or (ii) Your Modifications in Source Code form, and to make any such deviation and reference implementation or Modifications available to all third parties under the same terms as this license on a royalty free basis within thirty (30) days of Your first customer shipment of Your Modifications. - -3.2 Required Notices. 
You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add Your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Initial Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Your version of the Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer for any liability incurred by the Initial Developer as a result of warranty, support, indemnity or liability terms You offer. - -3.3 Distribution of Executable Versions. 
You may distribute Original Code in Executable and Source form only if the requirements of Sections 3.1 and 3.2 have been met for that Original Code, and if You include a notice stating that the Source Code version of the Original Code is available under the terms of this License. The notice must be conspicuously included in any notice in an Executable or Source versions, related documentation or collateral in which You describe recipients' rights relating to the Original Code. You may distribute the Executable and Source versions of Your version of the Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License. If You distribute the Executable and Source versions under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer. You hereby agree to indemnify the Initial Developer for any liability incurred by the Initial Developer as a result of any such terms You offer. - -3.4 Larger Works. 
You may create a Larger Work by combining Original Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Original Code. - -4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Original Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.2 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5.0 APPLICATION OF THIS LICENSE -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Modifications as set out in Section 3.1. - -6.0 VERSIONS OF THE LICENSE - -6.1 New Versions. 
Sun may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2 Effect of New Versions. 
Once Original Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Original Code under the terms of any subsequent version of the License published by Sun. No one other than Sun has the right to modify the terms applicable to Original Code. - -7.0 DISCLAIMER OF WARRANTY -ORIGINAL CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE ORIGINAL CODE IS WITH YOU. SHOULD ANY ORIGINAL CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY ORIGINAL CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8.0 TERMINATION - -8.1 This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Original Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - -8.2 In the event of termination under Section 8.1 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9.0 LIMIT OF LIABILITY -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF ORIGINAL CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10.0 U.S. GOVERNMENT END USERS -U.S. Government: If this Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Software and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions). - -11.0 MISCELLANEOUS -This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. - -EXHIBIT A - Sun Standards License - -"The contents of this file are subject to the Sun Standards -License Version 1.1 (the "License"); -You may not use this file except in compliance with the  -License. You may obtain a copy of the -License at _______________________________. - -Software distributed under the License is distributed on  -an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either  -express or implied. See the License for the specific -language governing rights and limitations under the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is:  -Sun Microsystems, Inc.. - -Portions created by: _______________________________________ - -are Copyright (C): _______________________________________ - -All Rights Reserved. - -Contributor(s): _______________________________________ -
EXHIBIT B - Standards - -The Standard is defined as the following: -OpenOffice.org XML File Format Specification, located at http://xml.openoffice.org -OpenOffice.org Application Programming Interface Specification, located at 
http://api.openoffice.org diff --git a/tests/licensedcode/data/more_licenses/tests/SISSL/SISSL.yml b/tests/licensedcode/data/more_licenses/tests/SISSL/SISSL.yml deleted file mode 100644 index 39c8442d820..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SISSL/SISSL.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-sissl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/389-exception.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/389-exception.txt deleted file mode 100644 index 800a4204caa..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/389-exception.txt +++ /dev/null @@ -1,9 +0,0 @@ - -This Program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - -This Program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along with this Program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. - -In addition, as a special exception, Red Hat, Inc. gives You the additional right to link the code of this Program with code not covered under the GNU General Public License ("Non-GPL Code") and to distribute linked combinations including the two, subject to the limitations in this paragraph. Non-GPL Code permitted under this exception must only link to the code of this Program through those well defined interfaces identified in the file named EXCEPTION found in the source code files (the "Approved Interfaces"). The files of Non-GPL Code may instantiate templates or use macros or inline functions from the Approved Interfaces without causing the resulting work to be covered by the GNU General Public License. Only Red Hat, Inc. may make changes or additions to the list of Approved Interfaces. You must obey the GNU General Public License in all respects for all of the Program code and other code used in conjunction with the Program except the Non-GPL Code covered by this exception. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to provide this exception without modification, you must delete this exception statement from your version and license this file solely under the GPL without exception. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/389-exception.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/389-exception.yml deleted file mode 100644 index bbdf68ccac0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/389-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 WITH 389-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-2.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-2.0.txt deleted file mode 100644 index 8fce95a6c40..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-2.0.txt +++ /dev/null @@ -1,6 +0,0 @@ -As a special exception, the Free Software Foundation gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of Autoconf appear in them. The GNU General Public License (GPL) does govern all other use of the material that constitutes the Autoconf program. - -Certain portions of the Autoconf source text are designed to be copied (in certain cases, depending on the input) into the output of Autoconf. We call these the "data" portions. The rest of the Autoconf source text consists of comments plus executable code that decides which of the data portions to output in any given case. We call these comments and executable code the "non-data" portions. Autoconf never copies any of the non-data portions into its output. - -This special exception to the GPL applies to versions of Autoconf released by the Free Software Foundation. When you make and distribute a modified version of Autoconf, you may extend this special exception to the GPL to apply to your modified version as well, *unless* your modified version has the potential to copy into its output some of the text that was the non-data portion of the version that you started with. (In other words, unless your change moves or copies text from the non-data portions to the data portions.) If your modification has such potential, you must delete any notice of this special exception to the GPL from your modified version. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-2.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-2.0.yml deleted file mode 100644 index 6b262c136d3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - autoconf-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-3.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-3.0.txt deleted file mode 100644 index fe8c5881b28..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-3.0.txt +++ /dev/null @@ -1,26 +0,0 @@ -AUTOCONF CONFIGURE SCRIPT EXCEPTION -Version 3.0, 18 August 2009 - -Copyright © 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -This Exception is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. - -The purpose of this Exception is to allow distribution of Autoconf's typical output under terms of the recipient's choice (including proprietary). - - 0. Definitions. - - "Covered Code" is the source or object code of a version of Autoconf that is a covered work under this License. - - "Normally Copied Code" for a version of Autoconf means all parts of its Covered Code which that version can copy from its code (i.e., not from its input file) into its minimally verbose, non-debugging and non-tracing output. - - "Ineligible Code" is Covered Code that is not Normally Copied Code. - 1. Grant of Additional Permission. - - You have permission to propagate output of Autoconf, even if such propagation would otherwise violate the terms of GPLv3. However, if by modifying Autoconf you cause any Ineligible Code of the version you received to become Normally Copied Code of your modified version, then you void this Exception for the resulting covered work. If you convey that resulting covered work, you must remove this Exception in accordance with the second paragraph of Section 7 of GPLv3. - 2. No Weakening of Autoconf Copyleft. - - The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of Autoconf. - - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-3.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-3.0.yml deleted file mode 100644 index 21a9c3103fa..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Autoconf-exception-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - autoconf-exception-3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Bison-exception-2.2.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Bison-exception-2.2.txt deleted file mode 100644 index f1d205ed851..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Bison-exception-2.2.txt +++ /dev/null @@ -1,6 +0,0 @@ -Bison Exception - -As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - -This special exception was added by the Free Software Foundation in version 2.2 of Bison. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Bison-exception-2.2.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Bison-exception-2.2.yml deleted file mode 100644 index 7aa45839b19..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Bison-exception-2.2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bison-exception-2.2 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Bootloader-exception.txt.spdx.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Bootloader-exception.txt.spdx.txt deleted file mode 100644 index 3838c2db9e5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Bootloader-exception.txt.spdx.txt +++ /dev/null @@ -1,4 +0,0 @@ -Bootloader Exception - -In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Bootloader-exception.txt.spdx.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Bootloader-exception.txt.spdx.yml deleted file mode 100644 index 975d71acb3e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Bootloader-exception.txt.spdx.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bootloader-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/CLISP-exception-2.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/CLISP-exception-2.0.txt deleted file mode 100644 index f6723a1c695..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/CLISP-exception-2.0.txt +++ /dev/null @@ -1,16 +0,0 @@ -Summary: - -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation; see file GNU-GPL. - -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -Note: - -This copyright does NOT cover user programs that run in CLISP and third-party packages not part of CLISP, if a) They only reference external symbols in CLISP's public packages that define API also provided by many other Common Lisp implementations (namely the packages COMMON-LISP, COMMON-LISP-USER, KEYWORD, CLOS, GRAY, EXT), i.e. if they don't rely on CLISP internals and would as well run in any other Common Lisp implementation. Or b) They only reference external symbols in CLISP's public packages that define API also provided by many other Common Lisp implementations (namely the packages COMMON-LISP, COMMON-LISP-USER, KEYWORD, CLOS, GRAY, EXT) and some external, not CLISP specific, symbols in third-party packages that are released with source code under a GPL compatible license and that run in a great number of Common Lisp implementations, i.e. if they rely on CLISP internals only to the extent needed for gaining some functionality also available in a great number of Common Lisp implementations. Such user programs are not covered by the term """"derived work"""" used in the GNU GPL. Neither is their compiled code, i.e. the result of compiling them by use of the function COMPILE-FILE. We refer to such user programs as """"independent work"""". - -You may copy and distribute memory image files generated by the function SAVEINITMEM, if it was generated only from CLISP and independent work, and provided that you accompany them, in the sense of section 3 of the GNU GPL, with the source code of CLISP - precisely the same CLISP version that was used to build the memory image -, the source or compiled code of the user programs needed to rebuild the memory image (source code for all the parts that are not independent work, see above), and a precise description how to rebuild the memory image from these. - -Foreign non-Lisp code that is linked with CLISP or loaded into CLISP through dynamic linking is not exempted from this copyright. I.e. such code, when distributed for use with CLISP, must be distributed under the GPL. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/CLISP-exception-2.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/CLISP-exception-2.0.yml deleted file mode 100644 index e43397ce7fa..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/CLISP-exception-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 WITH clisp-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Classpath-exception-2.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Classpath-exception-2.0.txt deleted file mode 100644 index 086d598f490..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Classpath-exception-2.0.txt +++ /dev/null @@ -1,4 +0,0 @@ -Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. - -As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Classpath-exception-2.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Classpath-exception-2.0.yml deleted file mode 100644 index 1aa9a54ce65..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Classpath-exception-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - classpath-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/FLTK-exception.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/FLTK-exception.txt deleted file mode 100644 index 836c954b33f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/FLTK-exception.txt +++ /dev/null @@ -1,17 +0,0 @@ -The FLTK library and included programs are provided under the terms of the GNU Library General Public License (LGPL) with the following exceptions: - -Modifications to the FLTK configure script, config header file, and makefiles by themselves to support a specific platform do not constitute a modified or derivative work. - -The authors do request that such modifications be contributed to the FLTK project - send all contributions to "fltk-bugs@fltk.org". - -Widgets that are subclassed from FLTK widgets do not constitute a derivative work. - -Static linking of applications and widgets to the FLTK library does not constitute a derivative work and does not require the author to provide source code for the application or widget, use the shared FLTK libraries, or link their applications or widgets against a user-supplied version of FLTK. - -If you link the application or widget to a modified version of FLTK, then the changes to FLTK must be provided under the terms of the LGPL in sections 1, 2, and 4. - -You do not have to provide a copy of the FLTK license with programs that are linked to the FLTK library, nor do you have to identify the FLTK license in your program or documentation as required by section 6 of the LGPL. - -However, programs must still identify their use of FLTK. The following example statement can be included in user documentation to satisfy this requirement: - -[program/widget] is based in part on the work of the FLTK project (http://www.fltk.org). diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/FLTK-exception.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/FLTK-exception.yml deleted file mode 100644 index 6c89d380a67..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/FLTK-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - fltk-exception-lgpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Fawkes-Runtime-exception.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Fawkes-Runtime-exception.txt deleted file mode 100644 index 1fe6e4f480f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Fawkes-Runtime-exception.txt +++ /dev/null @@ -1,15 +0,0 @@ -Linking this library statically or dynamically with other modules is making a combined work -based on this library. Thus, the terms and conditions of the GNU General Public License cover -the whole combination. As a special exception, the copyright holders of this library give you -permission to link this library with independent modules to produce an executable, -regardless of the license terms of these independent modules, and to copy and distribute the -resulting executable under terms of your choice, provided that you also meet, for each -linked independent module, the terms and conditions of the license of that module. An -independent module is a module which is not derived from or based on this library. If you -modify this library, you may extend this exception to your version of the library, but you are -not obligated to do so. If you do not wish to do so, delete this exception statement from your -version. Additionally if other files instantiate templates or use macros or inline functions from -this file, or you compile this file and link it with other files to produce an executable, this file -does not by itself cause the resulting executable to be covered by the GNU General Public -License. This exception does not however invalidate any other reasons why the executable -file might be covered by the GNU General Public License. diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Fawkes-Runtime-exception.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Fawkes-Runtime-exception.yml deleted file mode 100644 index a07094968e3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Fawkes-Runtime-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - fawkes-runtime-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Font-exception-2.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Font-exception-2.0.txt deleted file mode 100644 index a78eeae73ce..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Font-exception-2.0.txt +++ /dev/null @@ -1 +0,0 @@ -As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Font-exception-2.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Font-exception-2.0.yml deleted file mode 100644 index ccce0e110f9..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Font-exception-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - font-exception-gpl diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/GCC-exception-3.1.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/GCC-exception-3.1.txt deleted file mode 100644 index 9e72f958093..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/GCC-exception-3.1.txt +++ /dev/null @@ -1,33 +0,0 @@ -GCC RUNTIME LIBRARY EXCEPTION - -Version 3.1, 31 March 2009 - -General information: http://www.gnu.org/licenses/gcc-exception.html - -Copyright (C) 2009 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -This GCC Runtime Library Exception ("Exception") is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. - -When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception. - - 0. Definitions. - - A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library. - - "GCC" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions published by the FSF. - - "GPL-compatible Software" is software whose conditions of propagation, modification and use would permit combination with GCC in accord with the license of GCC. - - "Target Code" refers to output from any compiler for a real or virtual target processor architecture, in executable form or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not include data in any format that is used as a compiler intermediate representation, or used for producing a compiler intermediate representation. - - The "Compilation Process" transforms code entirely represented in non-intermediate languages designed for human-written code, and/or in Java Virtual Machine byte code, into Target Code. Thus, for example, use of source code generators and preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as starting with the output of the generators or preprocessors. - - A Compilation Process is "Eligible" if it is done using GCC, alone or with other GPL-compatible software, or if it is done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC intermediate representations would not qualify as an Eligible Compilation Process. - 1. Grant of Additional Permission. - - You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules. - 2. No Weakening of GCC Copyleft. - -The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/GCC-exception-3.1.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/GCC-exception-3.1.yml deleted file mode 100644 index a2980fecc70..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/GCC-exception-3.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0-plus WITH gcc-exception-3.1 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/LLVM-exception.txt.spdx.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/LLVM-exception.txt.spdx.txt deleted file mode 100644 index 287b6deb815..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/LLVM-exception.txt.spdx.txt +++ /dev/null @@ -1,5 +0,0 @@ -LLVM Exceptions to the Apache 2.0 License - -As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into an Object form of such source code, you may redistribute such embedded portions in such Object form without complying with the conditions of Sections 4(a), 4(b) and 4(d) of the License. - -In addition, if you combine or link compiled forms of this Software with software that is licensed under the GPLv2 ("Combined Software") and if a court of competent jurisdiction determines that the patent provision (Section 3), the indemnity provision (Section 9) or other Section of the License conflicts with the conditions of the GPLv2, you may retroactively and prospectively choose to deem waived or otherwise exclude such Section(s) of the License, but only in their entirety and only with respect to the Combined Software. diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/LLVM-exception.txt.spdx.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/LLVM-exception.txt.spdx.yml deleted file mode 100644 index 15a46cb6f7a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/LLVM-exception.txt.spdx.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - llvm-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Libtool-exception.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Libtool-exception.txt deleted file mode 100644 index 729b1e9530d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Libtool-exception.txt +++ /dev/null @@ -1 +0,0 @@ -As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms that you use for the rest of that program. diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Libtool-exception.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Libtool-exception.yml deleted file mode 100644 index 39dbde253e3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Libtool-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - libtool-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Linux-syscall-note.txt.spdx.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Linux-syscall-note.txt.spdx.txt deleted file mode 100644 index fc3947d2f90..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Linux-syscall-note.txt.spdx.txt +++ /dev/null @@ -1,6 +0,0 @@ -NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". Also note that the GPL below is copyrighted by the Free Software Foundation, but the instance of code that it refers to (the Linux kernel) is copyrighted by me and others who actually wrote it. - -Also note that the only valid version of the GPL as far as the kernel is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated. - -Linus Torvalds - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Linux-syscall-note.txt.spdx.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Linux-syscall-note.txt.spdx.yml deleted file mode 100644 index 9ccb5189886..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Linux-syscall-note.txt.spdx.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - linux-syscall-exception-gpl diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/NTP.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/NTP.yml index 8e9ec5f972c..7c82cebed84 100644 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/NTP.yml +++ b/tests/licensedcode/data/more_licenses/tests/SPDX/NTP.yml @@ -1,2 +1,2 @@ license_expressions: - - ntpl + - mit-old-style-no-advert diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Nokia-Qt-exception-1.1.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Nokia-Qt-exception-1.1.txt deleted file mode 100644 index 2266ba8d4b4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Nokia-Qt-exception-1.1.txt +++ /dev/null @@ -1,17 +0,0 @@ -Nokia Qt LGPL Exception version 1.1 - -As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that: - - (i) the header files of the Library have not been modified; and - (ii) the incorporated material is limited to numerical parameters, data structure layouts, accessors, macros, inline functions and templates; and - (iii) you comply with the terms of Section 6 of the GNU Lesser General Public License version 2.1. - -Moreover, you may apply this exception to a modified version of the Library, provided that such modification does not involve copying material from the Library into the modified Library's header files unless such material is limited to - - (i) numerical parameters; - (ii) data structure layouts; - (iii) accessors; and - (iv) small macros, templates and inline functions of five lines or less in length. - -Furthermore, you are not required to apply this additional permission to a modified version of the Library. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Nokia-Qt-exception-1.1.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Nokia-Qt-exception-1.1.yml deleted file mode 100644 index 2455af34734..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Nokia-Qt-exception-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qt-lgpl-exception-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/OCCT-exception-1.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/OCCT-exception-1.0.txt deleted file mode 100644 index 4a5715ec062..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/OCCT-exception-1.0.txt +++ /dev/null @@ -1,4 +0,0 @@ -Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. - -The object code (i.e. not a source) form of a "work that uses the Library" can incorporate material from a header file that is part of the Library. As a special exception to the GNU Lesser General Public License version 2.1, you may distribute such object code incorporating material from header files provided with the Open CASCADE Technology libraries (including code of CDL generic classes) under terms of your choice, provided that you give prominent notice in supporting documentation to this code that it makes use of or is based on facilities provided by the Open CASCADE Technology software. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/OCCT-exception-1.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/OCCT-exception-1.0.yml deleted file mode 100644 index bd0c000b09a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/OCCT-exception-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - occt-exception-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/OpenJDK-assembly-exception-1.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/OpenJDK-assembly-exception-1.0.txt deleted file mode 100644 index 8b0f7076b55..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/OpenJDK-assembly-exception-1.0.txt +++ /dev/null @@ -1,10 +0,0 @@ - OpenJDK Assembly Exception - -The OpenJDK source code made available by Oracle America, Inc. (Oracle) at openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU General Public License version 2 only ("GPL2"), with the following clarification and special exception. - - Linking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination. - - As a special exception, Oracle gives you permission to link this OpenJDK Code with certain code licensed by Oracle as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html ("Designated Exception Modules") to produce an executable, regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be governed by the licenses under which they were offered by Oracle. - -As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code to build an executable that includes those portions of necessary code that Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the new code is made subject to this exception by its copyright holder. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/OpenJDK-assembly-exception-1.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/OpenJDK-assembly-exception-1.0.yml deleted file mode 100644 index 9f6aebd63fe..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/OpenJDK-assembly-exception-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openjdk-assembly-exception-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Qhull.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Qhull.txt deleted file mode 100644 index 6b78b8efdc2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Qhull.txt +++ /dev/null @@ -1,15 +0,0 @@ -Qhull, Copyright (c) 1993-2003 - -The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota - -email: qhull@qhull.org - -This software includes Qhull from The Geometry Center. Qhull is copyrighted as noted above. Qhull is free software and may be obtained via http from www.qhull.org. It may be freely copied, modified, and redistributed under the following conditions: - - 1. All copyright notices must remain intact in all files. - 2. A copy of this text file must be distributed along with any copies of Qhull that you redistribute; this includes copies that you have modified, or copies of programs or other software products that include Qhull. - 3. If you modify Qhull, you must include a notice giving the name of the person performing the modification, the date of modification, and the reason for such modification. - 4. When distributing modified versions of Qhull, or other software products that include Qhull, you must provide notice that the original source code may be obtained as noted above. - 5. There is no warranty or other guarantee of fitness for Qhull, it is provided solely "as is". Bug reports or fixes may be sent to qhull_bug@qhull.org; the authors may or may not act on them as they desire. - - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Qhull.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Qhull.yml deleted file mode 100644 index a3b7ece8563..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Qhull.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qhull diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Qwt-exception-1.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/Qwt-exception-1.0.txt deleted file mode 100644 index c8f123adb23..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Qwt-exception-1.0.txt +++ /dev/null @@ -1,10 +0,0 @@ -Qwt License Version 1.0, -January 1, 2003 - -The Qwt library and included programs are provided under the terms of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following exceptions: - - 1. Widgets that are subclassed from Qwt widgets do not constitute a derivative work. - 2. Static linking of applications and widgets to the Qwt library does not constitute a derivative work and does not require the author to provide source code for the application or widget, use the shared Qwt libraries, or link their applications or widgets against a user-supplied version of Qwt. If you link the application or widget to a modified version of Qwt, then the changes to Qwt must be provided under the terms of the LGPL in sections 1, 2, and 4. - 3. You do not have to provide a copy of the Qwt license with programs that are linked to the Qwt library, nor do you have to identify the Qwt license in your program or documentation as required by section 6 of the LGPL. - -However, programs must still identify their use of Qwt. The following example statement can be included in user documentation to satisfy this requirement: [program/widget] is based in part on the work of the Qwt project (http://qwt.sf.net). diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/Qwt-exception-1.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/Qwt-exception-1.0.yml deleted file mode 100644 index ceac7ab15d6..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/Qwt-exception-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - qwt-exception-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/WxWindows-exception-3.1.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/WxWindows-exception-3.1.txt deleted file mode 100644 index 2088f9067e7..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/WxWindows-exception-3.1.txt +++ /dev/null @@ -1,8 +0,0 @@ -EXCEPTION NOTICE - - 1. As a special exception, the copyright holders of this library give permission for additional uses of the text contained in this release of the library as licenced under the wxWindows Library Licence, applying either version 3.1 of the Licence, or (at your option) any later version of the Licence as published by the copyright holders of version 3.1 of the Licence document. - 2. The exception is that you may use, copy, link, modify and distribute under your own terms, binary object code versions of works based on the Library. - 3. If you copy code from files distributed under the terms of the GNU General Public Licence or the GNU Library General Public Licence into a copy of this library, as this licence permits, the exception does not apply to the code that you add in this way. To avoid misleading anyone as to the status of such modified files, you must delete this exception notice from such code and/or adjust the licensing conditions notice accordingly. - 4. If you write modifications of your own for this library, it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, you must delete the exception notice from such code and/or adjust the licensing conditions notice accordingly. - - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/WxWindows-exception-3.1.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/WxWindows-exception-3.1.yml deleted file mode 100644 index 5138c3185f8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/WxWindows-exception-3.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - wxwindows-exception-3.1 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/eCos-exception-2.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/eCos-exception-2.0.txt deleted file mode 100644 index 972efec6aa2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/eCos-exception-2.0.txt +++ /dev/null @@ -1,4 +0,0 @@ -As a special exception, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other works to produce a work based on this file, this file does not by itself cause the resulting work to be covered by the GNU General Public License. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. - -This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/eCos-exception-2.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/eCos-exception-2.0.yml deleted file mode 100644 index 8b5b6260a87..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/eCos-exception-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ecos-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/gnu-javamail-exception.txt.spdx.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/gnu-javamail-exception.txt.spdx.txt deleted file mode 100644 index 8f3b9ab0d08..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/gnu-javamail-exception.txt.spdx.txt +++ /dev/null @@ -1 +0,0 @@ -As a special exception, if you link this library with other files to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/gnu-javamail-exception.txt.spdx.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/gnu-javamail-exception.txt.spdx.yml deleted file mode 100644 index 5c4e4582463..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/gnu-javamail-exception.txt.spdx.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gnu-javamail-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/i2p-gpl-java-exception.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/i2p-gpl-java-exception.txt deleted file mode 100644 index 60c9a4c6594..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/i2p-gpl-java-exception.txt +++ /dev/null @@ -1 +0,0 @@ -In addition, as a special exception, XXXX gives permission to link the code of this program with the proprietary Java implementation provided by Sun (or other vendors as well), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than the proprietary Java implementation. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/i2p-gpl-java-exception.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/i2p-gpl-java-exception.yml deleted file mode 100644 index c7709f521ba..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/i2p-gpl-java-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - i2p-gpl-java-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/mif-exception.txt.spdx.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/mif-exception.txt.spdx.txt deleted file mode 100644 index ceb2626c6f2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/mif-exception.txt.spdx.txt +++ /dev/null @@ -1 +0,0 @@ -As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/mif-exception.txt.spdx.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/mif-exception.txt.spdx.yml deleted file mode 100644 index da75f7728ae..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/mif-exception.txt.spdx.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mif-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/openvpn-openssl-exception.txt.spdx.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/openvpn-openssl-exception.txt.spdx.txt deleted file mode 100644 index e4b07399200..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/openvpn-openssl-exception.txt.spdx.txt +++ /dev/null @@ -1,4 +0,0 @@ -Special exception for linking OpenVPN with OpenSSL: - -In addition, as a special exception, OpenVPN Technologies, Inc. gives permission to link the code of this program with the OpenSSL Library (or with modified versions of OpenSSL that use the same license as OpenSSL), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than OpenSSL. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/openvpn-openssl-exception.txt.spdx.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/openvpn-openssl-exception.txt.spdx.yml deleted file mode 100644 index 76a253276c4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/openvpn-openssl-exception.txt.spdx.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - openvpn-openssl-exception diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/u-boot-exception-2.0.txt b/tests/licensedcode/data/more_licenses/tests/SPDX/u-boot-exception-2.0.txt deleted file mode 100644 index b6ef5d8388d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/u-boot-exception-2.0.txt +++ /dev/null @@ -1,7 +0,0 @@ -GPL License Exception: - -Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+, this does *not* cover the so-called "standalone" applications that use U-Boot services by means of the jump table provided by U-Boot exactly for this purpose - this is merely considered normal use of U-Boot, and does *not* fall under the heading of "derived work". - -The header files "include/image.h" and "arch/*/include/asm/u-boot.h" define interfaces to U-Boot. Including these (unmodified) header files in another file is considered normal use of U-Boot, and does *not* fall under the heading of "derived work". --- Wolfgang Denk - diff --git a/tests/licensedcode/data/more_licenses/tests/SPDX/u-boot-exception-2.0.yml b/tests/licensedcode/data/more_licenses/tests/SPDX/u-boot-exception-2.0.yml deleted file mode 100644 index 4076f330f82..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SPDX/u-boot-exception-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - u-boot-exception-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail b/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail deleted file mode 100644 index aaff50eea11..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail +++ /dev/null @@ -1,77 +0,0 @@ - SENDMAIL OPEN SOURCE LICENSE - -The following license terms and conditions apply to this open source -software ("Software"), unless a different license is obtained directly -from Sendmail, Inc. ("Sendmail") located at 6425 Christie Ave, Fourth -Floor, Emeryville, CA 94608, USA. - -Use, modification and redistribution (including distribution of any -modified or derived work) of the Software in source and binary forms is -permitted only if each of the following conditions of 1-6 are met: - -1. Redistributions of the Software qualify as "freeware" or "open - source software" under one of the following terms: - - (a) Redistributions are made at no charge beyond the reasonable - cost of materials and delivery; or - - (b) Redistributions are accompanied by a copy of the modified - Source Code (on an acceptable machine-readable medium) or by an - irrevocable offer to provide a copy of the modified Source Code - (on an acceptable machine-readable medium) for up to three years - at the cost of materials and delivery. Such redistributions must - allow further use, modification, and redistribution of the Source - Code under substantially the same terms as this license. For - the purposes of redistribution "Source Code" means the complete - human-readable, compilable, linkable, and operational source - code of the redistributed module(s) including all modifications. - -2. Redistributions of the Software Source Code must retain the - copyright notices as they appear in each Source Code file, these - license terms and conditions, and the disclaimer/limitation of - liability set forth in paragraph 6 below. Redistributions of the - Software Source Code must also comply with the copyright notices - and/or license terms and conditions imposed by contributors on - embedded code. The contributors' license terms and conditions - and/or copyright notices are contained in the Source Code - distribution. - -3. Redistributions of the Software in binary form must reproduce the - Copyright Notice described below, these license terms and conditions, - and the disclaimer/limitation of liability set forth in paragraph - 6 below, in the documentation and/or other materials provided with - the binary distribution. For the purposes of binary distribution, - "Copyright Notice" refers to the following language: "Copyright (c) - 1998-2004 Sendmail, Inc. All rights reserved." - -4. Neither the name, trademark or logo of Sendmail, Inc. (including - without limitation its subsidiaries or affiliates) or its contributors - may be used to endorse or promote products, or software or services - derived from this Software without specific prior written permission. - The name "sendmail" is a registered trademark and service mark of - Sendmail, Inc. - -5. We reserve the right to cancel this license if you do not comply with - the terms. This license is governed by California law and both of us - agree that for any dispute arising out of or relating to this Software, - that jurisdiction and venue is proper in San Francisco or Alameda - counties. These license terms and conditions reflect the complete - agreement for the license of the Software (which means this supercedes - prior or contemporaneous agreements or representations). If any term - or condition under this license is found to be invalid, the remaining - terms and conditions still apply. - -6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY - SENDMAIL AND ITS CONTRIBUTORS "AS IS" WITHOUT WARRANTY OF ANY KIND - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A - PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. IN NO EVENT SHALL SENDMAIL - OR ITS 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 - WITHOUT LIMITATION NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -$Revision: 1.11 $ $Date: 2004/05/18 01:26:24 $ \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail-8.23.txt b/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail-8.23.txt deleted file mode 100644 index 96d93238cf0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail-8.23.txt +++ /dev/null @@ -1,27 +0,0 @@ -SENDMAIL LICENSE - -The following license terms and conditions apply, unless a redistribution agreement or other license is obtained from Proofpoint, Inc., 892 Ross Street, Sunnyvale, CA, 94089, USA, or by electronic mail at sendmail-license@proofpoint.com. - -License Terms: - -Use, Modification and Redistribution (including distribution of any modified or derived work) in source and binary forms is permitted only if each of the following conditions is met: - - 1. Redistributions qualify as "freeware" or "Open Source Software" under one of the following terms: - - (a) Redistributions are made at no charge beyond the reasonable cost of materials and delivery. - (b) Redistributions are accompanied by a copy of the Source Code or by an irrevocable offer to provide a copy of the Source Code for up to three years at the cost of materials and delivery. Such redistributions must allow further use, modification, and redistribution of the Source Code under substantially the same terms as this license. For the purposes of redistribution "Source Code" means the complete compilable and linkable source code of sendmail and associated libraries and utilities in the sendmail distribution including all modifications. - 2. Redistributions of Source Code must retain the copyright notices as they appear in each Source Code file, these license terms, and the disclaimer/limitation of liability set forth as paragraph 6 below. - 3. Redistributions in binary form must reproduce the Copyright Notice, these license terms, and the disclaimer/limitation of liability set forth as paragraph 6 below, in the documentation and/or other materials provided with the distribution. For the purposes of binary distribution the "Copyright Notice" refers to the following language: - "Copyright (c) 1998-2014 Proofpoint, Inc. All rights reserved." - 4. Neither the name of Proofpoint, Inc. nor the University of California nor names of their contributors may be used to endorse or promote products derived from this software without specific prior written permission. The name "sendmail" is a trademark of Proofpoint, Inc. - 5. All redistributions must comply with the conditions imposed by the University of California on certain embedded code, which copyright Notice and conditions for redistribution are as follows: - - (a) Copyright (c) 1988, 1993 The Regents of the University of California. All rights reserved. - (b) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - (i) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - (ii) 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. - (iii) Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - 6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY SENDMAIL, INC. 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 SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF CALIFORNIA 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 DAMAGES. - -$Revision: 8.23 $, Last updated $Date: 2014-01-26 20:10:01 $, Document 139848.1 diff --git a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail-8.23.yml b/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail-8.23.yml deleted file mode 100644 index c5c3a579d6e..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail-8.23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sendmail diff --git a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail.yml b/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail.yml deleted file mode 100644 index 826bdfdf252..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sendmail/Sendmail.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expressions: - - sendmail - diff --git a/tests/licensedcode/data/more_licenses/tests/SimPL/SimPL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/SimPL/SimPL-2.0.txt deleted file mode 100644 index 02fcb4ad48f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SimPL/SimPL-2.0.txt +++ /dev/null @@ -1,25 +0,0 @@ -Simple Public License (SimPL) - -Preamble -This Simple Public License 2.0 (SimPL 2.0 for short) is a plain language implementation of GPL 2.0. The words are different, but the goal is the same - to guarantee for all users the freedom to share and change software. If anyone wonders about the meaning of the SimPL, they should interpret it as consistent with GPL 2.0. -Simple Public License (SimPL) 2.0 -The SimPL applies to the software's source and object code and comes with any rights that I have in it (other than trademarks). You agree to the SimPL by copying, distributing, or making a derivative work of the software. - -You get the royalty free right to: -Use the software for any purpose; -Make derivative works of it (this is called a "Derived Work"); -Copy and distribute it and any Derived Work. -If you distribute the software or a Derived Work, you must give back to the community by: -Prominently noting the date of any changes you make; -Leaving other people's copyright notices, warranty disclaimers, and license terms in place; -Providing the source code, build scripts, installation scripts, and interface definitions in a form that is easy to get and best to modify; -Licensing it to everyone under SimPL, or substantially similar terms (such as GPL 2.0), without adding further restrictions to the rights provided; -Conspicuously announcing that it is available under that license. -There are some things that you must shoulder: -You get NO WARRANTIES. None of any kind; -If the software damages you in any way, you may only recover direct damages up to the amount you paid for it (that is zero if you did not pay anything). You may not recover any other damages, including those called "consequential damages." (The state or country where you live may not allow you to limit your liability in this way, so this may not apply to you); -The SimPL continues perpetually, except that your license rights end automatically if: -You do not abide by the "give back to the community" terms (your licensees get to keep their rights if they abide); -Anyone prevents you from distributing the software under the terms of the SimPL. -License for the License -You may do anything that you want with the SimPL text; it's a license form to use in any way that you find helpful. To avoid confusion, however, if you change the terms in any way then you may not call your license the Simple Public License or the SimPL (but feel free to acknowledge that your license is "based on the Simple Public License"). diff --git a/tests/licensedcode/data/more_licenses/tests/SimPL/SimPL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/SimPL/SimPL-2.0.yml deleted file mode 100644 index 8f755e82b93..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/SimPL/SimPL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - simpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Sun/SPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/Sun/SPL-1.0.txt deleted file mode 100644 index 6c5cf8330b3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sun/SPL-1.0.txt +++ /dev/null @@ -1,505 +0,0 @@ -SUN PUBLIC LICENSE Version 1.0 - -1. Definitions. - -1.0.1. "Commercial Use" means distribution or otherwise making the -Covered Code available to a third party. - -1.1. "Contributor" means each entity that creates or contributes to -the creation of Modifications. - -1.2. "Contributor Version" means the combination of the Original Code, -prior Modifications used by a Contributor, and the Modifications made -by that particular Contributor. - -1.3. "Covered Code" means the Original Code or Modifications or the -combination of the Original Code and Modifications, in each case -including portions thereof and corresponding documentation released -with the source code. - -1.4. "Electronic Distribution Mechanism" means a mechanism generally -accepted in the software development community for the electronic -transfer of data. - -1.5. "Executable" means Covered Code in any form other than Source -Code. - -1.6. "Initial Developer" means the individual or entity identified as -the Initial Developer in the Source Code notice required by Exhibit -A. - -1.7. "Larger Work" means a work which combines Covered Code or -portions thereof with code not governed by the terms of this -License. - -1.8. "License" means this document. - -1.8.1. "Licensable" means having the right to grant, to the maximum -extent possible, whether at the time of the initial grant or -subsequently acquired, any and all of the rights conveyed herein. - -1.9. "Modifications" means any addition to or deletion from the -substance or structure of either the Original Code or any previous -Modifications. When Covered Code is released as a series of files, a -Modification is: - -A. Any addition to or deletion from the contents of a file containing -Original Code or previous Modifications. - -B. Any new file that contains any part of the Original Code or -previous Modifications. - -1.10. "Original Code"../ means Source Code of computer software code -which is described in the Source Code notice required by Exhibit A as -Original Code, and which, at the time of its release under this -License is not already Covered Code governed by this License. - -1.10.1. "Patent Claims" means any patent claim(s), now owned or -hereafter acquired, including without limitation, method, process, and -apparatus claims, in any patent Licensable by grantor. - -1.11. "Source Code"../ means the preferred form of the Covered Code -for -making modifications to it, including all modules it contains, plus -any associated documentation, interface definition files, scripts used -to control compilation and installation of an Executable, or source -code differential comparisons against either the Original Code or -another well known, available Covered Code of the Contributor's -choice. The Source Code can be in a compressed or archival form, -provided the appropriate decompression or de-archiving software is -widely available for no charge. - -1.12. "You" (or "Your") means an individual or a legal entity -exercising rights under, and complying with all of the terms of, this -License or a future version of this License issued under Section 6.1. -For legal entities, "You" includes any entity which controls, is -controlled by, or is under common control with You. For purposes of -this definition, "control"../ means (a) the power, direct or indirect, -to -cause the direction or management of such entity, whether by contract -or otherwise, or (b) ownership of more than fifty percent (50%) of the -outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1 The Initial Developer Grant. - -The Initial Developer hereby grants You a world-wide, royalty-free, -non-exclusive license, subject to third party intellectual property -claims: - -(a) under intellectual property rights (other than patent or -trademark) Licensable by Initial Developer to use, reproduce, modify, -display, perform, sublicense and distribute the Original Code (or -portions thereof) with or without Modifications, and/or as part of a -Larger Work; and - -(b) under Patent Claims infringed by the making, using or selling of -Original Code, to make, have made, use, practice, sell, and offer for -sale, and/or otherwise dispose of the Original Code (or portions -thereof). - -(c) the licenses granted in this Section 2.1(a) and (b) are effective -on the date Initial Developer first distributes Original Code under -the terms of this License. - -(d) Notwithstanding Section 2.1(b) above, no patent license is -granted: 1) for code that You delete from the Original Code; 2) -separate from the Original Code; or 3) for infringements caused -by: - -i) the modification of the Original Code or ii) the combination of the -Original Code with other software or devices. - -2.2. Contributor Grant. - -Subject to third party intellectual property claims, each Contributor -hereby grants You a world-wide, royalty-free, non-exclusive license - -(a) under intellectual property rights (other than patent -or -trademark) Licensable by Contributor, to use, reproduce, modify, -display, perform, sublicense and distribute the Modifications created -by such Contributor (or portions thereof) either on an unmodified -basis, with other Modifications, as Covered Code and/or as part of a -Larger Work; and - -b) under Patent Claims infringed by the making, using, or selling of -Modifications made by that Contributor either alone and/or in -combination with its Contributor Version (or portions of such -combination), to make, use, sell, offer for sale, have made, and/or -otherwise dispose of: 1) Modifications made by that Contributor (or -portions thereof); and 2) the combination of Modifications made by -that Contributor with its Contributor Version (or portions of such -combination). - -(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective -on the date Contributor first makes Commercial Use of the Covered -Code. - -(d) notwithstanding Section 2.2(b) above, no patent license is -granted: 1) for any code that Contributor has deleted from the -Contributor Version; 2) separate from the Contributor Version; 3) for -infringements caused by: i) third party modifications of Contributor -Version or ii) the combination of Modifications made by that -Contributor with other software (except as part of the Contributor -Version) or other devices; or 4) under Patent Claims infringed by -Covered Code in the absence of Modifications made by that -Contributor. - -3. Distribution Obligations. - -3.1. Application of License. - -The Modifications which You create or to which You contribute are -governed by the terms of this License, including without limitation -Section 2.2. The Source Code version of Covered Code may be -distributed only under the terms of this License or a future version -of this License released under Section 6.1, and You must include a -copy of this License with every copy of the Source Code You -distribute. You may not offer or impose any terms on any Source Code -version that alters or restricts the applicable version of this -License or the recipients' rights hereunder. However, You may include -an additional document offering the additional rights described in -Section 3.5. - -3.2. Availability of Source Code. - -Any Modification which You create or to which You contribute must be -made available in Source Code form under the terms of this License -either on the same media as an Executable version or via an accepted -Electronic Distribution Mechanism to anyone to whom you made an -Executable version available; and if made available via Electronic -Distribution Mechanism, must remain available for at least twelve (12) -months after the date it initially became available, or at least six -(6) months after a subsequent version of that particular Modification -has been made available to such recipients. You are responsible for -ensuring that the Source Code version remains available even if the -Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. - -You must cause all Covered Code to which You contribute to contain a -file documenting the changes You made to create that Covered Code and -the date of any change. You must include a prominent statement that -the Modification is derived, directly or indirectly, from Original -Code provided by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any notice in an -Executable version or related documentation in which You describe the -origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters. - -(a) Third Party Claims. - -If Contributor has knowledge that a license under a third party's -intellectual property rights is required to exercise the rights -granted by such Contributor under Sections 2.1 or 2.2, Contributor -must include a text file with the Source Code distribution titled -"../LEGAL'' which describes the claim and the party making the claim in -sufficient detail that a recipient will know whom to contact. If -Contributor obtains such knowledge after the Modification is made -available as described in Section 3.2, Contributor shall promptly -modify the LEGAL file in all copies Contributor makes available -thereafter and shall take other steps (such as notifying appropriate -mailing lists or newsgroups) reasonably calculated to inform those who -received the Covered Code that new knowledge has been obtained. - -(b) Contributor APIs. - -If Contributor's Modifications include an application programming -interface ("API"../) and Contributor has knowledge of patent licenses -which are reasonably necessary to implement that API, Contributor must -also include this information in the LEGAL file. - -(c) Representations. - -Contributor represents that, except as disclosed pursuant to Section -3.4(a) above, Contributor believes that Contributor's Modifications -are Contributor's original creation(s) and/or Contributor has -sufficient rights to grant the rights conveyed by this -License - -. - -3.5. Required Notices. - -You must duplicate the notice in Exhibit A in each file of the Source -Code. If it is not possible to put such notice in a particular Source -Code file due to its structure, then You must include such notice in a -location (such as a relevant directory) where a user would be likely -to look for such a notice. If You created one or more Modification(s) -You may add your name as a Contributor to the notice described in -Exhibit A. You must also duplicate this License in any documentation -for the Source Code where You describe recipients' rights or ownership -rights relating to Covered Code. You may choose to offer, and to -charge a fee for, warranty, support, indemnity or liability -obligations to one or more recipients of Covered Code. However, You -may do so only on Your own behalf, and not on behalf of the Initial -Developer or any Contributor. You must make it absolutely clear than -any such warranty, support, indemnity or liability obligation is -offered by You alone, and You hereby agree to indemnify the Initial -Developer and every Contributor for any liability incurred by the -Initial Developer or such Contributor as a result of warranty, -support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. - -You may distribute Covered Code in Executable form only if the -requirements of Section 3.1-3.5 have been met for that Covered Code, -and if You include a notice stating that the Source Code version of -the Covered Code is available under the terms of this License, -including a description of how and where You have fulfilled the -obligations of Section 3.2. The notice must be conspicuously included -in any notice in an Executable version, related documentation or -collateral in which You describe recipients' rights relating to the -Covered Code. You may distribute the Executable version of Covered -Code or ownership rights under a license of Your choice, which may -contain terms different from this License, provided that You are in -compliance with the terms of this License and that the license for the -Executable version does not attempt to limit or alter the recipient's -rights in the Source Code version from the rights set forth in this -License. If You distribute the Executable version under a different -license You must make it absolutely clear that any terms which differ -from this License are offered by You alone, not by the Initial -Developer or any Contributor. You hereby agree to indemnify the -Initial Developer and every Contributor for any liability incurred by -the Initial Developer or such Contributor as a result of any such -terms You offer. - -3.7. Larger Works. - -You may create a Larger Work by combining Covered Code with other -code -not governed by the terms of this License and distribute the Larger -Work as a single product. In such a case, You must make sure the -requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Code due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description -must be included in the LEGAL file described in Section 3.4 and must -be included with all distributions of the Source Code. Except to the -extent prohibited by statute or regulation, such description must be -sufficiently detailed for a recipient of ordinary skill to be able to -understand it. - -5. Application of this License. - -This License applies to code to which the Initial Developer has -attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions. - -Sun Microsystems, Inc. ("Sun") may publish revised and/or new versions -of the License from time to time. Each version will be given a -distinguishing version number. - -6.2. Effect of New Versions. - -Once Covered Code has been published under a particular version of -the -License, You may always continue to use it under the terms of that -version. You may also choose to use such Covered Code under the terms -of any subsequent version of the License published by Sun. No one -other than Sun has the right to modify the terms applicable to Covered -Code created under this License. - -6.3. Derivative Works. - -If You create or use a modified version of this License (which you -may -only do in order to apply it to code which is not already Covered Code -governed by this License), You must: (a) rename Your license so that -the phrases "Sun," "Sun Public License," or "SPL"../ or any confusingly -similar phrase do not appear in your license (except to note that your -license differs from this License) and (b) otherwise make it clear -that Your version of the license contains terms which differ from the -Sun Public License. (Filling in the name of the Initial Developer, -Original Code or Contributor in the notice described in Exhibit A -shall not of themselves be deemed to be modifications of this -License.) - -7. DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "../AS IS'' BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. -THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE -IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, -YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE -COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER -OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF -ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS -DISCLAIMER. - -8. TERMINATION. - -8.1. This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. All -sublicenses to the Covered Code which are properly granted shall -survive any termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this License -shall survive. - -8.2. If You initiate litigation by asserting a patent infringement -claim (excluding declaratory judgment actions) against Initial Developer -or a Contributor (the Initial Developer or Contributor against whom -You file such action is referred to as "Participant") alleging -that: - -(a) such Participant's Contributor Version directly or indirectly -infringes any patent, then any and all rights granted by such -Participant to You under Sections 2.1 and/or 2.2 of this License -shall, upon 60 days notice from Participant terminate prospectively, -unless if within 60 days after receipt of notice You either: (i) -agree in writing to pay Participant a mutually agreeable reasonable -royalty for Your past and future use of Modifications made by such -Participant, or (ii) withdraw Your litigation claim with respect to -the Contributor Version against such Participant. If within 60 days -of notice, a reasonable royalty and payment arrangement are not -mutually agreed upon in writing by the parties or the litigation claim -is not withdrawn, the rights granted by Participant to You under -Sections 2.1 and/or 2.2 automatically terminate at the expiration of -the 60 day notice period specified above. - -(b) any software, hardware, or device, other than such Participant's -Contributor Version, directly or indirectly infringes any patent, then -any rights granted to You by such Participant under Sections 2.1(b) -and 2.2(b) are revoked effective as of the date You first made, used, -sold, distributed, or had made, Modifications made by that -Participant. - -8.3. If You assert a patent infringement claim against Participant -alleging that such Participant's Contributor Version directly or -indirectly infringes any patent where such claim is resolved (such as -by license or settlement) prior to the initiation of patent -infringement litigation, then the reasonable value of the licenses -granted by such Participant under Sections 2.1 or 2.2 shall be taken -into account in determining the amount or value of any payment or -license. - -8.4. In the event of termination under Sections 8.1 or 8.2 above, -all -end user license agreements (excluding distributors and resellers) -which have been validly granted by You or any distributor hereunder -prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT -(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL -DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, -OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR -ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY -CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, -WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER -COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN -INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF -LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY -RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW -PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE -EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO -THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - -The Covered Code is a "commercial item," as that term is defined in -48 -C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" -and "commercial computer software documentation,"../ as such terms are -used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. -12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all -U.S. Government End Users acquire Covered Code with only those rights -set forth herein. - -11. MISCELLANEOUS. - -This License represents the complete agreement concerning subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. This License shall be governed by -California law provisions (except to the extent applicable law, if -any, provides otherwise), excluding its conflict-of-law provisions. -With respect to disputes in which at least one party is a citizen of, -or an entity chartered or registered to do business in the United -States of America, any litigation relating to this License shall be -subject to the jurisdiction of the Federal Courts of the Northern -District of California, with venue lying in Santa Clara County, -California, with the losing party responsible for costs, including -without limitation, court costs and reasonable attorneys' fees and -expenses. The application of the United Nations Convention on -Contracts for the International Sale of Goods is expressly excluded. -Any law or regulation which provides that the language of a contract -shall be construed against the drafter shall not apply to this -License. - -12. RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is -responsible for claims and damages arising, directly or indirectly, -out of its utilization of rights under this License and You agree to -work with Initial Developer and Contributors to distribute such -responsibility on an equitable basis. Nothing herein is intended or -shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - -Initial Developer may designate portions of the Covered Code as -?Multiple-Licensed?. ?Multiple-Licensed? means that the Initial -Developer permits you to utilize portions of the Covered Code under -Your choice of the alternative licenses, if any, specified by the -Initial Developer in the file described in Exhibit A. - -Exhibit A -Sun Public License Notice. - -The contents of this file are subject to the Sun Public License - -Version 1.0 (the License); you may not use this file except in - -compliance with the License. A copy of the License is available at - -http://www.sun.com/ - -The Original Code is _________________. The Initial Developer of the - -Original Code is ___________. Portions created by ______ are Copyright - -(C)_________. All Rights Reserved. - -Contributor(s): ______________________________________. - -Alternatively, the contents of this file may be used under the terms - -of the _____ license (the ?[___] License?), in which case the - -provisions of [______] License are applicable instead of those above. - -If you wish to allow use of your version of this file only under the - -terms of the [____] License and not to allow others to use your - -version of this file under the SPL, indicate your decision by deleting - -the provisions above and replace them with the notice and other - -provisions required by the [___] License. If you do not delete the - -provisions above, a recipient may use your version of this file under - -either the SPL or the [___] License. -[NOTE: The text of this Exhibit A may differ slightly from the text of - -the notices in the Source Code files of the Original Code. You should - -use the text of this Exhibit A rather than the text found in the - -Original Code Source Code for Your Modifications.] diff --git a/tests/licensedcode/data/more_licenses/tests/Sun/SPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/Sun/SPL-1.0.yml deleted file mode 100644 index cb807b47512..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sun/SPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - spl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Sun/Sun.RPC.txt b/tests/licensedcode/data/more_licenses/tests/Sun/Sun.RPC.txt deleted file mode 100644 index c79362a3777..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sun/Sun.RPC.txt +++ /dev/null @@ -1,28 +0,0 @@ -/* -* Sun RPC is a product of Sun Microsystems, Inc. and is provided for -* unrestricted use provided that this legend is included on all tape -* media and as a part of the software program in whole or part. Users -* may copy or modify Sun RPC without charge, but are not authorized -* to license or distribute it to anyone else except as part of a product or -* program developed by the user. -* -* SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -* WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -* PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -* -* Sun RPC is provided with no support and without any obligation on the -* part of Sun Microsystems, Inc. to assist in its use, correction, -* modification or enhancement. -* -* SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -* INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -* OR ANY PART THEREOF. -* -* In no event will Sun Microsystems, Inc. be liable for any lost revenue -* or profits or other special, indirect and consequential damages, even if -* Sun has been advised of the possibility of such damages. -* -* Sun Microsystems, Inc. -* 2550 Garcia Avenue -* Mountain View, California 94043 -*/ diff --git a/tests/licensedcode/data/more_licenses/tests/Sun/Sun.RPC.yml b/tests/licensedcode/data/more_licenses/tests/Sun/Sun.RPC.yml deleted file mode 100644 index ac63dc8d304..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sun/Sun.RPC.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-rpc diff --git a/tests/licensedcode/data/more_licenses/tests/Sun/sissl-1.1 b/tests/licensedcode/data/more_licenses/tests/Sun/sissl-1.1 deleted file mode 100644 index 715ef249bfe..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sun/sissl-1.1 +++ /dev/null @@ -1,289 +0,0 @@ -Sun Industry Standards Source License - Version 1.1 - -1.0 DEFINITIONS - -1.1 "Commercial Use" means distribution or otherwise making the Original -Code available to a third party. - -1.2 "Contributor Version" means the combination of the Original Code, -and the Modifications made by that particular Contributor. - -1.3 "Electronic Distribution Mechanism" means a mechanism generally -accepted in the software development community for the electronic transfer -of data. - -1.4 "Executable" means Original Code in any form other than Source Code. - -1.5 "Initial Developer" means the individual or entity identified as -the Initial Developer in the Source Code notice required by Exhibit A. - -1.6 "Larger Work" means a work which combines Original Code or portions -thereof with code not governed by the terms of this License. - -1.7 "License" means this document. - -1.8 "Licensable" means having the right to grant, to the maximum extent -possible, whether at the time of the initial grant or subsequently -acquired, any and all of the rights conveyed herein. - -1.9 "Modifications" means any addition to or deletion from the substance -or structure of either the Original Code or any previous Modifications. A -Modification is: - - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code or - previous Modifications. - -1.10 "Original Code" means Source Code of computer software code which -is described in the Source Code notice required by Exhibit A as Original -Code. - -1.11 "Patent Claims" means any patent claim(s), now owned or hereafter -acquired, including without limitation, method, process, and apparatus -claims, in any patent Licensable by grantor. - -1.12 "Source Code" means the preferred form of the Original Code for -making modifications to it, including all modules it contains, plus -any associated interface definition files, or scripts used to control -compilation and installation of an Executable. - -1.13 "Standards" means the standards identified in Exhibit B. - -1.14 "You" (or "Your") means an individual or a legal entity exercising -rights under, and complying with all of the terms of, this License or -a future version of this License issued under Section 6.1. For legal -entities, "You'' includes any entity which controls, is controlled by, -or is under common control with You. For purposes of this definition, -"control'' means (a) the power, direct or indirect, to cause the direction -or management of such entity, whether by contract or otherwise, or (b) -ownership of more than fifty percent (50%) of the outstanding shares or -beneficial ownership of such entity. - -2.0 SOURCE CODE LICENSE - -2.1 The Initial Developer Grant The Initial Developer hereby grants You a -world-wide, royalty-free, non-exclusive license, subject to third party -intellectual property claims: - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer to use, reproduce, - modify, display, perform, sublicense and distribute the Original - Code (or portions thereof) with or without Modifications, and/or - as part of a Larger Work; and - - (b) under Patents Claims infringed by the making, using or selling - of Original Code, to make, have made, use, practice, sell, and - offer for sale, and/or otherwise dispose of the Original Code - (or portions thereof). - - (c) the licenses granted in this Section 2.1(a) and (b) are - effective on the date Initial Developer first distributes Original - Code under the terms of this License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is - granted: 1) for code that You delete from the Original Code; 2) - separate from the Original Code; or 3) for infringements caused by: - i) the modification of the Original Code or ii) the combination - of the Original Code with other software or devices, including - but not limited to Modifications. - -3.0 DISTRIBUTION OBLIGATIONS - -3.1 Application of License. The Source Code version of Original Code may -be distributed only under the terms of this License or a future version -of this License released under Section 6.1, and You must include a copy -of this License with every copy of the Source Code You distribute. You -may not offer or impose any terms on any Source Code version that alters -or restricts the applicable version of this License or the recipients' -rights hereunder. Your license for shipment of the Contributor Version is -conditioned upon Your full compliance with this Section. The Modifications -which You create must comply with all requirements set out by the -Standards body in effect one hundred twenty (120) days before You ship -the Contributor Version. In the event that the Modifications do not meet -such requirements, You agree to publish either (i) any deviation from the -Standards protocol resulting from implementation of Your Modifications -and a reference implementation of Your Modifications or (ii) Your -Modifications in Source Code form, and to make any such deviation and -reference implementation or Modifications available to all third parties -under the same terms as this license on a royalty free basis within thirty -(30) days of Your first customer shipment of Your Modifications. - -3.2 Required Notices. You must duplicate the notice in Exhibit A in -each file of the Source Code. If it is not possible to put such notice -in a particular Source Code file due to its structure, then You must -include such notice in a location (such as a relevant directory) where -a user would be likely to look for such a notice. If You created one -or more Modification(s) You may add Your name as a Contributor to the -notice described in Exhibit A. You must also duplicate this License in -any documentation for the Source Code where You describe recipients' -rights or ownership rights relating to Initial Code. You may choose -to offer, and to charge a fee for, warranty, support, indemnity or -liability obligations to one or more recipients of Your version of the -Code. However, You may do so only on Your own behalf, and not on behalf -of the Initial Developer. You must make it absolutely clear than any -such warranty, support, indemnity or liability obligation is offered by -You alone, and You hereby agree to indemnify the Initial Developer for -any liability incurred by the Initial Developer as a result of warranty, -support, indemnity or liability terms You offer. - -3.3 Distribution of Executable Versions. You may distribute Original Code -in Executable and Source form only if the requirements of Sections 3.1 -and 3.2 have been met for that Original Code, and if You include a notice -stating that the Source Code version of the Original Code is available -under the terms of this License. The notice must be conspicuously included -in any notice in an Executable or Source versions, related documentation -or collateral in which You describe recipients' rights relating to the -Original Code. You may distribute the Executable and Source versions -of Your version of the Code or ownership rights under a license of Your -choice, which may contain terms different from this License, provided that -You are in compliance with the terms of this License. If You distribute -the Executable and Source versions under a different license You must -make it absolutely clear that any terms which differ from this License -are offered by You alone, not by the Initial Developer. You hereby agree -to indemnify the Initial Developer for any liability incurred by the -Initial Developer as a result of any such terms You offer. - -3.4 Larger Works. You may create a Larger Work by combining Original Code -with other code not governed by the terms of this License and distribute -the Larger Work as a single product. In such a case, You must make sure -the requirements of this License are fulfilled for the Original Code. - -4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Original Code due to statute, -judicial order, or regulation then You must: (a) comply with the terms -of this License to the maximum extent possible; and (b) describe the -limitations and the code they affect. Such description must be included -in the LEGAL file described in Section 3.2 and must be included with -all distributions of the Source Code. Except to the extent prohibited -by statute or regulation, such description must be sufficiently detailed -for a recipient of ordinary skill to be able to understand it. - -5.0 APPLICATION OF THIS LICENSE - -This License applies to code to which the Initial Developer has attached -the notice in Exhibit A and to related Modifications as set out in -Section 3.1. - -6.0 VERSIONS OF THE LICENSE - -6.1 New Versions. Sun may publish revised and/or new versions of the -License from time to time. Each version will be given a distinguishing -version number. - -6.2 Effect of New Versions. Once Original Code has been published -under a particular version of the License, You may always continue to -use it under the terms of that version. You may also choose to use such -Original Code under the terms of any subsequent version of the License -published by Sun. No one other than Sun has the right to modify the -terms applicable to Original Code. - -7.0 DISCLAIMER OF WARRANTY - -ORIGINAL CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF DEFECTS, -MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE -ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE ORIGINAL CODE IS -WITH YOU. SHOULD ANY ORIGINAL CODE PROVE DEFECTIVE IN ANY RESPECT, YOU -(NOT THE INITIAL DEVELOPER) ASSUME THE COST OF ANY NECESSARY SERVICING, -REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL -PART OF THIS LICENSE. NO USE OF ANY ORIGINAL CODE IS AUTHORIZED HEREUNDER -EXCEPT UNDER THIS DISCLAIMER. - -8.0 TERMINATION - -8.1 This License and the rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to -cure such breach within 30 days of becoming aware of the breach. All -sublicenses to the Original Code which are properly granted shall survive -any termination of this License. Provisions which, by their nature, must -remain in effect beyond the termination of this License shall survive. - -8.2 In the event of termination under Section 8.1 above, all end user -license agreements (excluding distributors and resellers) which have been -validly granted by You or any distributor hereunder prior to termination -shall survive termination. - -9.0 LIMIT OF LIABILITY - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING -NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, -ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF ORIGINAL CODE, OR ANY -SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, -SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, -WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER -FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, -EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH -DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR -DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE -EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO -NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL -DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10.0 U.S. GOVERNMENT END USERS - -U.S. Government: If this Software is being acquired by or on behalf -of the U.S. Government or by a U.S. Government prime contractor or -subcontractor (at any tier), then the Government's rights in the Software -and accompanying documentation shall be only as set forth in this license; -this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for -Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and -12.212 (for non-DoD acquisitions). - -11.0 MISCELLANEOUS - -This License represents the complete agreement concerning subject matter -hereof. If any provision of this License is held to be unenforceable, -such provision shall be reformed only to the extent necessary to make it -enforceable. This License shall be governed by California law provisions -(except to the extent applicable law, if any, provides otherwise), -excluding its conflict-of-law provisions. With respect to disputes -in which at least one party is a citizen of, or an entity chartered or -registered to do business in the United States of America, any litigation -relating to this License shall be subject to the jurisdiction of the -Federal Courts of the Northern District of California, with venue lying -in Santa Clara County, California, with the losing party responsible for -costs, including without limitation, court costs and reasonable attorneys' -fees and expenses. The application of the United Nations Convention on -Contracts for the International Sale of Goods is expressly excluded. Any -law or regulation which provides that the language of a contract shall -be construed against the drafter shall not apply to this License. - -EXHIBIT A - Sun Standards License - -"The contents of this file are subject to the Sun Standards License -Version 1.1 (the "License"); You may not use this file except in -compliance with the License. You may obtain a copy of the License at -_______________________________. - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations under -the License. - -The Original Code is ______________________________________. - -The Initial Developer of the Original Code is: Sun Microsystems, Inc.. - -Portions created by: _______________________________________ - -are Copyright (C): _______________________________________ - -All Rights Reserved. - -Contributor(s): _______________________________________ - - -EXHIBIT B - Standards - -The Standard is defined as the following: - -OpenOffice.org XML File Format Specification, located at -http://xml.openoffice.org - -OpenOffice.org Application Programming Interface Specification, located -at http://api.openoffice.org diff --git a/tests/licensedcode/data/more_licenses/tests/Sun/sissl-1.yml b/tests/licensedcode/data/more_licenses/tests/Sun/sissl-1.yml deleted file mode 100644 index 39c8442d820..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Sun/sissl-1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - sun-sissl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/TMate/TMate.txt b/tests/licensedcode/data/more_licenses/tests/TMate/TMate.txt deleted file mode 100644 index 8cc418fc170..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/TMate/TMate.txt +++ /dev/null @@ -1,48 +0,0 @@ -The TMate Open Source License. - -This license applies to all portions of TMate SVNKit library, which -are not externally-maintained libraries (e.g. Ganymed SSH library). - -All the source code and compiled classes in package org.tigris.subversion.javahl -except SvnClient class are covered by the license in JAVAHL-LICENSE file - -Copyright (c) 2004-2012 TMate Software. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * 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. - - * Redistributions in any form must be accompanied by information on how to - obtain complete source code for the software that uses SVNKit and any - accompanying software that uses the software that uses SVNKit. The source - code must either be included in the distribution or be available for no - more than the cost of distribution plus a nominal fee, and must be freely - redistributable under reasonable conditions. For an executable file, complete - source code means the source code for all modules it contains. It does not - include source code for modules or files that typically accompany the major - components of the operating system on which the executable file runs. - - * Redistribution in any form without redistributing source code for software - that uses SVNKit is possible only when such redistribution is explictly permitted - by TMate Software. Please, contact TMate Software at support@svnkit.com to - get such permission. - -THIS SOFTWARE IS PROVIDED BY TMATE SOFTWARE ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE -DISCLAIMED. - -IN NO EVENT SHALL TMATE SOFTWARE 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/tests/licensedcode/data/more_licenses/tests/TMate/TMate.yml b/tests/licensedcode/data/more_licenses/tests/TMate/TMate.yml deleted file mode 100644 index 299d8f803bb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/TMate/TMate.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - tmate diff --git a/tests/licensedcode/data/more_licenses/tests/U-Cambridge/MSNTP.txt b/tests/licensedcode/data/more_licenses/tests/U-Cambridge/MSNTP.txt deleted file mode 100644 index 79b8db1a931..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/U-Cambridge/MSNTP.txt +++ /dev/null @@ -1,75 +0,0 @@ -General Public Licence for the software known as MSNTP ------------------------------------------------------- - - (c) Copyright, N.M. Maclaren, 1996, 1997, 2000 - (c) Copyright, University of Cambridge, 1996, 1997, 2000 - -Free use of MSNTP in source and binary forms is permitted, provided that this -entire licence is duplicated in all copies, and that any documentation, -announcements, and other materials related to use acknowledge that the software -was developed by N.M. Maclaren (hereafter refered to as the Author) at the -University of Cambridge. Neither the name of the Author nor the University of -Cambridge may be used to endorse or promote products derived from this material -without specific prior written permission. - -The Author and the University of Cambridge retain the copyright and all other -legal rights to the software and make it available non-exclusively. All users -must ensure that the software in all its derivations carries a copyright notice -in the form: - (c) Copyright N.M. Maclaren, - (c) Copyright University of Cambridge. - - - - NO WARRANTY - -Because the MSNTP software is licensed free of charge, the Author and the -University of Cambridge provide absolutely no warranty, either expressed or -implied, including, but not limited to, the implied warranties of -merchantability and fitness for a particular purpose. The entire risk as to -the quality and performance of the MSNTP software is with you. Should MSNTP -prove defective, you assume the cost of all necessary servicing or repair. - -In no event, unless required by law, will the Author or the University of -Cambridge, or any other party who may modify and redistribute this software as -permitted in accordance with the provisions below, be liable for damages for -any losses whatsoever, including but not limited to lost profits, lost monies, -lost or corrupted data, or other special, incidental or consequential losses -that may arise out of the use or inability to use the MSNTP software. - - COPYING POLICY - -Permission is hereby granted for copying and distribution of copies of the -MSNTP source and binary files, and of any part thereof, subject to the -following licence conditions: - -1. You may distribute MSNTP or components of MSNTP, with or without additions -developed by you or by others. No charge, other than an "at-cost" distribution -fee, may be charged for copies, derivations, or distributions of this material -without the express written consent of the copyright holders. - -2. You may also distribute MSNTP along with any other product for sale, -provided that the cost of the bundled package is the same regardless of whether -MSNTP is included or not, and provided that those interested only in MSNTP must -be notified that it is a product freely available from the University of -Cambridge. - -3. If you distribute MSNTP software or parts of MSNTP, with or without -additions developed by you or others, then you must either make available the -source to all portions of the MSNTP system (exclusive of any additions made by -you or by others) upon request, or instead you may notify anyone requesting -source that it is freely available from the University of Cambridge. - -4. You may not omit any of the copyright notices on either the source files, -the executable files, or the documentation. - -5. You may not omit transmission of this License agreement with whatever -portions of MSNTP that are distributed. - -6. Any users of this software must be notified that it is without warranty or -guarantee of any nature, express or implied, nor is there any fitness for use -represented. - -October 1996 -April 1997 -October 2000 diff --git a/tests/licensedcode/data/more_licenses/tests/U-Cambridge/MSNTP.yml b/tests/licensedcode/data/more_licenses/tests/U-Cambridge/MSNTP.yml deleted file mode 100644 index 8576a758e98..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/U-Cambridge/MSNTP.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - msntp diff --git a/tests/licensedcode/data/more_licenses/tests/Unicode/Unicode_Exhibit_1.txt b/tests/licensedcode/data/more_licenses/tests/Unicode/Unicode_Exhibit_1.txt deleted file mode 100644 index ff4d0ef6bb5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Unicode/Unicode_Exhibit_1.txt +++ /dev/null @@ -1,58 +0,0 @@ -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - -Unicode Data Files include all data files under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, -http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and -http://www.unicode.org/utility/trac/browser/. - -Unicode Data Files do not include PDF online code charts under the -directory http://www.unicode.org/Public/. - -Software includes any source code published in the Unicode Standard -or under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, -http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and -http://www.unicode.org/utility/trac/browser/. - -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. - -COPYRIGHT AND PERMISSION NOTICE - -Copyright © 1991-2016 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in http://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. - diff --git a/tests/licensedcode/data/more_licenses/tests/Unicode/Unicode_Exhibit_1.yml b/tests/licensedcode/data/more_licenses/tests/Unicode/Unicode_Exhibit_1.yml deleted file mode 100644 index 5de39e837d5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Unicode/Unicode_Exhibit_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - unicode-dfs-2016 diff --git a/tests/licensedcode/data/more_licenses/tests/VSL/VSL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/VSL/VSL-1.0.txt deleted file mode 100644 index 264df6cddbb..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/VSL/VSL-1.0.txt +++ /dev/null @@ -1,46 +0,0 @@ -Vovida Software License v. 1.0 - -This license applies to all software incorporated in the "Vovida -Open Communication Application Library" except for those portions -incorporating third party software specifically identified as being -licensed under separate license. - -The Vovida Software License, Version 1.0 -Copyright (c) 2000 Vovida Networks, Inc. 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. The names "VOCAL", "Vovida Open Communication Application Library", -and "Vovida Open Communication Application Library (VOCAL)" must -not be used to endorse or promote products derived from this -software without prior written permission. For written -permission, please contact vocal@vovida.org. - -4. Products derived from this software may not be called "VOCAL", nor -may "VOCAL" appear in their name, without prior written -permission. - -THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND -NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA -NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DAMAGES -IN EXCESS OF $1,000, NOR FOR ANY 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/tests/licensedcode/data/more_licenses/tests/VSL/VSL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/VSL/VSL-1.0.yml deleted file mode 100644 index b2f53090ba0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/VSL/VSL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - vsl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/W3C/W3C.txt b/tests/licensedcode/data/more_licenses/tests/W3C/W3C.txt deleted file mode 100644 index ddaca983313..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/W3C/W3C.txt +++ /dev/null @@ -1,25 +0,0 @@ -W3C SOFTWARE NOTICE AND LICENSE - -This work (and included software, documentation such as READMEs, or other related items) is being provided by the copyright holders under the following license. - -License - -By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. - -Permission to copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications: -The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. -Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software Short Notice should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code. -Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) - -Disclaimers - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. - -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. - -The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. - -Notes -This version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 - -This formulation of W3C's notice and license became active on December 31 2002. This version removes the copyright ownership notice such that this license can be used with materials other than those owned by the W3C, reflects that ERCIM is now a host of the W3C, includes references to this specific dated version of the license, and removes the ambiguous grant of "use". Otherwise, this version is the same as the previous version and is written so as to preserve the Free Software Foundation's assessment of GPL compatibility and OSI's certification under the Open Source Definition. diff --git a/tests/licensedcode/data/more_licenses/tests/W3C/W3C.yml b/tests/licensedcode/data/more_licenses/tests/W3C/W3C.yml deleted file mode 100644 index b6b7a4f10a4..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/W3C/W3C.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - w3c diff --git a/tests/licensedcode/data/more_licenses/tests/WXwindows/WXwindows.txt b/tests/licensedcode/data/more_licenses/tests/WXwindows/WXwindows.txt deleted file mode 100644 index d448ba15b2a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/WXwindows/WXwindows.txt +++ /dev/null @@ -1,52 +0,0 @@ - wxWindows Library Licence, Version 3.1 - ====================================== - - Copyright (C) 1998-2005 Julian Smart, Robert Roebling et al - - Everyone is permitted to copy and distribute verbatim copies - of this licence document, but changing it is not allowed. - - WXWINDOWS LIBRARY LICENCE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public Licence as published by - the Free Software Foundation; either version 2 of the Licence, or (at - your option) any later version. - - This library is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library - General Public Licence for more details. - - You should have received a copy of the GNU Library General Public Licence - along with this software, usually in a file named COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA. - - EXCEPTION NOTICE - - 1. As a special exception, the copyright holders of this library give - permission for additional uses of the text contained in this release of - the library as licenced under the wxWindows Library Licence, applying - either version 3.1 of the Licence, or (at your option) any later version of - the Licence as published by the copyright holders of version - 3.1 of the Licence document. - - 2. The exception is that you may use, copy, link, modify and distribute - under your own terms, binary object code versions of works based - on the Library. - - 3. If you copy code from files distributed under the terms of the GNU - General Public Licence or the GNU Library General Public Licence into a - copy of this library, as this licence permits, the exception does not - apply to the code that you add in this way. To avoid misleading anyone as - to the status of such modified files, you must delete this exception - notice from such code and/or adjust the licensing conditions notice - accordingly. - - 4. If you write modifications of your own for this library, it is your - choice whether to permit this exception to apply to your modifications. - If you do not wish that, you must delete the exception notice from such - code and/or adjust the licensing conditions notice accordingly. - diff --git a/tests/licensedcode/data/more_licenses/tests/WXwindows/WXwindows.yml b/tests/licensedcode/data/more_licenses/tests/WXwindows/WXwindows.yml deleted file mode 100644 index 58a5741bce1..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/WXwindows/WXwindows.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0-plus WITH wxwindows-exception-3.1 diff --git a/tests/licensedcode/data/more_licenses/tests/YPL-1.0/YPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/YPL-1.0/YPL-1.0.txt deleted file mode 100644 index 2523eb7dcde..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/YPL-1.0/YPL-1.0.txt +++ /dev/null @@ -1,47 +0,0 @@ -Yahoo! Public License, Version 1.0 (YPL) - -This Yahoo! Public License (this "Agreement") is a legal agreement that describes the terms under which Yahoo! Inc., a Delaware corporation having its principal place of business at 701 First Avenue, Sunnyvale, California 94089 ("Yahoo!") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. - -In consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows: - -1. Grant of Copyright License - -1.1 - Subject to the terms and conditions of this Agreement, Yahoo! hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a "Modification;" however, any file You add to the Software that does not contain any part of the Software is not a "Modification." - -1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement. - -1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to Yahoo! with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You "stand in the shoes" of Yahoo! in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of Yahoo!, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of northern California. - -1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by Yahoo!, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by Yahoo! under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3. - -1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose. - -2. Support -Yahoo! has no obligation to provide technical support or updates to You. Nothing in this Agreement requires Yahoo! to enter into any license with You for any other edition of the Software. - -3. Intellectual Property Rights - -3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved. - -3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce, any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software. - -3.3 - This license does not grant You rights to use any party's name, logo, or trademarks, except solely as necessary to comply with Section 3.2. - -4. Disclaimer of Warranties -THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. YAHOO! MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, YAHOO! SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. - -5. Limitation of Liability -IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -6. Term and Termination - -6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6. - -6.2 - In the event Yahoo! determines that You have breached this Agreement, Yahoo! may terminate this Agreement. - -6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to Yahoo! at law or equity or under this Agreement. - -6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting Yahoo!'s liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section 7), which provisions will survive termination of this Agreement. - -7. Miscellaneous -This Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of California and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving Yahoo! or any of its subsidiaries shall be subject to the jurisdiction of the federal or state courts of northern California, with venue lying in Santa Clara County, California. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger or consolidation, without the prior written consent of Yahoo!, and any purported assignment, delegation or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party's rights or remedies under this Agreement must be in writing to be effective. Failure, neglect or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time, will not be construed or be deemed to be a waiver of such party's rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party's right to take subsequent action. diff --git a/tests/licensedcode/data/more_licenses/tests/YPL-1.0/YPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/YPL-1.0/YPL-1.0.yml deleted file mode 100644 index e0ca57d8020..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/YPL-1.0/YPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ypl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.0.txt deleted file mode 100644 index d171514d0b0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.0.txt +++ /dev/null @@ -1,35 +0,0 @@ -Yahoo! Public License, Version 1.0 (YPL) - -This Yahoo! Public License (this "Agreement") is a legal agreement that describes the terms under which Yahoo! Inc., a Delaware corporation having its principal place of business at 701 First Avenue, Sunnyvale, California 94089 ("Yahoo!") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. - -In consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows: - -1. Grant of Copyright License - 1.1 - Subject to the terms and conditions of this Agreement, Yahoo! hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a "Modification;" however, any file You add to the Software that does not contain any part of the Software is not a "Modification." - 1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement. - 1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to Yahoo! with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You "stand in the shoes" of Yahoo! in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of Yahoo!, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of northern California. - 1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by Yahoo!, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by Yahoo! under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3. - 1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose. - -2. Support - Yahoo! has no obligation to provide technical support or updates to You. Nothing in this Agreement requires Yahoo! to enter into any license with You for any other edition of the Software. - -3. Intellectual Property Rights - 3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved. - 3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce, any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software. - 3.3 - This license does not grant You rights to use any party's name, logo, or trademarks, except solely as necessary to comply with Section 3.2. - -4. Disclaimer of Warranties - THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. YAHOO! MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, YAHOO! SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. - -5. Limitation of Liability - IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -6. Term and Termination - 6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6. - 6.2 - In the event Yahoo! determines that You have breached this Agreement, Yahoo! may terminate this Agreement. - 6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to Yahoo! at law or equity or under this Agreement. - 6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting Yahoo!'s liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section 7), which provisions will survive termination of this Agreement. - -7. Miscellaneous - This Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of California and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving Yahoo! or any of its subsidiaries shall be subject to the jurisdiction of the federal or state courts of northern California, with venue lying in Santa Clara County, California. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger or consolidation, without the prior written consent of Yahoo!, and any purported assignment, delegation or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party's rights or remedies under this Agreement must be in writing to be effective. Failure, neglect or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time, will not be construed or be deemed to be a waiver of such party's rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party's right to take subsequent action. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.0.yml deleted file mode 100644 index e0ca57d8020..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ypl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.1.txt deleted file mode 100644 index 86e93c49ac1..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.1.txt +++ /dev/null @@ -1,35 +0,0 @@ -Yahoo! Public License, Version 1.1 (YPL) - -This Yahoo! Public License (this "Agreement") is a legal agreement that describes the terms under which Yahoo! Inc., a Delaware corporation having its principal place of business at 701 First Avenue, Sunnyvale, California 94089 ("Yahoo!") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. - -In consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows: - -1. Grant of Copyright License - 1.1 - Subject to the terms and conditions of this Agreement, Yahoo! hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a "Modification;" however, any file You add to the Software that does not contain any part of the Software is not a "Modification." - 1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement. - 1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to Yahoo! with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You "stand in the shoes" of Yahoo! in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of Yahoo!, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of northern California. - 1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by Yahoo!, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by Yahoo! under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3. - 1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose. - -2. Support - Yahoo! has no obligation to provide technical support or updates to You. Nothing in this Agreement requires Yahoo! to enter into any license with You for any other edition of the Software. - -3. Intellectual Property Rights - 3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved. - 3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce, any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software. - 3.3 - This license does not grant You rights to use any party's name, logo, or trademarks, except solely as necessary to comply with Section 3.2. - -4. Disclaimer of Warranties - THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. YAHOO! MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, YAHOO! SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. - -5. Limitation of Liability - IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -6. Term and Termination - 6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6. - 6.2 - In the event You violate the terms of this Agreement, Yahoo! may terminate this Agreement. - 6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to Yahoo! at law or equity or under this Agreement. - 6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting Yahoo!'s liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section 7), which provisions will survive termination of this Agreement. - -7. Miscellaneous - This Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of California and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving Yahoo! or any of its subsidiaries shall be subject to the jurisdiction of the federal or state courts of northern California, with venue lying in Santa Clara County, California. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger or consolidation, without the prior written consent of Yahoo!, and any purported assignment, delegation or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party's rights or remedies under this Agreement must be in writing to be effective. Failure, neglect or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time, will not be construed or be deemed to be a waiver of such party's rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party's right to take subsequent action. diff --git a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.1.yml deleted file mode 100644 index af5ff637310..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/YPL/YPL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ypl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.0.txt b/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.0.txt deleted file mode 100644 index 7141f3e3287..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.0.txt +++ /dev/null @@ -1,81 +0,0 @@ - -Zope Public License (ZPL) Version 1.0 -------------------------------------- - -Copyright (c) Digital Creations. All rights reserved. - -This license has been certified as Open Source(tm). - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions in 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. Digital Creations requests that attribution be given to Zope - in any manner possible. Zope includes a "Powered by Zope" - button that is installed by default. While it is not a license - violation to remove this button, it is requested that the - attribution remain. A significant investment has been put - into Zope, and this effort will continue if the Zope community - continues to grow. This is one way to assure that growth. - -4. All advertising materials and documentation mentioning - features derived from or use of this software must display - the following acknowledgement: - - "This product includes software developed by Digital Creations - for use in the Z Object Publishing Environment - (http://www.zope.org/)." - - In the event that the product being advertised includes an - intact Zope distribution (with copyright and license included) - then this clause is waived. - -5. Names associated with Zope or Digital Creations must not be used to - endorse or promote products derived from this software without - prior written permission from Digital Creations. - -6. Modified redistributions of any form whatsoever must retain - the following acknowledgment: - - "This product includes software developed by Digital Creations - for use in the Z Object Publishing Environment - (http://www.zope.org/)." - - Intact (re-)distributions of any official Zope release do not - require an external acknowledgement. - -7. Modifications are encouraged but must be packaged separately as - patches to official Zope releases. Distributions that do not - clearly separate the patches from the original work must be clearly - labeled as unofficial distributions. Modifications which do not - carry the name Zope may be packaged in any form, as long as they - conform to all of the clauses above. - - -Disclaimer - - THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY - EXPRESSED 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 DIGITAL CREATIONS OR ITS - 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. - - -This software consists of contributions made by Digital Creations and -many individuals on behalf of Digital Creations. Specific -attributions are listed in the accompanying credits file. diff --git a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.0.yml b/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.0.yml deleted file mode 100644 index 26ff7eb53c8..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zpl-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.1.txt b/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.1.txt deleted file mode 100644 index 4180fe794ac..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.1.txt +++ /dev/null @@ -1,33 +0,0 @@ -Zope Public License (ZPL) Version 1.1 - -Copyright (c) Zope Corporation. All rights reserved. - -This license has been certified as open source. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions in 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. All advertising materials and documentation mentioning features derived from or use of this software must display the following acknowledgement: - -"This product includes software developed by Zope Corporation for use in the Z Object Publishing Environment (http://www.zope.com/)." - -In the event that the product being advertised includes an intact Zope distribution (with copyright and license included) then this clause is waived. - -4. Names associated with Zope or Zope Corporation must not be used to endorse or promote products derived from this software without prior written permission from Zope Corporation. - -5. Modified redistributions of any form whatsoever must retain the following acknowledgment: - -"This product includes software developed by Zope Corporation for use in the Z Object Publishing Environment (http://www.zope.com/)." - -Intact (re-)distributions of any official Zope release do not require an external acknowledgement. - -6. Modifications are encouraged but must be packaged separately as patches to official Zope releases. Distributions that do not clearly separate the patches from the original work must be clearly labeled as unofficial distributions. Modifications which do not carry the name Zope may be packaged in any form, as long as they conform to all of the clauses above. - -Disclaimer - -THIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS'' AND ANY EXPRESSED 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 ZOPE CORPORATION OR ITS 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. - -This software consists of contributions made by Zope Corporation and many individuals on behalf of Zope Corporation. Specific attributions are listed in the accompanying credits file. diff --git a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.1.yml b/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.1.yml deleted file mode 100644 index 79bf4440c3a..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zpl-1.1 diff --git a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-2.0.txt b/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-2.0.txt deleted file mode 100644 index 1bb746611b6..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-2.0.txt +++ /dev/null @@ -1,38 +0,0 @@ -Zope Public License (ZPL) Version 2.0 - -This software is Copyright (c) Zope Corporation (tm) and Contributors. All rights reserved. - -This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). - -Redistribution and use in source and binary forms, with or -without modification, are permitted provided that the -following conditions are met: - -1. Redistributions in 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. The name Zope Corporation (tm) must not be used to - endorse or promote products derived from this software - without prior written permission from Zope Corporation. - -4. The right to distribute this software or to use it for - any purpose does not give you the right to use Servicemarks - (sm) or Trademarks (tm) of Zope Corporation. Use of them is - covered in a separate agreement (see - http://www.zope.com/Marks). - -5. If any files are modified, you must cause the modified - files to carry prominent notices stating that you changed - the files and the date of any change. - -Disclaimer - - THIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS'' AND ANY EXPRESSED 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 ZOPE CORPORATION OR ITS 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. - -This software consists of contributions made by Zope Corporation and many individuals on behalf of Zope Corporation. Specific attributions are listed in the accompanying credits file. diff --git a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-2.0.yml b/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-2.0.yml deleted file mode 100644 index 32527a36804..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/ZPL/ZPL-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zpl-2.0 diff --git a/tests/licensedcode/data/more_licenses/tests/Zimbra/Zimbra-1.3.txt b/tests/licensedcode/data/more_licenses/tests/Zimbra/Zimbra-1.3.txt deleted file mode 100644 index 91a8fc75fb5..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Zimbra/Zimbra-1.3.txt +++ /dev/null @@ -1,35 +0,0 @@ -Zimbra Public License, Version 1.3 (ZPL) - -This Zimbra Public License (this "Agreement") is a legal agreement that describes the terms under which VMware, Inc., a Delaware corporation having its principal place of business at 3401 Hillview Avenue, Palo Alto, California 94304 ("VMware") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. - -In consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows: - -1. Grant of Copyright License -1.1 - Subject to the terms and conditions of this Agreement, VMware hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a "Modification;" however, any file You add to the Software that does not contain any part of the Software is not a "Modification." -1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement. -1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to VMware with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You "stand in the shoes" of VMware in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of VMware, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of northern California. -1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by VMware, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by VMware under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3. -1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose. - -2. Support -VMware has no obligation to provide technical support or updates to You. Nothing in this Agreement requires VMware to enter into any license with You for any other edition of the Software. - -3. Intellectual Property Rights -3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved. -3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce, any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software. -3.3 - This license does not grant You rights to use any party's name, logo, or trademarks, except solely as necessary to comply with Section 3.2. - -4. Disclaimer of Warranties -THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. VMWARE MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, VMWARE DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, VMWARE SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF VMWARE HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. - -5. Limitation of Liability -IN NO EVENT WILL VMWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF VMWARE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -6. Term and Termination -6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6. -6.2 - In the event You violate the terms of this Agreement, VMware may terminate this Agreement. -6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to VMware at law or equity or under this Agreement. -6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting VMware's liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section 7), which provisions will survive termination of this Agreement. - -7. Miscellaneous -This Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of California and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving VMware or any of its subsidiaries shall be subject to the jurisdiction of the federal or state courts of northern California, with venue lying in Santa Clara County, California. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger or consolidation, without the prior written consent of VMware, and any purported assignment, delegation or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party's rights or remedies under this Agreement must be in writing to be effective. Failure, neglect or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time, will not be construed or be deemed to be a waiver of such party's rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party's right to take subsequent action. diff --git a/tests/licensedcode/data/more_licenses/tests/Zimbra/Zimbra-1.3.yml b/tests/licensedcode/data/more_licenses/tests/Zimbra/Zimbra-1.3.yml deleted file mode 100644 index 19c84af81a2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/Zimbra/Zimbra-1.3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - zimbra-1.3 diff --git a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.0.txt b/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.0.txt deleted file mode 100644 index fe6b1a36342..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.0.txt +++ /dev/null @@ -1,219 +0,0 @@ - copyleft-next 0.3.0 ("this License") - Release date: 2013-05-16 - -1. License Grants; No Trademark License - - Subject to the terms of this License, I grant You: - - a) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable - copyright license, to reproduce, Distribute, prepare derivative works - of, publicly perform and publicly display My Work. - - b) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable - patent license under Licensed Patents to make, have made, use, sell, - offer for sale, and import Covered Works. - - This License does not grant any rights in My name, trademarks, service - marks, or logos. - -2. Distribution: General Conditions - - You may Distribute Covered Works, provided that You (i) inform - recipients how they can obtain a copy of this License; (ii) satisfy the - applicable conditions of sections 3 through 6; and (iii) preserve all - Legal Notices contained in My Work (to the extent they remain - pertinent). "Legal Notices" means copyright notices, license notices, - license texts, and author attributions, but does not include logos, - other graphical images, trademarks or trademark legends. - -3. Conditions for Distributing Derived Works; Outbound GPL Compatibility - - If You Distribute a Derived Work, You must license the entire Derived - Work as a whole under this License, with prominent notice of such - licensing. This condition may not be avoided through such means as - separate Distribution of portions of the Derived Work. You may - additionally license the Derived Work under the GPL, so that the - recipient may further Distribute the Derived Work under either this - License or the GPL. - -4. Condition Against Further Restrictions; Inbound License Compatibility - - When Distributing a Covered Work, You may not impose further - restrictions on the exercise of rights in the Covered Work granted under - this License. This condition is not excused merely because such - restrictions result from Your compliance with conditions or obligations - extrinsic to this License (such as a court order or an agreement with a - third party). - - However, You may Distribute a Covered Work incorporating material - governed by a license that is both OSI-Approved and FSF-Free as of the - release date of this License, provided that Your Distribution complies - with such other license. - -5. Conditions for Distributing Object Code - - You may Distribute an Object Code form of a Covered Work, provided that - you accompany the Object Code with a URL through which the Corresponding - Source is made available, at no charge, by some standard or customary - means of providing network access to source code. - - If you Distribute the Object Code in a physical product or tangible - storage medium ("Product"), the Corresponding Source must be available - through such URL for two years from the date of Your most recent - Distribution of the Object Code in the Product. However, if the Product - itself contains or is accompanied by the Corresponding Source (made - available in a customarily accessible manner), You need not also comply - with the first paragraph of this section. - - Each recipient of the Covered Work from You is an intended third-party - beneficiary of this License solely as to this section 5, with the right - to enforce its terms. - -6. Symmetrical Licensing Condition for Upstream Contributions - - If You Distribute a work to Me specifically for inclusion in or - modification of a Covered Work (a "Patch"), and no explicit licensing - terms apply to the Patch, You license the Patch under this License, to - the extent of Your copyright in the Patch. This condition does not - negate the other conditions of this License, if applicable to the Patch. - -7. Nullification of Copyleft/Proprietary Dual Licensing - - If I offer to license, for a fee, a Covered Work under terms other than - a license that is OSI-Approved or FSF-Free as of the release date of this - License or a numbered version of copyleft-next released by the - Copyleft-Next Project, then the license I grant You under section 1 is no - longer subject to the conditions in sections 2 through 5. - -8. Copyleft Sunset - - The conditions in sections 2 through 5 no longer apply once fifteen - years have elapsed from the date of My first Distribution of My Work - under this License. - -9. Pass-Through - - When You Distribute a Covered Work, the recipient automatically receives - a license to My Work from Me, subject to the terms of this License. - -10. Termination - - Your license grants under section 1 are automatically terminated if You - - a) fail to comply with the conditions of this License, unless You cure - such noncompliance within thirty days after becoming aware of it, or - - b) initiate a patent infringement litigation claim (excluding - declaratory judgment actions, counterclaims, and cross-claims) - alleging that any part of My Work directly or indirectly infringes - any patent. - - Termination of Your license grants extends to all copies of Covered - Works You subsequently obtain. Termination does not terminate the - rights of those who have received copies or rights from You subject to - this License. - - To the extent permission to make copies of a Covered Work is necessary - merely for running it, such permission is not terminable. - -11. Later License Versions - - The Copyleft-Next Project may release new versions of copyleft-next, - designated by a distinguishing version number ("Later Versions"). - Unless I explicitly remove the option of Distributing Covered Works - under Later Versions, You may Distribute Covered Works under any Later - Version. - -** 12. No Warranty ** -** ** -** My Work is provided "as-is", without warranty. You bear the risk ** -** of using it. To the extent permitted by applicable law, each ** -** Distributor of My Work excludes the implied warranties of title, ** -** merchantability, fitness for a particular purpose and ** -** non-infringement. ** - -** 13. Limitation of Liability ** -** ** -** To the extent permitted by applicable law, in no event will any ** -** Distributor of My Work be liable to You for any damages ** -** whatsoever, whether direct, indirect, special, incidental, or ** -** consequential damages, whether arising under contract, tort ** -** (including negligence), or otherwise, even where the Distributor ** -** knew or should have known about the possibility of such damages. ** - -14. Severability - - The invalidity or unenforceability of any provision of this License - does not affect the validity or enforceability of the remainder of - this License. Such provision is to be reformed to the minimum extent - necessary to make it valid and enforceable. - -15. Definitions - - "Copyleft-Next Project" means the project that maintains the source - code repository at as of the - release date of this License. - - "Corresponding Source" of a Covered Work in Object Code form means (i) - the Source Code form of the Covered Work; (ii) all scripts, - instructions and similar information that are reasonably necessary for - a skilled developer to generate such Object Code from the Source Code - provided under (i); and (iii) a list clearly identifying all Separate - Works (other than those provided in compliance with (ii)) that were - specifically used in building and (if applicable) installing the - Covered Work (for example, a specified proprietary compiler including - its version number). Corresponding Source must be machine-readable. - - "Covered Work" means My Work or a Derived Work. - - "Derived Work" means a work of authorship that copies from, modifies, - adapts, is based on, is a derivative work of, transforms, translates or - contains all or part of My Work, such that copyright permission is - required. The following are not Derived Works: (i) Mere Aggregation; - (ii) a mere reproduction of My Work; and (iii) if My Work fails to - explicitly state an expectation otherwise, a work that merely makes - reference to My Work. - - "Distribute" means to distribute, transfer or make a copy available to - someone else, such that copyright permission is required. - - "Distributor" means Me and anyone else who Distributes a Covered Work. - - "FSF-Free" means classified as 'free' by the Free Software Foundation. - - "GPL" means a version of the GNU General Public License or the GNU - Affero General Public License. - - "I"/"Me"/"My" refers to the individual or legal entity that places My - Work under this License. "You"/"Your" refers to the individual or legal - entity exercising rights in My Work under this License. A legal entity - includes each entity that controls, is controlled by, or is under - common control with such legal entity. "Control" means (a) the power to - direct the actions of such legal entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent of the - outstanding shares or beneficial ownership of such legal entity. - - "Licensed Patents" means all patent claims licensable royalty-free by - Me, now or in the future, that are necessarily infringed by making, - using, or selling My Work, and excludes claims that would be infringed - only as a consequence of further modification of My Work. - - "Mere Aggregation" means an aggregation of a Covered Work with a - Separate Work. - - "My Work" means the particular work of authorship I license to You - under this License. - - "Object Code" means any form of a work that is not Source Code. - - "OSI-Approved" means approved as 'Open Source' by the Open Source - Initiative. - - "Separate Work" means a work that is separate from and independent of a - particular Covered Work and is not by its nature an extension or - enhancement of the Covered Work, and/or a runtime library, standard - library or similar component that is used to generate an Object Code - form of a Covered Work. - - "Source Code" means the preferred form of a work for making -modifications to it. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.0.yml b/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.0.yml deleted file mode 100644 index cdaf9b4b886..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - copyleft-next-0.3.0 diff --git a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.1.txt b/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.1.txt deleted file mode 100644 index d7bbebd16a0..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.1.txt +++ /dev/null @@ -1,220 +0,0 @@ - copyleft-next 0.3.1 ("this License") - Release date: 2016-04-29 - -1. License Grants; No Trademark License - - Subject to the terms of this License, I grant You: - - a) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable - copyright license, to reproduce, Distribute, prepare derivative works - of, publicly perform and publicly display My Work. - - b) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable - patent license under Licensed Patents to make, have made, use, sell, - offer for sale, and import Covered Works. - - This License does not grant any rights in My name, trademarks, service - marks, or logos. - -2. Distribution: General Conditions - - You may Distribute Covered Works, provided that You (i) inform - recipients how they can obtain a copy of this License; (ii) satisfy the - applicable conditions of sections 3 through 6; and (iii) preserve all - Legal Notices contained in My Work (to the extent they remain - pertinent). "Legal Notices" means copyright notices, license notices, - license texts, and author attributions, but does not include logos, - other graphical images, trademarks or trademark legends. - -3. Conditions for Distributing Derived Works; Outbound GPL Compatibility - - If You Distribute a Derived Work, You must license the entire Derived - Work as a whole under this License, with prominent notice of such - licensing. This condition may not be avoided through such means as - separate Distribution of portions of the Derived Work. - - If the Derived Work includes material licensed under the GPL, You may - instead license the Derived Work under the GPL. - -4. Condition Against Further Restrictions; Inbound License Compatibility - - When Distributing a Covered Work, You may not impose further - restrictions on the exercise of rights in the Covered Work granted under - this License. This condition is not excused merely because such - restrictions result from Your compliance with conditions or obligations - extrinsic to this License (such as a court order or an agreement with a - third party). - - However, You may Distribute a Covered Work incorporating material - governed by a license that is both OSI-Approved and FSF-Free as of the - release date of this License, provided that compliance with such - other license would not conflict with any conditions stated in other - sections of this License. - -5. Conditions for Distributing Object Code - - You may Distribute an Object Code form of a Covered Work, provided that - you accompany the Object Code with a URL through which the Corresponding - Source is made available, at no charge, by some standard or customary - means of providing network access to source code. - - If you Distribute the Object Code in a physical product or tangible - storage medium ("Product"), the Corresponding Source must be available - through such URL for two years from the date of Your most recent - Distribution of the Object Code in the Product. However, if the Product - itself contains or is accompanied by the Corresponding Source (made - available in a customarily accessible manner), You need not also comply - with the first paragraph of this section. - - Each direct and indirect recipient of the Covered Work from You is an - intended third-party beneficiary of this License solely as to this - section 5, with the right to enforce its terms. - -6. Symmetrical Licensing Condition for Upstream Contributions - - If You Distribute a work to Me specifically for inclusion in or - modification of a Covered Work (a "Patch"), and no explicit licensing - terms apply to the Patch, You license the Patch under this License, to - the extent of Your copyright in the Patch. This condition does not - negate the other conditions of this License, if applicable to the Patch. - -7. Nullification of Copyleft/Proprietary Dual Licensing - - If I offer to license, for a fee, a Covered Work under terms other than - a license that is OSI-Approved or FSF-Free as of the release date of this - License or a numbered version of copyleft-next released by the - Copyleft-Next Project, then the license I grant You under section 1 is no - longer subject to the conditions in sections 3 through 5. - -8. Copyleft Sunset - - The conditions in sections 3 through 5 no longer apply once fifteen - years have elapsed from the date of My first Distribution of My Work - under this License. - -9. Pass-Through - - When You Distribute a Covered Work, the recipient automatically receives - a license to My Work from Me, subject to the terms of this License. - -10. Termination - - Your license grants under section 1 are automatically terminated if You - - a) fail to comply with the conditions of this License, unless You cure - such noncompliance within thirty days after becoming aware of it, or - - b) initiate a patent infringement litigation claim (excluding - declaratory judgment actions, counterclaims, and cross-claims) - alleging that any part of My Work directly or indirectly infringes - any patent. - - Termination of Your license grants extends to all copies of Covered - Works You subsequently obtain. Termination does not terminate the - rights of those who have received copies or rights from You subject to - this License. - - To the extent permission to make copies of a Covered Work is necessary - merely for running it, such permission is not terminable. - -11. Later License Versions - - The Copyleft-Next Project may release new versions of copyleft-next, - designated by a distinguishing version number ("Later Versions"). - Unless I explicitly remove the option of Distributing Covered Works - under Later Versions, You may Distribute Covered Works under any Later - Version. - -** 12. No Warranty ** -** ** -** My Work is provided "as-is", without warranty. You bear the risk ** -** of using it. To the extent permitted by applicable law, each ** -** Distributor of My Work excludes the implied warranties of title, ** -** merchantability, fitness for a particular purpose and ** -** non-infringement. ** - -** 13. Limitation of Liability ** -** ** -** To the extent permitted by applicable law, in no event will any ** -** Distributor of My Work be liable to You for any damages ** -** whatsoever, whether direct, indirect, special, incidental, or ** -** consequential damages, whether arising under contract, tort ** -** (including negligence), or otherwise, even where the Distributor ** -** knew or should have known about the possibility of such damages. ** - -14. Severability - - The invalidity or unenforceability of any provision of this License - does not affect the validity or enforceability of the remainder of - this License. Such provision is to be reformed to the minimum extent - necessary to make it valid and enforceable. - -15. Definitions - - "Copyleft-Next Project" means the project that maintains the source - code repository at - as of the release date of this License. - - "Corresponding Source" of a Covered Work in Object Code form means (i) - the Source Code form of the Covered Work; (ii) all scripts, - instructions and similar information that are reasonably necessary for - a skilled developer to generate such Object Code from the Source Code - provided under (i); and (iii) a list clearly identifying all Separate - Works (other than those provided in compliance with (ii)) that were - specifically used in building and (if applicable) installing the - Covered Work (for example, a specified proprietary compiler including - its version number). Corresponding Source must be machine-readable. - - "Covered Work" means My Work or a Derived Work. - - "Derived Work" means a work of authorship that copies from, modifies, - adapts, is based on, is a derivative work of, transforms, translates or - contains all or part of My Work, such that copyright permission is - required. The following are not Derived Works: (i) Mere Aggregation; - (ii) a mere reproduction of My Work; and (iii) if My Work fails to - explicitly state an expectation otherwise, a work that merely makes - reference to My Work. - - "Distribute" means to distribute, transfer or make a copy available to - someone else, such that copyright permission is required. - - "Distributor" means Me and anyone else who Distributes a Covered Work. - - "FSF-Free" means classified as 'free' by the Free Software Foundation. - - "GPL" means a version of the GNU General Public License or the GNU - Affero General Public License. - - "I"/"Me"/"My" refers to the individual or legal entity that places My - Work under this License. "You"/"Your" refers to the individual or legal - entity exercising rights in My Work under this License. A legal entity - includes each entity that controls, is controlled by, or is under - common control with such legal entity. "Control" means (a) the power to - direct the actions of such legal entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent of the - outstanding shares or beneficial ownership of such legal entity. - - "Licensed Patents" means all patent claims licensable royalty-free by - Me, now or in the future, that are necessarily infringed by making, - using, or selling My Work, and excludes claims that would be infringed - only as a consequence of further modification of My Work. - - "Mere Aggregation" means an aggregation of a Covered Work with a - Separate Work. - - "My Work" means the particular work of authorship I license to You - under this License. - - "Object Code" means any form of a work that is not Source Code. - - "OSI-Approved" means approved as 'Open Source' by the Open Source - Initiative. - - "Separate Work" means a work that is separate from and independent of a - particular Covered Work and is not by its nature an extension or - enhancement of the Covered Work, and/or a runtime library, standard - library or similar component that is used to generate an Object Code - form of a Covered Work. - - "Source Code" means the preferred form of a work for making -modifications to it. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.1.yml b/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.1.yml deleted file mode 100644 index 3182685d464..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/copyleft-next/copyleft-next-0.3.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - copyleft-next-0.3.1 diff --git a/tests/licensedcode/data/more_licenses/tests/eCos/Cygnus-eCos-1.0.txt b/tests/licensedcode/data/more_licenses/tests/eCos/Cygnus-eCos-1.0.txt deleted file mode 100644 index d9228cc7503..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/eCos/Cygnus-eCos-1.0.txt +++ /dev/null @@ -1,477 +0,0 @@ -CYGNUS ECOS PUBLIC LICENSE Version 1.0 - - -1. DEFINITIONS. - - 1.1. "Contributor" means each entity that creates or -contributes to the creation of Modifications. - - 1.2. "Contributor Version" means the combination of -the Original Code, prior Modifications used by a -Contributor, and the Modifications made by that particular -Contributor. - - 1.3. "Covered Code" means the Original Code or -Modifications or the combination of the Original Code and -Modifications, in each case including portions thereof. - - 1.4. "Electronic Distribution Mechanism" means a -mechanism generally accepted in the software development -community for the electronic transfer of data. - - 1.5. "Executable" means Covered Code in any form other -than Source Code. - - 1.6. "Initial Developer" means the individual or -entity identified as the Initial Developer in the Source -Code notice required by Exhibit A. - - 1.7. "Larger Work" means a work which combines Covered -Code or portions thereof with code not governed by the terms -of this License. - - 1.8. "License" means this document. - - 1.9. "Modifications" means any addition to or deletion -from the substance or structure of either the Original Code -or any previous Modifications. When Covered Code is released -as a series of files, a Modification is: - - A. Any addition to or deletion from the contents -of a file containing Original Code or previous -Modifications. - - B. Any new file that contains any part of the -Original Code or previous Modifications. - - 1.10. "Original Code" means Source Code of computer -software code which is described in the Source Code notice -required by Exhibit A as Original Code, and which, at the -time of its release under this License is not already -Covered Code governed by this License. - - 1.11. "Source Code" means the preferred form of the -Covered Code for making modifications to it, including all -modules it contains, plus any associated interface -definition files, scripts used to control compilation and -installation of an Executable, or a list of source code -differential comparisons against either the Original Code or -another well known, available Covered Code of the -Contributor's choice. The Source Code can be in a compressed -or archival form, provided the appropriate decompression or -de-archiving software is widely available for no charge. - - 1.12. "You" means an individual or a legal entity -exercising rights under, and complying with all of the terms -of, this License or a future version of this License issued -under Section 6.1. For legal entities, "You" includes any -entity which controls, is controlled by, or is under common -control with You. For purposes of this definition, -"control" means (a) the power, direct or indirect, to cause -the direction or management of such entity, whether by -contract or otherwise, or (b) ownership of fifty percent -(50%) or more of the outstanding shares or beneficial -ownership of such entity. - - 1.13. "Cygnus's Branded Code" is code that Cygnus -Solutions ("Cygnus") distributes and/or permits others to -distribute under different terms than the Cygnus eCos Public -License. Cygnus's Branded Code may contain part or all of -the Covered Code. - -2. SOURCE CODE LICENSE. - - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, -royalty-free, non-exclusive license, subject to third party -intellectual property claims: - - (a) to use, reproduce, modify, display, perform, -sublicense and distribute the Original Code (or portions -thereof) with or without Modifications, or as part of a -Larger Work; and - - (b) under patents now or hereafter owned or -controlled by Initial Developer, to make, have made, use and -sell ("Utilize") the Original Code (or portions thereof), -but solely to the extent that any such patent is reasonably -necessary to enable You to Utilize the Original Code (or -portions thereof) and not to any greater extent that may be -necessary to Utilize further Modifications or combinations. - - 2.2. Contributor Grant. - Each Contributor hereby grants You a world-wide, -royalty-free, non-exclusive license, subject to third party -intellectual property claims: - - (a) to use, reproduce, modify, display, perform, -sublicense and distribute the Modifications created by such -Contributor (or portions thereof) either on an unmodified -basis, with other Modifications, as Covered Code or as part -of a Larger Work; and - - (b) under patents now or hereafter owned or -controlled by Contributor, to Utilize the Contributor -Version (or portions thereof), but solely to the extent that -any such patent is reasonably necessary to enable You to -Utilize the Contributor Version (or portions thereof), and -not to any greater extent that may be necessary to Utilize -further Modifications or combinations. - -3. DISTRIBUTION OBLIGATIONS. - - 3.1. Application of License. - The Modifications which You create or to which You -contribute are governed by the terms of this License, -including without limitation Section 2.2. The Source Code -version of Covered Code may be distributed only under the -terms of this License or a future version of this License -released under Section 6.1, and You must include a copy of -this License with every copy of the Source Code You -distribute. You may not offer or impose any terms on any -Source Code version that alters or restricts the applicable -version of this License or the recipients' rights hereunder. -However, You may include an additional document offering the -additional rights described in Section 3.5. - - 3.2. Availability of Source Code. - Any Modification which You create or to which You -contribute must be made available in Source Code form under -the terms of this License via an accepted Electronic -Distribution Mechanism to anyone to whom you made an -Executable version available and to the Initial Developer; -and if made available via Electronic Distribution Mechanism, -must remain available for at least twelve (12) months after -the date it initially became available, or at least six (6) -months after a subsequent version of that particular -Modification has been made available to such recipients. You -are responsible for ensuring that the Source Code version -remains available even if the Electronic Distribution -Mechanism is maintained by a third party. You are -responsible for notifying the Initial Developer of the -Modification and the location of the Source if a contact -means is provided. Cygnus will be acting as maintainer of -the Source and may provide an Electronic Distribution -mechanism for the Modification to be made available. You can -contact Cygnus to make the Modification available and to -notify the Initial Developer. (http://sourceware.cygnus.com/ecos) - - 3.3. Description of Modifications. - You must cause all Covered Code to which you contribute -to contain a file documenting the changes You made to create -that Covered Code and the date of any change. You must -include a prominent statement that the Modification is -derived, directly or indirectly, from Original Code provided -by the Initial Developer and including the name of the -Initial Developer in (a) the Source Code, and (b) in any -notice in an Executable version or related documentation in -which You describe the origin or ownership of the Covered -Code. - - 3.4. Intellectual Property Matters - - (a) Third Party Claims. - If You have knowledge that a party claims an -intellectual property right in particular functionality or -code (or its utilization under this License), you must -include a text file with the source code distribution titled -"LEGAL" which describes the claim and the party making the -claim in sufficient detail that a recipient will know whom -to contact. If you obtain such knowledge after You make Your -Modification available as described in Section 3.2, You -shall promptly modify the LEGAL file in all copies You make -available thereafter and shall take other steps (such as -notifying appropriate mailing lists or newsgroups) -reasonably calculated to inform those who received the -Covered Code that new knowledge has been obtained. - - (b) Contributor APIs. - If Your Modification is an application programming -interface and You own or control patents which are -reasonably necessary to implement that API, you must also -include this information in the LEGAL file. - - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file -of the Source Code, and this License in any documentation -for the Source Code, where You describe recipients' rights -relating to Covered Code. If You created one or more -Modification(s), You may add your name as a Contributor to -the Source Code. If it is not possible to put such notice in -a particular Source Code file due to its structure, then you -must include such notice in a location (such as a relevant -directory file) where a user would be likely to look for -such a notice. You may choose to offer, and to charge a fee -for, warranty, support, indemnity or liability obligations -to one or more recipients of Covered Code. - However, You may do so only on Your own behalf, and not -on behalf of the Initial Developer or any Contributor. You -must make it absolutely clear that any such warranty, -support, indemnity or liability obligation is offered by You -alone, and You hereby agree to indemnify the Initial -Developer and every Contributor for any liability incurred -by the Initial Developer or such Contributor as a result of -warranty, support, indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only -if the requirements of Section 3.1-3.5 have been met for -that Covered Code, and if You include a notice stating that -the Source Code version of the Covered Code is available -under the terms of this License, including a description of -how and where You have fulfilled the obligations of Section -3.2. The notice must be conspicuously included in any notice -in an Executable version, related documentation or -collateral in which You describe recipients' rights relating -to the Covered Code. You may distribute the Executable -version of Covered Code under a license of Your choice, -which may contain terms different from this License, -provided that You are in compliance with the terms of this -License and that the license for the Executable version does -not attempt to limit or alter the recipient's rights in the -Source Code version from the rights set forth in this -License. If You distribute the Executable version under a -different license You must make it absolutely clear that any -terms which differ from this License are offered by You -alone, not by the Initial Developer or any Contributor. You -hereby agree to indemnify the Initial Developer and every -Contributor for any liability incurred by the Initial -Developer or such Contributor as a result of any such terms -You offer. - If you distribute executable versions containing -Covered Code, you must reproduce the notice in Exhibit B in -the documentation and/or other materials provided with the -product. - - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code -with other code not governed by the terms of this License -and distribute the Larger Work as a single product. In such -a case, You must make sure the requirements of this License -are fulfilled for the Covered Code. - -4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. - - If it is impossible for You to comply with any of the -terms of this License with respect to some or all of the -Covered Code due to statute or regulation then You must: (a) -comply with the terms of this License to the maximum extent -possible; (b) cite the statute or regulation that prohibits -you from adhering to the license; and (c) describe the -limitations and the code they affect. Such description must -be included in the LEGAL file described in Section 3.4 and -must be included with all distributions of the Source Code. -Except to the extent prohibited by statute or regulation, -such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. You -must submit this LEGAL file to Cygnus for review, and You -will not be able use the covered code in any means until -permission is granted from Cygnus to allow for the inability -to comply due to statute or regulation. - -5. APPLICATION OF THIS LICENSE. - - This License applies to code to which the Initial -Developer has attached the notice in Exhibit A, and to -related Covered Code. - Cygnus may include Covered Code in products without -such additional products becoming subject to the terms of -this License, and may license such additional products on -different terms from those contained in this License. - Cygnus may license the Source Code of Cygnus's Branded -Code without Cygnus's Branded Code becoming subject to the -terms of this License, and may license Cygnus's Branded Code -on different terms from those contained in this License. -Contact Cygnus for details of alternate licensing terms -available. - -6. VERSIONS OF THE LICENSE. - - 6.1. New Versions. - Cygnus may publish revised and/or new versions of the -License from time to time. Each version will be given a -distinguishing version number. - - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular -version of the License, You may always continue to use it -under the terms of that version. You may also choose to use -such Covered Code under the terms of any subsequent version -of the License published by Cygnus. No one other than Cygnus -has the right to modify the terms applicable to Covered Code -beyond what is granted under this and subsequent Licenses. - - 6.3. Derivative Works. - If you create or use a modified version of this License -(which you may only do in order to apply it to code which is -not already Covered Code governed by this License), you must -(a) rename Your license so that the phrases "ECOS", "eCos", -"Cygnus", "CPL" or any confusingly similar phrase do not -appear anywhere in your license and (b) otherwise make it -clear that your version of the license contains terms which -differ from the eCos Public License and Cygnus Public -License. (Filling in the name of the Initial Developer, -Original Code or Contributor in the notice described in -Exhibit A shall not of themselves be deemed to be -modifications of this License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS -IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT -THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A -PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO -THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. -SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU -(NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME -THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. -THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF -THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED -HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - This License and the rights granted hereunder will -terminate automatically if You fail to comply with terms -herein and fail to cure such breach within 30 days of -becoming aware of the breach. All sublicenses to the Covered -Code which are properly granted shall survive any -termination of this License. Provisions which, by their -nature, must remain in effect beyond the termination of this -License shall survive. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, -WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, -SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY -DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH -PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY -INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF -ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR -LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR -MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR -LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE -POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY -SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY -RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT -APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS -DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR -CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY -NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a "commercial item," as that term -is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of -"commercial computer software" and "commercial computer -software documentation," as such terms are used in 48 -C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 -and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all -U.S. Government End Users acquire Covered Code with only -those rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement -concerning subject matter hereof. If any provision of this -License is held to be unenforceable, such provision shall be -reformed only to the extent necessary to make it -enforceable. This License shall be governed by California -law provisions (except to the extent applicable law, if any, -provides otherwise), excluding its conflict-of-law -provisions. With respect to disputes in which at least one -party is a citizen of, or an entity chartered or registered -to do business in, the United States of America: (a) unless -otherwise agreed in writing, all disputes relating to this -License (excepting any dispute relating to intellectual -property rights) shall be subject to final and binding -arbitration, with the losing party paying all costs of -arbitration; (b) any arbitration relating to this Agreement -shall be held in Santa Clara County, California, under the -auspices of JAMS/EndDispute; and (c) any litigation relating -to this Agreement shall be subject to the jurisdiction of -the Federal Courts of the Northern District of California, -with venue lying in Santa Clara County, California, with the -losing party responsible for costs, including without -limitation, court costs and reasonable attorneys fees and -expenses. The application of the United Nations Convention -on Contracts for the International Sale of Goods is -expressly excluded. Any law or regulation which provides -that the language of a contract shall be construed against -the drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. - - Except in cases where another Contributor has failed to -comply with Section 3.4, You are responsible for damages -arising, directly or indirectly, out of Your utilization of -rights under this License, based on the number of copies of -Covered Code you made available, the revenues you received -from utilizing such rights, and other relevant factors. You -agree to work with affected parties to distribute -responsibility on an equitable basis. - -13. ADDITIONAL TERMS APPLICABLE TO THE CYGNUS ECOS PUBLIC -LICENSE. - - Nothing in this License shall be interpreted to -prohibit Cygnus from licensing under different terms than -this License any code which Cygnus otherwise would have a -right to license. - - Cygnus and logo - This License does not grant any -rights to use the trademark Cygnus, the Cygnus logo, -eCos logo, even if such marks are included in the Original -Code. You may contact Cygnus for permission to display the -Cygnus and eCos marks in either the documentation or the -Executable version beyond that required in Exhibit B. - - Inability to Comply Due to Contractual Obligation - To -the extent that Cygnus is limited contractually from making -third party code available under this License, Cygnus may -choose to integrate such third party code into Covered Code -without being required to distribute such third party code -in Source Code form, even if such third party code would -otherwise be considered "Modifications" under this License. - -EXHIBIT A. - -"The contents of this file are subject to the Cygnus eCos Public License -Version 1.0 (the "License"); you may not use this file except in -compliance with the License. You may obtain a copy of the License at -http://sourceware.cygnus.com/ecos - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations under -the License. - -The Original Code is eCos - Embedded Cygnus Operating System, released -September 30, 1998. - -The Initial Developer of the Original Code is Cygnus. Portions created -by Cygnus are Copyright (C) 1998 Cygnus Solutions. All Rights Reserved." - -EXHIBIT B. - -Part of the software embedded in this product is eCos - -Embedded Cygnus Operating System, a trademark of Cygnus -Solutions. Portions created by Cygnus are Copyright (C) 1998 -Cygnus Solutions (http://www.cygnus.com). All Rights -Reserved. - -THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY CYGNUS -SOLUTIONS 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 AUTHOR 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/tests/licensedcode/data/more_licenses/tests/eCos/Cygnus-eCos-1.0.yml b/tests/licensedcode/data/more_licenses/tests/eCos/Cygnus-eCos-1.0.yml deleted file mode 100644 index e92d5a6a601..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/eCos/Cygnus-eCos-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ecosrh-1.0 diff --git a/tests/licensedcode/data/more_licenses/tests/gSOAP/gSOAP-1.3b.txt b/tests/licensedcode/data/more_licenses/tests/gSOAP/gSOAP-1.3b.txt deleted file mode 100644 index 29fe9505a2d..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/gSOAP/gSOAP-1.3b.txt +++ /dev/null @@ -1,161 +0,0 @@ -gSOAP Public License - -Version 1.3b - -The gSOAP public license is derived from the Mozilla Public License (MPL1.1). The sections that were deleted from the original MPL1.1 text are 1.0.1, 2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last sentence), and 3.6 (simplified). - -This license applies to the gSOAP software package, with the exception of the soapcpp2 and wsdl2h source code located in gsoap/src and gsoap/wsdl, all code generated by soapcpp2 and wsdl2h, the UDDI source code gsoap/uddi2, and the Web server sample source code samples/webserver. To use any of these software tools and components commercially, a commercial license is required and can be obtained from www.genivia.com. - -1 DEFINITIONS. - -1.0.1. -1.1. "Contributor" -means each entity that creates or contributes to the creation of Modifications. -1.2. "Contributor Version" -means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. -1.3. "Covered Code" -means the Original Code, or Modifications or the combination of the Original Code, and Modifications, in each case including portions thereof. -1.4. "Electronic Distribution Mechanism" -means a mechanism generally accepted in the software development community for the electronic transfer of data. -1.5. "Executable" -means Covered Code in any form other than Source Code. -1.6. "Initial Developer" -means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. -1.7. "Larger Work" -means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. -1.8. "License" -means this document. -1.8.1. "Licensable" -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. -1.9. "Modifications" -means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: - A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. - B. Any new file that contains any part of the Original Code, or previous Modifications. -1.10. "Original Code" -means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. -1.10.1. "Patent Claims" -means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. -1.11. "Source Code" -means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. -1.12. "You" (or "Your") -means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2 SOURCE CODE LICENSE. - -2.1. The Initial Developer Grant. - -The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: -(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and -(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell ("offer to sell and import") the Original Code, Modifications, or portions thereof, but solely to the extent that any such patent is reasonably necessary to enable You to utilize, alone or in combination with other software, the Original Code, Modifications, or any combination or portions thereof. -(c) -(d) - -2.2. Contributor Grant. - -Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license -(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and -(b) under patents now or hereafter owned or controlled by Contributor, to make, have made, use and sell ("offer to sell and import") the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to utilize, alone or in combination with other software, the Contributor Version (or portions thereof). -(c) -(d) - -3 DISTRIBUTION OBLIGATIONS. - -3.1. Application of License. - -The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. - -3.2. Availability of Source Code. - -Any Modification created by You will be provided to the Initial Developer in Source Code form and are subject to the terms of the License. - -3.3. Description of Modifications. - -You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters. -(a) Third Party Claims. -If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. -(b) Contributor APIs. -If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. -(c) Representations. -Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. - -You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. - -3.6. Distribution of Executable Versions. - -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. If you distribute executable versions containing Covered Code as part of a product, you must reproduce the notice in Exhibit B in the documentation and/or other materials provided with the product. - -3.7. Larger Works. - -You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. - -3.8. Restrictions. - -You may not remove any product identification, copyright, proprietary notices or labels from gSOAP. - -4 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5 APPLICATION OF THIS LICENSE. - -This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. - -6 VERSIONS OF THE LICENSE. - -6.1. New Versions. - -Grantor may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. - -6.2. Effect of New Versions. - -Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License. - -6.3. Derivative Works. - -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrase "gSOAP" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the gSOAP Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) - -7 DISCLAIMER OF WARRANTY. - -COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND ANY WARRANTY THAT MAY ARISE BY REASON OF TRADE USAGE, CUSTOM, OR COURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, YOU ACKNOWLEDGE THAT THE SOFTWARE IS PROVIDED "AS IS" AND THAT THE AUTHORS DO NOT WARRANT THE SOFTWARE WILL RUN UNINTERRUPTED OR ERROR FREE. LIMITED LIABILITY THE ENTIRE RISK AS TO RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. UNDER NO CIRCUMSTANCES WILL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND OR NATURE WHATSOEVER, WHETHER BASED ON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, ARISING OUT OF OR IN ANY WAY RELATED TO THE SOFTWARE, EVEN IF THE AUTHORS HAVE BEEN ADVISED ON THE POSSIBILITY OF SUCH DAMAGE OR IF SUCH DAMAGE COULD HAVE BEEN REASONABLY FORESEEN, AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY EXCLUSIVE REMEDY PROVIDED. SUCH LIMITATION ON DAMAGES INCLUDES, BUT IS NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, LOST PROFITS, LOSS OF DATA OR SOFTWARE, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION OR IMPAIRMENT OF OTHER GOODS. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR THE COSTS OF PROCUREMENT OF SUBSTITUTE SOFTWARE OR SERVICES. YOU ACKNOWLEDGE THAT THIS SOFTWARE IS NOT DESIGNED FOR USE IN ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS SUCH AS OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR CONTROL, OR LIFE-CRITICAL APPLICATIONS. THE AUTHORS EXPRESSLY DISCLAIM ANY LIABILITY RESULTING FROM USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS AND ACCEPTS NO LIABILITY IN RESPECT OF ANY ACTIONS OR CLAIMS BASED ON THE USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS BY YOU. FOR PURPOSES OF THIS PARAGRAPH, THE TERM "LIFE-CRITICAL APPLICATION" MEANS AN APPLICATION IN WHICH THE FUNCTIONING OR MALFUNCTIONING OF THE SOFTWARE MAY RESULT DIRECTLY OR INDIRECTLY IN PHYSICAL INJURY OR LOSS OF HUMAN LIFE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8 TERMINATION. - -8.1. -This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. -8.2. -8.3. -If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. -8.4. -In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. - -9 LIMITATION OF LIABILITY. - -UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10 U.S. GOVERNMENT END USERS. - -11 MISCELLANEOUS. - -12 RESPONSIBILITY FOR CLAIMS. - -As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - -EXHIBIT A. - -"The contents of this file are subject to the gSOAP Public License Version 1.3 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at -http://www.cs.fsu.edu/ engelen/soaplicense.html -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. -The Original Code of the gSOAP Software is: stdsoap.h, stdsoap2.h, stdsoap.c, stdsoap2.c, stdsoap.cpp, stdsoap2.cpp, soapcpp2.h, soapcpp2.c, soapcpp2_lex.l, soapcpp2_yacc.y, error2.h, error2.c, symbol2.c, init2.c, soapdoc2.html, and soapdoc2.pdf, httpget.h, httpget.c, stl.h, stldeque.h, stllist.h, stlvector.h, stlset.h. -The Initial Developer of the Original Code is Robert A. van Engelen. Portions created by Robert A. van Engelen are Copyright (C) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved. -Contributor(s): -"________________________." -[Note: The text of this Exhibit A may differ slightly form the text of the notices in the Source Code files of the Original code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] -EXHIBIT B. - -"Part of the software embedded in this product is gSOAP software. -Portions created by gSOAP are Copyright (C) 2001-2009 Robert A. van Engelen, Genivia inc. All Rights Reserved. -THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC 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 AUTHOR 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/tests/licensedcode/data/more_licenses/tests/gSOAP/gSOAP-1.3b.yml b/tests/licensedcode/data/more_licenses/tests/gSOAP/gSOAP-1.3b.yml deleted file mode 100644 index b03593f19e3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/gSOAP/gSOAP-1.3b.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gsoap-1.3b diff --git a/tests/licensedcode/data/more_licenses/tests/gnuplot/gnuplot.txt b/tests/licensedcode/data/more_licenses/tests/gnuplot/gnuplot.txt deleted file mode 100644 index 226ad6b2e2c..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/gnuplot/gnuplot.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley - -Permission to use, copy, and distribute this software and its -documentation for any purpose with or without fee is hereby granted, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation. - -Permission to modify the software is granted, but not the right to -distribute the complete modified source code. Modifications are to -be distributed as patches to the released version. Permission to -distribute binaries produced by compiling modified sources is granted, -provided you -1. distribute the corresponding source modifications from the -released version in the form of a patch file along with the binaries, -2. add special version identification to distinguish your version -in addition to the base release version number, -3. provide your name and address as the primary contact for the -support of your modified version, and -4. retain our contact information in regard to use of the base -software. -Permission to distribute the released version of the source code along -with corresponding source modifications in the form of a patch file is -granted with same provisions 2 through 4 for binary distributions. - -This software is provided "as is" without express or implied warranty -to the extent permitted by applicable law. \ No newline at end of file diff --git a/tests/licensedcode/data/more_licenses/tests/gnuplot/gnuplot.yml b/tests/licensedcode/data/more_licenses/tests/gnuplot/gnuplot.yml deleted file mode 100644 index 2171239ecfe..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/gnuplot/gnuplot.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gnuplot diff --git a/tests/licensedcode/data/more_licenses/tests/mpich2/mpich2.txt b/tests/licensedcode/data/more_licenses/tests/mpich2/mpich2.txt deleted file mode 100644 index 4b8af5406d3..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/mpich2/mpich2.txt +++ /dev/null @@ -1,20 +0,0 @@ - -COPYRIGHT - -The following is a notice of limited availability of the code, and disclaimer which must be included in the prologue of the code and in all source listings of the code. - -Copyright Notice -+ 2002 University of Chicago - -Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. This software was authored by: - -Argonne National Laboratory Group W. Gropp: (630) 252-4318; FAX: (630) 252-5986; e-mail: gropp@mcs.anl.gov E. Lusk: (630) 252-7852; FAX: (630) 252-5986; e-mail: lusk@mcs.anl.gov Mathematics and Computer Science Division Argonne National Laboratory, Argonne IL 60439 - -GOVERNMENT LICENSE - -Portions of this material resulted from work developed under a U.S. Government Contract and are subject to the following license: the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly. - -DISCLAIMER - -This computer code material was prepared, in part, as an account of work sponsored by an agency of the United States Government. Neither the United States, nor the University of Chicago, nor any of their employees, makes any warranty express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately owned rights. - diff --git a/tests/licensedcode/data/more_licenses/tests/mpich2/mpich2.yml b/tests/licensedcode/data/more_licenses/tests/mpich2/mpich2.yml deleted file mode 100644 index 834a854dff2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/mpich2/mpich2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpich diff --git a/tests/licensedcode/data/more_licenses/tests/naist/naist-2003.txt b/tests/licensedcode/data/more_licenses/tests/naist/naist-2003.txt deleted file mode 100644 index 7797333970f..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/naist/naist-2003.txt +++ /dev/null @@ -1,67 +0,0 @@ -Use, reproduction, and distribution of this software is permitted. -Any copy of this software, whether in its original form or modified, -must include both the above copyright notice and the following -paragraphs. - -Nara Institute of Science and Technology (NAIST), -the copyright holders, disclaims all warranties with regard to this -software, including all implied warranties of merchantability and -fitness, in no event shall NAIST be liable for -any special, indirect or consequential damages or any damages -whatsoever resulting from loss of use, data or profits, whether in an -action of contract, negligence or other tortuous action, arising out -of or in connection with the use or performance of this software. - -A large portion of the dictionary entries -originate from ICOT Free Software. The following conditions for ICOT -Free Software applies to the current dictionary as well. - -Each User may also freely distribute the Program, whether in its -original form or modified, to any third party or parties, PROVIDED -that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear -on, or be attached to, the Program, which is distributed substantially -in the same form as set out herein and that such intended -distribution, if actually made, will neither violate or otherwise -contravene any of the laws and regulations of the countries having -jurisdiction over the User or the intended distribution itself. - -NO WARRANTY - -The program was produced on an experimental basis in the course of the -research and development conducted during the project and is provided -to users as so produced on an experimental basis. Accordingly, the -program is provided without any warranty whatsoever, whether express, -implied, statutory or otherwise. The term "warranty" used herein -includes, but is not limited to, any warranty of the quality, -performance, merchantability and fitness for a particular purpose of -the program and the nonexistence of any infringement or violation of -any right of any third party. - -Each user of the program will agree and understand, and be deemed to -have agreed and understood, that there is no warranty whatsoever for -the program and, accordingly, the entire risk arising from or -otherwise connected with the program is assumed by the user. - -Therefore, neither ICOT, the copyright holder, or any other -organization that participated in or was otherwise related to the -development of the program and their respective officials, directors, -officers and other employees shall be held liable for any and all -damages, including, without limitation, general, special, incidental -and consequential damages, arising out of or otherwise in connection -with the use or inability to use the program or any product, material -or result produced or otherwise obtained by using the program, -regardless of whether they have been advised of, or otherwise had -knowledge of, the possibility of such damages at any time during the -project or thereafter. Each user will be deemed to have agreed to the -foregoing by his or her commencement of use of the program. The term -"use" as used herein includes, but is not limited to, the use, -modification, copying and distribution of the program and the -production of secondary products from the program. - -In the case where the program, whether in its original form or -modified, was distributed or delivered to or received by a user from -any person, organization or entity other than ICOT, unless it makes or -grants independently of ICOT any specific warranty to the user in -writing, such person, organization or entity, will also be exempted -from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. diff --git a/tests/licensedcode/data/more_licenses/tests/naist/naist-2003.yml b/tests/licensedcode/data/more_licenses/tests/naist/naist-2003.yml deleted file mode 100644 index 96d44e418c2..00000000000 --- a/tests/licensedcode/data/more_licenses/tests/naist/naist-2003.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - naist-2003 diff --git a/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json b/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json index 5826ca12725..da49036975c 100644 --- a/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json +++ b/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json @@ -61,7 +61,7 @@ "homepage_url": "http://www.linfo.org/publicdomain.html", "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 2, "end_line": 54, @@ -125,7 +125,7 @@ "category": "Copyleft Limited", "is_exception": true, "owner": "Linux Foundation", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:linux-syscall-exception-gpl", "spdx_license_key": "Linux-syscall-note", diff --git a/tests/licensedcode/data/plugin_license/license_url.expected.json b/tests/licensedcode/data/plugin_license/license_url.expected.json index 55a9981412d..c3c83395493 100644 --- a/tests/licensedcode/data/plugin_license/license_url.expected.json +++ b/tests/licensedcode/data/plugin_license/license_url.expected.json @@ -67,7 +67,7 @@ "homepage_url": "http://www.linfo.org/publicdomain.html", "text_url": "", "reference_url": "https://example.com/urn:public-domain", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 2, "end_line": 54, diff --git a/tests/licensedcode/data/plugin_license_text/scan.expected.json b/tests/licensedcode/data/plugin_license_text/scan.expected.json index d0556b62435..e606321e7d3 100644 --- a/tests/licensedcode/data/plugin_license_text/scan.expected.json +++ b/tests/licensedcode/data/plugin_license_text/scan.expected.json @@ -111,7 +111,7 @@ "homepage_url": "http://www.linfo.org/publicdomain.html", "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 6, "end_line": 58, @@ -208,7 +208,7 @@ "homepage_url": "http://www.linfo.org/publicdomain.html", "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:public-domain", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 38, "end_line": 90, @@ -271,7 +271,7 @@ "homepage_url": "http://web.archive.org/web/20040402030132/http://uportal.org/license.html", "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ja-sig", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 4, "end_line": 13, @@ -399,7 +399,7 @@ "category": "Copyleft Limited", "is_exception": true, "owner": "Linux Foundation", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:linux-syscall-exception-gpl", "spdx_license_key": "Linux-syscall-note", @@ -501,7 +501,7 @@ "homepage_url": "http://web.archive.org/web/20040402030132/http://uportal.org/license.html", "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ja-sig", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 4, "end_line": 13, diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/afl-3.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/afl-3.0.txt deleted file mode 100644 index e8838939258..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/afl-3.0.txt +++ /dev/null @@ -1,47 +0,0 @@ -Academic Free License ("AFL") v. 3.0 -This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: - -Licensed under the Academic Free License version 3.0 - -1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: - -a) to reproduce the Original Work in copies, either alone or as part of a collective work; - -b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute or communicate copies of the Original Work and Derivative Works to the public, under any license of your choice that does not contradict the terms and conditions, including Licensor's reserved rights and remedies, in this Academic Free License; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. - -5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. - -9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. - -12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. - diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/afl-3.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/afl-3.0.yml deleted file mode 100644 index 23ccef3787a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/afl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - afl-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-1.0.txt deleted file mode 100644 index a2ad128553e..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-1.0.txt +++ /dev/null @@ -1,95 +0,0 @@ -AFFERO GENERAL PUBLIC LICENSE -Version 1, March 2002 - -Copyright © 2002 Affero Inc. -510 Third Street - Suite 225, San Francisco, CA 94107, USA - -This license is a modified version of the GNU General Public License copyright (C) 1989, 1991 Free Software Foundation, Inc. made with their permission. Section 2(d) has been added to cover use of software over a computer network. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the Affero General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This Public License applies to most of Affero's software and to any other program whose authors commit to using it. (Some other Affero software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. This General Public License is designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. - -Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this Affero General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -* a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. - -* b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. - -* c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) - -* d) If the Program as you received it is intended to interact with users through a computer network and if, in the version you received, any user interacting with the Program was given the opportunity to request transmission to that user of the Program's complete source code, you must not remove that facility from your modified version of the Program or work based on the Program, and must offer an equivalent opportunity for all users interacting with your Program through a computer network to request immediate transmission by HTTP of the complete source code of your modified version or other derivative work. - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: - -* a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - -* b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - -* c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -9. Affero Inc. may publish revised and/or new versions of the Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by Affero, Inc. If the Program does not specify a version number of this License, you may choose any version ever published by Affero, Inc. - -You may also choose to redistribute modified versions of this program under any version of the Free Software Foundation's GNU General Public License version 3 or higher, so long as that version of the GNU GPL includes terms and conditions substantially equivalent to those of this license. - -10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by Affero, Inc., write to us; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-1.0.yml deleted file mode 100644 index 49f6cbdabf0..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - agpl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-2.0.txt deleted file mode 100644 index c06e4f56d1b..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-2.0.txt +++ /dev/null @@ -1,9 +0,0 @@ -AFFERO GENERAL PUBLIC LICENSE -Version 2, November 2007 - -Copyright © 2007 Affero Inc. -510 Third Street - Suite 225, San Francisco, CA 94107, USA - -This is version 2 of the Affero General Public License. It gives each licensee permission to distribute the Program or a work based on the Program (as defined in version 1 of the Affero GPL) under the GNU Affero General Public License, version 3 or any later version. - -If the Program was licensed under version 1 of the Affero GPL "or any later version", no additional obligations are imposed on any author or copyright holder of the Program as a result of a licensee's choice to follow this version 2 of the Affero GPL. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-2.0.yml deleted file mode 100644 index 91e8e9a63df..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - agpl-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-3.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-3.0.txt deleted file mode 100644 index dba13ed2ddf..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-3.0.txt +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-3.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-3.0.yml deleted file mode 100644 index 20f99da0231..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/agpl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - agpl-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-1.1.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-1.1.txt deleted file mode 100644 index de6706f26e0..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-1.1.txt +++ /dev/null @@ -1,58 +0,0 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2000 The Apache Software Foundation. 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. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Apache" and "Apache Software Foundation" must - * not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache", - * nor may "Apache" appear in their name, without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR - * ITS 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. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . - * - * Portions of this software are based upon public domain software - * originally written at the National Center for Supercomputing Applications, - * University of Illinois, Urbana-Champaign. - */ - diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-1.1.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-1.1.yml deleted file mode 100644 index bdf08a6ce9e..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-1.1 AND public-domain diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-2.0.txt deleted file mode 100644 index d6456956733..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-2.0.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-2.0.yml deleted file mode 100644 index 9d7adb5d4a8..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/apache-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-1.0.txt deleted file mode 100644 index a8cccda2b9d..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-1.0.txt +++ /dev/null @@ -1,48 +0,0 @@ -The Artistic License -Preamble - -The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. - -Definitions: - -"Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. -"Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. -"Copyright Holder" is whoever is named in the copyright or copyrights for the package. -"You" is you, if you're thinking about copying or distributing this Package. -"Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) -"Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. -1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: - -a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. - -b) use the modified Package only within your corporation or organization. - -c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: - -a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. - -b) accompany the distribution with the machine-readable source of the Package with your modifications. - -c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. - -d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-1.0.yml deleted file mode 100644 index befe587064c..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-2.0.txt deleted file mode 100644 index 5d9689b51c3..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-2.0.txt +++ /dev/null @@ -1,73 +0,0 @@ -Artistic License 2.0 -Copyright (c) 2000-2006, The Perl Foundation. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -Preamble -This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is that the Copyright Holder maintains some artistic control over the development of that Package while still keeping the Package available as open source and free software. - -You are always permitted to make arrangements wholly outside of this license directly with the Copyright Holder of a given Package. If the terms of this license do not permit the full use that you propose to make of the Package, you should contact the Copyright Holder and seek a different licensing arrangement. - -Definitions -"Copyright Holder" means the individual(s) or organization(s) named in the copyright notice for the entire Package. - -"Contributor" means any party that has contributed code or other material to the Package, in accordance with the Copyright Holder's procedures. - -"You" and "your" means any person who would like to copy, distribute, or modify the Package. - -"Package" means the collection of files distributed by the Copyright Holder, and derivatives of that collection and/or of those files. A given Package may consist of either the Standard Version, or a Modified Version. - -"Distribute" means providing a copy of the Package or making it accessible to anyone else, or in the case of a company or organization, to others outside of your company or organization. - -"Distributor Fee" means any fee that you charge for Distributing this Package or providing support for this Package to another party. It does not mean licensing fees. - -"Standard Version" refers to the Package if it has not been modified, or has been modified only in ways explicitly requested by the Copyright Holder. - -"Modified Version" means the Package, if it has been changed, and such changes were not explicitly requested by the Copyright Holder. - -"Original License" means this Artistic License as Distributed with the Standard Version of the Package, in its current version or as it may be modified by The Perl Foundation in the future. - -"Source" form means the source code, documentation source, and configuration files for the Package. - -"Compiled" form means the compiled bytecode, object code, binary, or any other form resulting from mechanical transformation or translation of the Source form. - -Permission for Use and Modification Without Distribution -(1) You are permitted to use the Standard Version and create and use Modified Versions for any purpose without restriction, provided that you do not Distribute the Modified Version. - -Permissions for Redistribution of the Standard Version -(2) You may Distribute verbatim copies of the Source form of the Standard Version of this Package in any medium without restriction, either gratis or for a Distributor Fee, provided that you duplicate all of the original copyright notices and associated disclaimers. At your discretion, such verbatim copies may or may not include a Compiled form of the Package. - -(3) You may apply any bug fixes, portability changes, and other modifications made available from the Copyright Holder. The resulting Package will still be considered the Standard Version, and as such will be subject to the Original License. - -Distribution of Modified Versions of the Package as Source -(4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following: - -(a) make the Modified Version available to the Copyright Holder of the Standard Version, under the Original License, so that the Copyright Holder may include your modifications in the Standard Version. -(b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version. -(c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under -(i) the Original License or -(ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed. - -Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source -(5) You may Distribute Compiled forms of the Standard Version without the Source, provided that you include complete instructions on how to get the Source of the Standard Version. Such instructions must be valid at the time of your distribution. If these instructions, at any time while you are carrying out such distribution, become invalid, you must provide new instructions on demand or cease further distribution. If you provide valid instructions or cease distribution within thirty days after you become aware that the instructions are invalid, then you do not forfeit any of your rights under this license. - -(6) You may Distribute a Modified Version in Compiled form without the Source, provided that you comply with Section 4 with respect to the Source of the Modified Version. - -Aggregating or Linking the Package -(7) You may aggregate the Package (either the Standard Version or Modified Version) with other packages and Distribute the resulting aggregation provided that you do not charge a licensing fee for the Package. Distributor Fees are permitted, and licensing fees for other components in the aggregation are permitted. The terms of this license apply to the use and Distribution of the Standard or Modified Versions as included in the aggregation. - -(8) You are permitted to link Modified and Standard Versions with other works, to embed the Package in a larger work of your own, or to build stand-alone binary or bytecode versions of applications that include the Package, and Distribute the result without restriction, provided the result does not expose a direct interface to the Package. - -Items That are Not Considered Part of a Modified Version -(9) Works (including, but not limited to, modules and scripts) that merely extend or make use of the Package, do not, by themselves, cause the Package to be a Modified Version. In addition, such works are not considered parts of the Package itself, and are not subject to the terms of this license. - -General Provisions -(10) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license. - -(11) If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license. - -(12) This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder. - -(13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed. - -(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-2.0.yml deleted file mode 100644 index 38d0caf83b7..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/artistic-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - artistic-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/beerware-r42.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/beerware-r42.txt deleted file mode 100644 index 0cd64599cd5..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/beerware-r42.txt +++ /dev/null @@ -1 +0,0 @@ -"THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/beerware-r42.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/beerware-r42.yml deleted file mode 100644 index 8fea1322008..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/beerware-r42.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - beerware diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/bsd-3c.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/bsd-3c.txt deleted file mode 100644 index d279d647fb0..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/bsd-3c.txt +++ /dev/null @@ -1,26 +0,0 @@ -BSD 3-Clause License (a.k.a Revised, New, or Modified) - -Copyright (c) , -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of the 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 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. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/bsd-3c.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/bsd-3c.yml deleted file mode 100644 index 405f580963a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/bsd-3c.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - bsd-new diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-3.0-u.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-3.0-u.txt deleted file mode 100644 index 1a16e05564d..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-3.0-u.txt +++ /dev/null @@ -1,319 +0,0 @@ -Creative Commons Legal Code - -Attribution 3.0 Unported - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR - DAMAGES RESULTING FROM ITS USE. - -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE -COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY -COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS -AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE -TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY -BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS -CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND -CONDITIONS. - -1. Definitions - - a. "Adaptation" means a work based upon the Work, or upon the Work and - other pre-existing works, such as a translation, adaptation, - derivative work, arrangement of music or other alterations of a - literary or artistic work, or phonogram or performance and includes - cinematographic adaptations or any other form in which the Work may be - recast, transformed, or adapted including in any form recognizably - derived from the original, except that a work that constitutes a - Collection will not be considered an Adaptation for the purpose of - this License. For the avoidance of doubt, where the Work is a musical - work, performance or phonogram, the synchronization of the Work in - timed-relation with a moving image ("synching") will be considered an - Adaptation for the purpose of this License. - b. "Collection" means a collection of literary or artistic works, such as - encyclopedias and anthologies, or performances, phonograms or - broadcasts, or other works or subject matter other than works listed - in Section 1(f) below, which, by reason of the selection and - arrangement of their contents, constitute intellectual creations, in - which the Work is included in its entirety in unmodified form along - with one or more other contributions, each constituting separate and - independent works in themselves, which together are assembled into a - collective whole. A work that constitutes a Collection will not be - considered an Adaptation (as defined above) for the purposes of this - License. - c. "Distribute" means to make available to the public the original and - copies of the Work or Adaptation, as appropriate, through sale or - other transfer of ownership. - d. "Licensor" means the individual, individuals, entity or entities that - offer(s) the Work under the terms of this License. - e. "Original Author" means, in the case of a literary or artistic work, - the individual, individuals, entity or entities who created the Work - or if no individual or entity can be identified, the publisher; and in - addition (i) in the case of a performance the actors, singers, - musicians, dancers, and other persons who act, sing, deliver, declaim, - play in, interpret or otherwise perform literary or artistic works or - expressions of folklore; (ii) in the case of a phonogram the producer - being the person or legal entity who first fixes the sounds of a - performance or other sounds; and, (iii) in the case of broadcasts, the - organization that transmits the broadcast. - f. "Work" means the literary and/or artistic work offered under the terms - of this License including without limitation any production in the - literary, scientific and artistic domain, whatever may be the mode or - form of its expression including digital form, such as a book, - pamphlet and other writing; a lecture, address, sermon or other work - of the same nature; a dramatic or dramatico-musical work; a - choreographic work or entertainment in dumb show; a musical - composition with or without words; a cinematographic work to which are - assimilated works expressed by a process analogous to cinematography; - a work of drawing, painting, architecture, sculpture, engraving or - lithography; a photographic work to which are assimilated works - expressed by a process analogous to photography; a work of applied - art; an illustration, map, plan, sketch or three-dimensional work - relative to geography, topography, architecture or science; a - performance; a broadcast; a phonogram; a compilation of data to the - extent it is protected as a copyrightable work; or a work performed by - a variety or circus performer to the extent it is not otherwise - considered a literary or artistic work. - g. "You" means an individual or entity exercising rights under this - License who has not previously violated the terms of this License with - respect to the Work, or who has received express permission from the - Licensor to exercise rights under this License despite a previous - violation. - h. "Publicly Perform" means to perform public recitations of the Work and - to communicate to the public those public recitations, by any means or - process, including by wire or wireless means or public digital - performances; to make available to the public Works in such a way that - members of the public may access these Works from a place and at a - place individually chosen by them; to perform the Work to the public - by any means or process and the communication to the public of the - performances of the Work, including by public digital performance; to - broadcast and rebroadcast the Work by any means including signs, - sounds or images. - i. "Reproduce" means to make copies of the Work by any means including - without limitation by sound or visual recordings and the right of - fixation and reproducing fixations of the Work, including storage of a - protected performance or phonogram in digital form or other electronic - medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, -limit, or restrict any uses free from copyright or rights arising from -limitations or exceptions that are provided for in connection with the -copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, -Licensor hereby grants You a worldwide, royalty-free, non-exclusive, -perpetual (for the duration of the applicable copyright) license to -exercise the rights in the Work as stated below: - - a. to Reproduce the Work, to incorporate the Work into one or more - Collections, and to Reproduce the Work as incorporated in the - Collections; - b. to create and Reproduce Adaptations provided that any such Adaptation, - including any translation in any medium, takes reasonable steps to - clearly label, demarcate or otherwise identify that changes were made - to the original Work. For example, a translation could be marked "The - original work was translated from English to Spanish," or a - modification could indicate "The original work has been modified."; - c. to Distribute and Publicly Perform the Work including as incorporated - in Collections; and, - d. to Distribute and Publicly Perform Adaptations. - e. For the avoidance of doubt: - - i. Non-waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme cannot be waived, the Licensor - reserves the exclusive right to collect such royalties for any - exercise by You of the rights granted under this License; - ii. Waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme can be waived, the Licensor waives the - exclusive right to collect such royalties for any exercise by You - of the rights granted under this License; and, - iii. Voluntary License Schemes. The Licensor waives the right to - collect royalties, whether individually or, in the event that the - Licensor is a member of a collecting society that administers - voluntary licensing schemes, via that society, from any exercise - by You of the rights granted under this License. - -The above rights may be exercised in all media and formats whether now -known or hereafter devised. The above rights include the right to make -such modifications as are technically necessary to exercise the rights in -other media and formats. Subject to Section 8(f), all rights not expressly -granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made -subject to and limited by the following restrictions: - - a. You may Distribute or Publicly Perform the Work only under the terms - of this License. You must include a copy of, or the Uniform Resource - Identifier (URI) for, this License with every copy of the Work You - Distribute or Publicly Perform. You may not offer or impose any terms - on the Work that restrict the terms of this License or the ability of - the recipient of the Work to exercise the rights granted to that - recipient under the terms of the License. You may not sublicense the - Work. You must keep intact all notices that refer to this License and - to the disclaimer of warranties with every copy of the Work You - Distribute or Publicly Perform. When You Distribute or Publicly - Perform the Work, You may not impose any effective technological - measures on the Work that restrict the ability of a recipient of the - Work from You to exercise the rights granted to that recipient under - the terms of the License. This Section 4(a) applies to the Work as - incorporated in a Collection, but this does not require the Collection - apart from the Work itself to be made subject to the terms of this - License. If You create a Collection, upon notice from any Licensor You - must, to the extent practicable, remove from the Collection any credit - as required by Section 4(b), as requested. If You create an - Adaptation, upon notice from any Licensor You must, to the extent - practicable, remove from the Adaptation any credit as required by - Section 4(b), as requested. - b. If You Distribute, or Publicly Perform the Work or any Adaptations or - Collections, You must, unless a request has been made pursuant to - Section 4(a), keep intact all copyright notices for the Work and - provide, reasonable to the medium or means You are utilizing: (i) the - name of the Original Author (or pseudonym, if applicable) if supplied, - and/or if the Original Author and/or Licensor designate another party - or parties (e.g., a sponsor institute, publishing entity, journal) for - attribution ("Attribution Parties") in Licensor's copyright notice, - terms of service or by other reasonable means, the name of such party - or parties; (ii) the title of the Work if supplied; (iii) to the - extent reasonably practicable, the URI, if any, that Licensor - specifies to be associated with the Work, unless such URI does not - refer to the copyright notice or licensing information for the Work; - and (iv) , consistent with Section 3(b), in the case of an Adaptation, - a credit identifying the use of the Work in the Adaptation (e.g., - "French translation of the Work by Original Author," or "Screenplay - based on original Work by Original Author"). The credit required by - this Section 4 (b) may be implemented in any reasonable manner; - provided, however, that in the case of a Adaptation or Collection, at - a minimum such credit will appear, if a credit for all contributing - authors of the Adaptation or Collection appears, then as part of these - credits and in a manner at least as prominent as the credits for the - other contributing authors. For the avoidance of doubt, You may only - use the credit required by this Section for the purpose of attribution - in the manner set out above and, by exercising Your rights under this - License, You may not implicitly or explicitly assert or imply any - connection with, sponsorship or endorsement by the Original Author, - Licensor and/or Attribution Parties, as appropriate, of You or Your - use of the Work, without the separate, express prior written - permission of the Original Author, Licensor and/or Attribution - Parties. - c. Except as otherwise agreed in writing by the Licensor or as may be - otherwise permitted by applicable law, if You Reproduce, Distribute or - Publicly Perform the Work either by itself or as part of any - Adaptations or Collections, You must not distort, mutilate, modify or - take other derogatory action in relation to the Work which would be - prejudicial to the Original Author's honor or reputation. Licensor - agrees that in those jurisdictions (e.g. Japan), in which any exercise - of the right granted in Section 3(b) of this License (the right to - make Adaptations) would be deemed to be a distortion, mutilation, - modification or other derogatory action prejudicial to the Original - Author's honor and reputation, the Licensor will waive or not assert, - as appropriate, this Section, to the fullest extent permitted by the - applicable national law, to enable You to reasonably exercise Your - right under Section 3(b) of this License (right to make Adaptations) - but not otherwise. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR -OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY -KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, -INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, -FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF -LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, -WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION -OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE -LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR -ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES -ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - a. This License and the rights granted hereunder will terminate - automatically upon any breach by You of the terms of this License. - Individuals or entities who have received Adaptations or Collections - from You under this License, however, will not have their licenses - terminated provided such individuals or entities remain in full - compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will - survive any termination of this License. - b. Subject to the above terms and conditions, the license granted here is - perpetual (for the duration of the applicable copyright in the Work). - Notwithstanding the above, Licensor reserves the right to release the - Work under different license terms or to stop distributing the Work at - any time; provided, however that any such election will not serve to - withdraw this License (or any other license that has been, or is - required to be, granted under the terms of this License), and this - License will continue in full force and effect unless terminated as - stated above. - -8. Miscellaneous - - a. Each time You Distribute or Publicly Perform the Work or a Collection, - the Licensor offers to the recipient a license to the Work on the same - terms and conditions as the license granted to You under this License. - b. Each time You Distribute or Publicly Perform an Adaptation, Licensor - offers to the recipient a license to the original Work on the same - terms and conditions as the license granted to You under this License. - c. If any provision of this License is invalid or unenforceable under - applicable law, it shall not affect the validity or enforceability of - the remainder of the terms of this License, and without further action - by the parties to this agreement, such provision shall be reformed to - the minimum extent necessary to make such provision valid and - enforceable. - d. No term or provision of this License shall be deemed waived and no - breach consented to unless such waiver or consent shall be in writing - and signed by the party to be charged with such waiver or consent. - e. This License constitutes the entire agreement between the parties with - respect to the Work licensed here. There are no understandings, - agreements or representations with respect to the Work not specified - here. Licensor shall not be bound by any additional provisions that - may appear in any communication from You. This License may not be - modified without the mutual written agreement of the Licensor and You. - f. The rights granted under, and the subject matter referenced, in this - License were drafted utilizing the terminology of the Berne Convention - for the Protection of Literary and Artistic Works (as amended on - September 28, 1979), the Rome Convention of 1961, the WIPO Copyright - Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 - and the Universal Copyright Convention (as revised on July 24, 1971). - These rights and subject matter take effect in the relevant - jurisdiction in which the License terms are sought to be enforced - according to the corresponding provisions of the implementation of - those treaty provisions in the applicable national law. If the - standard suite of rights granted under applicable copyright law - includes additional rights not granted under this License, such - additional rights are deemed to be included in the License; this - License is not intended to restrict the license of any rights under - applicable law. - - -Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty - whatsoever in connection with the Work. Creative Commons will not be - liable to You or any party on any legal theory for any damages - whatsoever, including without limitation any general, special, - incidental or consequential damages arising in connection to this - license. Notwithstanding the foregoing two (2) sentences, if Creative - Commons has expressly identified itself as the Licensor hereunder, it - shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the - Work is licensed under the CCPL, Creative Commons does not authorize - the use by either party of the trademark "Creative Commons" or any - related trademark or logo of Creative Commons without the prior - written consent of Creative Commons. Any permitted use will be in - compliance with Creative Commons' then-current trademark usage - guidelines, as may be published on its website or otherwise made - available upon request from time to time. For the avoidance of doubt, - this trademark restriction does not form part of this License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-3.0-u.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-3.0-u.yml deleted file mode 100644 index 16e4f3e993a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-3.0-u.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-4.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-4.0.txt deleted file mode 100644 index dc8853a70cf..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-4.0.txt +++ /dev/null @@ -1,393 +0,0 @@ -Attribution 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution 4.0 International Public License ("Public License"). To the -extent this Public License may be interpreted as a contract, You are -granted the Licensed Rights in consideration of Your acceptance of -these terms and conditions, and the Licensor grants You such rights in -consideration of benefits the Licensor receives from making the -Licensed Material available under these terms and conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - d. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - e. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - f. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - g. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - h. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - i. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - j. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - k. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - 4. If You Share Adapted Material You produce, the Adapter's - License You apply must not prevent recipients of the Adapted - Material from complying with this Public License. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material; and - - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - - -======================================================================= - -Creative Commons is not a party to its public licenses. -Notwithstanding, Creative Commons may elect to apply one of its public -licenses to material it publishes and in those instances will be -considered the "Licensor." Except for the limited purpose of indicating -that material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the public -licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-4.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-4.0.yml deleted file mode 100644 index fd3e742ff6a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-4.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-3.0-u.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-3.0-u.txt deleted file mode 100644 index 197ec4de65a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-3.0-u.txt +++ /dev/null @@ -1,334 +0,0 @@ -Creative Commons Legal Code - -Attribution-NonCommercial 3.0 Unported - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR - DAMAGES RESULTING FROM ITS USE. - -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE -COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY -COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS -AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE -TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY -BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS -CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND -CONDITIONS. - -1. Definitions - - a. "Adaptation" means a work based upon the Work, or upon the Work and - other pre-existing works, such as a translation, adaptation, - derivative work, arrangement of music or other alterations of a - literary or artistic work, or phonogram or performance and includes - cinematographic adaptations or any other form in which the Work may be - recast, transformed, or adapted including in any form recognizably - derived from the original, except that a work that constitutes a - Collection will not be considered an Adaptation for the purpose of - this License. For the avoidance of doubt, where the Work is a musical - work, performance or phonogram, the synchronization of the Work in - timed-relation with a moving image ("synching") will be considered an - Adaptation for the purpose of this License. - b. "Collection" means a collection of literary or artistic works, such as - encyclopedias and anthologies, or performances, phonograms or - broadcasts, or other works or subject matter other than works listed - in Section 1(f) below, which, by reason of the selection and - arrangement of their contents, constitute intellectual creations, in - which the Work is included in its entirety in unmodified form along - with one or more other contributions, each constituting separate and - independent works in themselves, which together are assembled into a - collective whole. A work that constitutes a Collection will not be - considered an Adaptation (as defined above) for the purposes of this - License. - c. "Distribute" means to make available to the public the original and - copies of the Work or Adaptation, as appropriate, through sale or - other transfer of ownership. - d. "Licensor" means the individual, individuals, entity or entities that - offer(s) the Work under the terms of this License. - e. "Original Author" means, in the case of a literary or artistic work, - the individual, individuals, entity or entities who created the Work - or if no individual or entity can be identified, the publisher; and in - addition (i) in the case of a performance the actors, singers, - musicians, dancers, and other persons who act, sing, deliver, declaim, - play in, interpret or otherwise perform literary or artistic works or - expressions of folklore; (ii) in the case of a phonogram the producer - being the person or legal entity who first fixes the sounds of a - performance or other sounds; and, (iii) in the case of broadcasts, the - organization that transmits the broadcast. - f. "Work" means the literary and/or artistic work offered under the terms - of this License including without limitation any production in the - literary, scientific and artistic domain, whatever may be the mode or - form of its expression including digital form, such as a book, - pamphlet and other writing; a lecture, address, sermon or other work - of the same nature; a dramatic or dramatico-musical work; a - choreographic work or entertainment in dumb show; a musical - composition with or without words; a cinematographic work to which are - assimilated works expressed by a process analogous to cinematography; - a work of drawing, painting, architecture, sculpture, engraving or - lithography; a photographic work to which are assimilated works - expressed by a process analogous to photography; a work of applied - art; an illustration, map, plan, sketch or three-dimensional work - relative to geography, topography, architecture or science; a - performance; a broadcast; a phonogram; a compilation of data to the - extent it is protected as a copyrightable work; or a work performed by - a variety or circus performer to the extent it is not otherwise - considered a literary or artistic work. - g. "You" means an individual or entity exercising rights under this - License who has not previously violated the terms of this License with - respect to the Work, or who has received express permission from the - Licensor to exercise rights under this License despite a previous - violation. - h. "Publicly Perform" means to perform public recitations of the Work and - to communicate to the public those public recitations, by any means or - process, including by wire or wireless means or public digital - performances; to make available to the public Works in such a way that - members of the public may access these Works from a place and at a - place individually chosen by them; to perform the Work to the public - by any means or process and the communication to the public of the - performances of the Work, including by public digital performance; to - broadcast and rebroadcast the Work by any means including signs, - sounds or images. - i. "Reproduce" means to make copies of the Work by any means including - without limitation by sound or visual recordings and the right of - fixation and reproducing fixations of the Work, including storage of a - protected performance or phonogram in digital form or other electronic - medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, -limit, or restrict any uses free from copyright or rights arising from -limitations or exceptions that are provided for in connection with the -copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, -Licensor hereby grants You a worldwide, royalty-free, non-exclusive, -perpetual (for the duration of the applicable copyright) license to -exercise the rights in the Work as stated below: - - a. to Reproduce the Work, to incorporate the Work into one or more - Collections, and to Reproduce the Work as incorporated in the - Collections; - b. to create and Reproduce Adaptations provided that any such Adaptation, - including any translation in any medium, takes reasonable steps to - clearly label, demarcate or otherwise identify that changes were made - to the original Work. For example, a translation could be marked "The - original work was translated from English to Spanish," or a - modification could indicate "The original work has been modified."; - c. to Distribute and Publicly Perform the Work including as incorporated - in Collections; and, - d. to Distribute and Publicly Perform Adaptations. - -The above rights may be exercised in all media and formats whether now -known or hereafter devised. The above rights include the right to make -such modifications as are technically necessary to exercise the rights in -other media and formats. Subject to Section 8(f), all rights not expressly -granted by Licensor are hereby reserved, including but not limited to the -rights set forth in Section 4(d). - -4. Restrictions. The license granted in Section 3 above is expressly made -subject to and limited by the following restrictions: - - a. You may Distribute or Publicly Perform the Work only under the terms - of this License. You must include a copy of, or the Uniform Resource - Identifier (URI) for, this License with every copy of the Work You - Distribute or Publicly Perform. You may not offer or impose any terms - on the Work that restrict the terms of this License or the ability of - the recipient of the Work to exercise the rights granted to that - recipient under the terms of the License. You may not sublicense the - Work. You must keep intact all notices that refer to this License and - to the disclaimer of warranties with every copy of the Work You - Distribute or Publicly Perform. When You Distribute or Publicly - Perform the Work, You may not impose any effective technological - measures on the Work that restrict the ability of a recipient of the - Work from You to exercise the rights granted to that recipient under - the terms of the License. This Section 4(a) applies to the Work as - incorporated in a Collection, but this does not require the Collection - apart from the Work itself to be made subject to the terms of this - License. If You create a Collection, upon notice from any Licensor You - must, to the extent practicable, remove from the Collection any credit - as required by Section 4(c), as requested. If You create an - Adaptation, upon notice from any Licensor You must, to the extent - practicable, remove from the Adaptation any credit as required by - Section 4(c), as requested. - b. You may not exercise any of the rights granted to You in Section 3 - above in any manner that is primarily intended for or directed toward - commercial advantage or private monetary compensation. The exchange of - the Work for other copyrighted works by means of digital file-sharing - or otherwise shall not be considered to be intended for or directed - toward commercial advantage or private monetary compensation, provided - there is no payment of any monetary compensation in connection with - the exchange of copyrighted works. - c. If You Distribute, or Publicly Perform the Work or any Adaptations or - Collections, You must, unless a request has been made pursuant to - Section 4(a), keep intact all copyright notices for the Work and - provide, reasonable to the medium or means You are utilizing: (i) the - name of the Original Author (or pseudonym, if applicable) if supplied, - and/or if the Original Author and/or Licensor designate another party - or parties (e.g., a sponsor institute, publishing entity, journal) for - attribution ("Attribution Parties") in Licensor's copyright notice, - terms of service or by other reasonable means, the name of such party - or parties; (ii) the title of the Work if supplied; (iii) to the - extent reasonably practicable, the URI, if any, that Licensor - specifies to be associated with the Work, unless such URI does not - refer to the copyright notice or licensing information for the Work; - and, (iv) consistent with Section 3(b), in the case of an Adaptation, - a credit identifying the use of the Work in the Adaptation (e.g., - "French translation of the Work by Original Author," or "Screenplay - based on original Work by Original Author"). The credit required by - this Section 4(c) may be implemented in any reasonable manner; - provided, however, that in the case of a Adaptation or Collection, at - a minimum such credit will appear, if a credit for all contributing - authors of the Adaptation or Collection appears, then as part of these - credits and in a manner at least as prominent as the credits for the - other contributing authors. For the avoidance of doubt, You may only - use the credit required by this Section for the purpose of attribution - in the manner set out above and, by exercising Your rights under this - License, You may not implicitly or explicitly assert or imply any - connection with, sponsorship or endorsement by the Original Author, - Licensor and/or Attribution Parties, as appropriate, of You or Your - use of the Work, without the separate, express prior written - permission of the Original Author, Licensor and/or Attribution - Parties. - d. For the avoidance of doubt: - - i. Non-waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme cannot be waived, the Licensor - reserves the exclusive right to collect such royalties for any - exercise by You of the rights granted under this License; - ii. Waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme can be waived, the Licensor reserves - the exclusive right to collect such royalties for any exercise by - You of the rights granted under this License if Your exercise of - such rights is for a purpose or use which is otherwise than - noncommercial as permitted under Section 4(b) and otherwise waives - the right to collect royalties through any statutory or compulsory - licensing scheme; and, - iii. Voluntary License Schemes. The Licensor reserves the right to - collect royalties, whether individually or, in the event that the - Licensor is a member of a collecting society that administers - voluntary licensing schemes, via that society, from any exercise - by You of the rights granted under this License that is for a - purpose or use which is otherwise than noncommercial as permitted - under Section 4(c). - e. Except as otherwise agreed in writing by the Licensor or as may be - otherwise permitted by applicable law, if You Reproduce, Distribute or - Publicly Perform the Work either by itself or as part of any - Adaptations or Collections, You must not distort, mutilate, modify or - take other derogatory action in relation to the Work which would be - prejudicial to the Original Author's honor or reputation. Licensor - agrees that in those jurisdictions (e.g. Japan), in which any exercise - of the right granted in Section 3(b) of this License (the right to - make Adaptations) would be deemed to be a distortion, mutilation, - modification or other derogatory action prejudicial to the Original - Author's honor and reputation, the Licensor will waive or not assert, - as appropriate, this Section, to the fullest extent permitted by the - applicable national law, to enable You to reasonably exercise Your - right under Section 3(b) of this License (right to make Adaptations) - but not otherwise. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR -OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY -KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, -INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, -FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF -LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, -WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION -OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE -LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR -ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES -ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - a. This License and the rights granted hereunder will terminate - automatically upon any breach by You of the terms of this License. - Individuals or entities who have received Adaptations or Collections - from You under this License, however, will not have their licenses - terminated provided such individuals or entities remain in full - compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will - survive any termination of this License. - b. Subject to the above terms and conditions, the license granted here is - perpetual (for the duration of the applicable copyright in the Work). - Notwithstanding the above, Licensor reserves the right to release the - Work under different license terms or to stop distributing the Work at - any time; provided, however that any such election will not serve to - withdraw this License (or any other license that has been, or is - required to be, granted under the terms of this License), and this - License will continue in full force and effect unless terminated as - stated above. - -8. Miscellaneous - - a. Each time You Distribute or Publicly Perform the Work or a Collection, - the Licensor offers to the recipient a license to the Work on the same - terms and conditions as the license granted to You under this License. - b. Each time You Distribute or Publicly Perform an Adaptation, Licensor - offers to the recipient a license to the original Work on the same - terms and conditions as the license granted to You under this License. - c. If any provision of this License is invalid or unenforceable under - applicable law, it shall not affect the validity or enforceability of - the remainder of the terms of this License, and without further action - by the parties to this agreement, such provision shall be reformed to - the minimum extent necessary to make such provision valid and - enforceable. - d. No term or provision of this License shall be deemed waived and no - breach consented to unless such waiver or consent shall be in writing - and signed by the party to be charged with such waiver or consent. - e. This License constitutes the entire agreement between the parties with - respect to the Work licensed here. There are no understandings, - agreements or representations with respect to the Work not specified - here. Licensor shall not be bound by any additional provisions that - may appear in any communication from You. This License may not be - modified without the mutual written agreement of the Licensor and You. - f. The rights granted under, and the subject matter referenced, in this - License were drafted utilizing the terminology of the Berne Convention - for the Protection of Literary and Artistic Works (as amended on - September 28, 1979), the Rome Convention of 1961, the WIPO Copyright - Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 - and the Universal Copyright Convention (as revised on July 24, 1971). - These rights and subject matter take effect in the relevant - jurisdiction in which the License terms are sought to be enforced - according to the corresponding provisions of the implementation of - those treaty provisions in the applicable national law. If the - standard suite of rights granted under applicable copyright law - includes additional rights not granted under this License, such - additional rights are deemed to be included in the License; this - License is not intended to restrict the license of any rights under - applicable law. - - -Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty - whatsoever in connection with the Work. Creative Commons will not be - liable to You or any party on any legal theory for any damages - whatsoever, including without limitation any general, special, - incidental or consequential damages arising in connection to this - license. Notwithstanding the foregoing two (2) sentences, if Creative - Commons has expressly identified itself as the Licensor hereunder, it - shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the - Work is licensed under the CCPL, Creative Commons does not authorize - the use by either party of the trademark "Creative Commons" or any - related trademark or logo of Creative Commons without the prior - written consent of Creative Commons. Any permitted use will be in - compliance with Creative Commons' then-current trademark usage - guidelines, as may be published on its website or otherwise made - available upon request from time to time. For the avoidance of doubt, - this trademark restriction does not form part of the License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-3.0-u.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-3.0-u.yml deleted file mode 100644 index 1c9f0377dbf..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-3.0-u.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-4.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-4.0.txt deleted file mode 100644 index d151c4a47b9..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-4.0.txt +++ /dev/null @@ -1,405 +0,0 @@ -Attribution-NonCommercial 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution-NonCommercial 4.0 International Public -License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-NonCommercial 4.0 International Public License ("Public -License"). To the extent this Public License may be interpreted as a -contract, You are granted the Licensed Rights in consideration of Your -acceptance of these terms and conditions, and the Licensor grants You -such rights in consideration of benefits the Licensor receives from -making the Licensed Material available under these terms and -conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - d. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - e. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - f. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - g. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - h. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - i. NonCommercial means not primarily intended for or directed towards - commercial advantage or monetary compensation. For purposes of - this Public License, the exchange of the Licensed Material for - other material subject to Copyright and Similar Rights by digital - file-sharing or similar means is NonCommercial provided there is - no payment of monetary compensation in connection with the - exchange. - - j. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - k. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - l. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part, for NonCommercial purposes only; and - - b. produce, reproduce, and Share Adapted Material for - NonCommercial purposes only. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties, including when - the Licensed Material is used other than for NonCommercial - purposes. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - 4. If You Share Adapted Material You produce, the Adapter's - License You apply must not prevent recipients of the Adapted - Material from complying with this Public License. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database for NonCommercial purposes - only; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material; and - - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - -======================================================================= - -Creative Commons is not a party to its public licenses. -Notwithstanding, Creative Commons may elect to apply one of its public -licenses to material it publishes and in those instances will be -considered the "Licensor." Except for the limited purpose of indicating -that material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the public -licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-4.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-4.0.yml deleted file mode 100644 index e1da885cf49..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-4.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-3.0-u.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-3.0-u.txt deleted file mode 100644 index 30b08e74db3..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-3.0-u.txt +++ /dev/null @@ -1,308 +0,0 @@ -Creative Commons Legal Code - -Attribution-NonCommercial-NoDerivs 3.0 Unported - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR - DAMAGES RESULTING FROM ITS USE. - -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE -COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY -COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS -AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE -TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY -BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS -CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND -CONDITIONS. - -1. Definitions - - a. "Adaptation" means a work based upon the Work, or upon the Work and - other pre-existing works, such as a translation, adaptation, - derivative work, arrangement of music or other alterations of a - literary or artistic work, or phonogram or performance and includes - cinematographic adaptations or any other form in which the Work may be - recast, transformed, or adapted including in any form recognizably - derived from the original, except that a work that constitutes a - Collection will not be considered an Adaptation for the purpose of - this License. For the avoidance of doubt, where the Work is a musical - work, performance or phonogram, the synchronization of the Work in - timed-relation with a moving image ("synching") will be considered an - Adaptation for the purpose of this License. - b. "Collection" means a collection of literary or artistic works, such as - encyclopedias and anthologies, or performances, phonograms or - broadcasts, or other works or subject matter other than works listed - in Section 1(f) below, which, by reason of the selection and - arrangement of their contents, constitute intellectual creations, in - which the Work is included in its entirety in unmodified form along - with one or more other contributions, each constituting separate and - independent works in themselves, which together are assembled into a - collective whole. A work that constitutes a Collection will not be - considered an Adaptation (as defined above) for the purposes of this - License. - c. "Distribute" means to make available to the public the original and - copies of the Work through sale or other transfer of ownership. - d. "Licensor" means the individual, individuals, entity or entities that - offer(s) the Work under the terms of this License. - e. "Original Author" means, in the case of a literary or artistic work, - the individual, individuals, entity or entities who created the Work - or if no individual or entity can be identified, the publisher; and in - addition (i) in the case of a performance the actors, singers, - musicians, dancers, and other persons who act, sing, deliver, declaim, - play in, interpret or otherwise perform literary or artistic works or - expressions of folklore; (ii) in the case of a phonogram the producer - being the person or legal entity who first fixes the sounds of a - performance or other sounds; and, (iii) in the case of broadcasts, the - organization that transmits the broadcast. - f. "Work" means the literary and/or artistic work offered under the terms - of this License including without limitation any production in the - literary, scientific and artistic domain, whatever may be the mode or - form of its expression including digital form, such as a book, - pamphlet and other writing; a lecture, address, sermon or other work - of the same nature; a dramatic or dramatico-musical work; a - choreographic work or entertainment in dumb show; a musical - composition with or without words; a cinematographic work to which are - assimilated works expressed by a process analogous to cinematography; - a work of drawing, painting, architecture, sculpture, engraving or - lithography; a photographic work to which are assimilated works - expressed by a process analogous to photography; a work of applied - art; an illustration, map, plan, sketch or three-dimensional work - relative to geography, topography, architecture or science; a - performance; a broadcast; a phonogram; a compilation of data to the - extent it is protected as a copyrightable work; or a work performed by - a variety or circus performer to the extent it is not otherwise - considered a literary or artistic work. - g. "You" means an individual or entity exercising rights under this - License who has not previously violated the terms of this License with - respect to the Work, or who has received express permission from the - Licensor to exercise rights under this License despite a previous - violation. - h. "Publicly Perform" means to perform public recitations of the Work and - to communicate to the public those public recitations, by any means or - process, including by wire or wireless means or public digital - performances; to make available to the public Works in such a way that - members of the public may access these Works from a place and at a - place individually chosen by them; to perform the Work to the public - by any means or process and the communication to the public of the - performances of the Work, including by public digital performance; to - broadcast and rebroadcast the Work by any means including signs, - sounds or images. - i. "Reproduce" means to make copies of the Work by any means including - without limitation by sound or visual recordings and the right of - fixation and reproducing fixations of the Work, including storage of a - protected performance or phonogram in digital form or other electronic - medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, -limit, or restrict any uses free from copyright or rights arising from -limitations or exceptions that are provided for in connection with the -copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, -Licensor hereby grants You a worldwide, royalty-free, non-exclusive, -perpetual (for the duration of the applicable copyright) license to -exercise the rights in the Work as stated below: - - a. to Reproduce the Work, to incorporate the Work into one or more - Collections, and to Reproduce the Work as incorporated in the - Collections; and, - b. to Distribute and Publicly Perform the Work including as incorporated - in Collections. - -The above rights may be exercised in all media and formats whether now -known or hereafter devised. The above rights include the right to make -such modifications as are technically necessary to exercise the rights in -other media and formats, but otherwise you have no rights to make -Adaptations. Subject to 8(f), all rights not expressly granted by Licensor -are hereby reserved, including but not limited to the rights set forth in -Section 4(d). - -4. Restrictions. The license granted in Section 3 above is expressly made -subject to and limited by the following restrictions: - - a. You may Distribute or Publicly Perform the Work only under the terms - of this License. You must include a copy of, or the Uniform Resource - Identifier (URI) for, this License with every copy of the Work You - Distribute or Publicly Perform. You may not offer or impose any terms - on the Work that restrict the terms of this License or the ability of - the recipient of the Work to exercise the rights granted to that - recipient under the terms of the License. You may not sublicense the - Work. You must keep intact all notices that refer to this License and - to the disclaimer of warranties with every copy of the Work You - Distribute or Publicly Perform. When You Distribute or Publicly - Perform the Work, You may not impose any effective technological - measures on the Work that restrict the ability of a recipient of the - Work from You to exercise the rights granted to that recipient under - the terms of the License. This Section 4(a) applies to the Work as - incorporated in a Collection, but this does not require the Collection - apart from the Work itself to be made subject to the terms of this - License. If You create a Collection, upon notice from any Licensor You - must, to the extent practicable, remove from the Collection any credit - as required by Section 4(c), as requested. - b. You may not exercise any of the rights granted to You in Section 3 - above in any manner that is primarily intended for or directed toward - commercial advantage or private monetary compensation. The exchange of - the Work for other copyrighted works by means of digital file-sharing - or otherwise shall not be considered to be intended for or directed - toward commercial advantage or private monetary compensation, provided - there is no payment of any monetary compensation in connection with - the exchange of copyrighted works. - c. If You Distribute, or Publicly Perform the Work or Collections, You - must, unless a request has been made pursuant to Section 4(a), keep - intact all copyright notices for the Work and provide, reasonable to - the medium or means You are utilizing: (i) the name of the Original - Author (or pseudonym, if applicable) if supplied, and/or if the - Original Author and/or Licensor designate another party or parties - (e.g., a sponsor institute, publishing entity, journal) for - attribution ("Attribution Parties") in Licensor's copyright notice, - terms of service or by other reasonable means, the name of such party - or parties; (ii) the title of the Work if supplied; (iii) to the - extent reasonably practicable, the URI, if any, that Licensor - specifies to be associated with the Work, unless such URI does not - refer to the copyright notice or licensing information for the Work. - The credit required by this Section 4(c) may be implemented in any - reasonable manner; provided, however, that in the case of a - Collection, at a minimum such credit will appear, if a credit for all - contributing authors of Collection appears, then as part of these - credits and in a manner at least as prominent as the credits for the - other contributing authors. For the avoidance of doubt, You may only - use the credit required by this Section for the purpose of attribution - in the manner set out above and, by exercising Your rights under this - License, You may not implicitly or explicitly assert or imply any - connection with, sponsorship or endorsement by the Original Author, - Licensor and/or Attribution Parties, as appropriate, of You or Your - use of the Work, without the separate, express prior written - permission of the Original Author, Licensor and/or Attribution - Parties. - d. For the avoidance of doubt: - - i. Non-waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme cannot be waived, the Licensor - reserves the exclusive right to collect such royalties for any - exercise by You of the rights granted under this License; - ii. Waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme can be waived, the Licensor reserves - the exclusive right to collect such royalties for any exercise by - You of the rights granted under this License if Your exercise of - such rights is for a purpose or use which is otherwise than - noncommercial as permitted under Section 4(b) and otherwise waives - the right to collect royalties through any statutory or compulsory - licensing scheme; and, - iii. Voluntary License Schemes. The Licensor reserves the right to - collect royalties, whether individually or, in the event that the - Licensor is a member of a collecting society that administers - voluntary licensing schemes, via that society, from any exercise - by You of the rights granted under this License that is for a - purpose or use which is otherwise than noncommercial as permitted - under Section 4(b). - e. Except as otherwise agreed in writing by the Licensor or as may be - otherwise permitted by applicable law, if You Reproduce, Distribute or - Publicly Perform the Work either by itself or as part of any - Collections, You must not distort, mutilate, modify or take other - derogatory action in relation to the Work which would be prejudicial - to the Original Author's honor or reputation. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED BY THE PARTIES IN WRITING, LICENSOR -OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY -KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, -INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, -FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF -LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, -WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION -OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE -LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR -ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES -ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - a. This License and the rights granted hereunder will terminate - automatically upon any breach by You of the terms of this License. - Individuals or entities who have received Collections from You under - this License, however, will not have their licenses terminated - provided such individuals or entities remain in full compliance with - those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any - termination of this License. - b. Subject to the above terms and conditions, the license granted here is - perpetual (for the duration of the applicable copyright in the Work). - Notwithstanding the above, Licensor reserves the right to release the - Work under different license terms or to stop distributing the Work at - any time; provided, however that any such election will not serve to - withdraw this License (or any other license that has been, or is - required to be, granted under the terms of this License), and this - License will continue in full force and effect unless terminated as - stated above. - -8. Miscellaneous - - a. Each time You Distribute or Publicly Perform the Work or a Collection, - the Licensor offers to the recipient a license to the Work on the same - terms and conditions as the license granted to You under this License. - b. If any provision of this License is invalid or unenforceable under - applicable law, it shall not affect the validity or enforceability of - the remainder of the terms of this License, and without further action - by the parties to this agreement, such provision shall be reformed to - the minimum extent necessary to make such provision valid and - enforceable. - c. No term or provision of this License shall be deemed waived and no - breach consented to unless such waiver or consent shall be in writing - and signed by the party to be charged with such waiver or consent. - d. This License constitutes the entire agreement between the parties with - respect to the Work licensed here. There are no understandings, - agreements or representations with respect to the Work not specified - here. Licensor shall not be bound by any additional provisions that - may appear in any communication from You. This License may not be - modified without the mutual written agreement of the Licensor and You. - e. The rights granted under, and the subject matter referenced, in this - License were drafted utilizing the terminology of the Berne Convention - for the Protection of Literary and Artistic Works (as amended on - September 28, 1979), the Rome Convention of 1961, the WIPO Copyright - Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 - and the Universal Copyright Convention (as revised on July 24, 1971). - These rights and subject matter take effect in the relevant - jurisdiction in which the License terms are sought to be enforced - according to the corresponding provisions of the implementation of - those treaty provisions in the applicable national law. If the - standard suite of rights granted under applicable copyright law - includes additional rights not granted under this License, such - additional rights are deemed to be included in the License; this - License is not intended to restrict the license of any rights under - applicable law. - - -Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty - whatsoever in connection with the Work. Creative Commons will not be - liable to You or any party on any legal theory for any damages - whatsoever, including without limitation any general, special, - incidental or consequential damages arising in connection to this - license. Notwithstanding the foregoing two (2) sentences, if Creative - Commons has expressly identified itself as the Licensor hereunder, it - shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the - Work is licensed under the CCPL, Creative Commons does not authorize - the use by either party of the trademark "Creative Commons" or any - related trademark or logo of Creative Commons without the prior - written consent of Creative Commons. Any permitted use will be in - compliance with Creative Commons' then-current trademark usage - guidelines, as may be published on its website or otherwise made - available upon request from time to time. For the avoidance of doubt, - this trademark restriction does not form part of this License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-3.0-u.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-3.0-u.yml deleted file mode 100644 index 8b4bd672072..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-3.0-u.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-nd-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-4.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-4.0.txt deleted file mode 100644 index 0552ab24a3d..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-4.0.txt +++ /dev/null @@ -1,400 +0,0 @@ -Attribution-NonCommercial-NoDerivatives 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 -International Public License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-NonCommercial-NoDerivatives 4.0 International Public -License ("Public License"). To the extent this Public License may be -interpreted as a contract, You are granted the Licensed Rights in -consideration of Your acceptance of these terms and conditions, and the -Licensor grants You such rights in consideration of benefits the -Licensor receives from making the Licensed Material available under -these terms and conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - c. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - d. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - e. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - f. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - g. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - h. NonCommercial means not primarily intended for or directed towards - commercial advantage or monetary compensation. For purposes of - this Public License, the exchange of the Licensed Material for - other material subject to Copyright and Similar Rights by digital - file-sharing or similar means is NonCommercial provided there is - no payment of monetary compensation in connection with the - exchange. - - i. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - j. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - k. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part, for NonCommercial purposes only; and - - b. produce and reproduce, but not Share, Adapted Material - for NonCommercial purposes only. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties, including when - the Licensed Material is used other than for NonCommercial - purposes. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material, You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - For the avoidance of doubt, You do not have permission under - this Public License to Share Adapted Material. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database for NonCommercial purposes - only and provided You do not Share Adapted Material; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material; and - - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - -======================================================================= - -Creative Commons is not a party to its public licenses. -Notwithstanding, Creative Commons may elect to apply one of its public -licenses to material it publishes and in those instances will be -considered the "Licensor." Except for the limited purpose of indicating -that material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the public -licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-4.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-4.0.yml deleted file mode 100644 index 9ba349510bd..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-nd-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-nd-4.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-3.0-u.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-3.0-u.txt deleted file mode 100644 index a71ea7947d7..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-3.0-u.txt +++ /dev/null @@ -1,361 +0,0 @@ -Creative Commons Legal Code - -Attribution-NonCommercial-ShareAlike 3.0 Unported - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR - DAMAGES RESULTING FROM ITS USE. - -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE -COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY -COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS -AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE -TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY -BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS -CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND -CONDITIONS. - -1. Definitions - - a. "Adaptation" means a work based upon the Work, or upon the Work and - other pre-existing works, such as a translation, adaptation, - derivative work, arrangement of music or other alterations of a - literary or artistic work, or phonogram or performance and includes - cinematographic adaptations or any other form in which the Work may be - recast, transformed, or adapted including in any form recognizably - derived from the original, except that a work that constitutes a - Collection will not be considered an Adaptation for the purpose of - this License. For the avoidance of doubt, where the Work is a musical - work, performance or phonogram, the synchronization of the Work in - timed-relation with a moving image ("synching") will be considered an - Adaptation for the purpose of this License. - b. "Collection" means a collection of literary or artistic works, such as - encyclopedias and anthologies, or performances, phonograms or - broadcasts, or other works or subject matter other than works listed - in Section 1(g) below, which, by reason of the selection and - arrangement of their contents, constitute intellectual creations, in - which the Work is included in its entirety in unmodified form along - with one or more other contributions, each constituting separate and - independent works in themselves, which together are assembled into a - collective whole. A work that constitutes a Collection will not be - considered an Adaptation (as defined above) for the purposes of this - License. - c. "Distribute" means to make available to the public the original and - copies of the Work or Adaptation, as appropriate, through sale or - other transfer of ownership. - d. "License Elements" means the following high-level license attributes - as selected by Licensor and indicated in the title of this License: - Attribution, Noncommercial, ShareAlike. - e. "Licensor" means the individual, individuals, entity or entities that - offer(s) the Work under the terms of this License. - f. "Original Author" means, in the case of a literary or artistic work, - the individual, individuals, entity or entities who created the Work - or if no individual or entity can be identified, the publisher; and in - addition (i) in the case of a performance the actors, singers, - musicians, dancers, and other persons who act, sing, deliver, declaim, - play in, interpret or otherwise perform literary or artistic works or - expressions of folklore; (ii) in the case of a phonogram the producer - being the person or legal entity who first fixes the sounds of a - performance or other sounds; and, (iii) in the case of broadcasts, the - organization that transmits the broadcast. - g. "Work" means the literary and/or artistic work offered under the terms - of this License including without limitation any production in the - literary, scientific and artistic domain, whatever may be the mode or - form of its expression including digital form, such as a book, - pamphlet and other writing; a lecture, address, sermon or other work - of the same nature; a dramatic or dramatico-musical work; a - choreographic work or entertainment in dumb show; a musical - composition with or without words; a cinematographic work to which are - assimilated works expressed by a process analogous to cinematography; - a work of drawing, painting, architecture, sculpture, engraving or - lithography; a photographic work to which are assimilated works - expressed by a process analogous to photography; a work of applied - art; an illustration, map, plan, sketch or three-dimensional work - relative to geography, topography, architecture or science; a - performance; a broadcast; a phonogram; a compilation of data to the - extent it is protected as a copyrightable work; or a work performed by - a variety or circus performer to the extent it is not otherwise - considered a literary or artistic work. - h. "You" means an individual or entity exercising rights under this - License who has not previously violated the terms of this License with - respect to the Work, or who has received express permission from the - Licensor to exercise rights under this License despite a previous - violation. - i. "Publicly Perform" means to perform public recitations of the Work and - to communicate to the public those public recitations, by any means or - process, including by wire or wireless means or public digital - performances; to make available to the public Works in such a way that - members of the public may access these Works from a place and at a - place individually chosen by them; to perform the Work to the public - by any means or process and the communication to the public of the - performances of the Work, including by public digital performance; to - broadcast and rebroadcast the Work by any means including signs, - sounds or images. - j. "Reproduce" means to make copies of the Work by any means including - without limitation by sound or visual recordings and the right of - fixation and reproducing fixations of the Work, including storage of a - protected performance or phonogram in digital form or other electronic - medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, -limit, or restrict any uses free from copyright or rights arising from -limitations or exceptions that are provided for in connection with the -copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, -Licensor hereby grants You a worldwide, royalty-free, non-exclusive, -perpetual (for the duration of the applicable copyright) license to -exercise the rights in the Work as stated below: - - a. to Reproduce the Work, to incorporate the Work into one or more - Collections, and to Reproduce the Work as incorporated in the - Collections; - b. to create and Reproduce Adaptations provided that any such Adaptation, - including any translation in any medium, takes reasonable steps to - clearly label, demarcate or otherwise identify that changes were made - to the original Work. For example, a translation could be marked "The - original work was translated from English to Spanish," or a - modification could indicate "The original work has been modified."; - c. to Distribute and Publicly Perform the Work including as incorporated - in Collections; and, - d. to Distribute and Publicly Perform Adaptations. - -The above rights may be exercised in all media and formats whether now -known or hereafter devised. The above rights include the right to make -such modifications as are technically necessary to exercise the rights in -other media and formats. Subject to Section 8(f), all rights not expressly -granted by Licensor are hereby reserved, including but not limited to the -rights described in Section 4(e). - -4. Restrictions. The license granted in Section 3 above is expressly made -subject to and limited by the following restrictions: - - a. You may Distribute or Publicly Perform the Work only under the terms - of this License. You must include a copy of, or the Uniform Resource - Identifier (URI) for, this License with every copy of the Work You - Distribute or Publicly Perform. You may not offer or impose any terms - on the Work that restrict the terms of this License or the ability of - the recipient of the Work to exercise the rights granted to that - recipient under the terms of the License. You may not sublicense the - Work. You must keep intact all notices that refer to this License and - to the disclaimer of warranties with every copy of the Work You - Distribute or Publicly Perform. When You Distribute or Publicly - Perform the Work, You may not impose any effective technological - measures on the Work that restrict the ability of a recipient of the - Work from You to exercise the rights granted to that recipient under - the terms of the License. This Section 4(a) applies to the Work as - incorporated in a Collection, but this does not require the Collection - apart from the Work itself to be made subject to the terms of this - License. If You create a Collection, upon notice from any Licensor You - must, to the extent practicable, remove from the Collection any credit - as required by Section 4(d), as requested. If You create an - Adaptation, upon notice from any Licensor You must, to the extent - practicable, remove from the Adaptation any credit as required by - Section 4(d), as requested. - b. You may Distribute or Publicly Perform an Adaptation only under: (i) - the terms of this License; (ii) a later version of this License with - the same License Elements as this License; (iii) a Creative Commons - jurisdiction license (either this or a later license version) that - contains the same License Elements as this License (e.g., - Attribution-NonCommercial-ShareAlike 3.0 US) ("Applicable License"). - You must include a copy of, or the URI, for Applicable License with - every copy of each Adaptation You Distribute or Publicly Perform. You - may not offer or impose any terms on the Adaptation that restrict the - terms of the Applicable License or the ability of the recipient of the - Adaptation to exercise the rights granted to that recipient under the - terms of the Applicable License. You must keep intact all notices that - refer to the Applicable License and to the disclaimer of warranties - with every copy of the Work as included in the Adaptation You - Distribute or Publicly Perform. When You Distribute or Publicly - Perform the Adaptation, You may not impose any effective technological - measures on the Adaptation that restrict the ability of a recipient of - the Adaptation from You to exercise the rights granted to that - recipient under the terms of the Applicable License. This Section 4(b) - applies to the Adaptation as incorporated in a Collection, but this - does not require the Collection apart from the Adaptation itself to be - made subject to the terms of the Applicable License. - c. You may not exercise any of the rights granted to You in Section 3 - above in any manner that is primarily intended for or directed toward - commercial advantage or private monetary compensation. The exchange of - the Work for other copyrighted works by means of digital file-sharing - or otherwise shall not be considered to be intended for or directed - toward commercial advantage or private monetary compensation, provided - there is no payment of any monetary compensation in con-nection with - the exchange of copyrighted works. - d. If You Distribute, or Publicly Perform the Work or any Adaptations or - Collections, You must, unless a request has been made pursuant to - Section 4(a), keep intact all copyright notices for the Work and - provide, reasonable to the medium or means You are utilizing: (i) the - name of the Original Author (or pseudonym, if applicable) if supplied, - and/or if the Original Author and/or Licensor designate another party - or parties (e.g., a sponsor institute, publishing entity, journal) for - attribution ("Attribution Parties") in Licensor's copyright notice, - terms of service or by other reasonable means, the name of such party - or parties; (ii) the title of the Work if supplied; (iii) to the - extent reasonably practicable, the URI, if any, that Licensor - specifies to be associated with the Work, unless such URI does not - refer to the copyright notice or licensing information for the Work; - and, (iv) consistent with Section 3(b), in the case of an Adaptation, - a credit identifying the use of the Work in the Adaptation (e.g., - "French translation of the Work by Original Author," or "Screenplay - based on original Work by Original Author"). The credit required by - this Section 4(d) may be implemented in any reasonable manner; - provided, however, that in the case of a Adaptation or Collection, at - a minimum such credit will appear, if a credit for all contributing - authors of the Adaptation or Collection appears, then as part of these - credits and in a manner at least as prominent as the credits for the - other contributing authors. For the avoidance of doubt, You may only - use the credit required by this Section for the purpose of attribution - in the manner set out above and, by exercising Your rights under this - License, You may not implicitly or explicitly assert or imply any - connection with, sponsorship or endorsement by the Original Author, - Licensor and/or Attribution Parties, as appropriate, of You or Your - use of the Work, without the separate, express prior written - permission of the Original Author, Licensor and/or Attribution - Parties. - e. For the avoidance of doubt: - - i. Non-waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme cannot be waived, the Licensor - reserves the exclusive right to collect such royalties for any - exercise by You of the rights granted under this License; - ii. Waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme can be waived, the Licensor reserves - the exclusive right to collect such royalties for any exercise by - You of the rights granted under this License if Your exercise of - such rights is for a purpose or use which is otherwise than - noncommercial as permitted under Section 4(c) and otherwise waives - the right to collect royalties through any statutory or compulsory - licensing scheme; and, - iii. Voluntary License Schemes. The Licensor reserves the right to - collect royalties, whether individually or, in the event that the - Licensor is a member of a collecting society that administers - voluntary licensing schemes, via that society, from any exercise - by You of the rights granted under this License that is for a - purpose or use which is otherwise than noncommercial as permitted - under Section 4(c). - f. Except as otherwise agreed in writing by the Licensor or as may be - otherwise permitted by applicable law, if You Reproduce, Distribute or - Publicly Perform the Work either by itself or as part of any - Adaptations or Collections, You must not distort, mutilate, modify or - take other derogatory action in relation to the Work which would be - prejudicial to the Original Author's honor or reputation. Licensor - agrees that in those jurisdictions (e.g. Japan), in which any exercise - of the right granted in Section 3(b) of this License (the right to - make Adaptations) would be deemed to be a distortion, mutilation, - modification or other derogatory action prejudicial to the Original - Author's honor and reputation, the Licensor will waive or not assert, - as appropriate, this Section, to the fullest extent permitted by the - applicable national law, to enable You to reasonably exercise Your - right under Section 3(b) of this License (right to make Adaptations) - but not otherwise. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING AND TO THE -FULLEST EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK AS-IS -AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE -WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT -LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, -ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT -DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED -WARRANTIES, SO THIS EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE -LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR -ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES -ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - a. This License and the rights granted hereunder will terminate - automatically upon any breach by You of the terms of this License. - Individuals or entities who have received Adaptations or Collections - from You under this License, however, will not have their licenses - terminated provided such individuals or entities remain in full - compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will - survive any termination of this License. - b. Subject to the above terms and conditions, the license granted here is - perpetual (for the duration of the applicable copyright in the Work). - Notwithstanding the above, Licensor reserves the right to release the - Work under different license terms or to stop distributing the Work at - any time; provided, however that any such election will not serve to - withdraw this License (or any other license that has been, or is - required to be, granted under the terms of this License), and this - License will continue in full force and effect unless terminated as - stated above. - -8. Miscellaneous - - a. Each time You Distribute or Publicly Perform the Work or a Collection, - the Licensor offers to the recipient a license to the Work on the same - terms and conditions as the license granted to You under this License. - b. Each time You Distribute or Publicly Perform an Adaptation, Licensor - offers to the recipient a license to the original Work on the same - terms and conditions as the license granted to You under this License. - c. If any provision of this License is invalid or unenforceable under - applicable law, it shall not affect the validity or enforceability of - the remainder of the terms of this License, and without further action - by the parties to this agreement, such provision shall be reformed to - the minimum extent necessary to make such provision valid and - enforceable. - d. No term or provision of this License shall be deemed waived and no - breach consented to unless such waiver or consent shall be in writing - and signed by the party to be charged with such waiver or consent. - e. This License constitutes the entire agreement between the parties with - respect to the Work licensed here. There are no understandings, - agreements or representations with respect to the Work not specified - here. Licensor shall not be bound by any additional provisions that - may appear in any communication from You. This License may not be - modified without the mutual written agreement of the Licensor and You. - f. The rights granted under, and the subject matter referenced, in this - License were drafted utilizing the terminology of the Berne Convention - for the Protection of Literary and Artistic Works (as amended on - September 28, 1979), the Rome Convention of 1961, the WIPO Copyright - Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 - and the Universal Copyright Convention (as revised on July 24, 1971). - These rights and subject matter take effect in the relevant - jurisdiction in which the License terms are sought to be enforced - according to the corresponding provisions of the implementation of - those treaty provisions in the applicable national law. If the - standard suite of rights granted under applicable copyright law - includes additional rights not granted under this License, such - additional rights are deemed to be included in the License; this - License is not intended to restrict the license of any rights under - applicable law. - - -Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty - whatsoever in connection with the Work. Creative Commons will not be - liable to You or any party on any legal theory for any damages - whatsoever, including without limitation any general, special, - incidental or consequential damages arising in connection to this - license. Notwithstanding the foregoing two (2) sentences, if Creative - Commons has expressly identified itself as the Licensor hereunder, it - shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the - Work is licensed under the CCPL, Creative Commons does not authorize - the use by either party of the trademark "Creative Commons" or any - related trademark or logo of Creative Commons without the prior - written consent of Creative Commons. Any permitted use will be in - compliance with Creative Commons' then-current trademark usage - guidelines, as may be published on its website or otherwise made - available upon request from time to time. For the avoidance of doubt, - this trademark restriction does not form part of this License. - - Creative Commons may be contacted at https://creativecommons.org/. - diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-3.0-u.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-3.0-u.yml deleted file mode 100644 index 63362391fc3..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-3.0-u.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-sa-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-4.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-4.0.txt deleted file mode 100644 index d9e352b2f77..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-4.0.txt +++ /dev/null @@ -1,435 +0,0 @@ -Attribution-NonCommercial-ShareAlike 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International -Public License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-NonCommercial-ShareAlike 4.0 International Public License -("Public License"). To the extent this Public License may be -interpreted as a contract, You are granted the Licensed Rights in -consideration of Your acceptance of these terms and conditions, and the -Licensor grants You such rights in consideration of benefits the -Licensor receives from making the Licensed Material available under -these terms and conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. BY-NC-SA Compatible License means a license listed at - creativecommons.org/compatiblelicenses, approved by Creative - Commons as essentially the equivalent of this Public License. - - d. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - e. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - f. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - g. License Elements means the license attributes listed in the name - of a Creative Commons Public License. The License Elements of this - Public License are Attribution, NonCommercial, and ShareAlike. - - h. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - i. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - j. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - k. NonCommercial means not primarily intended for or directed towards - commercial advantage or monetary compensation. For purposes of - this Public License, the exchange of the Licensed Material for - other material subject to Copyright and Similar Rights by digital - file-sharing or similar means is NonCommercial provided there is - no payment of monetary compensation in connection with the - exchange. - - l. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - m. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - n. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part, for NonCommercial purposes only; and - - b. produce, reproduce, and Share Adapted Material for - NonCommercial purposes only. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. Additional offer from the Licensor -- Adapted Material. - Every recipient of Adapted Material from You - automatically receives an offer from the Licensor to - exercise the Licensed Rights in the Adapted Material - under the conditions of the Adapter's License You apply. - - c. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties, including when - the Licensed Material is used other than for NonCommercial - purposes. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - b. ShareAlike. - - In addition to the conditions in Section 3(a), if You Share - Adapted Material You produce, the following conditions also apply. - - 1. The Adapter's License You apply must be a Creative Commons - license with the same License Elements, this version or - later, or a BY-NC-SA Compatible License. - - 2. You must include the text of, or the URI or hyperlink to, the - Adapter's License You apply. You may satisfy this condition - in any reasonable manner based on the medium, means, and - context in which You Share Adapted Material. - - 3. You may not offer or impose any additional or different terms - or conditions on, or apply any Effective Technological - Measures to, Adapted Material that restrict exercise of the - rights granted under the Adapter's License You apply. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database for NonCommercial purposes - only; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material, - including for purposes of Section 3(b); and - - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - -======================================================================= - -Creative Commons is not a party to its public licenses. -Notwithstanding, Creative Commons may elect to apply one of its public -licenses to material it publishes and in those instances will be -considered the "Licensor." Except for the limited purpose of indicating -that material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the public -licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-4.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-4.0.yml deleted file mode 100644 index 69fe13421de..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nc-sa-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nc-sa-4.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-3.0-u.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-3.0-u.txt deleted file mode 100644 index 2ec97189460..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-3.0-u.txt +++ /dev/null @@ -1,293 +0,0 @@ -Creative Commons Legal Code - -Attribution-NoDerivs 3.0 Unported - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR - DAMAGES RESULTING FROM ITS USE. - -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE -COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY -COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS -AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE -TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY -BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS -CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND -CONDITIONS. - -1. Definitions - - a. "Adaptation" means a work based upon the Work, or upon the Work and - other pre-existing works, such as a translation, adaptation, - derivative work, arrangement of music or other alterations of a - literary or artistic work, or phonogram or performance and includes - cinematographic adaptations or any other form in which the Work may be - recast, transformed, or adapted including in any form recognizably - derived from the original, except that a work that constitutes a - Collection will not be considered an Adaptation for the purpose of - this License. For the avoidance of doubt, where the Work is a musical - work, performance or phonogram, the synchronization of the Work in - timed-relation with a moving image ("synching") will be considered an - Adaptation for the purpose of this License. - b. "Collection" means a collection of literary or artistic works, such as - encyclopedias and anthologies, or performances, phonograms or - broadcasts, or other works or subject matter other than works listed - in Section 1(f) below, which, by reason of the selection and - arrangement of their contents, constitute intellectual creations, in - which the Work is included in its entirety in unmodified form along - with one or more other contributions, each constituting separate and - independent works in themselves, which together are assembled into a - collective whole. A work that constitutes a Collection will not be - considered an Adaptation (as defined above) for the purposes of this - License. - c. "Distribute" means to make available to the public the original and - copies of the Work through sale or other transfer of ownership. - d. "Licensor" means the individual, individuals, entity or entities that - offer(s) the Work under the terms of this License. - e. "Original Author" means, in the case of a literary or artistic work, - the individual, individuals, entity or entities who created the Work - or if no individual or entity can be identified, the publisher; and in - addition (i) in the case of a performance the actors, singers, - musicians, dancers, and other persons who act, sing, deliver, declaim, - play in, interpret or otherwise perform literary or artistic works or - expressions of folklore; (ii) in the case of a phonogram the producer - being the person or legal entity who first fixes the sounds of a - performance or other sounds; and, (iii) in the case of broadcasts, the - organization that transmits the broadcast. - f. "Work" means the literary and/or artistic work offered under the terms - of this License including without limitation any production in the - literary, scientific and artistic domain, whatever may be the mode or - form of its expression including digital form, such as a book, - pamphlet and other writing; a lecture, address, sermon or other work - of the same nature; a dramatic or dramatico-musical work; a - choreographic work or entertainment in dumb show; a musical - composition with or without words; a cinematographic work to which are - assimilated works expressed by a process analogous to cinematography; - a work of drawing, painting, architecture, sculpture, engraving or - lithography; a photographic work to which are assimilated works - expressed by a process analogous to photography; a work of applied - art; an illustration, map, plan, sketch or three-dimensional work - relative to geography, topography, architecture or science; a - performance; a broadcast; a phonogram; a compilation of data to the - extent it is protected as a copyrightable work; or a work performed by - a variety or circus performer to the extent it is not otherwise - considered a literary or artistic work. - g. "You" means an individual or entity exercising rights under this - License who has not previously violated the terms of this License with - respect to the Work, or who has received express permission from the - Licensor to exercise rights under this License despite a previous - violation. - h. "Publicly Perform" means to perform public recitations of the Work and - to communicate to the public those public recitations, by any means or - process, including by wire or wireless means or public digital - performances; to make available to the public Works in such a way that - members of the public may access these Works from a place and at a - place individually chosen by them; to perform the Work to the public - by any means or process and the communication to the public of the - performances of the Work, including by public digital performance; to - broadcast and rebroadcast the Work by any means including signs, - sounds or images. - i. "Reproduce" means to make copies of the Work by any means including - without limitation by sound or visual recordings and the right of - fixation and reproducing fixations of the Work, including storage of a - protected performance or phonogram in digital form or other electronic - medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, -limit, or restrict any uses free from copyright or rights arising from -limitations or exceptions that are provided for in connection with the -copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, -Licensor hereby grants You a worldwide, royalty-free, non-exclusive, -perpetual (for the duration of the applicable copyright) license to -exercise the rights in the Work as stated below: - - a. to Reproduce the Work, to incorporate the Work into one or more - Collections, and to Reproduce the Work as incorporated in the - Collections; and, - b. to Distribute and Publicly Perform the Work including as incorporated - in Collections. - c. For the avoidance of doubt: - - i. Non-waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme cannot be waived, the Licensor - reserves the exclusive right to collect such royalties for any - exercise by You of the rights granted under this License; - ii. Waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme can be waived, the Licensor waives the - exclusive right to collect such royalties for any exercise by You - of the rights granted under this License; and, - iii. Voluntary License Schemes. The Licensor waives the right to - collect royalties, whether individually or, in the event that the - Licensor is a member of a collecting society that administers - voluntary licensing schemes, via that society, from any exercise - by You of the rights granted under this License. - -The above rights may be exercised in all media and formats whether now -known or hereafter devised. The above rights include the right to make -such modifications as are technically necessary to exercise the rights in -other media and formats, but otherwise you have no rights to make -Adaptations. Subject to Section 8(f), all rights not expressly granted by -Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made -subject to and limited by the following restrictions: - - a. You may Distribute or Publicly Perform the Work only under the terms - of this License. You must include a copy of, or the Uniform Resource - Identifier (URI) for, this License with every copy of the Work You - Distribute or Publicly Perform. You may not offer or impose any terms - on the Work that restrict the terms of this License or the ability of - the recipient of the Work to exercise the rights granted to that - recipient under the terms of the License. You may not sublicense the - Work. You must keep intact all notices that refer to this License and - to the disclaimer of warranties with every copy of the Work You - Distribute or Publicly Perform. When You Distribute or Publicly - Perform the Work, You may not impose any effective technological - measures on the Work that restrict the ability of a recipient of the - Work from You to exercise the rights granted to that recipient under - the terms of the License. This Section 4(a) applies to the Work as - incorporated in a Collection, but this does not require the Collection - apart from the Work itself to be made subject to the terms of this - License. If You create a Collection, upon notice from any Licensor You - must, to the extent practicable, remove from the Collection any credit - as required by Section 4(b), as requested. - b. If You Distribute, or Publicly Perform the Work or Collections, You - must, unless a request has been made pursuant to Section 4(a), keep - intact all copyright notices for the Work and provide, reasonable to - the medium or means You are utilizing: (i) the name of the Original - Author (or pseudonym, if applicable) if supplied, and/or if the - Original Author and/or Licensor designate another party or parties - (e.g., a sponsor institute, publishing entity, journal) for - attribution ("Attribution Parties") in Licensor's copyright notice, - terms of service or by other reasonable means, the name of such party - or parties; (ii) the title of the Work if supplied; (iii) to the - extent reasonably practicable, the URI, if any, that Licensor - specifies to be associated with the Work, unless such URI does not - refer to the copyright notice or licensing information for the Work. - The credit required by this Section 4(b) may be implemented in any - reasonable manner; provided, however, that in the case of a - Collection, at a minimum such credit will appear, if a credit for all - contributing authors of the Collection appears, then as part of these - credits and in a manner at least as prominent as the credits for the - other contributing authors. For the avoidance of doubt, You may only - use the credit required by this Section for the purpose of attribution - in the manner set out above and, by exercising Your rights under this - License, You may not implicitly or explicitly assert or imply any - connection with, sponsorship or endorsement by the Original Author, - Licensor and/or Attribution Parties, as appropriate, of You or Your - use of the Work, without the separate, express prior written - permission of the Original Author, Licensor and/or Attribution - Parties. - c. Except as otherwise agreed in writing by the Licensor or as may be - otherwise permitted by applicable law, if You Reproduce, Distribute or - Publicly Perform the Work either by itself or as part of any - Collections, You must not distort, mutilate, modify or take other - derogatory action in relation to the Work which would be prejudicial - to the Original Author's honor or reputation. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR -OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY -KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, -INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, -FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF -LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, -WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION -OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE -LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR -ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES -ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - a. This License and the rights granted hereunder will terminate - automatically upon any breach by You of the terms of this License. - Individuals or entities who have received Collections from You under - this License, however, will not have their licenses terminated - provided such individuals or entities remain in full compliance with - those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any - termination of this License. - b. Subject to the above terms and conditions, the license granted here is - perpetual (for the duration of the applicable copyright in the Work). - Notwithstanding the above, Licensor reserves the right to release the - Work under different license terms or to stop distributing the Work at - any time; provided, however that any such election will not serve to - withdraw this License (or any other license that has been, or is - required to be, granted under the terms of this License), and this - License will continue in full force and effect unless terminated as - stated above. - -8. Miscellaneous - - a. Each time You Distribute or Publicly Perform the Work or a Collection, - the Licensor offers to the recipient a license to the Work on the same - terms and conditions as the license granted to You under this License. - b. If any provision of this License is invalid or unenforceable under - applicable law, it shall not affect the validity or enforceability of - the remainder of the terms of this License, and without further action - by the parties to this agreement, such provision shall be reformed to - the minimum extent necessary to make such provision valid and - enforceable. - c. No term or provision of this License shall be deemed waived and no - breach consented to unless such waiver or consent shall be in writing - and signed by the party to be charged with such waiver or consent. - d. This License constitutes the entire agreement between the parties with - respect to the Work licensed here. There are no understandings, - agreements or representations with respect to the Work not specified - here. Licensor shall not be bound by any additional provisions that - may appear in any communication from You. This License may not be - modified without the mutual written agreement of the Licensor and You. - e. The rights granted under, and the subject matter referenced, in this - License were drafted utilizing the terminology of the Berne Convention - for the Protection of Literary and Artistic Works (as amended on - September 28, 1979), the Rome Convention of 1961, the WIPO Copyright - Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 - and the Universal Copyright Convention (as revised on July 24, 1971). - These rights and subject matter take effect in the relevant - jurisdiction in which the License terms are sought to be enforced - according to the corresponding provisions of the implementation of - those treaty provisions in the applicable national law. If the - standard suite of rights granted under applicable copyright law - includes additional rights not granted under this License, such - additional rights are deemed to be included in the License; this - License is not intended to restrict the license of any rights under - applicable law. - - -Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty - whatsoever in connection with the Work. Creative Commons will not be - liable to You or any party on any legal theory for any damages - whatsoever, including without limitation any general, special, - incidental or consequential damages arising in connection to this - license. Notwithstanding the foregoing two (2) sentences, if Creative - Commons has expressly identified itself as the Licensor hereunder, it - shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the - Work is licensed under the CCPL, Creative Commons does not authorize - the use by either party of the trademark "Creative Commons" or any - related trademark or logo of Creative Commons without the prior - written consent of Creative Commons. Any permitted use will be in - compliance with Creative Commons' then-current trademark usage - guidelines, as may be published on its website or otherwise made - available upon request from time to time. For the avoidance of doubt, - this trademark restriction does not form part of this License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-3.0-u.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-3.0-u.yml deleted file mode 100644 index 0b2842090cf..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-3.0-u.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nd-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-4.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-4.0.txt deleted file mode 100644 index 9959d0fefb6..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-4.0.txt +++ /dev/null @@ -1,388 +0,0 @@ -Attribution-NoDerivatives 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - - -======================================================================= - -Creative Commons Attribution-NoDerivatives 4.0 International Public -License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-NoDerivatives 4.0 International Public License ("Public -License"). To the extent this Public License may be interpreted as a -contract, You are granted the Licensed Rights in consideration of Your -acceptance of these terms and conditions, and the Licensor grants You -such rights in consideration of benefits the Licensor receives from -making the Licensed Material available under these terms and -conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - c. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - d. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - e. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - f. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - g. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - h. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - i. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - j. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce and reproduce, but not Share, Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material, You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - For the avoidance of doubt, You do not have permission under - this Public License to Share Adapted Material. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database, provided You do not Share - Adapted Material; - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material; and - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - -======================================================================= - -Creative Commons is not a party to its public licenses. -Notwithstanding, Creative Commons may elect to apply one of its public -licenses to material it publishes and in those instances will be -considered the "Licensor." Except for the limited purpose of indicating -that material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the public -licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-4.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-4.0.yml deleted file mode 100644 index 391208efc2f..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-nd-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-nd-4.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-3.0-u.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-3.0-u.txt deleted file mode 100644 index 604209a8046..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-3.0-u.txt +++ /dev/null @@ -1,359 +0,0 @@ -Creative Commons Legal Code - -Attribution-ShareAlike 3.0 Unported - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR - DAMAGES RESULTING FROM ITS USE. - -License - -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE -COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY -COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS -AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE -TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY -BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS -CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND -CONDITIONS. - -1. Definitions - - a. "Adaptation" means a work based upon the Work, or upon the Work and - other pre-existing works, such as a translation, adaptation, - derivative work, arrangement of music or other alterations of a - literary or artistic work, or phonogram or performance and includes - cinematographic adaptations or any other form in which the Work may be - recast, transformed, or adapted including in any form recognizably - derived from the original, except that a work that constitutes a - Collection will not be considered an Adaptation for the purpose of - this License. For the avoidance of doubt, where the Work is a musical - work, performance or phonogram, the synchronization of the Work in - timed-relation with a moving image ("synching") will be considered an - Adaptation for the purpose of this License. - b. "Collection" means a collection of literary or artistic works, such as - encyclopedias and anthologies, or performances, phonograms or - broadcasts, or other works or subject matter other than works listed - in Section 1(f) below, which, by reason of the selection and - arrangement of their contents, constitute intellectual creations, in - which the Work is included in its entirety in unmodified form along - with one or more other contributions, each constituting separate and - independent works in themselves, which together are assembled into a - collective whole. A work that constitutes a Collection will not be - considered an Adaptation (as defined below) for the purposes of this - License. - c. "Creative Commons Compatible License" means a license that is listed - at https://creativecommons.org/compatiblelicenses that has been - approved by Creative Commons as being essentially equivalent to this - License, including, at a minimum, because that license: (i) contains - terms that have the same purpose, meaning and effect as the License - Elements of this License; and, (ii) explicitly permits the relicensing - of adaptations of works made available under that license under this - License or a Creative Commons jurisdiction license with the same - License Elements as this License. - d. "Distribute" means to make available to the public the original and - copies of the Work or Adaptation, as appropriate, through sale or - other transfer of ownership. - e. "License Elements" means the following high-level license attributes - as selected by Licensor and indicated in the title of this License: - Attribution, ShareAlike. - f. "Licensor" means the individual, individuals, entity or entities that - offer(s) the Work under the terms of this License. - g. "Original Author" means, in the case of a literary or artistic work, - the individual, individuals, entity or entities who created the Work - or if no individual or entity can be identified, the publisher; and in - addition (i) in the case of a performance the actors, singers, - musicians, dancers, and other persons who act, sing, deliver, declaim, - play in, interpret or otherwise perform literary or artistic works or - expressions of folklore; (ii) in the case of a phonogram the producer - being the person or legal entity who first fixes the sounds of a - performance or other sounds; and, (iii) in the case of broadcasts, the - organization that transmits the broadcast. - h. "Work" means the literary and/or artistic work offered under the terms - of this License including without limitation any production in the - literary, scientific and artistic domain, whatever may be the mode or - form of its expression including digital form, such as a book, - pamphlet and other writing; a lecture, address, sermon or other work - of the same nature; a dramatic or dramatico-musical work; a - choreographic work or entertainment in dumb show; a musical - composition with or without words; a cinematographic work to which are - assimilated works expressed by a process analogous to cinematography; - a work of drawing, painting, architecture, sculpture, engraving or - lithography; a photographic work to which are assimilated works - expressed by a process analogous to photography; a work of applied - art; an illustration, map, plan, sketch or three-dimensional work - relative to geography, topography, architecture or science; a - performance; a broadcast; a phonogram; a compilation of data to the - extent it is protected as a copyrightable work; or a work performed by - a variety or circus performer to the extent it is not otherwise - considered a literary or artistic work. - i. "You" means an individual or entity exercising rights under this - License who has not previously violated the terms of this License with - respect to the Work, or who has received express permission from the - Licensor to exercise rights under this License despite a previous - violation. - j. "Publicly Perform" means to perform public recitations of the Work and - to communicate to the public those public recitations, by any means or - process, including by wire or wireless means or public digital - performances; to make available to the public Works in such a way that - members of the public may access these Works from a place and at a - place individually chosen by them; to perform the Work to the public - by any means or process and the communication to the public of the - performances of the Work, including by public digital performance; to - broadcast and rebroadcast the Work by any means including signs, - sounds or images. - k. "Reproduce" means to make copies of the Work by any means including - without limitation by sound or visual recordings and the right of - fixation and reproducing fixations of the Work, including storage of a - protected performance or phonogram in digital form or other electronic - medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, -limit, or restrict any uses free from copyright or rights arising from -limitations or exceptions that are provided for in connection with the -copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, -Licensor hereby grants You a worldwide, royalty-free, non-exclusive, -perpetual (for the duration of the applicable copyright) license to -exercise the rights in the Work as stated below: - - a. to Reproduce the Work, to incorporate the Work into one or more - Collections, and to Reproduce the Work as incorporated in the - Collections; - b. to create and Reproduce Adaptations provided that any such Adaptation, - including any translation in any medium, takes reasonable steps to - clearly label, demarcate or otherwise identify that changes were made - to the original Work. For example, a translation could be marked "The - original work was translated from English to Spanish," or a - modification could indicate "The original work has been modified."; - c. to Distribute and Publicly Perform the Work including as incorporated - in Collections; and, - d. to Distribute and Publicly Perform Adaptations. - e. For the avoidance of doubt: - - i. Non-waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme cannot be waived, the Licensor - reserves the exclusive right to collect such royalties for any - exercise by You of the rights granted under this License; - ii. Waivable Compulsory License Schemes. In those jurisdictions in - which the right to collect royalties through any statutory or - compulsory licensing scheme can be waived, the Licensor waives the - exclusive right to collect such royalties for any exercise by You - of the rights granted under this License; and, - iii. Voluntary License Schemes. The Licensor waives the right to - collect royalties, whether individually or, in the event that the - Licensor is a member of a collecting society that administers - voluntary licensing schemes, via that society, from any exercise - by You of the rights granted under this License. - -The above rights may be exercised in all media and formats whether now -known or hereafter devised. The above rights include the right to make -such modifications as are technically necessary to exercise the rights in -other media and formats. Subject to Section 8(f), all rights not expressly -granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made -subject to and limited by the following restrictions: - - a. You may Distribute or Publicly Perform the Work only under the terms - of this License. You must include a copy of, or the Uniform Resource - Identifier (URI) for, this License with every copy of the Work You - Distribute or Publicly Perform. You may not offer or impose any terms - on the Work that restrict the terms of this License or the ability of - the recipient of the Work to exercise the rights granted to that - recipient under the terms of the License. You may not sublicense the - Work. You must keep intact all notices that refer to this License and - to the disclaimer of warranties with every copy of the Work You - Distribute or Publicly Perform. When You Distribute or Publicly - Perform the Work, You may not impose any effective technological - measures on the Work that restrict the ability of a recipient of the - Work from You to exercise the rights granted to that recipient under - the terms of the License. This Section 4(a) applies to the Work as - incorporated in a Collection, but this does not require the Collection - apart from the Work itself to be made subject to the terms of this - License. If You create a Collection, upon notice from any Licensor You - must, to the extent practicable, remove from the Collection any credit - as required by Section 4(c), as requested. If You create an - Adaptation, upon notice from any Licensor You must, to the extent - practicable, remove from the Adaptation any credit as required by - Section 4(c), as requested. - b. You may Distribute or Publicly Perform an Adaptation only under the - terms of: (i) this License; (ii) a later version of this License with - the same License Elements as this License; (iii) a Creative Commons - jurisdiction license (either this or a later license version) that - contains the same License Elements as this License (e.g., - Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible - License. If you license the Adaptation under one of the licenses - mentioned in (iv), you must comply with the terms of that license. If - you license the Adaptation under the terms of any of the licenses - mentioned in (i), (ii) or (iii) (the "Applicable License"), you must - comply with the terms of the Applicable License generally and the - following provisions: (I) You must include a copy of, or the URI for, - the Applicable License with every copy of each Adaptation You - Distribute or Publicly Perform; (II) You may not offer or impose any - terms on the Adaptation that restrict the terms of the Applicable - License or the ability of the recipient of the Adaptation to exercise - the rights granted to that recipient under the terms of the Applicable - License; (III) You must keep intact all notices that refer to the - Applicable License and to the disclaimer of warranties with every copy - of the Work as included in the Adaptation You Distribute or Publicly - Perform; (IV) when You Distribute or Publicly Perform the Adaptation, - You may not impose any effective technological measures on the - Adaptation that restrict the ability of a recipient of the Adaptation - from You to exercise the rights granted to that recipient under the - terms of the Applicable License. This Section 4(b) applies to the - Adaptation as incorporated in a Collection, but this does not require - the Collection apart from the Adaptation itself to be made subject to - the terms of the Applicable License. - c. If You Distribute, or Publicly Perform the Work or any Adaptations or - Collections, You must, unless a request has been made pursuant to - Section 4(a), keep intact all copyright notices for the Work and - provide, reasonable to the medium or means You are utilizing: (i) the - name of the Original Author (or pseudonym, if applicable) if supplied, - and/or if the Original Author and/or Licensor designate another party - or parties (e.g., a sponsor institute, publishing entity, journal) for - attribution ("Attribution Parties") in Licensor's copyright notice, - terms of service or by other reasonable means, the name of such party - or parties; (ii) the title of the Work if supplied; (iii) to the - extent reasonably practicable, the URI, if any, that Licensor - specifies to be associated with the Work, unless such URI does not - refer to the copyright notice or licensing information for the Work; - and (iv) , consistent with Ssection 3(b), in the case of an - Adaptation, a credit identifying the use of the Work in the Adaptation - (e.g., "French translation of the Work by Original Author," or - "Screenplay based on original Work by Original Author"). The credit - required by this Section 4(c) may be implemented in any reasonable - manner; provided, however, that in the case of a Adaptation or - Collection, at a minimum such credit will appear, if a credit for all - contributing authors of the Adaptation or Collection appears, then as - part of these credits and in a manner at least as prominent as the - credits for the other contributing authors. For the avoidance of - doubt, You may only use the credit required by this Section for the - purpose of attribution in the manner set out above and, by exercising - Your rights under this License, You may not implicitly or explicitly - assert or imply any connection with, sponsorship or endorsement by the - Original Author, Licensor and/or Attribution Parties, as appropriate, - of You or Your use of the Work, without the separate, express prior - written permission of the Original Author, Licensor and/or Attribution - Parties. - d. Except as otherwise agreed in writing by the Licensor or as may be - otherwise permitted by applicable law, if You Reproduce, Distribute or - Publicly Perform the Work either by itself or as part of any - Adaptations or Collections, You must not distort, mutilate, modify or - take other derogatory action in relation to the Work which would be - prejudicial to the Original Author's honor or reputation. Licensor - agrees that in those jurisdictions (e.g. Japan), in which any exercise - of the right granted in Section 3(b) of this License (the right to - make Adaptations) would be deemed to be a distortion, mutilation, - modification or other derogatory action prejudicial to the Original - Author's honor and reputation, the Licensor will waive or not assert, - as appropriate, this Section, to the fullest extent permitted by the - applicable national law, to enable You to reasonably exercise Your - right under Section 3(b) of this License (right to make Adaptations) - but not otherwise. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR -OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY -KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, -INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, -FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF -LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, -WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION -OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE -LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR -ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES -ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - a. This License and the rights granted hereunder will terminate - automatically upon any breach by You of the terms of this License. - Individuals or entities who have received Adaptations or Collections - from You under this License, however, will not have their licenses - terminated provided such individuals or entities remain in full - compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will - survive any termination of this License. - b. Subject to the above terms and conditions, the license granted here is - perpetual (for the duration of the applicable copyright in the Work). - Notwithstanding the above, Licensor reserves the right to release the - Work under different license terms or to stop distributing the Work at - any time; provided, however that any such election will not serve to - withdraw this License (or any other license that has been, or is - required to be, granted under the terms of this License), and this - License will continue in full force and effect unless terminated as - stated above. - -8. Miscellaneous - - a. Each time You Distribute or Publicly Perform the Work or a Collection, - the Licensor offers to the recipient a license to the Work on the same - terms and conditions as the license granted to You under this License. - b. Each time You Distribute or Publicly Perform an Adaptation, Licensor - offers to the recipient a license to the original Work on the same - terms and conditions as the license granted to You under this License. - c. If any provision of this License is invalid or unenforceable under - applicable law, it shall not affect the validity or enforceability of - the remainder of the terms of this License, and without further action - by the parties to this agreement, such provision shall be reformed to - the minimum extent necessary to make such provision valid and - enforceable. - d. No term or provision of this License shall be deemed waived and no - breach consented to unless such waiver or consent shall be in writing - and signed by the party to be charged with such waiver or consent. - e. This License constitutes the entire agreement between the parties with - respect to the Work licensed here. There are no understandings, - agreements or representations with respect to the Work not specified - here. Licensor shall not be bound by any additional provisions that - may appear in any communication from You. This License may not be - modified without the mutual written agreement of the Licensor and You. - f. The rights granted under, and the subject matter referenced, in this - License were drafted utilizing the terminology of the Berne Convention - for the Protection of Literary and Artistic Works (as amended on - September 28, 1979), the Rome Convention of 1961, the WIPO Copyright - Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 - and the Universal Copyright Convention (as revised on July 24, 1971). - These rights and subject matter take effect in the relevant - jurisdiction in which the License terms are sought to be enforced - according to the corresponding provisions of the implementation of - those treaty provisions in the applicable national law. If the - standard suite of rights granted under applicable copyright law - includes additional rights not granted under this License, such - additional rights are deemed to be included in the License; this - License is not intended to restrict the license of any rights under - applicable law. - - -Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty - whatsoever in connection with the Work. Creative Commons will not be - liable to You or any party on any legal theory for any damages - whatsoever, including without limitation any general, special, - incidental or consequential damages arising in connection to this - license. Notwithstanding the foregoing two (2) sentences, if Creative - Commons has expressly identified itself as the Licensor hereunder, it - shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the - Work is licensed under the CCPL, Creative Commons does not authorize - the use by either party of the trademark "Creative Commons" or any - related trademark or logo of Creative Commons without the prior - written consent of Creative Commons. Any permitted use will be in - compliance with Creative Commons' then-current trademark usage - guidelines, as may be published on its website or otherwise made - available upon request from time to time. For the avoidance of doubt, - this trademark restriction does not form part of the License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-3.0-u.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-3.0-u.yml deleted file mode 100644 index fb345eaf873..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-3.0-u.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-sa-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-4.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-4.0.txt deleted file mode 100644 index 34ec65f344a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-4.0.txt +++ /dev/null @@ -1,425 +0,0 @@ -Attribution-ShareAlike 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution-ShareAlike 4.0 International Public -License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-ShareAlike 4.0 International Public License ("Public -License"). To the extent this Public License may be interpreted as a -contract, You are granted the Licensed Rights in consideration of Your -acceptance of these terms and conditions, and the Licensor grants You -such rights in consideration of benefits the Licensor receives from -making the Licensed Material available under these terms and -conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. BY-SA Compatible License means a license listed at - creativecommons.org/compatiblelicenses, approved by Creative - Commons as essentially the equivalent of this Public License. - - d. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - e. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - f. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - g. License Elements means the license attributes listed in the name - of a Creative Commons Public License. The License Elements of this - Public License are Attribution and ShareAlike. - - h. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - i. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - j. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - k. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - l. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - m. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. Additional offer from the Licensor -- Adapted Material. - Every recipient of Adapted Material from You - automatically receives an offer from the Licensor to - exercise the Licensed Rights in the Adapted Material - under the conditions of the Adapter's License You apply. - - c. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - b. ShareAlike. - - In addition to the conditions in Section 3(a), if You Share - Adapted Material You produce, the following conditions also apply. - - 1. The Adapter's License You apply must be a Creative Commons - license with the same License Elements, this version or - later, or a BY-SA Compatible License. - - 2. You must include the text of, or the URI or hyperlink to, the - Adapter's License You apply. You may satisfy this condition - in any reasonable manner based on the medium, means, and - context in which You Share Adapted Material. - - 3. You may not offer or impose any additional or different terms - or conditions on, or apply any Effective Technological - Measures to, Adapted Material that restrict exercise of the - rights granted under the Adapter's License You apply. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material, - - including for purposes of Section 3(b); and - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - - -======================================================================= - -Creative Commons is not a party to its public licenses. -Notwithstanding, Creative Commons may elect to apply one of its public -licenses to material it publishes and in those instances will be -considered the "Licensor." Except for the limited purpose of indicating -that material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the public -licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-4.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-4.0.yml deleted file mode 100644 index 5ee521055de..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc-by-sa-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc-by-sa-4.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc0-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc0-1.0.txt deleted file mode 100644 index 0e259d42c99..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc0-1.0.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc0-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc0-1.0.yml deleted file mode 100644 index b397a4c1599..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cc0-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cc0-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cddl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cddl-1.0.txt deleted file mode 100644 index 9729b8faec6..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cddl-1.0.txt +++ /dev/null @@ -1,130 +0,0 @@ -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 (CDDL-1.0) - - 1. Definitions. - - 1.1. Contributor means each individual or entity that creates or contributes to the creation of Modifications. - - 1.2. Contributor Version means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. - - 1.3. Covered Software means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. - - 1.4. Executable means the Covered Software in any form other than Source Code. - - 1.5. Initial Developer means the individual or entity that first makes Original Software available under this License. - - 1.6. Larger Work means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. - - 1.7. License means this document. - - 1.8. Licensable means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. - - 1.9. Modifications means the Source Code and Executable form of any of the following: - - A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; - - B. Any new file that contains any part of the Original Software or previous Modification; or - - C. Any new file that is contributed or otherwise made available under the terms of this License. - - 1.10. Original Software means the Source Code and Executable form of computer software code that is originally released under this License. - - 1.11. Patent Claims means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. - - 1.12. Source Code means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. - - 1.13. You (or Your) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - - 2. License Grants. - - 2.1. The Initial Developer Grant. - - Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). - - (c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. - - 2.2. Contributor Grant. - - Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). - - (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. - - (d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. - - 3. Distribution Obligations. - - 3.1. Availability of Source Code. - - Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. - - 3.2. Modifications. - - The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. - - 3.3. Required Notices. - - You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. - - 3.4. Application of Additional Terms. - - You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. - - 3.5. Distribution of Executable Versions. - - You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipients rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. - - 3.6. Larger Works. - - You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. - - 4. Versions of the License. - - 4.1. New Versions. - - Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. - - 4.2. Effect of New Versions. - - You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. - - 4.3. Modified Versions. - - When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. - - 5. DISCLAIMER OF WARRANTY. - - COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - - 6. TERMINATION. - - 6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. - - 6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as Participant) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. - - 6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. - - 7. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - - 8. U.S. GOVERNMENT END USERS. - - The Covered Software is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software (as that term is defined at 48 C.F.R. 252.227-7014(a)(1)) and commercial computer software documentation as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. - - 9. MISCELLANEOUS. - - This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdictions conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. - - 10. RESPONSIBILITY FOR CLAIMS. - - As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. - diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cddl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cddl-1.0.yml deleted file mode 100644 index 5bf385411a0..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cddl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cddl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.en.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.en.txt deleted file mode 100644 index a053d7ae585..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.en.txt +++ /dev/null @@ -1,217 +0,0 @@ -Cea Cnrs Inria Logiciel Libre License, version 2.1 (CECILL-2.1) -[OSI Approved License] -This license is also available in French from the CeCILL website. - -Version 2.1 dated 2013-06-21 -Notice -This Agreement is a Free Software license agreement that is the result of discussions between its authors in order to ensure compliance with the two main principles guiding its drafting: - -firstly, compliance with the principles governing the distribution of Free Software: access to source code, broad rights granted to users, -secondly, the election of a governing law, French law, with which it is conformant, both as regards the law of torts and intellectual property law, and the protection that it offers to both authors and holders of the economic rights over software. -The authors of the CeCILL (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre]) license are: - -Commissariat à l'énergie atomique et aux énergies - CEA, a public scientific, technical and industrial research establishment, having its principal place of business at 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris, France. - -Centre National de la Recherche Scientifique - CNRS, a public scientific and technological establishment, having its principal place of business at 3 rue Michel-Ange, 75794 Paris cedex 16, France. - -Institut National de Recherche en Informatique et en Automatique - Inria, a public scientific and technological establishment, having its principal place of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay cedex, France. - -Preamble -The purpose of this Free Software license agreement is to grant users the right to modify and redistribute the software governed by this license within the framework of an open source distribution model. - -The exercising of this right is conditional upon certain obligations for users so as to preserve this status for all subsequent redistributions. - -In consideration of access to the source code and the rights to copy, modify and redistribute granted by the license, users are provided only with a limited warranty and the software's author, the holder of the economic rights, and the successive licensors only have limited liability. - -In this respect, the risks associated with loading, using, modifying and/or developing or reproducing the software by the user are brought to the user's attention, given its Free Software status, which may make it complicated to use, with the result that its use is reserved for developers and experienced professionals having in-depth computer knowledge. Users are therefore encouraged to load and test the suitability of the software as regards their requirements in conditions enabling the security of their systems and/or data to be ensured and, more generally, to use and operate it in the same conditions of security. This Agreement may be freely reproduced and published, provided it is not altered, and that no provisions are either added or removed herefrom. - -This Agreement may apply to any or all software for which the holder of the economic rights decides to submit the use thereof to its provisions. - -Frequently asked questions can be found on the official website of the CeCILL licenses family (http://www.cecill.info/index.en.html) for any necessary clarification. - -Article 1 - DEFINITIONS -For the purpose of this Agreement, when the following expressions commence with a capital letter, they shall have the following meaning: - -Agreement: means this license agreement, and its possible subsequent versions and annexes. - -Software: means the software in its Object Code and/or Source Code form and, where applicable, its documentation, "as is" when the Licensee accepts the Agreement. - -Initial Software: means the Software in its Source Code and possibly its Object Code form and, where applicable, its documentation, "as is" when it is first distributed under the terms and conditions of the Agreement. - -Modified Software: means the Software modified by at least one Contribution. - -Source Code: means all the Software's instructions and program lines to which access is required so as to modify the Software. - -Object Code: means the binary files originating from the compilation of the Source Code. - -Holder: means the holder(s) of the economic rights over the Initial Software. - -Licensee: means the Software user(s) having accepted the Agreement. - -Contributor: means a Licensee having made at least one Contribution. - -Licensor: means the Holder, or any other individual or legal entity, who distributes the Software under the Agreement. - -Contribution: means any or all modifications, corrections, translations, adaptations and/or new functions integrated into the Software by any or all Contributors, as well as any or all Internal Modules. - -Module: means a set of sources files including their documentation that enables supplementary functions or services in addition to those offered by the Software. - -External Module: means any or all Modules, not derived from the Software, so that this Module and the Software run in separate address spaces, with one calling the other when they are run. - -Internal Module: means any or all Module, connected to the Software so that they both execute in the same address space. - -GNU GPL: means the GNU General Public License version 2 or any subsequent version, as published by the Free Software Foundation Inc. - -GNU Affero GPL: means the GNU Affero General Public License version 3 or any subsequent version, as published by the Free Software Foundation Inc. - -EUPL: means the European Union Public License version 1.1 or any subsequent version, as published by the European Commission. - -Parties: mean both the Licensee and the Licensor. - -These expressions may be used both in singular and plural form. - -Article 2 - PURPOSE -The purpose of the Agreement is the grant by the Licensor to the Licensee of a non-exclusive, transferable and worldwide license for the Software as set forth in Article 5 hereinafter for the whole term of the protection granted by the rights over said Software. - -Article 3 - ACCEPTANCE -3.1 The Licensee shall be deemed as having accepted the terms and conditions of this Agreement upon the occurrence of the first of the following events: - -(i) loading the Software by any or all means, notably, by downloading from a remote server, or by loading from a physical medium; -(ii) the first time the Licensee exercises any of the rights granted hereunder. -3.2 One copy of the Agreement, containing a notice relating to the characteristics of the Software, to the limited warranty, and to the fact that its use is restricted to experienced users has been provided to the Licensee prior to its acceptance as set forth in Article 3.1 hereinabove, and the Licensee hereby acknowledges that it has read and understood it. - -Article 4 - EFFECTIVE DATE AND TERM -4.1 EFFECTIVE DATE -The Agreement shall become effective on the date when it is accepted by the Licensee as set forth in Article 3.1. - -4.2 TERM -The Agreement shall remain in force for the entire legal term of protection of the economic rights over the Software. - -Article 5 - SCOPE OF RIGHTS GRANTED -The Licensor hereby grants to the Licensee, who accepts, the following rights over the Software for any or all use, and for the term of the Agreement, on the basis of the terms and conditions set forth hereinafter. - -Besides, if the Licensor owns or comes to own one or more patents protecting all or part of the functions of the Software or of its components, the Licensor undertakes not to enforce the rights granted by these patents against successive Licensees using, exploiting or modifying the Software. If these patents are transferred, the Licensor undertakes to have the transferees subscribe to the obligations set forth in this paragraph. - -5.1 RIGHT OF USE -The Licensee is authorized to use the Software, without any limitation as to its fields of application, with it being hereinafter specified that this comprises: - -permanent or temporary reproduction of all or part of the Software by any or all means and in any or all form. - -loading, displaying, running, or storing the Software on any or all medium. - -entitlement to observe, study or test its operation so as to determine the ideas and principles behind any or all constituent elements of said Software. This shall apply when the Licensee carries out any or all loading, displaying, running, transmission or storage operation as regards the Software, that it is entitled to carry out hereunder. - -5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS -The right to make Contributions includes the right to translate, adapt, arrange, or make any or all modifications to the Software, and the right to reproduce the resulting software. - -The Licensee is authorized to make any or all Contributions to the Software provided that it includes an explicit notice that it is the author of said Contribution and indicates the date of the creation thereof. - -5.3 RIGHT OF DISTRIBUTION -In particular, the right of distribution includes the right to publish, transmit and communicate the Software to the general public on any or all medium, and by any or all means, and the right to market, either in consideration of a fee, or free of charge, one or more copies of the Software by any means. - -The Licensee is further authorized to distribute copies of the modified or unmodified Software to third parties according to the terms and conditions set forth hereinafter. - -5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION -The Licensee is authorized to distribute true copies of the Software in Source Code or Object Code form, provided that said distribution complies with all the provisions of the Agreement and is accompanied by: - -a copy of the Agreement, - -a notice relating to the limitation of both the Licensor's warranty and liability as set forth in Articles 8 and 9, - -and that, in the event that only the Object Code of the Software is redistributed, the Licensee allows effective access to the full Source Code of the Software for a period of at least three years from the distribution of the Software, it being understood that the additional acquisition cost of the Source Code shall not exceed the cost of the data transfer. - -5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE -When the Licensee makes a Contribution to the Software, the terms and conditions for the distribution of the resulting Modified Software become subject to all the provisions of this Agreement. - -The Licensee is authorized to distribute the Modified Software, in source code or object code form, provided that said distribution complies with all the provisions of the Agreement and is accompanied by: - -a copy of the Agreement, - -a notice relating to the limitation of both the Licensor's warranty and liability as set forth in Articles 8 and 9, - -and, in the event that only the object code of the Modified Software is redistributed, - -a note stating the conditions of effective access to the full source code of the Modified Software for a period of at least three years from the distribution of the Modified Software, it being understood that the additional acquisition cost of the source code shall not exceed the cost of the data transfer. -5.3.3 DISTRIBUTION OF EXTERNAL MODULES -When the Licensee has developed an External Module, the terms and conditions of this Agreement do not apply to said External Module, that may be distributed under a separate license agreement. - -5.3.4 COMPATIBILITY WITH OTHER LICENSES -The Licensee can include a code that is subject to the provisions of one of the versions of the GNU GPL, GNU Affero GPL and/or EUPL in the Modified or unmodified Software, and distribute that entire code under the terms of the same version of the GNU GPL, GNU Affero GPL and/or EUPL. - -The Licensee can include the Modified or unmodified Software in a code that is subject to the provisions of one of the versions of the GNU GPL, GNU Affero GPL and/or EUPL and distribute that entire code under the terms of the same version of the GNU GPL, GNU Affero GPL and/or EUPL. - -Article 6 - INTELLECTUAL PROPERTY -6.1 OVER THE INITIAL SOFTWARE -The Holder owns the economic rights over the Initial Software. Any or all use of the Initial Software is subject to compliance with the terms and conditions under which the Holder has elected to distribute its work and no one shall be entitled to modify the terms and conditions for the distribution of said Initial Software. - -The Holder undertakes that the Initial Software will remain ruled at least by this Agreement, for the duration set forth in Article 4.2. - -6.2 OVER THE CONTRIBUTIONS -The Licensee who develops a Contribution is the owner of the intellectual property rights over this Contribution as defined by applicable law. - -6.3 OVER THE EXTERNAL MODULES -The Licensee who develops an External Module is the owner of the intellectual property rights over this External Module as defined by applicable law and is free to choose the type of agreement that shall govern its distribution. - -6.4 JOINT PROVISIONS -The Licensee expressly undertakes: - -not to remove, or modify, in any manner, the intellectual property notices attached to the Software; - -to reproduce said notices, in an identical manner, in the copies of the Software modified or not. - -The Licensee undertakes not to directly or indirectly infringe the intellectual property rights on the Software of the Holder and/or Contributors, and to take, where applicable, vis-à-vis its staff, any and all measures required to ensure respect of said intellectual property rights of the Holder and/or Contributors. - -Article 7 - RELATED SERVICES -7.1 Under no circumstances shall the Agreement oblige the Licensor to provide technical assistance or maintenance services for the Software. - -However, the Licensor is entitled to offer this type of services. The terms and conditions of such technical assistance, and/or such maintenance, shall be set forth in a separate instrument. Only the Licensor offering said maintenance and/or technical assistance services shall incur liability therefor. - -7.2 Similarly, any Licensor is entitled to offer to its licensees, under its sole responsibility, a warranty, that shall only be binding upon itself, for the redistribution of the Software and/or the Modified Software, under terms and conditions that it is free to decide. Said warranty, and the financial terms and conditions of its application, shall be subject of a separate instrument executed between the Licensor and the Licensee. - -Article 8 - LIABILITY -8.1 Subject to the provisions of Article 8.2, the Licensee shall be entitled to claim compensation for any direct loss it may have suffered from the Software as a result of a fault on the part of the relevant Licensor, subject to providing evidence thereof. - -8.2 The Licensor's liability is limited to the commitments made under this Agreement and shall not be incurred as a result of in particular: (i) loss due the Licensee's total or partial failure to fulfill its obligations, (ii) direct or consequential loss that is suffered by the Licensee due to the use or performance of the Software, and (iii) more generally, any consequential loss. In particular the Parties expressly agree that any or all pecuniary or business loss (i.e. loss of data, loss of profits, operating loss, loss of customers or orders, opportunity cost, any disturbance to business activities) or any or all legal proceedings instituted against the Licensee by a third party, shall constitute consequential loss and shall not provide entitlement to any or all compensation from the Licensor. - -Article 9 - WARRANTY -9.1 The Licensee acknowledges that the scientific and technical state-of-the-art when the Software was distributed did not enable all possible uses to be tested and verified, nor for the presence of possible defects to be detected. In this respect, the Licensee's attention has been drawn to the risks associated with loading, using, modifying and/or developing and reproducing the Software which are reserved for experienced users. - -The Licensee shall be responsible for verifying, by any or all means, the suitability of the product for its requirements, its good working order, and for ensuring that it shall not cause damage to either persons or properties. - -9.2 The Licensor hereby represents, in good faith, that it is entitled to grant all the rights over the Software (including in particular the rights set forth in Article 5). - -9.3 The Licensee acknowledges that the Software is supplied "as is" by the Licensor without any other express or tacit warranty, other than that provided for in Article 9.2 and, in particular, without any warranty as to its commercial value, its secured, safe, innovative or relevant nature. - -Specifically, the Licensor does not warrant that the Software is free from any error, that it will operate without interruption, that it will be compatible with the Licensee's own equipment and software configuration, nor that it will meet the Licensee's requirements. - -9.4 The Licensor does not either expressly or tacitly warrant that the Software does not infringe any third party intellectual property right relating to a patent, software or any other property right. Therefore, the Licensor disclaims any and all liability towards the Licensee arising out of any or all proceedings for infringement that may be instituted in respect of the use, modification and redistribution of the Software. Nevertheless, should such proceedings be instituted against the Licensee, the Licensor shall provide it with technical and legal expertise for its defense. Such technical and legal expertise shall be decided on a case-by-case basis between the relevant Licensor and the Licensee pursuant to a memorandum of understanding. The Licensor disclaims any and all liability as regards the Licensee's use of the name of the Software. No warranty is given as regards the existence of prior rights over the name of the Software or as regards the existence of a trademark. - -Article 10 - TERMINATION -10.1 In the event of a breach by the Licensee of its obligations hereunder, the Licensor may automatically terminate this Agreement thirty (30) days after notice has been sent to the Licensee and has remained ineffective. - -10.2 A Licensee whose Agreement is terminated shall no longer be authorized to use, modify or distribute the Software. However, any licenses that it may have granted prior to termination of the Agreement shall remain valid subject to their having been granted in compliance with the terms and conditions hereof. - -Article 11 - MISCELLANEOUS -11.1 EXCUSABLE EVENTS -Neither Party shall be liable for any or all delay, or failure to perform the Agreement, that may be attributable to an event of force majeure, an act of God or an outside cause, such as defective functioning or interruptions of the electricity or telecommunications networks, network paralysis following a virus attack, intervention by government authorities, natural disasters, water damage, earthquakes, fire, explosions, strikes and labor unrest, war, etc. - -11.2 Any failure by either Party, on one or more occasions, to invoke one or more of the provisions hereof, shall under no circumstances be interpreted as being a waiver by the interested Party of its right to invoke said provision(s) subsequently. - -11.3 The Agreement cancels and replaces any or all previous agreements, whether written or oral, between the Parties and having the same purpose, and constitutes the entirety of the agreement between said Parties concerning said purpose. No supplement or modification to the terms and conditions hereof shall be effective as between the Parties unless it is made in writing and signed by their duly authorized representatives. - -11.4 In the event that one or more of the provisions hereof were to conflict with a current or future applicable act or legislative text, said act or legislative text shall prevail, and the Parties shall make the necessary amendments so as to comply with said act or legislative text. All other provisions shall remain effective. Similarly, invalidity of a provision of the Agreement, for any reason whatsoever, shall not cause the Agreement as a whole to be invalid. - -11.5 LANGUAGE -The Agreement is drafted in both French and English and both versions are deemed authentic. - -Article 12 - NEW VERSIONS OF THE AGREEMENT -12.1 Any person is authorized to duplicate and distribute copies of this Agreement. - -12.2 So as to ensure coherence, the wording of this Agreement is protected and may only be modified by the authors of the License, who reserve the right to periodically publish updates or new versions of the Agreement, each with a separate number. These subsequent versions may address new issues encountered by Free Software. - -12.3 Any Software distributed under a given version of the Agreement may only be subsequently distributed under the same version of the Agreement or a subsequent version, subject to the provisions of Article 5.3.4. - -Article 13 - GOVERNING LAW AND JURISDICTION -13.1 The Agreement is governed by French law. The Parties agree to endeavor to seek an amicable solution to any disagreements or disputes that may arise during the performance of the Agreement. - -13.2 Failing an amicable solution within two (2) months as from their occurrence, and unless emergency proceedings are necessary, the disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the more diligent Party. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.en.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.en.yml deleted file mode 100644 index e4738c4d827..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.en.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cecill-2.1 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.fr.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.fr.txt deleted file mode 100644 index 9904185982b..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.fr.txt +++ /dev/null @@ -1,248 +0,0 @@ -CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL - -Version 2.1 du 2013-06-21 -Avertissement - -Ce contrat est une licence de logiciel libre issue d'une concertation entre ses auteurs afin que le respect de deux grands principes préside à sa rédaction: - -d'une part, le respect des principes de diffusion des logiciels libres: accès au code source, droits étendus conférés aux utilisateurs, -d'autre part, la désignation d'un droit applicable, le droit français, auquel elle est conforme, tant au regard du droit de la responsabilité civile que du droit de la propriété intellectuelle et de la protection qu'il offre aux auteurs et titulaires des droits patrimoniaux sur un logiciel. -Les auteurs de la licence CeCILL1 sont: - -Commissariat à l'énergie atomique et aux énergies alternatives - CEA, établissement public de recherche à caractère scientifique, technique et industriel, dont le siège est situé 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris. - -Centre National de la Recherche Scientifique - CNRS, établissement public à caractère scientifique et technologique, dont le siège est situé 3 rue Michel-Ange, 75794 Paris cedex 16. - -Institut National de Recherche en Informatique et en Automatique - Inria, établissement public à caractère scientifique et technologique, dont le siège est situé Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay cedex. - -Préambule - -Ce contrat est une licence de logiciel libre dont l'objectif est de conférer aux utilisateurs la liberté de modification et de redistribution du logiciel régi par cette licence dans le cadre d'un modèle de diffusion en logiciel libre. - -L'exercice de ces libertés est assorti de certains devoirs à la charge des utilisateurs afin de préserver ce statut au cours des redistributions ultérieures. - -L'accessibilité au code source et les droits de copie, de modification et de redistribution qui en découlent ont pour contrepartie de n'offrir aux utilisateurs qu'une garantie limitée et de ne faire peser sur l'auteur du logiciel, le titulaire des droits patrimoniaux et les concédants successifs qu'une responsabilité restreinte. - -A cet égard l'attention de l'utilisateur est attirée sur les risques associés au chargement, à l'utilisation, à la modification et/ou au développement et à la reproduction du logiciel par l'utilisateur étant donné sa spécificité de logiciel libre, qui peut le rendre complexe à manipuler et qui le réserve donc à des développeurs ou des professionnels avertis possédant des connaissances informatiques approfondies. Les utilisateurs sont donc invités à charger et tester l'adéquation du logiciel à leurs besoins dans des conditions permettant d'assurer la sécurité de leurs systèmes et/ou de leurs données et, plus généralement, à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. Ce contrat peut être reproduit et diffusé librement, sous réserve de le conserver en l'état, sans ajout ni suppression de clauses. - -Ce contrat est susceptible de s'appliquer à tout logiciel dont le titulaire des droits patrimoniaux décide de soumettre l'exploitation aux dispositions qu'il contient. - -Une liste de questions fréquemment posées se trouve sur le site web officiel de la famille des licences CeCILL (http://www.cecill.info/index.fr.html) pour toute clarification qui serait nécessaire. - -Article 1 - DEFINITIONS - -Dans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une lettre capitale, auront la signification suivante: - -Contrat: désigne le présent contrat de licence, ses éventuelles versions postérieures et annexes. - -Logiciel: désigne le logiciel sous sa forme de Code Objet et/ou de Code Source et le cas échéant sa documentation, dans leur état au moment de l'acceptation du Contrat par le Licencié. - -Logiciel Initial: désigne le Logiciel sous sa forme de Code Source et éventuellement de Code Objet et le cas échéant sa documentation, dans leur état au moment de leur première diffusion sous les termes du Contrat. - -Logiciel Modifié: désigne le Logiciel modifié par au moins une Contribution. - -Code Source: désigne l'ensemble des instructions et des lignes de programme du Logiciel et auquel l'accès est nécessaire en vue de modifier le Logiciel. - -Code Objet: désigne les fichiers binaires issus de la compilation du Code Source. - -Titulaire: désigne le ou les détenteurs des droits patrimoniaux d'auteur sur le Logiciel Initial. - -Licencié: désigne le ou les utilisateurs du Logiciel ayant accepté le Contrat. - -Contributeur: désigne le Licencié auteur d'au moins une Contribution. - -Concédant: désigne le Titulaire ou toute personne physique ou morale distribuant le Logiciel sous le Contrat. - -Contribution: désigne l'ensemble des modifications, corrections, traductions, adaptations et/ou nouvelles fonctionnalités intégrées dans le Logiciel par tout Contributeur, ainsi que tout Module Interne. - -Module: désigne un ensemble de fichiers sources y compris leur documentation qui permet de réaliser des fonctionnalités ou services supplémentaires à ceux fournis par le Logiciel. - -Module Externe: désigne tout Module, non dérivé du Logiciel, tel que ce Module et le Logiciel s'exécutent dans des espaces d'adressage différents, l'un appelant l'autre au moment de leur exécution. - -Module Interne: désigne tout Module lié au Logiciel de telle sorte qu'ils s'exécutent dans le même espace d'adressage. - -GNU GPL: désigne la GNU General Public License dans sa version 2 ou toute version ultérieure, telle que publiée par Free Software Foundation Inc. - -GNU Affero GPL: désigne la GNU Affero General Public License dans sa version 3 ou toute version ultérieure, telle que publiée par Free Software Foundation Inc. - -EUPL: désigne la Licence Publique de l'Union européenne dans sa version 1.1 ou toute version ultérieure, telle que publiée par la Commission Européenne. - -Parties: désigne collectivement le Licencié et le Concédant. - -Ces termes s'entendent au singulier comme au pluriel. - -Article 2 - OBJET - -Le Contrat a pour objet la concession par le Concédant au Licencié d'une licence non exclusive, cessible et mondiale du Logiciel telle que définie ci-après à l'article 5 pour toute la durée de protection des droits portant sur ce Logiciel. - -Article 3 - ACCEPTATION - -3.1 L'acceptation par le Licencié des termes du Contrat est réputée acquise du fait du premier des faits suivants: - -(i) le chargement du Logiciel par tout moyen notamment par téléchargement à partir d'un serveur distant ou par chargement à partir d'un support physique; -(ii) le premier exercice par le Licencié de l'un quelconque des droits concédés par le Contrat. -3.2 Un exemplaire du Contrat, contenant notamment un avertissement relatif aux spécificités du Logiciel, à la restriction de garantie et à la limitation à un usage par des utilisateurs expérimentés a été mis à disposition du Licencié préalablement à son acceptation telle que définie à l'article 3.1 ci dessus et le Licencié reconnaît en avoir pris connaissance. - -Article 4 - ENTREE EN VIGUEUR ET DUREE - -4.1 ENTREE EN VIGUEUR - -Le Contrat entre en vigueur à la date de son acceptation par le Licencié telle que définie en 3.1. - -4.2 DUREE - -Le Contrat produira ses effets pendant toute la durée légale de protection des droits patrimoniaux portant sur le Logiciel. - -Article 5 - ETENDUE DES DROITS CONCEDES - -Le Concédant concède au Licencié, qui accepte, les droits suivants sur le Logiciel pour toutes destinations et pour la durée du Contrat dans les conditions ci-après détaillées. - -Par ailleurs, si le Concédant détient ou venait à détenir un ou plusieurs brevets d'invention protégeant tout ou partie des fonctionnalités du Logiciel ou de ses composants, il s'engage à ne pas opposer les éventuels droits conférés par ces brevets aux Licenciés successifs qui utiliseraient, exploiteraient ou modifieraient le Logiciel. En cas de cession de ces brevets, le Concédant s'engage à faire reprendre les obligations du présent alinéa aux cessionnaires. - -5.1 DROIT D'UTILISATION - -Le Licencié est autorisé à utiliser le Logiciel, sans restriction quant aux domaines d'application, étant ci-après précisé que cela comporte: - -la reproduction permanente ou provisoire du Logiciel en tout ou partie par tout moyen et sous toute forme. - -le chargement, l'affichage, l'exécution, ou le stockage du Logiciel sur tout support. - -la possibilité d'en observer, d'en étudier, ou d'en tester le fonctionnement afin de déterminer les idées et principes qui sont à la base de n'importe quel élément de ce Logiciel; et ceci, lorsque le Licencié effectue toute opération de chargement, d'affichage, d'exécution, de transmission ou de stockage du Logiciel qu'il est en droit d'effectuer en vertu du Contrat. - -5.2 DROIT D'APPORTER DES CONTRIBUTIONS - -Le droit d'apporter des Contributions comporte le droit de traduire, d'adapter, d'arranger ou d'apporter toute autre modification au Logiciel et le droit de reproduire le logiciel en résultant. - -Le Licencié est autorisé à apporter toute Contribution au Logiciel sous réserve de mentionner, de façon explicite, son nom en tant qu'auteur de cette Contribution et la date de création de celle-ci. - -5.3 DROIT DE DISTRIBUTION - -Le droit de distribution comporte notamment le droit de diffuser, de transmettre et de communiquer le Logiciel au public sur tout support et par tout moyen ainsi que le droit de mettre sur le marché à titre onéreux ou gratuit, un ou des exemplaires du Logiciel par tout procédé. - -Le Licencié est autorisé à distribuer des copies du Logiciel, modifié ou non, à des tiers dans les conditions ci-après détaillées. - -5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION - -Le Licencié est autorisé à distribuer des copies conformes du Logiciel, sous forme de Code Source ou de Code Objet, à condition que cette distribution respecte les dispositions du Contrat dans leur totalité et soit accompagnée: - -d'un exemplaire du Contrat, - -d'un avertissement relatif à la restriction de garantie et de responsabilité du Concédant telle que prévue aux articles 8 et 9, - -et que, dans le cas où seul le Code Objet du Logiciel est redistribué, le Licencié permette un accès effectif au Code Source complet du Logiciel pour une durée d'au moins 3 ans à compter de la distribution du logiciel, étant entendu que le coût additionnel d'acquisition du Code Source ne devra pas excéder le simple coût de transfert des données. - -5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE - -Lorsque le Licencié apporte une Contribution au Logiciel, les conditions de distribution du Logiciel Modifié en résultant sont alors soumises à l'intégralité des dispositions du Contrat. - -Le Licencié est autorisé à distribuer le Logiciel Modifié, sous forme de code source ou de code objet, à condition que cette distribution respecte les dispositions du Contrat dans leur totalité et soit accompagnée: - -d'un exemplaire du Contrat, - -d'un avertissement relatif à la restriction de garantie et de responsabilité du Concédant telle que prévue aux articles 8 et 9, - -et, dans le cas où seul le code objet du Logiciel Modifié est redistribué, - -d'une note précisant les conditions d'accès effectif au code source complet du Logiciel Modifié, pendant une période d'au moins 3 ans à compter de la distribution du Logiciel Modifié, étant entendu que le coût additionnel d'acquisition du code source ne devra pas excéder le simple coût de transfert des données. - -5.3.3 DISTRIBUTION DES MODULES EXTERNES - -Lorsque le Licencié a développé un Module Externe les conditions du Contrat ne s'appliquent pas à ce Module Externe, qui peut être distribué sous un contrat de licence différent. - -5.3.4 COMPATIBILITE AVEC D'AUTRES LICENCES - -Le Licencié peut inclure un code soumis aux dispositions d'une des versions de la licence GNU GPL, GNU Affero GPL et/ou EUPL dans le Logiciel modifié ou non et distribuer l'ensemble sous les conditions de la même version de la licence GNU GPL, GNU Affero GPL et/ou EUPL. - -Le Licencié peut inclure le Logiciel modifié ou non dans un code soumis aux dispositions d'une des versions de la licence GNU GPL, GNU Affero GPL et/ou EUPL et distribuer l'ensemble sous les conditions de la même version de la licence GNU GPL, GNU Affero GPL et/ou EUPL. - -Article 6 - PROPRIETE INTELLECTUELLE - -6.1 SUR LE LOGICIEL INITIAL - -Le Titulaire est détenteur des droits patrimoniaux sur le Logiciel Initial. Toute utilisation du Logiciel Initial est soumise au respect des conditions dans lesquelles le Titulaire a choisi de diffuser son oeuvre et nul autre n'a la faculté de modifier les conditions de diffusion de ce Logiciel Initial. - -Le Titulaire s'engage à ce que le Logiciel Initial reste au moins régi par le Contrat et ce, pour la durée visée à l'article 4.2. - -6.2 SUR LES CONTRIBUTIONS - -Le Licencié qui a développé une Contribution est titulaire sur celle-ci des droits de propriété intellectuelle dans les conditions définies par la législation applicable. - -6.3 SUR LES MODULES EXTERNES - -Le Licencié qui a développé un Module Externe est titulaire sur celui-ci des droits de propriété intellectuelle dans les conditions définies par la législation applicable et reste libre du choix du contrat régissant sa diffusion. - -6.4 DISPOSITIONS COMMUNES - -Le Licencié s'engage expressément: - -à ne pas supprimer ou modifier de quelque manière que ce soit les mentions de propriété intellectuelle apposées sur le Logiciel; - -à reproduire à l'identique lesdites mentions de propriété intellectuelle sur les copies du Logiciel modifié ou non. - -Le Licencié s'engage à ne pas porter atteinte, directement ou indirectement, aux droits de propriété intellectuelle du Titulaire et/ou des Contributeurs sur le Logiciel et à prendre, le cas échéant, à l'égard de son personnel toutes les mesures nécessaires pour assurer le respect des dits droits de propriété intellectuelle du Titulaire et/ou des Contributeurs. - -Article 7 - SERVICES ASSOCIES - -7.1 Le Contrat n'oblige en aucun cas le Concédant à la réalisation de prestations d'assistance technique ou de maintenance du Logiciel. - -Cependant le Concédant reste libre de proposer ce type de services. Les termes et conditions d'une telle assistance technique et/ou d'une telle maintenance seront alors déterminés dans un acte séparé. Ces actes de maintenance et/ou assistance technique n'engageront que la seule responsabilité du Concédant qui les propose. - -7.2 De même, tout Concédant est libre de proposer, sous sa seule responsabilité, à ses licenciés une garantie, qui n'engagera que lui, lors de la redistribution du Logiciel et/ou du Logiciel Modifié et ce, dans les conditions qu'il souhaite. Cette garantie et les modalités financières de son application feront l'objet d'un acte séparé entre le Concédant et le Licencié. - -Article 8 - RESPONSABILITE - -8.1 Sous réserve des dispositions de l'article 8.2, le Licencié a la faculté, sous réserve de prouver la faute du Concédant concerné, de solliciter la réparation du préjudice direct qu'il subirait du fait du Logiciel et dont il apportera la preuve. - -8.2 La responsabilité du Concédant est limitée aux engagements pris en application du Contrat et ne saurait être engagée en raison notamment: (i) des dommages dus à l'inexécution, totale ou partielle, de ses obligations par le Licencié, (ii) des dommages directs ou indirects découlant de l'utilisation ou des performances du Logiciel subis par le Licencié et (iii) plus généralement d'un quelconque dommage indirect. En particulier, les Parties conviennent expressément que tout préjudice financier ou commercial (par exemple perte de données, perte de bénéfices, perte d'exploitation, perte de clientèle ou de commandes, manque à gagner, trouble commercial quelconque) ou toute action dirigée contre le Licencié par un tiers, constitue un dommage indirect et n'ouvre pas droit à réparation par le Concédant. - -Article 9 - GARANTIE - -9.1 Le Licencié reconnaît que l'état actuel des connaissances scientifiques et techniques au moment de la mise en circulation du Logiciel ne permet pas d'en tester et d'en vérifier toutes les utilisations ni de détecter l'existence d'éventuels défauts. L'attention du Licencié a été attirée sur ce point sur les risques associés au chargement, à l'utilisation, la modification et/ou au développement et à la reproduction du Logiciel qui sont réservés à des utilisateurs avertis. - -Il relève de la responsabilité du Licencié de contrôler, par tous moyens, l'adéquation du produit à ses besoins, son bon fonctionnement et de s'assurer qu'il ne causera pas de dommages aux personnes et aux biens. - -9.2 Le Concédant déclare de bonne foi être en droit de concéder l'ensemble des droits attachés au Logiciel (comprenant notamment les droits visés à l'article 5). - -9.3 Le Licencié reconnaît que le Logiciel est fourni "en l'état" par le Concédant sans autre garantie, expresse ou tacite, que celle prévue à l'article 9.2 et notamment sans aucune garantie sur sa valeur commerciale, son caractère sécurisé, innovant ou pertinent. - -En particulier, le Concédant ne garantit pas que le Logiciel est exempt d'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible avec l'équipement du Licencié et sa configuration logicielle ni qu'il remplira les besoins du Licencié. - -9.4 Le Concédant ne garantit pas, de manière expresse ou tacite, que le Logiciel ne porte pas atteinte à un quelconque droit de propriété intellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout autre droit de propriété. Ainsi, le Concédant exclut toute garantie au profit du Licencié contre les actions en contrefaçon qui pourraient être diligentées au titre de l'utilisation, de la modification, et de la redistribution du Logiciel. Néanmoins, si de telles actions sont exercées contre le Licencié, le Concédant lui apportera son expertise technique et juridique pour sa défense. Cette expertise technique et juridique est déterminée au cas par cas entre le Concédant concerné et le Licencié dans le cadre d'un protocole d'accord. Le Concédant dégage toute responsabilité quant à l'utilisation de la dénomination du Logiciel par le Licencié. Aucune garantie n'est apportée quant à l'existence de droits antérieurs sur le nom du Logiciel et sur l'existence d'une marque. - -Article 10 - RESILIATION - -10.1 En cas de manquement par le Licencié aux obligations mises à sa charge par le Contrat, le Concédant pourra résilier de plein droit le Contrat trente (30) jours après notification adressée au Licencié et restée sans effet. - -10.2 Le Licencié dont le Contrat est résilié n'est plus autorisé à utiliser, modifier ou distribuer le Logiciel. Cependant, toutes les licences qu'il aura concédées antérieurement à la résiliation du Contrat resteront valides sous réserve qu'elles aient été effectuées en conformité avec le Contrat. - -Article 11 - DISPOSITIONS DIVERSES - -11.1 CAUSE EXTERIEURE - -Aucune des Parties ne sera responsable d'un retard ou d'une défaillance d'exécution du Contrat qui serait dû à un cas de force majeure, un cas fortuit ou une cause extérieure, telle que, notamment, le mauvais fonctionnement ou les interruptions du réseau électrique ou de télécommunication, la paralysie du réseau liée à une attaque informatique, l'intervention des autorités gouvernementales, les catastrophes naturelles, les dégâts des eaux, les tremblements de terre, le feu, les explosions, les grèves et les conflits sociaux, l'état de guerre... - -11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou plusieurs occasions de se prévaloir d'une ou plusieurs dispositions du Contrat, ne pourra en aucun cas impliquer renonciation par la Partie intéressée à s'en prévaloir ultérieurement. - -11.3 Le Contrat annule et remplace toute convention antérieure, écrite ou orale, entre les Parties sur le même objet et constitue l'accord entier entre les Parties sur cet objet. Aucune addition ou modification aux termes du Contrat n'aura d'effet à l'égard des Parties à moins d'être faite par écrit et signée par leurs représentants dûment habilités. - -11.4 Dans l'hypothèse où une ou plusieurs des dispositions du Contrat s'avèrerait contraire à une loi ou à un texte applicable, existants ou futurs, cette loi ou ce texte prévaudrait, et les Parties feraient les amendements nécessaires pour se conformer à cette loi ou à ce texte. Toutes les autres dispositions resteront en vigueur. De même, la nullité, pour quelque raison que ce soit, d'une des dispositions du Contrat ne saurait entraîner la nullité de l'ensemble du Contrat. - -11.5 LANGUE - -Le Contrat est rédigé en langue française et en langue anglaise, ces deux versions faisant également foi. - -Article 12 - NOUVELLES VERSIONS DU CONTRAT - -12.1 Toute personne est autorisée à copier et distribuer des copies de ce Contrat. - -12.2 Afin d'en préserver la cohérence, le texte du Contrat est protégé et ne peut être modifié que par les auteurs de la licence, lesquels se réservent le droit de publier périodiquement des mises à jour ou de nouvelles versions du Contrat, qui posséderont chacune un numéro distinct. Ces versions ultérieures seront susceptibles de prendre en compte de nouvelles problématiques rencontrées par les logiciels libres. - -12.3 Tout Logiciel diffusé sous une version donnée du Contrat ne pourra faire l'objet d'une diffusion ultérieure que sous la même version du Contrat ou une version postérieure, sous réserve des dispositions de l'article 5.3.4. - -Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE - -13.1 Le Contrat est régi par la loi française. Les Parties conviennent de tenter de régler à l'amiable les différends ou litiges qui viendraient à se produire par suite ou à l'occasion du Contrat. - -13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter de leur survenance et sauf situation relevant d'une procédure d'urgence, les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. - -1 CeCILL est pour Ce(a) C(nrs) I(nria) L(ogiciel) L(ibre) \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.fr.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.fr.yml deleted file mode 100644 index e4738c4d827..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cecill-2.1.fr.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cecill-2.1 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cpl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cpl-1.0.txt deleted file mode 100644 index b39315fb326..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cpl-1.0.txt +++ /dev/null @@ -1,63 +0,0 @@ -Common Public License (CPL) -- V1.0 -03 May 2005 -Updated 16 Apr 2009 - -As of 25 Feb 2009, IBM has assigned the Agreement Steward role for the CPL to the Eclipse Foundation. Eclipse has designated the Eclipse Public License (EPL) as the follow-on version of the CPL. -Eclipse Foundation CPL -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. -DEFINITIONS -"Contribution" means: - -a. in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b. in the case of each subsequent Contributor: -i. changes to the Program, and -ii. additions to the Program; -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. -"Contributor" means any person or entity that distributes the Program. -"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. -"Program" means the Contributions distributed in accordance with this Agreement. -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. -GRANT OF RIGHTS -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. - -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. - -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. - -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. -REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a. it complies with the terms and conditions of this Agreement; and -b. its license agreement: -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; -ii. effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii. states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -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. - -When the Program is made available in source code form: - -a. it must be made available under this Agreement; and -b. a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - -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. -COMMERCIAL DISTRIBUTION -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. - -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. -NO WARRANTY -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. -DISCLAIMER OF LIABILITY -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. -GENERAL -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. - -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. - -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. - -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. - -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. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cpl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cpl-1.0.yml deleted file mode 100644 index 8808113e450..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/cpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - cpl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-1.0.txt deleted file mode 100644 index 58280e84f85..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-1.0.txt +++ /dev/null @@ -1,21 +0,0 @@ -This Educational Community License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: - -Copyright (c) - -Licensed under the Educational Community License version 1.0 - -This Original Work, including software, source code, documents, or other related items, is being provided by the copyright holder(s) subject to the terms of the Educational Community License. By obtaining, using and/or copying this Original Work, you agree that you have read, understand, and will comply with the following terms and conditions of the Educational Community License: - -Permission to use, copy, modify, merge, publish, distribute, and sublicense this Original Work and its documentation, with or without modification, for any purpose, and without fee or royalty to the copyright holder(s) is hereby granted, provided that you include the following on ALL copies of the Original Work or portions thereof, including modifications or derivatives, that you make: - -The full text of the Educational Community License in a location viewable to users of the redistributed or derivative work. - -Any pre-existing intellectual property disclaimers, notices, or terms and conditions. - -Notice of any changes or modifications to the Original Work, including the date the changes were made. - -Any modifications of the Original Work must be distributed in such a manner as to avoid any confusion with the Original Work of the copyright holders. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -The name and trademarks of copyright holder(s) may NOT be used in advertising or publicity pertaining to the Original or Derivative Works without specific, written prior permission. Title to copyright in the Original Work and any associated documentation will at all times remain with the copyright holders. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-1.0.yml deleted file mode 100644 index d70124195f3..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ecl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-2.0.txt deleted file mode 100644 index 98f116e012c..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-2.0.txt +++ /dev/null @@ -1,96 +0,0 @@ -Educational Community License - -Version 2.0, April 2007 - -http://www.osedu.org/licenses/ - -The Educational Community License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to change the scope of the patent grant in section 3 to be specific to the needs of the education communities using this license. The original Apache 2.0 license can be found at: http://www.apache.org/licenses/LICENSE-2.0 - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. Any patent license granted hereby with respect to contributions by an individual employed by an institution or organization is limited to patent claims where the individual that is the author of the Work is also the inventor of the patent claims licensed, and where the organization or institution has the right to grant such license under applicable grant and research funding agreements. No other express or implied licenses are granted. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - You must give any other recipients of the Work or Derivative Works a copy of this License; and - You must cause any modified files to carry prominent notices stating that You changed the files; and - You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) 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. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Educational Community License to your work - - To apply the Educational Community License to your work, attach - the following boilerplate notice, with the fields enclosed by - brackets "[]" replaced with your own identifying information. - (Don't include the brackets!) The text should be enclosed in the - appropriate comment syntax for the file format. We also recommend - that a file or class name and description of purpose be included on - the same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] Licensed under the - Educational Community License, Version 2.0 (the "License"); you may - not use this file except in compliance with the License. You may - obtain a copy of the License at - - http://www.osedu.org/licenses/ECL-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an "AS IS" - BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - or implied. See the License for the specific language governing - permissions and limitations under the License. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-2.0.yml deleted file mode 100644 index 2292801eb49..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ecl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ecl-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/epl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/epl-1.0.txt deleted file mode 100644 index 720cbc92228..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/epl-1.0.txt +++ /dev/null @@ -1,84 +0,0 @@ -Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT’S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: - -i)changes to the Program, and - -ii)additions to the Program; - -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. -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -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. - -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. - -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. - -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. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -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; - -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - -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. -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and - -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the Program. - -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. - -4. COMMERCIAL DISTRIBUTION - -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. - -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. - -5. NO WARRANTY - -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. - -6. DISCLAIMER OF LIABILITY - -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. - -7. GENERAL - -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. - -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. - -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. - -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. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation 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. - -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. - diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/epl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/epl-1.0.yml deleted file mode 100644 index 7559a6e74cd..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/epl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-1.0.txt deleted file mode 100644 index 8de98afaaf9..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-1.0.txt +++ /dev/null @@ -1,251 +0,0 @@ - - GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 - - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The license agreements of most software companies try to keep users -at the mercy of those companies. By contrast, our General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. The -General Public License applies to the Free Software Foundation's -software and to any other program whose authors commit to using it. -You can use it for your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Specifically, the General Public License is designed to make -sure that you have the freedom to give away or sell copies of free -software, that you receive source code or can get it if you want it, -that you can change the software or use pieces of it in new free -programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of a such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must tell them their rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any program or other work which -contains a notice placed by the copyright holder saying it may be -distributed under the terms of this General Public License. The -"Program", below, refers to any such program or work, and a "work based -on the Program" means either the Program or any work containing the -Program or a portion of it, either verbatim or with modifications. Each -licensee is addressed as "you". - - 1. You may copy and distribute verbatim copies of the Program's source -code as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this -General Public License and to the absence of any warranty; and give any -other recipients of the Program a copy of this General Public License -along with the Program. You may charge a fee for the physical act of -transferring a copy. - - 2. You may modify your copy or copies of the Program or any portion of -it, and copy and distribute such modifications under the terms of Paragraph -1 above, provided that you also do the following: - - a) cause the modified files to carry prominent notices stating that - you changed the files and the date of any change; and - - b) cause the whole of any work that you distribute or publish, that - in whole or in part contains the Program or any part thereof, either - with or without modifications, to be licensed at no charge to all - third parties under the terms of this General Public License (except - that you may choose to grant warranty protection to some or all - third parties, at your option). - - c) If the modified program normally reads commands interactively when - run, you must cause it, when started running for such interactive use - in the simplest and most usual way, to print or display an - announcement including an appropriate copyright notice and a notice - that there is no warranty (or else, saying that you provide a - warranty) and that users may redistribute the program under these - conditions, and telling the user how to view a copy of this General - Public License. - - d) You may charge a fee for the physical act of transferring a - copy, and you may at your option offer warranty protection in - exchange for a fee. - -Mere aggregation of another independent work with the Program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other work under the scope of these terms. - - 3. You may copy and distribute the Program (or a portion or derivative of -it, under Paragraph 2) in object code or executable form under the terms of -Paragraphs 1 and 2 above provided that you also do one of the following: - - a) accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of - Paragraphs 1 and 2 above; or, - - b) accompany it with a written offer, valid for at least three - years, to give any third party free (except for a nominal charge - for the cost of distribution) a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of - Paragraphs 1 and 2 above; or, - - c) accompany it with the information you received as to where the - corresponding source code may be obtained. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form alone.) - -Source code for a work means the preferred form of the work for making -modifications to it. For an executable file, complete source code means -all the source code for all modules it contains; but, as a special -exception, it need not include source code for modules which are standard -libraries that accompany the operating system on which the executable -file runs, or for standard header files or definitions files that -accompany that operating system. - - 4. You may not copy, modify, sublicense, distribute or transfer the -Program except as expressly provided under this General Public License. -Any attempt otherwise to copy, modify, sublicense, distribute or transfer -the Program is void, and will automatically terminate your rights to use -the Program under this License. However, parties who have received -copies, or rights to use copies, from you under this General Public -License will not have their licenses terminated so long as such parties -remain in full compliance. - - 5. By copying, distributing or modifying the Program (or any work based -on the Program) you indicate your acceptance of this license to do so, -and all its terms and conditions. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the original -licensor to copy, distribute or modify the Program subject to these -terms and conditions. You may not impose any further restrictions on the -recipients' exercise of the rights granted herein. - - 7. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of the license which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -the license, you may choose any version ever published by the Free Software -Foundation. - - 8. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - Appendix: How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to humanity, the best way to achieve this is to make it -free software which everyone can redistribute and change under these -terms. - - To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey -the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) 19yy - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 1, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19xx name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w' and `show -c'; they could even be mouse-clicks or menu items--whatever suits your -program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - program `Gnomovision' (a program to direct compilers to make passes - at assemblers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-1.0.yml deleted file mode 100644 index b0ba20df50d..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-2.0.txt deleted file mode 100644 index d159169d105..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-2.0.txt +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-2.0.yml deleted file mode 100644 index 73c598e520e..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-3.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-3.0.txt deleted file mode 100644 index 94a9ed024d3..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-3.0.txt +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-3.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-3.0.yml deleted file mode 100644 index 1bf6f4b9103..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/gpl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - gpl-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.0.txt deleted file mode 100644 index 5bc8fb2c8f7..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.0.txt +++ /dev/null @@ -1,481 +0,0 @@ - GNU LIBRARY GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1991 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the library GPL. It is - numbered 2 because it goes with version 2 of the ordinary GPL.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Library General Public License, applies to some -specially designated Free Software Foundation software, and to any -other libraries whose authors decide to use it. You can use it for -your libraries, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if -you distribute copies of the library, or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link a program with the library, you must provide -complete object files to the recipients so that they can relink them -with the library, after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - Our method of protecting your rights has two steps: (1) copyright -the library, and (2) offer you this license which gives you legal -permission to copy, distribute and/or modify the library. - - Also, for each distributor's protection, we want to make certain -that everyone understands that there is no warranty for this free -library. If the library is modified by someone else and passed on, we -want its recipients to know that what they have is not the original -version, so that any problems introduced by others will not reflect on -the original authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that companies distributing free -software will individually obtain patent licenses, thus in effect -transforming the program into proprietary software. To prevent this, -we have made it clear that any patent must be licensed for everyone's -free use or not licensed at all. - - Most GNU software, including some libraries, is covered by the ordinary -GNU General Public License, which was designed for utility programs. This -license, the GNU Library General Public License, applies to certain -designated libraries. This license is quite different from the ordinary -one; be sure to read it in full, and don't assume that anything in it is -the same as in the ordinary license. - - The reason we have a separate public license for some libraries is that -they blur the distinction we usually make between modifying or adding to a -program and simply using it. Linking a program with a library, without -changing the library, is in some sense simply using the library, and is -analogous to running a utility program or application program. However, in -a textual and legal sense, the linked executable is a combined work, a -derivative of the original library, and the ordinary General Public License -treats it as such. - - Because of this blurred distinction, using the ordinary General -Public License for libraries did not effectively promote software -sharing, because most developers did not use the libraries. We -concluded that weaker conditions might promote sharing better. - - However, unrestricted linking of non-free programs would deprive the -users of those programs of all benefit from the free status of the -libraries themselves. This Library General Public License is intended to -permit developers of non-free programs to use free libraries, while -preserving your freedom as a user of such programs to change the free -libraries that are incorporated in them. (We have not seen how to achieve -this as regards changes in header files, but we have achieved it as regards -changes in the actual functions of the Library.) The hope is that this -will lead to faster development of free libraries. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, while the latter only -works together with the library. - - Note that it is possible for a library to be covered by the ordinary -General Public License rather than by this special one. - - GNU LIBRARY GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library which -contains a notice placed by the copyright holder or other authorized -party saying it may be distributed under the terms of this Library -General Public License (also called "this License"). Each licensee is -addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also compile or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - c) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - d) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the source code distributed need not include anything that is normally -distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Library General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.0.yml deleted file mode 100644 index 768efc150b3..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.1.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.1.txt deleted file mode 100644 index 4362b49151d..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.1.txt +++ /dev/null @@ -1,502 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.1.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.1.yml deleted file mode 100644 index 93952ccd6d9..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-3.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-3.0.txt deleted file mode 100644 index 65c5ca88a67..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-3.0.txt +++ /dev/null @@ -1,165 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - - This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - - 0. Additional Definitions. - - As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - - "The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - - An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - - A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - - The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - - The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - - 1. Exception to Section 3 of the GNU GPL. - - You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - - 2. Conveying Modified Versions. - - If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - - a) under this License, provided that you make a good faith effort to - ensure that, in the event an Application does not supply the - function or data, the facility still operates, and performs - whatever part of its purpose remains meaningful, or - - b) under the GNU GPL, with none of the additional permissions of - this License applicable to that copy. - - 3. Object Code Incorporating Material from Library Header Files. - - The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - - a) Give prominent notice with each copy of the object code that the - Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the object code with a copy of the GNU GPL and this license - document. - - 4. Combined Works. - - You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - - a) Give prominent notice with each copy of the Combined Work that - the Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the Combined Work with a copy of the GNU GPL and this license - document. - - c) For a Combined Work that displays copyright notices during - execution, include the copyright notice for the Library among - these notices, as well as a reference directing the user to the - copies of the GNU GPL and this license document. - - d) Do one of the following: - - 0) Convey the Minimal Corresponding Source under the terms of this - License, and the Corresponding Application Code in a form - suitable for, and under terms that permit, the user to - recombine or relink the Application with a modified version of - the Linked Version to produce a modified Combined Work, in the - manner specified by section 6 of the GNU GPL for conveying - Corresponding Source. - - 1) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (a) uses at run time - a copy of the Library already present on the user's computer - system, and (b) will operate properly with a modified version - of the Library that is interface-compatible with the Linked - Version. - - e) Provide Installation Information, but only if you would otherwise - be required to provide such information under section 6 of the - GNU GPL, and only to the extent that such information is - necessary to install and execute a modified version of the - Combined Work produced by recombining or relinking the - Application with a modified version of the Linked Version. (If - you use option 4d0, the Installation Information must accompany - the Minimal Corresponding Source and Corresponding Application - Code. If you use option 4d1, you must provide the Installation - Information in the manner specified by section 6 of the GNU GPL - for conveying Corresponding Source.) - - 5. Combined Libraries. - - You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - - a) Accompany the combined library with a copy of the same work based - on the Library, uncombined with any other library facilities, - conveyed under the terms of this License. - - b) Give prominent notice with the combined library that part of it - is a work based on the Library, and explaining where to find the - accompanying uncombined form of the same work. - - 6. Revised Versions of the GNU Lesser General Public License. - - The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - - Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - - If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy's public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-3.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-3.0.yml deleted file mode 100644 index 23c6e85703a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/lgpl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-3.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.0.txt deleted file mode 100644 index f7f2ff185a2..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.0.txt +++ /dev/null @@ -1,360 +0,0 @@ - MOZILLA PUBLIC LICENSE - Version 1.0 - - ---------------- - -1. Definitions. - - 1.1. ``Contributor'' means each entity that creates or contributes to - the creation of Modifications. - - 1.2. ``Contributor Version'' means the combination of the Original - Code, prior Modifications used by a Contributor, and the Modifications - made by that particular Contributor. - - 1.3. ``Covered Code'' means the Original Code or Modifications or the - combination of the Original Code and Modifications, in each case - including portions thereof. - - 1.4. ``Electronic Distribution Mechanism'' means a mechanism generally - accepted in the software development community for the electronic - transfer of data. - - 1.5. ``Executable'' means Covered Code in any form other than Source - Code. - - 1.6. ``Initial Developer'' means the individual or entity identified as - the Initial Developer in the Source Code notice required by Exhibit A. - - 1.7. ``Larger Work'' means a work which combines Covered Code or - portions thereof with code not governed by the terms of this License. - - 1.8. ``License'' means this document. - - 1.9. ``Modifications'' means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, a - Modification is: - - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code or - previous Modifications. - - 1.10. ``Original Code'' means Source Code of computer software code - which is described in the Source Code notice required by Exhibit A as - Original Code, and which, at the time of its release under this License - is not already Covered Code governed by this License. - - 1.11. ``Source Code'' means the preferred form of the Covered Code for - making modifications to it, including all modules it contains, plus any - associated interface definition files, scripts used to control - compilation and installation of an Executable, or a list of source code - differential comparisons against either the Original Code or another - well known, available Covered Code of the Contributor's choice. The - Source Code can be in a compressed or archival form, provided the - appropriate decompression or de-archiving software is widely available - for no charge. - - 1.12. ``You'' means an individual or a legal entity exercising rights - under, and complying with all of the terms of, this License or a future - version of this License issued under Section 6.1. For legal entities, - ``You'' includes any entity which controls, is controlled by, or is - under common control with You. For purposes of this definition, - ``control'' means (a) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (b) ownership of fifty percent (50%) or more of the - outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - - (a) to use, reproduce, modify, display, perform, sublicense and - distribute the Original Code (or portions thereof) with or without - Modifications, or as part of a Larger Work; and - - (b) under patents now or hereafter owned or controlled by Initial - Developer, to make, have made, use and sell (``Utilize'') the - Original Code (or portions thereof), but solely to the extent that - any such patent is reasonably necessary to enable You to Utilize - the Original Code (or portions thereof) and not to any greater - extent that may be necessary to Utilize further Modifications or - combinations. - - 2.2. Contributor Grant. - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - - (a) to use, reproduce, modify, display, perform, sublicense and - distribute the Modifications created by such Contributor (or - portions thereof) either on an unmodified basis, with other - Modifications, as Covered Code or as part of a Larger Work; and - - (b) under patents now or hereafter owned or controlled by - Contributor, to Utilize the Contributor Version (or portions - thereof), but solely to the extent that any such patent is - reasonably necessary to enable You to Utilize the Contributor - Version (or portions thereof), and not to any greater extent that - may be necessary to Utilize further Modifications or combinations. - -3. Distribution Obligations. - - 3.1. Application of License. - The Modifications which You create or to which You contribute are - governed by the terms of this License, including without limitation - Section 2.2. The Source Code version of Covered Code may be distributed - only under the terms of this License or a future version of this - License released under Section 6.1, and You must include a copy of this - License with every copy of the Source Code You distribute. You may not - offer or impose any terms on any Source Code version that alters or - restricts the applicable version of this License or the recipients' - rights hereunder. However, You may include an additional document - offering the additional rights described in Section 3.5. - - 3.2. Availability of Source Code. - Any Modification which You create or to which You contribute must be - made available in Source Code form under the terms of this License - either on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve (12) - months after the date it initially became available, or at least six - (6) months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - - 3.3. Description of Modifications. - You must cause all Covered Code to which you contribute to contain a - file documenting the changes You made to create that Covered Code and - the date of any change. You must include a prominent statement that the - Modification is derived, directly or indirectly, from Original Code - provided by the Initial Developer and including the name of the Initial - Developer in (a) the Source Code, and (b) in any notice in an - Executable version or related documentation in which You describe the - origin or ownership of the Covered Code. - - 3.4. Intellectual Property Matters - - (a) Third Party Claims. - If You have knowledge that a party claims an intellectual property - right in particular functionality or code (or its utilization - under this License), you must include a text file with the source - code distribution titled ``LEGAL'' which describes the claim and - the party making the claim in sufficient detail that a recipient - will know whom to contact. If you obtain such knowledge after You - make Your Modification available as described in Section 3.2, You - shall promptly modify the LEGAL file in all copies You make - available thereafter and shall take other steps (such as notifying - appropriate mailing lists or newsgroups) reasonably calculated to - inform those who received the Covered Code that new knowledge has - been obtained. - - (b) Contributor APIs. - If Your Modification is an application programming interface and - You own or control patents which are reasonably necessary to - implement that API, you must also include this information in the - LEGAL file. - - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file of the Source - Code, and this License in any documentation for the Source Code, where - You describe recipients' rights relating to Covered Code. If You - created one or more Modification(s), You may add your name as a - Contributor to the notice described in Exhibit A. If it is not possible - to put such notice in a particular Source Code file due to its - structure, then you must include such notice in a location (such as a - relevant directory file) where a user would be likely to look for such - a notice. You may choose to offer, and to charge a fee for, warranty, - support, indemnity or liability obligations to one or more recipients - of Covered Code. However, You may do so only on Your own behalf, and - not on behalf of the Initial Developer or any Contributor. You must - make it absolutely clear than any such warranty, support, indemnity or - liability obligation is offered by You alone, and You hereby agree to - indemnify the Initial Developer and every Contributor for any liability - incurred by the Initial Developer or such Contributor as a result of - warranty, support, indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only if the - requirements of Section 3.1-3.5 have been met for that Covered Code, - and if You include a notice stating that the Source Code version of the - Covered Code is available under the terms of this License, including a - description of how and where You have fulfilled the obligations of - Section 3.2. The notice must be conspicuously included in any notice in - an Executable version, related documentation or collateral in which You - describe recipients' rights relating to the Covered Code. You may - distribute the Executable version of Covered Code under a license of - Your choice, which may contain terms different from this License, - provided that You are in compliance with the terms of this License and - that the license for the Executable version does not attempt to limit - or alter the recipient's rights in the Source Code version from the - rights set forth in this License. If You distribute the Executable - version under a different license You must make it absolutely clear - that any terms which differ from this License are offered by You alone, - not by the Initial Developer or any Contributor. You hereby agree to - indemnify the Initial Developer and every Contributor for any liability - incurred by the Initial Developer or such Contributor as a result of - any such terms You offer. - - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code with other code - not governed by the terms of this License and distribute the Larger - Work as a single product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Code due to statute - or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and - the code they affect. Such description must be included in the LEGAL - file described in Section 3.4 and must be included with all - distributions of the Source Code. Except to the extent prohibited by - statute or regulation, such description must be sufficiently detailed - for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A, and to related Covered Code. - -6. Versions of the License. - - 6.1. New Versions. - Netscape Communications Corporation (``Netscape'') may publish revised - and/or new versions of the License from time to time. Each version will - be given a distinguishing version number. - - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular version of the - License, You may always continue to use it under the terms of that - version. You may also choose to use such Covered Code under the terms - of any subsequent version of the License published by Netscape. No one - other than Netscape has the right to modify the terms applicable to - Covered Code created under this License. - - 6.3. Derivative Works. - If you create or use a modified version of this License (which you may - only do in order to apply it to code which is not already Covered Code - governed by this License), you must (a) rename Your license so that the - phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or - any confusingly similar phrase do not appear anywhere in your license - and (b) otherwise make it clear that your version of the license - contains terms which differ from the Mozilla Public License and - Netscape Public License. (Filling in the name of the Initial Developer, - Original Code or Contributor in the notice described in Exhibit A shall - not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF - DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE - IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE - COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure - such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by their - nature, must remain in effect beyond the termination of this License - shall survive. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, - OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER - PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES - OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF - GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND - ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE - BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY - RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW - PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE - EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT - EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a ``commercial item,'' as that term is defined in - 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer - software'' and ``commercial computer software documentation,'' as such - terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 - C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), - all U.S. Government End Users acquire Covered Code with only those - rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - California law provisions (except to the extent applicable law, if any, - provides otherwise), excluding its conflict-of-law provisions. With - respect to disputes in which at least one party is a citizen of, or an - entity chartered or registered to do business in, the United States of - America: (a) unless otherwise agreed in writing, all disputes relating - to this License (excepting any dispute relating to intellectual - property rights) shall be subject to final and binding arbitration, - with the losing party paying all costs of arbitration; (b) any - arbitration relating to this Agreement shall be held in Santa Clara - County, California, under the auspices of JAMS/EndDispute; and (c) any - litigation relating to this Agreement shall be subject to the - jurisdiction of the Federal Courts of the Northern District of - California, with venue lying in Santa Clara County, California, with - the losing party responsible for costs, including without limitation, - court costs and reasonable attorneys fees and expenses. The application - of the United Nations Convention on Contracts for the International - Sale of Goods is expressly excluded. Any law or regulation which - provides that the language of a contract shall be construed against the - drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. - - Except in cases where another Contributor has failed to comply with - Section 3.4, You are responsible for damages arising, directly or - indirectly, out of Your utilization of rights under this License, based - on the number of copies of Covered Code you made available, the - revenues you received from utilizing such rights, and other relevant - factors. You agree to work with affected parties to distribute - responsibility on an equitable basis. - -EXHIBIT A. - - ``The contents of this file are subject to the Mozilla Public License - Version 1.0 (the "License"); you may not use this file except in - compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/ - - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the - License for the specific language governing rights and limitations - under the License. - - The Original Code is ______________________________________. - - The Initial Developer of the Original Code is ________________________. - Portions created by ______________________ are Copyright (C) ______ - _______________________. All Rights Reserved. - - Contributor(s): ______________________________________.'' diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.0.yml deleted file mode 100644 index 41e548a44a1..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.1.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.1.txt deleted file mode 100644 index a8cd934df1a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.1.txt +++ /dev/null @@ -1,470 +0,0 @@ - MOZILLA PUBLIC LICENSE - Version 1.1 - - --------------- - -1. Definitions. - - 1.0.1. "Commercial Use" means distribution or otherwise making the - Covered Code available to a third party. - - 1.1. "Contributor" means each entity that creates or contributes to - the creation of Modifications. - - 1.2. "Contributor Version" means the combination of the Original - Code, prior Modifications used by a Contributor, and the Modifications - made by that particular Contributor. - - 1.3. "Covered Code" means the Original Code or Modifications or the - combination of the Original Code and Modifications, in each case - including portions thereof. - - 1.4. "Electronic Distribution Mechanism" means a mechanism generally - accepted in the software development community for the electronic - transfer of data. - - 1.5. "Executable" means Covered Code in any form other than Source - Code. - - 1.6. "Initial Developer" means the individual or entity identified - as the Initial Developer in the Source Code notice required by Exhibit - A. - - 1.7. "Larger Work" means a work which combines Covered Code or - portions thereof with code not governed by the terms of this License. - - 1.8. "License" means this document. - - 1.8.1. "Licensable" means having the right to grant, to the maximum - extent possible, whether at the time of the initial grant or - subsequently acquired, any and all of the rights conveyed herein. - - 1.9. "Modifications" means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, a - Modification is: - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code or - previous Modifications. - - 1.10. "Original Code" means Source Code of computer software code - which is described in the Source Code notice required by Exhibit A as - Original Code, and which, at the time of its release under this - License is not already Covered Code governed by this License. - - 1.10.1. "Patent Claims" means any patent claim(s), now owned or - hereafter acquired, including without limitation, method, process, - and apparatus claims, in any patent Licensable by grantor. - - 1.11. "Source Code" means the preferred form of the Covered Code for - making modifications to it, including all modules it contains, plus - any associated interface definition files, scripts used to control - compilation and installation of an Executable, or source code - differential comparisons against either the Original Code or another - well known, available Covered Code of the Contributor's choice. The - Source Code can be in a compressed or archival form, provided the - appropriate decompression or de-archiving software is widely available - for no charge. - - 1.12. "You" (or "Your") means an individual or a legal entity - exercising rights under, and complying with all of the terms of, this - License or a future version of this License issued under Section 6.1. - For legal entities, "You" includes any entity which controls, is - controlled by, or is under common control with You. For purposes of - this definition, "control" means (a) the power, direct or indirect, - to cause the direction or management of such entity, whether by - contract or otherwise, or (b) ownership of more than fifty percent - (50%) of the outstanding shares or beneficial ownership of such - entity. - -2. Source Code License. - - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - (a) under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer to use, reproduce, - modify, display, perform, sublicense and distribute the Original - Code (or portions thereof) with or without Modifications, and/or - as part of a Larger Work; and - - (b) under Patents Claims infringed by the making, using or - selling of Original Code, to make, have made, use, practice, - sell, and offer for sale, and/or otherwise dispose of the - Original Code (or portions thereof). - - (c) the licenses granted in this Section 2.1(a) and (b) are - effective on the date Initial Developer first distributes - Original Code under the terms of this License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is - granted: 1) for code that You delete from the Original Code; 2) - separate from the Original Code; or 3) for infringements caused - by: i) the modification of the Original Code or ii) the - combination of the Original Code with other software or devices. - - 2.2. Contributor Grant. - Subject to third party intellectual property claims, each Contributor - hereby grants You a world-wide, royalty-free, non-exclusive license - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Contributor, to use, reproduce, modify, - display, perform, sublicense and distribute the Modifications - created by such Contributor (or portions thereof) either on an - unmodified basis, with other Modifications, as Covered Code - and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using, or - selling of Modifications made by that Contributor either alone - and/or in combination with its Contributor Version (or portions - of such combination), to make, use, sell, offer for sale, have - made, and/or otherwise dispose of: 1) Modifications made by that - Contributor (or portions thereof); and 2) the combination of - Modifications made by that Contributor with its Contributor - Version (or portions of such combination). - - (c) the licenses granted in Sections 2.2(a) and 2.2(b) are - effective on the date Contributor first makes Commercial Use of - the Covered Code. - - (d) Notwithstanding Section 2.2(b) above, no patent license is - granted: 1) for any code that Contributor has deleted from the - Contributor Version; 2) separate from the Contributor Version; - 3) for infringements caused by: i) third party modifications of - Contributor Version or ii) the combination of Modifications made - by that Contributor with other software (except as part of the - Contributor Version) or other devices; or 4) under Patent Claims - infringed by Covered Code in the absence of Modifications made by - that Contributor. - -3. Distribution Obligations. - - 3.1. Application of License. - The Modifications which You create or to which You contribute are - governed by the terms of this License, including without limitation - Section 2.2. The Source Code version of Covered Code may be - distributed only under the terms of this License or a future version - of this License released under Section 6.1, and You must include a - copy of this License with every copy of the Source Code You - distribute. You may not offer or impose any terms on any Source Code - version that alters or restricts the applicable version of this - License or the recipients' rights hereunder. However, You may include - an additional document offering the additional rights described in - Section 3.5. - - 3.2. Availability of Source Code. - Any Modification which You create or to which You contribute must be - made available in Source Code form under the terms of this License - either on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve (12) - months after the date it initially became available, or at least six - (6) months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - - 3.3. Description of Modifications. - You must cause all Covered Code to which You contribute to contain a - file documenting the changes You made to create that Covered Code and - the date of any change. You must include a prominent statement that - the Modification is derived, directly or indirectly, from Original - Code provided by the Initial Developer and including the name of the - Initial Developer in (a) the Source Code, and (b) in any notice in an - Executable version or related documentation in which You describe the - origin or ownership of the Covered Code. - - 3.4. Intellectual Property Matters - (a) Third Party Claims. - If Contributor has knowledge that a license under a third party's - intellectual property rights is required to exercise the rights - granted by such Contributor under Sections 2.1 or 2.2, - Contributor must include a text file with the Source Code - distribution titled "LEGAL" which describes the claim and the - party making the claim in sufficient detail that a recipient will - know whom to contact. If Contributor obtains such knowledge after - the Modification is made available as described in Section 3.2, - Contributor shall promptly modify the LEGAL file in all copies - Contributor makes available thereafter and shall take other steps - (such as notifying appropriate mailing lists or newsgroups) - reasonably calculated to inform those who received the Covered - Code that new knowledge has been obtained. - - (b) Contributor APIs. - If Contributor's Modifications include an application programming - interface and Contributor has knowledge of patent licenses which - are reasonably necessary to implement that API, Contributor must - also include this information in the LEGAL file. - - (c) Representations. - Contributor represents that, except as disclosed pursuant to - Section 3.4(a) above, Contributor believes that Contributor's - Modifications are Contributor's original creation(s) and/or - Contributor has sufficient rights to grant the rights conveyed by - this License. - - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file of the Source - Code. If it is not possible to put such notice in a particular Source - Code file due to its structure, then You must include such notice in a - location (such as a relevant directory) where a user would be likely - to look for such a notice. If You created one or more Modification(s) - You may add your name as a Contributor to the notice described in - Exhibit A. You must also duplicate this License in any documentation - for the Source Code where You describe recipients' rights or ownership - rights relating to Covered Code. You may choose to offer, and to - charge a fee for, warranty, support, indemnity or liability - obligations to one or more recipients of Covered Code. However, You - may do so only on Your own behalf, and not on behalf of the Initial - Developer or any Contributor. You must make it absolutely clear than - any such warranty, support, indemnity or liability obligation is - offered by You alone, and You hereby agree to indemnify the Initial - Developer and every Contributor for any liability incurred by the - Initial Developer or such Contributor as a result of warranty, - support, indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only if the - requirements of Section 3.1-3.5 have been met for that Covered Code, - and if You include a notice stating that the Source Code version of - the Covered Code is available under the terms of this License, - including a description of how and where You have fulfilled the - obligations of Section 3.2. The notice must be conspicuously included - in any notice in an Executable version, related documentation or - collateral in which You describe recipients' rights relating to the - Covered Code. You may distribute the Executable version of Covered - Code or ownership rights under a license of Your choice, which may - contain terms different from this License, provided that You are in - compliance with the terms of this License and that the license for the - Executable version does not attempt to limit or alter the recipient's - rights in the Source Code version from the rights set forth in this - License. If You distribute the Executable version under a different - license You must make it absolutely clear that any terms which differ - from this License are offered by You alone, not by the Initial - Developer or any Contributor. You hereby agree to indemnify the - Initial Developer and every Contributor for any liability incurred by - the Initial Developer or such Contributor as a result of any such - terms You offer. - - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code with other code - not governed by the terms of this License and distribute the Larger - Work as a single product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Code due to - statute, judicial order, or regulation then You must: (a) comply with - the terms of this License to the maximum extent possible; and (b) - describe the limitations and the code they affect. Such description - must be included in the LEGAL file described in Section 3.4 and must - be included with all distributions of the Source Code. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - - 6.1. New Versions. - Netscape Communications Corporation ("Netscape") may publish revised - and/or new versions of the License from time to time. Each version - will be given a distinguishing version number. - - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular version of the - License, You may always continue to use it under the terms of that - version. You may also choose to use such Covered Code under the terms - of any subsequent version of the License published by Netscape. No one - other than Netscape has the right to modify the terms applicable to - Covered Code created under this License. - - 6.3. Derivative Works. - If You create or use a modified version of this License (which you may - only do in order to apply it to code which is not already Covered Code - governed by this License), You must (a) rename Your license so that - the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", - "MPL", "NPL" or any confusingly similar phrase do not appear in your - license (except to note that your license differs from this License) - and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and - Netscape Public License. (Filling in the name of the Initial - Developer, Original Code or Contributor in the notice described in - Exhibit A shall not of themselves be deemed to be modifications of - this License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF - DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE - IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE - COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - 8.1. This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure - such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by their - nature, must remain in effect beyond the termination of this License - shall survive. - - 8.2. If You initiate litigation by asserting a patent infringement - claim (excluding declatory judgment actions) against Initial Developer - or a Contributor (the Initial Developer or Contributor against whom - You file such action is referred to as "Participant") alleging that: - - (a) such Participant's Contributor Version directly or indirectly - infringes any patent, then any and all rights granted by such - Participant to You under Sections 2.1 and/or 2.2 of this License - shall, upon 60 days notice from Participant terminate prospectively, - unless if within 60 days after receipt of notice You either: (i) - agree in writing to pay Participant a mutually agreeable reasonable - royalty for Your past and future use of Modifications made by such - Participant, or (ii) withdraw Your litigation claim with respect to - the Contributor Version against such Participant. If within 60 days - of notice, a reasonable royalty and payment arrangement are not - mutually agreed upon in writing by the parties or the litigation claim - is not withdrawn, the rights granted by Participant to You under - Sections 2.1 and/or 2.2 automatically terminate at the expiration of - the 60 day notice period specified above. - - (b) any software, hardware, or device, other than such Participant's - Contributor Version, directly or indirectly infringes any patent, then - any rights granted to You by such Participant under Sections 2.1(b) - and 2.2(b) are revoked effective as of the date You first made, used, - sold, distributed, or had made, Modifications made by that - Participant. - - 8.3. If You assert a patent infringement claim against Participant - alleging that such Participant's Contributor Version directly or - indirectly infringes any patent where such claim is resolved (such as - by license or settlement) prior to the initiation of patent - infringement litigation, then the reasonable value of the licenses - granted by such Participant under Sections 2.1 or 2.2 shall be taken - into account in determining the amount or value of any payment or - license. - - 8.4. In the event of termination under Sections 8.1 or 8.2 above, - all end user license agreements (excluding distributors and resellers) - which have been validly granted by You or any distributor hereunder - prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, - OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR - ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY - CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, - WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER - COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN - INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY - RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW - PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE - EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO - THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a "commercial item," as that term is defined in - 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer - software" and "commercial computer software documentation," as such - terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 - C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), - all U.S. Government End Users acquire Covered Code with only those - rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - California law provisions (except to the extent applicable law, if - any, provides otherwise), excluding its conflict-of-law provisions. - With respect to disputes in which at least one party is a citizen of, - or an entity chartered or registered to do business in the United - States of America, any litigation relating to this License shall be - subject to the jurisdiction of the Federal Courts of the Northern - District of California, with venue lying in Santa Clara County, - California, with the losing party responsible for costs, including - without limitation, court costs and reasonable attorneys' fees and - expenses. The application of the United Nations Convention on - Contracts for the International Sale of Goods is expressly excluded. - Any law or regulation which provides that the language of a contract - shall be construed against the drafter shall not apply to this - License. - -12. RESPONSIBILITY FOR CLAIMS. - - As between Initial Developer and the Contributors, each party is - responsible for claims and damages arising, directly or indirectly, - out of its utilization of rights under this License and You agree to - work with Initial Developer and Contributors to distribute such - responsibility on an equitable basis. Nothing herein is intended or - shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - - Initial Developer may designate portions of the Covered Code as - "Multiple-Licensed". "Multiple-Licensed" means that the Initial - Developer permits you to utilize portions of the Covered Code under - Your choice of the MPL or the alternative licenses, if any, specified - by the Initial Developer in the file described in Exhibit A. - -EXHIBIT A -Mozilla Public License. - - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in - compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/ - - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the - License for the specific language governing rights and limitations - under the License. - - The Original Code is ______________________________________. - - The Initial Developer of the Original Code is ________________________. - Portions created by ______________________ are Copyright (C) ______ - _______________________. All Rights Reserved. - - Contributor(s): ______________________________________. - - Alternatively, the contents of this file may be used under the terms - of the _____ license (the "[___] License"), in which case the - provisions of [______] License are applicable instead of those - above. If you wish to allow use of your version of this file only - under the terms of the [____] License and not to allow others to use - your version of this file under the MPL, indicate your decision by - deleting the provisions above and replace them with the notice and - other provisions required by the [___] License. If you do not delete - the provisions above, a recipient may use your version of this file - under either the MPL or the [___] License." - - [NOTE: The text of this Exhibit A may differ slightly from the text of - the notices in the Source Code files of the Original Code. You should - use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] - diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.1.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.1.yml deleted file mode 100644 index 0b434c76457..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-1.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-1.1 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-2.0.txt deleted file mode 100644 index 14e2f777f6c..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-2.0.txt +++ /dev/null @@ -1,373 +0,0 @@ -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-2.0.yml deleted file mode 100644 index d901f538f28..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/mpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/npl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/npl-1.0.txt deleted file mode 100644 index cfd75b61810..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/npl-1.0.txt +++ /dev/null @@ -1,421 +0,0 @@ - NETSCAPE PUBLIC LICENSE - Version 1.0 - - ---------------- - -1. Definitions. - - 1.1. ``Contributor'' means each entity that creates or contributes to - the creation of Modifications. - - 1.2. ``Contributor Version'' means the combination of the Original - Code, prior Modifications used by a Contributor, and the Modifications - made by that particular Contributor. - - 1.3. ``Covered Code'' means the Original Code or Modifications or the - combination of the Original Code and Modifications, in each case - including portions thereof. - - 1.4. ``Electronic Distribution Mechanism'' means a mechanism generally - accepted in the software development community for the electronic - transfer of data. - - 1.5. ``Executable'' means Covered Code in any form other than Source - Code. - - 1.6. ``Initial Developer'' means the individual or entity identified as - the Initial Developer in the Source Code notice required by Exhibit A. - - 1.7. ``Larger Work'' means a work which combines Covered Code or - portions thereof with code not governed by the terms of this License. - - 1.8. ``License'' means this document. - - 1.9. ``Modifications'' means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, a - Modification is: - - A. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code or - previous Modifications. - - 1.10. ``Original Code'' means Source Code of computer software code - which is described in the Source Code notice required by Exhibit A as - Original Code, and which, at the time of its release under this License - is not already Covered Code governed by this License. - - 1.11. ``Source Code'' means the preferred form of the Covered Code for - making modifications to it, including all modules it contains, plus any - associated interface definition files, scripts used to control - compilation and installation of an Executable, or a list of source code - differential comparisons against either the Original Code or another - well known, available Covered Code of the Contributor's choice. The - Source Code can be in a compressed or archival form, provided the - appropriate decompression or de-archiving software is widely available - for no charge. - - 1.12. ``You'' means an individual or a legal entity exercising rights - under, and complying with all of the terms of, this License or a future - version of this License issued under Section 6.1. For legal entities, - ``You'' includes any entity which controls, is controlled by, or is - under common control with You. For purposes of this definition, - ``control'' means (a) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (b) ownership of fifty percent (50%) or more of the - outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - - 2.1. The Initial Developer Grant. - The Initial Developer hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - - (a) to use, reproduce, modify, display, perform, sublicense and - distribute the Original Code (or portions thereof) with or without - Modifications, or as part of a Larger Work; and - - (b) under patents now or hereafter owned or controlled by Initial - Developer, to make, have made, use and sell (``Utilize'') the - Original Code (or portions thereof), but solely to the extent that - any such patent is reasonably necessary to enable You to Utilize - the Original Code (or portions thereof) and not to any greater - extent that may be necessary to Utilize further Modifications or - combinations. - - 2.2. Contributor Grant. - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - - (a) to use, reproduce, modify, display, perform, sublicense and - distribute the Modifications created by such Contributor (or - portions thereof) either on an unmodified basis, with other - Modifications, as Covered Code or as part of a Larger Work; and - - (b) under patents now or hereafter owned or controlled by - Contributor, to Utilize the Contributor Version (or portions - thereof), but solely to the extent that any such patent is - reasonably necessary to enable You to Utilize the Contributor - Version (or portions thereof), and not to any greater extent that - may be necessary to Utilize further Modifications or combinations. - -3. Distribution Obligations. - - 3.1. Application of License. - The Modifications which You create or to which You contribute are - governed by the terms of this License, including without limitation - Section 2.2. The Source Code version of Covered Code may be distributed - only under the terms of this License or a future version of this - License released under Section 6.1, and You must include a copy of this - License with every copy of the Source Code You distribute. You may not - offer or impose any terms on any Source Code version that alters or - restricts the applicable version of this License or the recipients' - rights hereunder. However, You may include an additional document - offering the additional rights described in Section 3.5. - - 3.2. Availability of Source Code. - Any Modification which You create or to which You contribute must be - made available in Source Code form under the terms of this License - either on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve (12) - months after the date it initially became available, or at least six - (6) months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - - 3.3. Description of Modifications. - You must cause all Covered Code to which you contribute to contain a - file documenting the changes You made to create that Covered Code and - the date of any change. You must include a prominent statement that the - Modification is derived, directly or indirectly, from Original Code - provided by the Initial Developer and including the name of the Initial - Developer in (a) the Source Code, and (b) in any notice in an - Executable version or related documentation in which You describe the - origin or ownership of the Covered Code. - - 3.4. Intellectual Property Matters - - (a) Third Party Claims. - If You have knowledge that a party claims an intellectual property - right in particular functionality or code (or its utilization - under this License), you must include a text file with the source - code distribution titled ``LEGAL'' which describes the claim and - the party making the claim in sufficient detail that a recipient - will know whom to contact. If you obtain such knowledge after You - make Your Modification available as described in Section 3.2, You - shall promptly modify the LEGAL file in all copies You make - available thereafter and shall take other steps (such as notifying - appropriate mailing lists or newsgroups) reasonably calculated to - inform those who received the Covered Code that new knowledge has - been obtained. - - (b) Contributor APIs. - If Your Modification is an application programming interface and - You own or control patents which are reasonably necessary to - implement that API, you must also include this information in the - LEGAL file. - - 3.5. Required Notices. - You must duplicate the notice in Exhibit A in each file of the Source - Code, and this License in any documentation for the Source Code, where - You describe recipients' rights relating to Covered Code. If You - created one or more Modification(s), You may add your name as a - Contributor to the notice described in Exhibit A. If it is not possible - to put such notice in a particular Source Code file due to its - structure, then you must include such notice in a location (such as a - relevant directory file) where a user would be likely to look for such - a notice. You may choose to offer, and to charge a fee for, warranty, - support, indemnity or liability obligations to one or more recipients - of Covered Code. However, You may do so only on Your own behalf, and - not on behalf of the Initial Developer or any Contributor. You must - make it absolutely clear than any such warranty, support, indemnity or - liability obligation is offered by You alone, and You hereby agree to - indemnify the Initial Developer and every Contributor for any liability - incurred by the Initial Developer or such Contributor as a result of - warranty, support, indemnity or liability terms You offer. - - 3.6. Distribution of Executable Versions. - You may distribute Covered Code in Executable form only if the - requirements of Section 3.1-3.5 have been met for that Covered Code, - and if You include a notice stating that the Source Code version of the - Covered Code is available under the terms of this License, including a - description of how and where You have fulfilled the obligations of - Section 3.2. The notice must be conspicuously included in any notice in - an Executable version, related documentation or collateral in which You - describe recipients' rights relating to the Covered Code. You may - distribute the Executable version of Covered Code under a license of - Your choice, which may contain terms different from this License, - provided that You are in compliance with the terms of this License and - that the license for the Executable version does not attempt to limit - or alter the recipient's rights in the Source Code version from the - rights set forth in this License. If You distribute the Executable - version under a different license You must make it absolutely clear - that any terms which differ from this License are offered by You alone, - not by the Initial Developer or any Contributor. You hereby agree to - indemnify the Initial Developer and every Contributor for any liability - incurred by the Initial Developer or such Contributor as a result of - any such terms You offer. - - 3.7. Larger Works. - You may create a Larger Work by combining Covered Code with other code - not governed by the terms of this License and distribute the Larger - Work as a single product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Code due to statute - or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and - the code they affect. Such description must be included in the LEGAL - file described in Section 3.4 and must be included with all - distributions of the Source Code. Except to the extent prohibited by - statute or regulation, such description must be sufficiently detailed - for a recipient of ordinary skill to be able to understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A, and to related Covered Code. - -6. Versions of the License. - - 6.1. New Versions. - Netscape Communications Corporation (``Netscape'') may publish revised - and/or new versions of the License from time to time. Each version will - be given a distinguishing version number. - - 6.2. Effect of New Versions. - Once Covered Code has been published under a particular version of the - License, You may always continue to use it under the terms of that - version. You may also choose to use such Covered Code under the terms - of any subsequent version of the License published by Netscape. No one - other than Netscape has the right to modify the terms applicable to - Covered Code created under this License. - - 6.3. Derivative Works. - If you create or use a modified version of this License (which you may - only do in order to apply it to code which is not already Covered Code - governed by this License), you must (a) rename Your license so that the - phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or - any confusingly similar phrase do not appear anywhere in your license - and (b) otherwise make it clear that your version of the license - contains terms which differ from the Mozilla Public License and - Netscape Public License. (Filling in the name of the Initial Developer, - Original Code or Contributor in the notice described in Exhibit A shall - not of themselves be deemed to be modifications of this License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF - DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE - IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE - COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure - such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by their - nature, must remain in effect beyond the termination of this License - shall survive. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, - OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER - PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES - OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF - GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND - ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE - BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY - RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW - PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE - EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT - EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a ``commercial item,'' as that term is defined in - 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer - software'' and ``commercial computer software documentation,'' as such - terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 - C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), - all U.S. Government End Users acquire Covered Code with only those - rights set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - California law provisions (except to the extent applicable law, if any, - provides otherwise), excluding its conflict-of-law provisions. With - respect to disputes in which at least one party is a citizen of, or an - entity chartered or registered to do business in, the United States of - America: (a) unless otherwise agreed in writing, all disputes relating - to this License (excepting any dispute relating to intellectual - property rights) shall be subject to final and binding arbitration, - with the losing party paying all costs of arbitration; (b) any - arbitration relating to this Agreement shall be held in Santa Clara - County, California, under the auspices of JAMS/EndDispute; and (c) any - litigation relating to this Agreement shall be subject to the - jurisdiction of the Federal Courts of the Northern District of - California, with venue lying in Santa Clara County, California, with - the losing party responsible for costs, including without limitation, - court costs and reasonable attorneys fees and expenses. The application - of the United Nations Convention on Contracts for the International - Sale of Goods is expressly excluded. Any law or regulation which - provides that the language of a contract shall be construed against the - drafter shall not apply to this License. - -12. RESPONSIBILITY FOR CLAIMS. - - Except in cases where another Contributor has failed to comply with - Section 3.4, You are responsible for damages arising, directly or - indirectly, out of Your utilization of rights under this License, based - on the number of copies of Covered Code you made available, the - revenues you received from utilizing such rights, and other relevant - factors. You agree to work with affected parties to distribute - responsibility on an equitable basis. - -AMENDMENTS -Additional Terms applicable to the Netscape Public License. - - I. Effect. - These additional terms described in this Netscape Public License -- - Amendments shall apply to the Mozilla Communicator client code and to - all Covered Code under this License. - - II. ``Netscape's Branded Code'' means Covered Code that Netscape - distributes and/or permits others to distribute under one or more - trademark(s) which are controlled by Netscape but which are not - licensed for use under this License. - - III. Netscape and logo. - This License does not grant any rights to use the trademark - ``Netscape'', the ``Netscape N and horizon'' logo or the Netscape - lighthouse logo, even if such marks are included in the Original Code. - - IV. Inability to Comply Due to Contractual Obligation. - Prior to licensing the Original Code under this License, Netscape has - licensed third party code for use in Netscape's Branded Code. To the - extent that Netscape is limited contractually from making such third - party code available under this License, Netscape may choose to - reintegrate such code into Covered Code without being required to - distribute such code in Source Code form, even if such code would - otherwise be considered ``Modifications'' under this License. - - V. Use of Modifications and Covered Code by Initial Developer. - - V.1. In General. - The obligations of Section 3 apply to Netscape, except to the - extent specified in this Amendment, Section V.2 and V.3. - - V.2. Other Products. - Netscape may include Covered Code in products other than the - Netscape's Branded Code which are released by Netscape during the - two (2) years following the release date of the Original Code, - without such additional products becoming subject to the terms of - this License, and may license such additional products on - different terms from those contained in this License. - - V.3. Alternative Licensing. - Netscape may license the Source Code of Netscape's Branded Code, - including Modifications incorporated therein, without such - additional products becoming subject to the terms of this License, - and may license such additional products on different terms from - those contained in this License. - - VI. Arbitration and Litigation. - Notwithstanding the limitations of Section 11 above, the provisions - regarding arbitration and litigation in Section 11(a), (b) and (c) of - the License shall apply to all disputes relating to this License. - -EXHIBIT A. - - ``The contents of this file are subject to the Netscape Public License - Version 1.0 (the "License"); you may not use this file except in - compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/NPL/ - - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the - License for the specific language governing rights and limitations - under the License. - - The Original Code is Mozilla Communicator client code, released March - 31, 1998. - - The Initial Developer of the Original Code is Netscape Communications - Corporation. Portions created by Netscape are Copyright (C) 1998 - Netscape Communications Corporation. All Rights Reserved. - - Contributor(s): ______________________________________.'' - - [NOTE: The text of this Exhibit A may differ slightly from the text of - the notices in the Source Code files of the Original Code. This is due - to time constraints encountered in simultaneously finalizing the - License and in preparing the Original Code for release. You should use - the text of this Exhibit A rather than the text found in the Original - Code Source Code for Your Modifications.] diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/npl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/npl-1.0.yml deleted file mode 100644 index fc595866ba8..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/npl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - npl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ruby.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ruby.txt deleted file mode 100644 index a2cee6e5d2a..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ruby.txt +++ /dev/null @@ -1,35 +0,0 @@ -Ruby License - -Ruby is copyrighted free software by Yukihiro Matsumoto . - -You can redistribute it and/or modify it under either the terms of the GPL (see COPYING.txt file), or the conditions below: - -1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. - -2. You may modify your copy of the software in any way, provided that you do at least ONE of the following: - -a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or by allowing the author to include your modifications in the software. - -b) use the modified software only within your corporation or organization. - -c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided. - -d) make other distribution arrangements with the author. - -3. You may distribute the software in object code or executable form, provided that you do at least ONE of the following: - -a) distribute the executables and library files of the software, together with instructions (in the manual page or equivalent) on where to get the original distribution. - -b) accompany the distribution with the machine-readable source of the software. - -c) give non-standard executables non-standard names, with instructions on where to get the original software distribution. - -d) make other distribution arrangements with the author. - -4. You may modify and include the part of the software into any other software (possibly commercial). But some files in the distribution are not written by the author, so that they are not under this terms. - -They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some files under the ./missing directory. See each file for the copying condition. - -5. The scripts and library files supplied as input to or produced as output from the software do not automatically fall under the copyright of the software, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this software. - -6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ruby.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ruby.yml deleted file mode 100644 index c82b8d1cf0b..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/ruby.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - ruby OR gpl-2.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/unlicense.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/unlicense.txt deleted file mode 100644 index e2fa2e17f51..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/unlicense.txt +++ /dev/null @@ -1,26 +0,0 @@ -The Unlicense - -This is free and unencumbered software released into the public domain. - -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. - -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -For more information, please refer to diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/unlicense.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/unlicense.yml deleted file mode 100644 index f87ab3a0cf7..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/unlicense.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - unlicense diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfnmfpl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfnmfpl-1.0.txt deleted file mode 100644 index c69c388d03b..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfnmfpl-1.0.txt +++ /dev/null @@ -1,12 +0,0 @@ -DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE -Version 1, October 2013 - -Copyright © 2013 Ben McGinnes - -Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. - -DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. You just DO WHAT THE FUCK YOU WANT TO. - -1. Do not hold the author(s), creator(s), developer(s) or distributor(s) liable for anything that happens or goes wrong with your use of the work. \ No newline at end of file diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfnmfpl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfnmfpl-1.0.yml deleted file mode 100644 index 19672a5c4b7..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfnmfpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - wtfnmfpl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-1.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-1.0.txt deleted file mode 100644 index c971e27c80e..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-1.0.txt +++ /dev/null @@ -1,12 +0,0 @@ -do What The Fuck you want to Public License - -Version 1.0, March 2000 -Copyright (C) 2000 Banlu Kemiyatorn (]d). -136 Nives 7 Jangwattana 14 Laksi Bangkok -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -Ok, the purpose of this license is simple -and you just - -DO WHAT THE FUCK YOU WANT TO. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-1.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-1.0.yml deleted file mode 100644 index d2d30d6848f..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - wtfpl-1.0 diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-2.0.txt b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-2.0.txt deleted file mode 100644 index 8b1a9d8189b..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-2.0.txt +++ /dev/null @@ -1,13 +0,0 @@ - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - -Copyright (C) 2004 Sam Hocevar - -Everyone is permitted to copy and distribute verbatim or modified -copies of this license document, and changing it is allowed as long -as the name is changed. - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-2.0.yml b/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-2.0.yml deleted file mode 100644 index 493c0ba5b2b..00000000000 --- a/tests/licensedcode/data/retro_licenses/OS-Licenses-master/wtfpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - wtfpl-2.0 diff --git a/tests/licensedcode/data/slic-tests/identification/2/LICENSE.txt b/tests/licensedcode/data/slic-tests/identification/2/LICENSE.txt deleted file mode 100644 index e454a52586f..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/2/LICENSE.txt +++ /dev/null @@ -1,178 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) 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. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - diff --git a/tests/licensedcode/data/slic-tests/identification/2/LICENSE.yml b/tests/licensedcode/data/slic-tests/identification/2/LICENSE.yml deleted file mode 100644 index a9e02b1a85a..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/2/LICENSE.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - apache-2.0 diff --git a/tests/licensedcode/data/slic-tests/identification/3/NOTICE.txt b/tests/licensedcode/data/slic-tests/identification/3/NOTICE.txt deleted file mode 100644 index d3862689119..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/3/NOTICE.txt +++ /dev/null @@ -1,21 +0,0 @@ -This library (libselinux) is public domain software, i.e. not copyrighted. - -Warranty Exclusion ------------------- -You agree that this software is a -non-commercially developed program that may contain "bugs" (as that -term is used in the industry) and that it may not function as intended. -The software is licensed "as is". NSA makes no, and hereby expressly -disclaims all, warranties, express, implied, statutory, or otherwise -with respect to the software, including noninfringement and the implied -warranties of merchantability and fitness for a particular purpose. - -Limitation of Liability ------------------------ -In no event will NSA be liable for any damages, including loss of data, -lost profits, cost of cover, or other special, incidental, -consequential, direct or indirect damages arising from the software or -the use thereof, however caused and on any theory of liability. This -limitation will apply even if NSA has been advised of the possibility -of such damage. You acknowledge that this is a reasonable allocation of -risk. diff --git a/tests/licensedcode/data/slic-tests/identification/3/NOTICE.yml b/tests/licensedcode/data/slic-tests/identification/3/NOTICE.yml deleted file mode 100644 index 1b9705a1eaf..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/3/NOTICE.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - libselinux-pd diff --git a/tests/licensedcode/data/slic-tests/identification/4/NOTICE.txt b/tests/licensedcode/data/slic-tests/identification/4/NOTICE.txt deleted file mode 100755 index 0d347ab800d..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/4/NOTICE.txt +++ /dev/null @@ -1,224 +0,0 @@ - - Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE -PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF -THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -*1. DEFINITIONS* - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and -documentation distributed under this Agreement, and - -b) in the case of each subsequent Contributor: - -i) changes to the Program, and - -ii) additions to the Program; - -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. - -"Contributor" means any person or entity that distributes the Program. - -"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. - -"Program" means the Contributions distributed in accordance with this -Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, -including all Contributors. - -*2. GRANT OF RIGHTS* - -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. - -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. - -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. - -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. - -*3. REQUIREMENTS* - -A Contributor may choose to distribute the Program in object code form -under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -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; - -ii) effectively excludes on behalf of all Contributors all liability for -damages, including direct, indirect, special, incidental and -consequential damages, such as lost profits; - -iii) states that any provisions which differ from this Agreement are -offered by that Contributor alone and not by any other party; and - -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. - -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and - -b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained -within the Program. - -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. - -*4. COMMERCIAL DISTRIBUTION* - -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. - -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. - -*5. NO WARRANTY* - -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. - -*6. DISCLAIMER OF LIABILITY* - -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. - -*7. GENERAL* - -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. - -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. - -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. - -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. The Eclipse Foundation is the -initial Agreement Steward. The Eclipse Foundation 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. - -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. - diff --git a/tests/licensedcode/data/slic-tests/identification/4/NOTICE.yml b/tests/licensedcode/data/slic-tests/identification/4/NOTICE.yml deleted file mode 100644 index a18f6b5ec97..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/4/NOTICE.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - epl-1.0 diff --git a/tests/licensedcode/data/slic-tests/identification/5/LICENSE.txt b/tests/licensedcode/data/slic-tests/identification/5/LICENSE.txt deleted file mode 100644 index 14e2f777f6c..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/5/LICENSE.txt +++ /dev/null @@ -1,373 +0,0 @@ -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. diff --git a/tests/licensedcode/data/slic-tests/identification/5/LICENSE.yml b/tests/licensedcode/data/slic-tests/identification/5/LICENSE.yml deleted file mode 100644 index afdd345305e..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/5/LICENSE.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - mpl-2.0 diff --git a/tests/licensedcode/data/slic-tests/identification/COPYING.LIB b/tests/licensedcode/data/slic-tests/identification/COPYING.LIB deleted file mode 100644 index ae23fcfda2d..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/COPYING.LIB +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/tests/licensedcode/data/slic-tests/identification/COPYING.yml b/tests/licensedcode/data/slic-tests/identification/COPYING.yml deleted file mode 100644 index 830b0c374c9..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/COPYING.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/slic-tests/identification/LICENSE-LGPL-2.1.txt b/tests/licensedcode/data/slic-tests/identification/LICENSE-LGPL-2.1.txt deleted file mode 100644 index b2787a69a03..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/LICENSE-LGPL-2.1.txt +++ /dev/null @@ -1,502 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/tests/licensedcode/data/slic-tests/identification/LICENSE-LGPL-2.1.yml b/tests/licensedcode/data/slic-tests/identification/LICENSE-LGPL-2.1.yml deleted file mode 100644 index 830b0c374c9..00000000000 --- a/tests/licensedcode/data/slic-tests/identification/LICENSE-LGPL-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressions: - - lgpl-2.1 diff --git a/tests/licensedcode/data/slic-tests/identification/index.yml b/tests/licensedcode/data/slic-tests/identification/index.yml index 83b491c7917..0e9269b40e6 100644 --- a/tests/licensedcode/data/slic-tests/identification/index.yml +++ b/tests/licensedcode/data/slic-tests/identification/index.yml @@ -1,2 +1,4 @@ license_expressions: - gfdl-1.2-plus + - unknown + diff --git a/tests/licensedcode/data/spdx/lines/complex-short.html.json b/tests/licensedcode/data/spdx/lines/complex-short.html.json index cc122085863..752874e99be 100644 --- a/tests/licensedcode/data/spdx/lines/complex-short.html.json +++ b/tests/licensedcode/data/spdx/lines/complex-short.html.json @@ -1,12 +1,12 @@ [ [ "SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception", - 192, - 218 + 193, + 219 ], [ "SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception", - 523, - 549 + 524, + 550 ] ] \ No newline at end of file diff --git a/tests/licensedcode/data/spdx/lines/complex.html.json b/tests/licensedcode/data/spdx/lines/complex.html.json index 7176b6525b5..5e8e818fd1b 100644 --- a/tests/licensedcode/data/spdx/lines/complex.html.json +++ b/tests/licensedcode/data/spdx/lines/complex.html.json @@ -1,7 +1,7 @@ [ [ "SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception", - 237, - 263 + 238, + 264 ] ] \ No newline at end of file diff --git a/tests/licensedcode/test_detect.py b/tests/licensedcode/test_detect.py index f36992a5fcf..d77a492378a 100644 --- a/tests/licensedcode/test_detect.py +++ b/tests/licensedcode/test_detect.py @@ -1037,8 +1037,8 @@ def test_match_has_correct_line_positions_in_automake_perl_file(self): expected = [ # detected, match.lines(), match.qspan, (u'gpl-2.0-plus', (12, 25), Span(48, 159)), - (u'fsf-mit', (231, 238), Span(981, 1045)), - (u'free-unknown', (306, 307), Span(1342, 1365)) + (u'fsf-mit', (231, 238), Span(982, 1046)), + (u'free-unknown', (306, 307), Span(1344, 1367)) ] self.check_position('positions/automake.pl', expected) diff --git a/tests/licensedcode/test_models.py b/tests/licensedcode/test_models.py index 8af8dafa872..d709cab487c 100644 --- a/tests/licensedcode/test_models.py +++ b/tests/licensedcode/test_models.py @@ -111,12 +111,50 @@ def test_build_rules_from_licenses(self): expected = self.get_test_loc('models/license_rules.expected.json') check_json(expected, results) - def test_validate_licenses(self): - errors, warnings, infos = models.License.validate(cache.get_licenses_db()) + def test_validate_license_library(self): + errors, warnings, infos = models.License.validate( + cache.get_licenses_db(), verbose=True) assert {} == errors assert {} == warnings assert infos + def test_validate_license_library_can_return_errors(self): + test_dir = self.get_test_loc('models/validate') + lics = models.load_licenses(test_dir) + errors, warnings, infos = models.License.validate( + lics, no_dupe_urls=True, verbose=True) + expected_errors = { + 'GLOBAL': [ + 'Duplicate texts in multiple licenses:apache-2.0: TEXT, bsd-ack-carrot2: TEXT', + 'Duplicate short name:GPL 1.0 in licenses:gpl-1.0-plus, gpl-1.0', + 'Duplicate name:GNU General Public License 1.0 in licenses:gpl-1.0-plus, gpl-1.0'], + 'bsd-ack-carrot2': [ + 'No short name', + 'No name', + 'No category', + 'No owner'], + 'gpl-1.0': ['Unknown license category: GNU Copyleft'], + 'w3c-docs-19990405': ['Unknown license category: Permissive Restricted'] + } + + assert expected_errors == errors + expected_warnings = { + 'gpl-1.0': [ + 'Some empty text_urls values', + 'Some empty other_urls values', + 'Homepage URL also in text_urls', + 'Homepage URL also in other_urls', + 'Homepage URL same as faq_url', + 'Homepage URL same as osi_url', + 'osi_url same as faq_url', + 'Some duplicated URLs'] + } + + assert expected_warnings == warnings + + expected_infos = {'w3c-docs-19990405': [u'No license text']} + assert expected_infos == infos + def test_load_licenses_fails_if_directory_contains_orphaned_files(self): test_dir = self.get_test_loc('models/orphaned_licenses') try: @@ -196,7 +234,9 @@ def test_spdxrule_with_invalid_expression(self): length=12, ) except Exception as e: - assert 'Unable to parse License rule expression: ' in str(e) + ex = str(e) + assert 'Unable to parse License rule expression: ' in ex + assert 'ExpressionError: AND requires two or more licenses as in: MIT AND BSD' in ex def test_template_rule_is_loaded_correctly(self): test_dir = self.get_test_loc('models/rule_template') diff --git a/tests/packagedcode/data/rubygems/gemspec/cat.gemspec.expected2.json b/tests/packagedcode/data/rubygems/gemspec/cat.gemspec.expected2.json new file mode 100644 index 00000000000..1f61f00ad64 --- /dev/null +++ b/tests/packagedcode/data/rubygems/gemspec/cat.gemspec.expected2.json @@ -0,0 +1,35 @@ +{ + "platform": "ruby", + "name": "cat_", + "version": "12", + "homepage": "https://github.com/elct9620/.cat", + "summary": "The loading cat generator.", + "description": "The loading cat generator.", + "licenses": null, + "email": [ + "elct9620@frost.tw" + ], + "authors": [ + "\u84bc\u6642\u5f26\u4e5f" + ], + "date": "2019-01-07 00:00:00 UTC", + "requirements": null, + "dependencies": [ + "rack (>= 0)", + "sassc (>= 0)", + "slim (>= 0)", + "bundler (~> 1.13, development)", + "rake (~> 10.0, development)", + "rspec (~> 3.0, development)" + ], + "files": [], + "test_files": null, + "extra_rdoc_files": null, + "rubygems_version": "2.5.2.1", + "required_ruby_version": ">= 0", + "rubyforge_project": null, + "loaded_from": "rubygems/cat.gemspec", + "original_platform": null, + "new_platform": "ruby", + "specification_version": 4 +} \ No newline at end of file diff --git a/tests/summarycode/data/classify/legal/Legal_Notice.xml b/tests/summarycode/data/classify/legal/Legal_Notice.xml new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/summarycode/data/full_summary/summary.expected.json b/tests/summarycode/data/full_summary/summary.expected.json index ead8d5dc916..e762f776c64 100644 --- a/tests/summarycode/data/full_summary/summary.expected.json +++ b/tests/summarycode/data/full_summary/summary.expected.json @@ -6869,10 +6869,10 @@ "category": "Copyleft Limited", "is_exception": true, "owner": "Dmitriy Anisimkov", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ada-linking-exception", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 6, "end_line": 25, @@ -7601,10 +7601,10 @@ "category": "Permissive", "is_exception": false, "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 9, "end_line": 15, diff --git a/tests/summarycode/data/full_summary/summary_by_facet.expected.json b/tests/summarycode/data/full_summary/summary_by_facet.expected.json index 2f31f504287..42c4f210c39 100644 --- a/tests/summarycode/data/full_summary/summary_by_facet.expected.json +++ b/tests/summarycode/data/full_summary/summary_by_facet.expected.json @@ -1533,10 +1533,10 @@ "category": "Copyleft Limited", "is_exception": true, "owner": "Dmitriy Anisimkov", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ada-linking-exception", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 6, "end_line": 25, @@ -2283,10 +2283,10 @@ "category": "Permissive", "is_exception": false, "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 9, "end_line": 15, diff --git a/tests/summarycode/data/full_summary/summary_details.expected.json b/tests/summarycode/data/full_summary/summary_details.expected.json index ec86259d53b..f3c6bbbb5ee 100644 --- a/tests/summarycode/data/full_summary/summary_details.expected.json +++ b/tests/summarycode/data/full_summary/summary_details.expected.json @@ -4970,10 +4970,10 @@ "category": "Copyleft Limited", "is_exception": true, "owner": "Dmitriy Anisimkov", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ada-linking-exception", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 6, "end_line": 25, @@ -6126,10 +6126,10 @@ "category": "Permissive", "is_exception": false, "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 9, "end_line": 15, diff --git a/tests/summarycode/data/full_summary/summary_key_files-details.expected.json-lines b/tests/summarycode/data/full_summary/summary_key_files-details.expected.json-lines index 234ffe2e857..d285e4c068d 100644 --- a/tests/summarycode/data/full_summary/summary_key_files-details.expected.json-lines +++ b/tests/summarycode/data/full_summary/summary_key_files-details.expected.json-lines @@ -1858,10 +1858,10 @@ "category": "Copyleft Limited", "is_exception": true, "owner": "Dmitriy Anisimkov", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ada-linking-exception", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 6, "end_line": 25, @@ -2457,10 +2457,10 @@ "category": "Permissive", "is_exception": false, "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 9, "end_line": 15, diff --git a/tests/summarycode/data/full_summary/summary_key_files.expected.json b/tests/summarycode/data/full_summary/summary_key_files.expected.json index e7c1a87cb4a..354f267e057 100644 --- a/tests/summarycode/data/full_summary/summary_key_files.expected.json +++ b/tests/summarycode/data/full_summary/summary_key_files.expected.json @@ -1301,10 +1301,10 @@ "category": "Copyleft Limited", "is_exception": true, "owner": "Dmitriy Anisimkov", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ada-linking-exception", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 6, "end_line": 25, @@ -2085,10 +2085,10 @@ "category": "Permissive", "is_exception": false, "owner": "CMR - Christian Michelsen Research AS", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:cmr-no", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 9, "end_line": 15, diff --git a/tests/summarycode/data/score/consistent_licenses_not_spdx-expected.json b/tests/summarycode/data/score/consistent_licenses_not_spdx-expected.json index 011b3506aaa..41ca72447f1 100644 --- a/tests/summarycode/data/score/consistent_licenses_not_spdx-expected.json +++ b/tests/summarycode/data/score/consistent_licenses_not_spdx-expected.json @@ -91,7 +91,7 @@ "homepage_url": "http://www.xfig.org", "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit-xfig", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 17, "end_line": 24, @@ -220,7 +220,7 @@ "homepage_url": "http://www.xfig.org", "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:mit-xfig", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 1, "end_line": 8, diff --git a/tests/summarycode/data/score/spdx_licenses_not-expected.json b/tests/summarycode/data/score/spdx_licenses_not-expected.json index 40a2be96abc..08398b6dac5 100644 --- a/tests/summarycode/data/score/spdx_licenses_not-expected.json +++ b/tests/summarycode/data/score/spdx_licenses_not-expected.json @@ -280,10 +280,10 @@ "category": "Permissive", "is_exception": false, "owner": "nexB", - "homepage_url": "", + "homepage_url": null, "text_url": "", "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:other-permissive", - "spdx_license_key": "", + "spdx_license_key": null, "spdx_url": "", "start_line": 1, "end_line": 1,