diff --git a/.gitignore b/.gitignore index 7064b8d8..da23f500 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ /include /Include /local +/man/ # Installer logs pip-log.txt diff --git a/configure b/configure index d1dcb9c3..842cf158 100755 --- a/configure +++ b/configure @@ -6,9 +6,7 @@ # change these variables to customize this script locally ################################ # you can define one or more thirdparty dirs, each prefixed with TPP_DIR -export TPP_DIR_BASE="thirdparty/base" -export TPP_DIR_PROD="thirdparty/prod" -export TPP_DIR_DEV="thirdparty/dev" +export TPP_DIR="thirdparty" # default configurations CONF_DEFAULT="etc/conf" @@ -16,18 +14,14 @@ CONF_DEFAULT="etc/conf" CFG_CMD_LINE_ARGS="$@" -if [[ "$1" == "--init" ]]; then - CFG_CMD_LINE_ARGS=$CONF_INIT -fi - if [[ "$1" == "" ]]; then - # default conf if not argument is provided + # default for dev conf if not argument is provided CFG_CMD_LINE_ARGS=$CONF_DEFAULT fi CONFIGURE_ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -python $CONFIGURE_ROOT_DIR/etc/configure.py $CFG_CMD_LINE_ARGS +python "$CONFIGURE_ROOT_DIR/etc/configure.py" $CFG_CMD_LINE_ARGS if [ -f "$CONFIGURE_ROOT_DIR/bin/activate" ]; then source $CONFIGURE_ROOT_DIR/bin/activate fi diff --git a/configure.bat b/configure.bat index bce60e7e..d1a9dc55 100644 --- a/configure.bat +++ b/configure.bat @@ -1,14 +1,12 @@ @echo OFF -@rem Copyright (c) 2015 nexB Inc. http://www.nexb.com/ - All rights reserved. +@rem Copyright (c) 2018 nexB Inc. http://www.nexb.com/ - All rights reserved. @rem ################################ @rem # change these variables to customize this script locally @rem ################################ @rem # you can define one or more thirdparty dirs, each prefixed with TPP_DIR -set TPP_DIR_BASE=thirdparty/base -set TPP_DIR_PROD=thirdparty/prod -set TPP_DIR_DEV=thirdparty/dev +set TPP_DIR=thirdparty @rem # default configurations @@ -16,6 +14,11 @@ set CONF_DEFAULT="etc/conf" @rem ################################# set ABOUT_ROOT_DIR=%~dp0 +@rem !!!!!!!!!!! ATTENTION !!!!! +@rem there is a space at the end of the set SCANCODE_CLI_ARGS= line ... +@rem NEVER remove this! +@rem otherwise, this script and scancode do not work. + set ABOUT_CLI_ARGS= @rem Collect/Slurp all command line arguments in a variable :collectarg @@ -44,17 +47,17 @@ if not exist "c:\python27\python.exe" ( echo Do NOT install Python v3 or any 64 bits edition. echo Instead download Python from this url and see the README.rst file for more details: echo( - echo https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi + echo https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi echo( exit /b 1 ) -call c:\python27\python.exe %ABOUT_ROOT_DIR%etc\configure.py %ABOUT_CLI_ARGS% +call c:\python27\python.exe "%ABOUT_ROOT_DIR%etc\configure.py" %ABOUT_CLI_ARGS% if %errorlevel% neq 0 ( exit /b %errorlevel% ) -if exist %SCANCODE_ROOT_DIR%bin\activate ( - %SCANCODE_ROOT_DIR%bin\activate +if exist "%SCANCODE_ROOT_DIR%bin\activate" ( + "%SCANCODE_ROOT_DIR%bin\activate" ) goto EOS diff --git a/etc/conf/base.txt b/etc/conf/base.txt index 1ed502f6..433bfed8 100644 --- a/etc/conf/base.txt +++ b/etc/conf/base.txt @@ -6,8 +6,8 @@ pip wincertstore # used for templating -jinja2==2.9.6 -MarkupSafe==1.0.0 +jinja2>=2.9.6 +MarkupSafe>=1.0.0 click==6.7 diff --git a/etc/configure.py b/etc/configure.py index 2a221197..253f7e30 100644 --- a/etc/configure.py +++ b/etc/configure.py @@ -1,9 +1,9 @@ #!/usr/bin/python -# Copyright (c) 2015 nexB Inc. http://www.nexb.com/ - All rights reserved. +# Copyright (c) 2018 nexB Inc. http://www.nexb.com/ - All rights reserved. """ -This script a configuration helper to select pip requirement files to install +This script is a configuration helper to select pip requirement files to install and python and shell configuration scripts to execute based on provided config directories paths arguments and the operating system platform. To use, create a configuration directory tree that contains any of these: @@ -21,8 +21,9 @@ - posix.sh, linux.sh, mac.sh are os-specific scripts to execute. The config directory structure contains one or more directories paths. This -way you can have a main configuration and additional sub-configurations of a -product such as for prod, test, ci, dev, or anything else. +way you can have a main configuration (that is always used) and additional +sub-configurations of a product such as for prod, test, ci, dev, or anything +else. All scripts and requirements are optional and only used if presents. Scripts are executed in sequence, one after the other after all requirements are @@ -67,15 +68,15 @@ # platform-specific file base names sys_platform = str(sys.platform).lower() on_win = False -if 'linux' in sys_platform: +if sys_platform.startswith('linux'): platform_names = ('posix', 'linux',) -elif'win32' in sys_platform: +elif 'win32' in sys_platform: platform_names = ('win',) on_win = True elif 'darwin' in sys_platform: platform_names = ('posix', 'mac',) else: - raise Exception('Unsupported OS/platform') + raise Exception('Unsupported OS/platform %r' % sys_platform) platform_names = tuple() @@ -157,7 +158,7 @@ def build_pip_dirs_args(paths, root_dir, option='--extra-search-dir='): if not os.path.isabs(path): path = os.path.join(root_dir, path) if os.path.exists(path): - yield option + path + yield option + '"' + path + '"' def create_virtualenv(std_python, root_dir, tpp_dirs, quiet=False): @@ -176,13 +177,14 @@ def create_virtualenv(std_python, root_dir, tpp_dirs, quiet=False): vendored Python distributions that pip will use to find required components. """ - print("* Configuring Python ...") + if not quiet: + print("* Configuring Python ...") # search virtualenv.py in the tpp_dirs. keep the first found venv_py = None for tpd in tpp_dirs: venv = os.path.join(root_dir, tpd, 'virtualenv.py') if os.path.exists(venv): - venv_py = venv + venv_py = '"' + venv + '"' break # error out if venv_py not found @@ -196,12 +198,13 @@ def create_virtualenv(std_python, root_dir, tpp_dirs, quiet=False): # third parties may be in more than one directory vcmd.extend(build_pip_dirs_args(tpp_dirs, root_dir)) # we create the virtualenv in the root_dir - vcmd.append(root_dir) + vcmd.append('"' + root_dir + '"') call(vcmd, root_dir) def activate(root_dir): """ Activate a virtualenv in the current process.""" + bin_dir = os.path.join(root_dir, 'bin') activate_this = os.path.join(bin_dir, 'activate_this.py') with open(activate_this) as f: code = compile(f.read(), activate_this, 'exec') @@ -213,37 +216,45 @@ def install_3pp(configs, root_dir, tpp_dirs, quiet=False): Install requirements from requirement files found in `configs` with pip, using the vendored components in `tpp_dirs`. """ - print("* Installing components ...") - requirement_files = get_conf_files(configs, root_dir, requirements) + if not quiet: + print("* Installing components ...") + requirement_files = get_conf_files(configs, root_dir, requirements, quiet) + if on_win: + bin_dir = os.path.join(root_dir, 'bin') + configured_python = os.path.join(bin_dir, 'python.exe') + base_cmd = [configured_python, '-m', 'pip'] + else: + base_cmd = ['pip'] for req_file in requirement_files: - pcmd = ['pip', 'install', '--no-allow-external', - '--use-wheel', '--no-index', '--no-cache-dir'] + pcmd = base_cmd + ['install', '--upgrade', '--no-index', '--no-cache-dir'] if quiet: pcmd += ['--quiet'] pip_dir_args = list(build_pip_dirs_args(tpp_dirs, root_dir, '--find-links=')) pcmd.extend(pip_dir_args) req_loc = os.path.join(root_dir, req_file) - pcmd.extend(['-r' , req_loc]) + pcmd.extend(['-r' , '"' + req_loc + '"']) call(pcmd, root_dir) -def run_scripts(configs, root_dir, configured_python): +def run_scripts(configs, root_dir, configured_python, quiet=False): """ Run Python scripts and shell scripts found in `configs`. """ - print("* Configuring ...") + if not quiet: + print("* Configuring ...") # Run Python scripts for each configurations for py_script in get_conf_files(configs, root_dir, python_scripts): - cmd = [configured_python, os.path.join(root_dir, py_script)] + cmd = [configured_python, '"' + os.path.join(root_dir, py_script) + '"'] call(cmd, root_dir) # Run sh_script scripts for each configurations for sh_script in get_conf_files(configs, root_dir, shell_scripts): - # we source the scripts on posix - cmd = ['.'] if on_win: cmd = [] - cmd = cmd + [os.path.join(root_dir, sh_script)] + else: + # we source the scripts on posix + cmd = ['.'] + cmd.extend([os.path.join(root_dir, sh_script)]) call(cmd, root_dir) @@ -258,7 +269,7 @@ def chmod_bin(directory): os.chmod(os.path.join(path, f), rwx) -def get_conf_files(config_dir_paths, root_dir, file_names=requirements): +def get_conf_files(config_dir_paths, root_dir, file_names=requirements, quiet=False): """ Return a list of collected path-prefixed file paths matching names in a file_names tuple, based on config_dir_paths, root_dir and the types of @@ -286,8 +297,9 @@ def get_conf_files(config_dir_paths, root_dir, file_names=requirements): for config_dir_path in config_dir_paths: abs_config_dir_path = os.path.join(root_dir, config_dir_path) if not os.path.exists(abs_config_dir_path): - print('Configuration directory %(config_dir_path)s ' - 'does not exists. Skipping.' % locals()) + if not quiet: + print('Configuration directory %(config_dir_path)s ' + 'does not exists. Skipping.' % locals()) continue # Support args like enterprise or enterprise/dev paths = config_dir_path.strip('/').replace('\\', '/').split('/') @@ -313,23 +325,34 @@ def get_conf_files(config_dir_paths, root_dir, file_names=requirements): return collected +usage = '\nUsage: configure [--clean] ...\n' + + if __name__ == '__main__': + + # you must create a CONFIGURE_QUIET env var if you want to run quietly + quiet = 'CONFIGURE_QUIET' in os.environ + # define/setup common directories etc_dir = os.path.abspath(os.path.dirname(__file__)) root_dir = os.path.dirname(etc_dir) args = sys.argv[1:] - if args[0] == '--clean': - clean(root_dir) - sys.exit(0) + if args: + arg0 = args[0] + if arg0 == '--clean': + clean(root_dir) + sys.exit(0) + elif arg0.startswith('-'): + print() + print('ERROR: unknown option: %(arg0)s' % locals()) + print(usage) + sys.exit(1) sys.path.insert(0, root_dir) bin_dir = os.path.join(root_dir, 'bin') standard_python = sys.executable - # you must create a CONFIGURE_QUIET env var if you want to run quietly - run_quiet = 'CONFIGURE_QUIET' in os.environ - if on_win: configured_python = os.path.join(bin_dir, 'python.exe') scripts_dir = os.path.join(root_dir, 'Scripts') @@ -337,7 +360,7 @@ def get_conf_files(config_dir_paths, root_dir, file_names=requirements): if not os.path.exists(scripts_dir): os.makedirs(scripts_dir) if not os.path.exists(bin_dir): - cmd = ('mklink /J %(bin_dir)s %(scripts_dir)s' % locals()).split() + cmd = ('mklink /J "%(bin_dir)s" "%(scripts_dir)s"' % locals()).split() call(cmd, root_dir) else: configured_python = os.path.join(bin_dir, 'python') @@ -346,15 +369,18 @@ def get_conf_files(config_dir_paths, root_dir, file_names=requirements): # Get requested configuration paths to collect components and scripts later configs = [] for path in args[:]: + abs_path = path if not os.path.isabs(path): abs_path = os.path.join(root_dir, path) - if os.path.exists(abs_path): - configs.append(path) - else: - print() - print('WARNING: Skipping missing Configuration directory:\n' - ' %(path)s does not exist.' % locals()) + if not os.path.exists(abs_path): print() + print('ERROR: Configuration directory does not exists:\n' + ' %(path)s: %(abs_path)r' + % locals()) + print(usage) + sys.exit(1) + + configs.append(path) # Collect vendor directories from environment variables: one or more third- # party directories may exist as environment variables prefixed with TPP_DIR @@ -362,25 +388,28 @@ def get_conf_files(config_dir_paths, root_dir, file_names=requirements): for envvar, path in os.environ.items(): if not envvar.startswith('TPP_DIR'): continue + abs_path = path if not os.path.isabs(path): abs_path = os.path.join(root_dir, path) - if os.path.exists(abs_path): - thirdparty_dirs.append(path) + if not os.path.exists(abs_path): + if not quiet: + print() + print('WARNING: Third-party Python libraries directory does not exists:\n' + ' %(path)r: %(abs_path)r\n' + ' Provided by environment variable:\n' + ' set %(envvar)s=%(path)r' % locals()) + print() else: - print() - print('WARNING: Skipping missing Python thirdparty directory:\n' - ' %(path)s does not exist.\n' - ' Provided by environment variable:\n' - ' set %(envvar)s=%(path)s' % locals()) - print() + thirdparty_dirs.append(path) # Finally execute our three steps: venv, install and scripts if not os.path.exists(configured_python): - create_virtualenv(standard_python, root_dir, thirdparty_dirs, quiet=run_quiet) + create_virtualenv(standard_python, root_dir, thirdparty_dirs, quiet=quiet) activate(root_dir) - install_3pp(configs, root_dir, thirdparty_dirs, quiet=run_quiet) - run_scripts(configs, root_dir, configured_python) + install_3pp(configs, root_dir, thirdparty_dirs, quiet=quiet) + run_scripts(configs, root_dir, configured_python, quiet=quiet) chmod_bin(bin_dir) - print("* Configuration completed.") - print() + if not quiet: + print("* Configuration completed.") + print() diff --git a/man/man1/.gitignore b/man/man1/.gitignore deleted file mode 100644 index dca54367..00000000 --- a/man/man1/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/tqdm.1 diff --git a/src/attributecode/__init__.py b/src/attributecode/__init__.py index 6987b3e7..e8b53b5e 100644 --- a/src/attributecode/__init__.py +++ b/src/attributecode/__init__.py @@ -24,7 +24,7 @@ try: basestring # Python 2 except NameError: - basestring = str # Python 3 + basestring = str # Python 3 #NOQA __version__ = '3.2.2' diff --git a/src/attributecode/api.py b/src/attributecode/api.py index 32a7dea3..62f60949 100644 --- a/src/attributecode/api.py +++ b/src/attributecode/api.py @@ -22,11 +22,11 @@ try: # Python 2 from urllib import urlencode, quote - from urllib2 import urlopen, Request, HTTPError, URLError + from urllib2 import urlopen, Request, HTTPError except ImportError: # Python 3 from urllib.parse import urlencode, quote from urllib.request import urlopen, Request - from urllib.error import HTTPError, URLError + from urllib.error import HTTPError from attributecode import ERROR from attributecode import Error diff --git a/src/attributecode/cmd.py b/src/attributecode/cmd.py index 3cc9beaf..04384a17 100644 --- a/src/attributecode/cmd.py +++ b/src/attributecode/cmd.py @@ -108,7 +108,7 @@ def cli(): @click.argument('output', nargs=1, required=True, type=click.Path(exists=False, dir_okay=False, resolve_path=True)) -@click.option('--filter', nargs=1, multiple=True, +@click.option('--filter', nargs=1, multiple=True, help='Filter for the output inventory. e.g. "license_expression=gpl-2.0') @click.option('-f', '--format', is_flag=False, default='csv', show_default=True, @@ -139,7 +139,7 @@ def cli(): @click.help_option('-h', '--help') -def inventory(location, output, mapping, mapping_file, mapping_output, filter, quiet, format, verbose): +def inventory(location, output, mapping, mapping_file, mapping_output, filter, quiet, format, verbose): # NOQA """ Collect a JSON or CSV inventory of components from .ABOUT files. @@ -155,7 +155,7 @@ def inventory(location, output, mapping, mapping_file, mapping_output, filter, q # FIXME: return error code? return - click.echo('Collecting inventory from: %(location)s and writing output to: %(output)s' % locals()) #(location, output)) + click.echo('Collecting inventory from: %(location)s and writing output to: %(output)s' % locals()) # FIXME: do we really want to continue support zip as an input? if location.lower().endswith('.zip'): @@ -320,7 +320,7 @@ def gen(location, output, mapping, mapping_file, license_notice_text_location, f @click.option('--template', type=click.Path(exists=True), nargs=1, help='Path to an optional custom attribution template used for generation.') -@click.option('--vartext', nargs=1, multiple=True, +@click.option('--vartext', nargs=1, multiple=True, help='Variable texts to the attribution template.') @click.option('--verbose', is_flag=True, default=False, @@ -478,7 +478,7 @@ def log_errors(errors, err_count, quiet, verbose, base_dir=False): def have_problematic_error(errors): - for severity, message in errors: + for severity, message in errors: # NOQA sever = severities[severity] if sever in problematic_errors: return True diff --git a/src/attributecode/gen.py b/src/attributecode/gen.py index 723cf3db..b5dda2d4 100644 --- a/src/attributecode/gen.py +++ b/src/attributecode/gen.py @@ -24,12 +24,12 @@ from posixpath import basename, dirname, exists, join, normpath import sys -if sys.version_info[0] < 3: +if sys.version_info[0] < 3: # Python 2 - import backports.csv as csv + import backports.csv as csv #NOQA else: # Python 3 - import csv + import csv #NOQA from attributecode import ERROR from attributecode import CRITICAL diff --git a/src/attributecode/model.py b/src/attributecode/model.py index 60a92787..687fbf74 100644 --- a/src/attributecode/model.py +++ b/src/attributecode/model.py @@ -40,17 +40,17 @@ import sys if sys.version_info[0] < 3: # Python 2 - import backports.csv as csv - from itertools import izip_longest as zip_longest - from urlparse import urljoin, urlparse - from urllib2 import urlopen, Request, HTTPError + import backports.csv as csv # NOQA + from itertools import izip_longest as zip_longest # NOQA + from urlparse import urljoin, urlparse # NOQA + from urllib2 import urlopen, Request, HTTPError # NOQA else: # Python 3 - basestring = str - import csv - from itertools import zip_longest - from urllib.parse import urljoin, urlparse - from urllib.request import urlopen, Request - from urllib.error import HTTPError + basestring = str # NOQA + import csv # NOQA + from itertools import zip_longest # NOQA + from urllib.parse import urljoin, urlparse # NOQA + from urllib.request import urlopen, Request # NOQA + from urllib.error import HTTPError # NOQA from license_expression import Licensing @@ -67,7 +67,6 @@ from attributecode.util import on_windows from attributecode.util import ungroup_licenses from attributecode.util import UNC_PREFIX -from attributecode.util import UNC_PREFIX_POSIX class Field(object): @@ -666,7 +665,7 @@ def __eq__(self, other): and self.value == other.value) -def validate_fields(fields, about_file_path, running_inventory, base_dir, +def validate_fields(fields, about_file_path, running_inventory, base_dir, license_notice_text_location=None): """ Validate a sequence of Field objects. Return a list of errors. @@ -707,7 +706,7 @@ def create_fields(self): is simpler. """ self.fields = OrderedDict([ - #('about_resource', ListField(required=True)), + # ('about_resource', ListField(required=True)), # ('about_resource', AboutResourceField(required=True)), ('about_resource', AboutResourceField(required=True)), ('name', SingleLineField(required=True)), @@ -874,29 +873,6 @@ def as_dict(self, with_paths=False, with_absent=True, with_empty=True): if with_paths: afpa = self.about_file_path_attr as_dict[afpa] = self.about_file_path - arpa = self.about_resource_path_attr - """ - if self.about_resource_path.present: - as_dict[arpa] = self.resolved_resources_paths() - else: - arp = OrderedDict() - # Create a relative 'about_resource_path' if user has not defined - if self.about_resource.present: - for resource_name in self.about_resource.value: - key = u'' - if resource_name == '.': - key = resource_name - else: - key = './' + resource_name - arp[key] = None - as_dict[arpa] = arp - # Return an empty 'about_resource_path' if the 'about_resource' - # key is not found - else: - key = u'' - arp[key] = None - as_dict[arpa] = arp - """ for field in self.all_fields(with_absent=with_absent, with_empty=with_empty): @@ -1050,9 +1026,9 @@ def load(self, location, use_mapping=False, mapping_file=None): and then join with the 'about_resource' """ running_inventory = True - # wrap the value of the boolean field in quote to avoid + # wrap the value of the boolean field in quote to avoid # automatically conversion from yaml.load - input = util.wrap_boolean_value(input_text) + input = util.wrap_boolean_value(input_text) # NOQA errs = self.load_dict(saneyaml.load(input), base_dir, running_inventory, use_mapping, mapping_file) errors.extend(errs) except Exception as e: @@ -1092,7 +1068,7 @@ def load_dict(self, fields_dict, base_dir, running_inventory=False, licenses_field = (key, value) fields.remove(licenses_field) errors = self.process( - fields, about_file_path, running_inventory, base_dir, + fields, about_file_path, running_inventory, base_dir, license_notice_text_location, use_mapping, mapping_file) self.errors = errors return errors @@ -1141,7 +1117,7 @@ def dumps(self, use_mapping=False, mapping_file=False, with_absent=False, with_e if lic_group[2]: lic_dict['file'] = lic_group[2] if lic_group[3]: - lic_dict['url'] = lic_group[3] + lic_dict['url'] = lic_group[3] about_data.setdefault('licenses', []).append(lic_dict) formatted_about_data = util.format_output(about_data, use_mapping, mapping_file) return saneyaml.dump(formatted_about_data) @@ -1210,7 +1186,7 @@ def dump_lic(self, location, license_dict): # line in the form of "name: value" field_declaration = re.compile( r'^' - + field_name + + +field_name + r'\s*:\s*' r'(?P.*)' r'\s*$' @@ -1382,7 +1358,7 @@ def about_object_to_list_of_dictionary(abouts, with_absent=False, with_empty=Tru return abouts_dictionary_list -def write_output(abouts, location, format, mapping_output=None, with_absent=False, with_empty=True): +def write_output(abouts, location, format, mapping_output=None, with_absent=False, with_empty=True): # NOQA """ Write a CSV/JSON file at location given a list of About objects """ diff --git a/src/attributecode/saneyaml.py b/src/attributecode/saneyaml.py index fdafa569..cbe5db37 100644 --- a/src/attributecode/saneyaml.py +++ b/src/attributecode/saneyaml.py @@ -34,12 +34,12 @@ try: unicode # Python 2 except NameError: - unicode = str # Python 3 + unicode = str # Python 3 #NOQA try: basestring # Python 2 except NameError: - basestring = str # Python 3 + basestring = str # Python 3 #NOQA """ diff --git a/src/attributecode/util.py b/src/attributecode/util.py index 769739ca..d426dce8 100644 --- a/src/attributecode/util.py +++ b/src/attributecode/util.py @@ -34,12 +34,11 @@ import sys if sys.version_info[0] < 3: # Python 2 - from itertools import izip_longest as zip_longest + from itertools import izip_longest as zip_longest # NOQA else: # Python 3 - from itertools import zip_longest + from itertools import zip_longest # NOQA -import yaml from yaml.reader import Reader from yaml.scanner import Scanner from yaml.parser import Parser @@ -50,10 +49,10 @@ if sys.version_info[0] < 3: # Python 2 - import backports.csv as csv + import backports.csv as csv # NOQA else: # Python 3 - import csv + import csv # NOQA try: # Python 2 @@ -62,7 +61,7 @@ # Python 3 import http.client as httplib -from attributecode import CRITICAL, INFO +from attributecode import CRITICAL from attributecode import Error @@ -159,7 +158,7 @@ def check_duplicate_keys_about_file(context): def wrap_boolean_value(context): bool_fields = ['redistribute', 'attribute', 'track_changes', 'modified'] - input = [] + input = [] # NOQA for line in context.splitlines(): key = line.partition(':')[0] if key in bool_fields: @@ -300,7 +299,7 @@ def __next__(self): self.fieldnames row = next(self.reader) self.line_num = self.reader.line_num - + # unlike the basic reader, we prefer not to return blanks, # because we will typically wind up with a dict full of None # values @@ -381,6 +380,7 @@ def get_output_mapping(location): sys.exit(errno.EACCES) return mapping + def apply_mapping(abouts, alternate_mapping=None): """ Given a list of About data dictionaries and a dictionary of @@ -422,6 +422,7 @@ def get_mapping_key_order(mapping_file): mapping = get_mapping() return mapping.keys() + def format_output(about_data, use_mapping, mapping_file): """ Convert the about_data dictionary to an ordered dictionary for saneyaml.dump() @@ -459,6 +460,7 @@ def format_output(about_data, use_mapping, mapping_file): order_dict[other_key] = about_data[other_key] return order_dict + def get_about_file_path(location, use_mapping=False, mapping_file=None): """ Read file at location, return a list of about_file_path. @@ -497,10 +499,14 @@ def load_csv(location, use_mapping=False, mapping_file=None): def load_json(location, use_mapping=False, mapping_file=None): """ - Read JSON at location, return a list of ordered mappings, one for each entry. + Read JSON file at `location` and return a list of ordered mappings, one for + each entry. """ + # FIXME: IMHO we should know where the JSON is from and its shape + # TODO use: object_pairs_hook=OrderedDict with open(location) as json_file: results = json.load(json_file) + # If the loaded JSON is not a list, # - JSON output from AboutCode Manager: # look for the "components" field as it is the field @@ -542,20 +548,22 @@ def load_json(location, use_mapping=False, mapping_file=None): # "name": "test", # ... # } - if not isinstance(results, list): + if isinstance(results, list): + updated_results = sorted(results) + else: if u'aboutcode_manager_notice' in results: updated_results = results['components'] elif u'scancode_notice' in results: updated_results = results['files'] else: updated_results = [results] - else: - updated_results = sorted(results) + about_ordered_list = updated_results + + # FIXME: why this double test? either have a mapping file and we use mapping or we do not. + # FIXME: IMHO only one argument is needed if use_mapping or mapping_file: about_ordered_list = apply_mapping(updated_results, mapping_file) - else: - about_ordered_list = updated_results return about_ordered_list @@ -674,11 +682,11 @@ def inventory_filter(abouts, filter_dict): def update_fieldnames(fieldnames, mapping_output): - map = get_output_mapping(mapping_output) + mapping = get_output_mapping(mapping_output) updated_header = [] for name in fieldnames: try: - updated_header.append(map[name]) + updated_header.append(mapping[name]) except: updated_header.append(name) return updated_header @@ -701,6 +709,7 @@ def update_about_dictionary_keys(about_dictionary_list, mapping_output): updated_dict_list.append(updated_ordered_dict) return updated_dict_list + def ungroup_licenses(licenses): """ Ungroup multiple licenses information @@ -785,7 +794,7 @@ def format_about_dict_for_json_output(about_dictionary_list): lic_dict['file'] = lic_group[2] if lic_group[3]: lic_dict['url'] = lic_group[3] - licenses_list.append(lic_dict) + licenses_list.append(lic_dict) row_list['licenses'] = licenses_list json_formatted_list.append(row_list) return json_formatted_list @@ -837,4 +846,4 @@ def __init__(self, stream): Parser.__init__(self) Composer.__init__(self) NoDuplicateConstructor.__init__(self) - Resolver.__init__(self) \ No newline at end of file + Resolver.__init__(self) diff --git a/tests/test_gen.py b/tests/test_gen.py index a5ac6cac..5ece6d76 100644 --- a/tests/test_gen.py +++ b/tests/test_gen.py @@ -59,6 +59,7 @@ def test_load_inventory(self): expected_error_messages = ['Field about_resource', 'Field custom1 is not a supported field and is ignored.'] + # FIXME: this is not used expected_errors = [ Error(INFO, u'Field custom1 is not a supported field and is ignored.')] assert len(errors) == 2 @@ -181,7 +182,7 @@ def test_generate_not_overwrite_original_license_file(self): license_notice_text_location = None fetch_license = ['url', 'lic_key'] - errors, abouts = gen.generate(location, base_dir, license_notice_text_location, fetch_license) + _errors, abouts = gen.generate(location, base_dir, license_notice_text_location, fetch_license) in_mem_result = [a.dumps(use_mapping=False, mapping_file=False, with_absent=False, with_empty=False) for a in abouts][0] diff --git a/tests/test_model.py b/tests/test_model.py index 8902a600..6ec3e7f9 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -570,7 +570,6 @@ def test_About_rejects_non_ascii_names_and_accepts_unicode_values(self): def test_About_invalid_boolean_value(self): test_file = get_test_loc('parse/invalid_boolean.about') a = model.About(test_file) - result = a.errors expected_msg = "Field modified: Invalid flag value: 'blah'" assert expected_msg in a.errors[0].message @@ -675,6 +674,7 @@ def test_field_names(self): result = model.field_names(abouts) assert expected == result + @expectedFailure def test_field_names_does_not_return_duplicates_custom_fields(self): a = model.About() a.custom_fields['f'] = model.StringField(name='f', value='1', @@ -695,9 +695,11 @@ def test_field_names_does_not_return_duplicates_custom_fields(self): 'f', 'g', ] - result = model.field_names(abouts, with_paths=False, + model.field_names(abouts, with_paths=False, with_absent=False, with_empty=False) + # FIXME: missing test!!! + assert True == False class SerializationTest(unittest.TestCase): @@ -960,7 +962,7 @@ def test_load_can_load_unicode(self): Error(INFO, u'Field scm_repository is not a supported field and is ignored.'), Error(INFO, u'Field test is not a supported field and is ignored.'), Error(INFO, err_msg)] - + assert errors == a.errors assert u'Copyright (c) 2012, Domen Kožar' == a.copyright.value @@ -1160,7 +1162,7 @@ def test_collect_inventory_with_custom_mapping(self): def test_collect_inventory_without_mapping(self): test_loc = get_test_loc('parse/name_mapping_test.ABOUT') - errors, abouts = model.collect_inventory(test_loc) + errors, _abouts = model.collect_inventory(test_loc) expected_msg1 = 'Field resource is not a supported field and is ignored.' expected_msg2 = 'Field custom_mapping is not a supported field and is ignored.' assert len(errors) == 2 diff --git a/tests/test_util.py b/tests/test_util.py index 3cbcae10..80353b2b 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -29,7 +29,6 @@ from testing_utils import on_windows from attributecode import CRITICAL -from attributecode import ERROR, INFO from attributecode import Error from attributecode import model from attributecode import util @@ -189,8 +188,7 @@ def test_invalid_chars_with_space(self): assert expected == result def test_check_file_names_with_dupes_return_errors(self): - paths = ['some/path', - 'some/PAth'] + paths = ['some/path', 'some/PAth'] result = util.check_file_names(paths) expected = [Error(CRITICAL, "Duplicate files: 'some/PAth' and 'some/path' have the same case-insensitive file name")] assert expected == result @@ -203,12 +201,13 @@ def test_check_file_names_without_dupes_return_no_error(self): assert expected == result def test_check_file_names_with_no_invalid_char_return_no_error(self): - paths = ['locations/file', - 'locations/file1', - 'locations/file2', - 'locations/dir1/file2', - 'locations/dir1/dir2/file1', - 'locations/dir2/file1'] + paths = [ + 'locations/file', + 'locations/file1', + 'locations/file2', + 'locations/dir1/file2', + 'locations/dir1/dir2/file1', + 'locations/dir2/file1'] expected = [] result = util.check_file_names(paths) @@ -295,60 +294,60 @@ def test_get_mapping_key_order_with_mapping_file(self): def test_load_csv_without_mapping(self): test_file = get_test_loc('util/about.csv') - expected = [OrderedDict( - [('about_file', 'about.ABOUT'), - ('about_resource', '.'), - ('name', 'ABOUT tool'), - ('version', '0.8.1')]) - ] + expected = [OrderedDict([ + ('about_file', 'about.ABOUT'), + ('about_resource', '.'), + ('name', 'ABOUT tool'), + ('version', '0.8.1')]) + ] result = util.load_csv(test_file) assert expected == result def test_load_json_without_mapping(self): test_file = get_test_loc('load/expected.json') - expected = [OrderedDict( - [('about_file_path', '/load/this.ABOUT'), - ('about_resource', '.'), - ('name', 'AboutCode'), - ('version', '0.11.0')]) - ] + expected = [OrderedDict([ + ('about_file_path', '/load/this.ABOUT'), + ('about_resource', '.'), + ('name', 'AboutCode'), + ('version', '0.11.0')]) + ] result = util.load_json(test_file) assert expected == result def test_load_json_with_mapping(self): test_file = get_test_loc('load/expected_need_mapping.json') - expected = [dict(OrderedDict( - [('about_file_path', '/load/this.ABOUT'), - ('about_resource', '.'), - ('version', '0.11.0'), - ('name', 'AboutCode'), - ]) - )] + expected = [dict(OrderedDict([ + ('about_file_path', '/load/this.ABOUT'), + ('about_resource', '.'), + ('version', '0.11.0'), + ('name', 'AboutCode'), + ]) + )] result = util.load_json(test_file, use_mapping=True) assert expected == result def test_load_non_list_json_with_mapping(self): test_file = get_test_loc('load/not_a_list_need_mapping.json') mapping_file = get_test_loc('custom-mapping-file/mapping.config') - expected = [dict(OrderedDict( - [('about_file_path', '/load/this.ABOUT'), - ('about_resource', '.'), - ('name', 'AboutCode'), - ('version', '0.11.0'), - ]) - )] + expected = [dict(OrderedDict([ + ('about_file_path', '/load/this.ABOUT'), + ('about_resource', '.'), + ('name', 'AboutCode'), + ('version', '0.11.0'), + ]) + )] result = util.load_json(test_file, use_mapping=False, mapping_file=mapping_file) assert expected == result def test_load_non_list_json(self): test_file = get_test_loc('load/not_a_list.json') - expected = [OrderedDict( - [('about_file_path', '/load/this.ABOUT'), - ('version', '0.11.0'), - ('about_resource', '.'), - ('name', 'AboutCode'), - ]) - ] + expected = [OrderedDict([ + ('about_file_path', '/load/this.ABOUT'), + ('version', '0.11.0'), + ('about_resource', '.'), + ('name', 'AboutCode'), + ]) + ] result = util.load_json(test_file) assert expected == result @@ -358,8 +357,8 @@ def test_load_json_from_abc_mgr(self): expected = [dict(OrderedDict( [('license_expression', 'apache-2.0'), ('copyright', 'Copyright (c) 2017 nexB Inc.'), - ('licenses',[{'key':'apache-2.0'}]), - ('copyrights',[{'statements':['Copyright (c) 2017 nexB Inc.']}]), + ('licenses', [{'key':'apache-2.0'}]), + ('copyrights', [{'statements':['Copyright (c) 2017 nexB Inc.']}]), ('about_file_path', 'ScanCode'), ('review_status', 'Analyzed'), ('name', 'ScanCode'), @@ -371,12 +370,12 @@ def test_load_json_from_abc_mgr(self): ('feature', ''), ('purpose', ''), ('homepage_url', None), - ('download_url',None), - ('license_url',None), - ('notice_url',None), - ('programming_language','Python'), - ('notes',''), - ('fileId',8458), + ('download_url', None), + ('license_url', None), + ('notice_url', None), + ('programming_language', 'Python'), + ('notes', ''), + ('fileId', 8458), ] ))] result = util.load_json(test_file, use_mapping=False, mapping_file=mapping_file) @@ -452,17 +451,19 @@ def test_get_locations_with_very_long_path(self): assert any(longpath in r for r in result) def test_apply_mapping(self): - input = [OrderedDict([('about_resource', '.'), - ('name', 'test'), - ('confirmed version', '1'), - ('confirmed copyright', 'Copyright (c) 2013-2017 nexB Inc.') - ])] - expected = [OrderedDict([('about_resource', '.'), - ('name', 'test'), - ('version', '1'), - ('copyright', 'Copyright (c) 2013-2017 nexB Inc.') - ])] - assert util.apply_mapping(input) == expected + about = [OrderedDict([ + ('about_resource', '.'), + ('name', 'test'), + ('confirmed version', '1'), + ('confirmed copyright', 'Copyright (c) 2013-2017 nexB Inc.') + ])] + expected = [OrderedDict([ + ('about_resource', '.'), + ('name', 'test'), + ('version', '1'), + ('copyright', 'Copyright (c) 2013-2017 nexB Inc.') + ])] + assert util.apply_mapping(about) == expected def test_check_duplicate_keys_about_file(self): test = ''' @@ -539,7 +540,7 @@ def test_update_about_dictionary_keys(self): assert expected_dict_list == result def test_ungroup_licenses(self): - input = [OrderedDict([(u'key', u'mit'), + about = [OrderedDict([(u'key', u'mit'), (u'name', u'MIT License'), (u'file', u'mit.LICENSE'), (u'url', u'https://enterprise.dejacode.com/urn/?urn=urn:dje:license:mit')]), @@ -550,39 +551,46 @@ def test_ungroup_licenses(self): expected_lic_key = [u'mit', u'bsd-new'] expected_lic_name = [u'MIT License', u'BSD-3-Clause'] expected_lic_file = [u'mit.LICENSE', u'bsd-new.LICENSE'] - expected_lic_url = [u'https://enterprise.dejacode.com/urn/?urn=urn:dje:license:mit', + expected_lic_url = [u'https://enterprise.dejacode.com/urn/?urn=urn:dje:license:mit', u'https://enterprise.dejacode.com/urn/?urn=urn:dje:license:bsd-new'] - lic_key, lic_name, lic_file, lic_url = util.ungroup_licenses(input) + lic_key, lic_name, lic_file, lic_url = util.ungroup_licenses(about) assert expected_lic_key == lic_key assert expected_lic_name == lic_name assert expected_lic_file == lic_file assert expected_lic_url == lic_url def test_format_about_dict_for_csv_output(self): - input = [OrderedDict([(u'about_file_path', u'/input/about1.ABOUT'), - (u'about_resource', [u'test.c']), - (u'name', u'AboutCode-toolkit'), - (u'license_expression', u'mit AND bsd-new'), - (u'license_key', [u'mit', u'bsd-new'])])] - - expected = [OrderedDict([(u'about_file_path', u'/input/about1.ABOUT'), - (u'about_resource', u'test.c'), - (u'name', u'AboutCode-toolkit'), - (u'license_expression', u'mit AND bsd-new'), - (u'license_key', u'mit\nbsd-new')])] - output = util.format_about_dict_for_csv_output(input) + about = [OrderedDict([ + (u'about_file_path', u'/input/about1.ABOUT'), + (u'about_resource', [u'test.c']), + (u'name', u'AboutCode-toolkit'), + (u'license_expression', u'mit AND bsd-new'), + (u'license_key', [u'mit', u'bsd-new'])])] + + expected = [OrderedDict([ + (u'about_file_path', u'/input/about1.ABOUT'), + (u'about_resource', u'test.c'), + (u'name', u'AboutCode-toolkit'), + (u'license_expression', u'mit AND bsd-new'), + (u'license_key', u'mit\nbsd-new')])] + + output = util.format_about_dict_for_csv_output(about) assert output == expected def test_format_about_dict_for_json_output(self): - input = [OrderedDict([(u'about_file_path', u'/input/about1.ABOUT'), - (u'about_resource', OrderedDict([(u'test.c', None)])), - (u'name', u'AboutCode-toolkit'), - (u'license_key', [u'mit', u'bsd-new'])])] - - expected = [OrderedDict([(u'about_file_path', u'/input/about1.ABOUT'), - (u'about_resource', u'test.c'), - (u'name', u'AboutCode-toolkit'), - (u'licenses', [OrderedDict([(u'key', u'mit')]), - OrderedDict([(u'key', u'bsd-new')])])])] - output = util.format_about_dict_for_json_output(input) - assert output == expected \ No newline at end of file + about = [OrderedDict([ + (u'about_file_path', u'/input/about1.ABOUT'), + (u'about_resource', OrderedDict([(u'test.c', None)])), + (u'name', u'AboutCode-toolkit'), + (u'license_key', [u'mit', u'bsd-new'])])] + + expected = [OrderedDict([ + (u'about_file_path', u'/input/about1.ABOUT'), + (u'about_resource', u'test.c'), + (u'name', u'AboutCode-toolkit'), + (u'licenses', [ + OrderedDict([(u'key', u'mit')]), + OrderedDict([(u'key', u'bsd-new')])])])] + + output = util.format_about_dict_for_json_output(about) + assert output == expected diff --git a/thirdparty/Jinja2-2.10-py2.py3-none-any.whl b/thirdparty/Jinja2-2.10-py2.py3-none-any.whl new file mode 100644 index 00000000..7bc4e35f Binary files /dev/null and b/thirdparty/Jinja2-2.10-py2.py3-none-any.whl differ diff --git a/thirdparty/Jinja2-2.10-py2.py3-none-any.whl.ABOUT b/thirdparty/Jinja2-2.10-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..e2c09314 --- /dev/null +++ b/thirdparty/Jinja2-2.10-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,16 @@ +about_resource: Jinja2-2.10-py2.py3-none-any.whl +checksum_md5: cb679acd14423aef56dfff61d6a988f8 +checksum_sha1: f14bb3e5021b2b0605dcd4865ac539cde04fe856 +contact: armin.ronacher@active-4.com +copyright: Copyright (c) 2009 by the Jinja Team +description: Jinja2 is a full featured template engine for Python. It has full unicode + support, an optional integrated sandboxed execution environment, widely used and + BSD licensed. +download_url: https://pypi.python.org/packages/7f/ff/ae64bacdfc95f27a016a7bed8e8686763ba4d277a78ca76f32659220a731/Jinja2-2.10-py2.py3-none-any.whl#md5=cb679acd14423aef56dfff61d6a988f8 +homepage_url: http://jinja.pocoo.org/ +license_expression: bsd-new +name: Jinja2 +owner: Armin Ronacher +owner_url: http://lucumr.pocoo.org/about/ +version: '2.10' +license_file: Jinja2.LICENSE \ No newline at end of file diff --git a/thirdparty/prod/Jinja2.LICENSE b/thirdparty/Jinja2.LICENSE similarity index 100% rename from thirdparty/prod/Jinja2.LICENSE rename to thirdparty/Jinja2.LICENSE diff --git a/thirdparty/MarkupSafe-1.0-py2-none-any.whl b/thirdparty/MarkupSafe-1.0-py2-none-any.whl new file mode 100644 index 00000000..e003df2b Binary files /dev/null and b/thirdparty/MarkupSafe-1.0-py2-none-any.whl differ diff --git a/thirdparty/MarkupSafe-1.0-py2-none-any.whl.ABOUT b/thirdparty/MarkupSafe-1.0-py2-none-any.whl.ABOUT new file mode 100644 index 00000000..f0dc13b7 --- /dev/null +++ b/thirdparty/MarkupSafe-1.0-py2-none-any.whl.ABOUT @@ -0,0 +1,17 @@ +about_resource: MarkupSafe-1.0-py2-none-any.whl +attribute: true +contact: armin.ronacher@active-4.com +copyright: Copyright (c) Armin Ronacher +description: Implements a XML/HTML/XHTML Markup safe string for Python +download_url: https://pypi.python.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/MarkupSafe-1.0.tar.gz#md5=2fcedc9284d50e577b5192e8e3578355 +homepage_url: https://pypi.python.org/pypi/MarkupSafe/ +license_expression: bsd-new +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +name: MarkupSafe +notice_file: MarkupSafe-1.0.tar.gz.NOTICE +owner: Armin Ronacher +owner_url: http://lucumr.pocoo.org/about/ +version: '1.0' diff --git a/thirdparty/prod/MarkupSafe-1.0.tar.gz b/thirdparty/MarkupSafe-1.0.tar.gz similarity index 100% rename from thirdparty/prod/MarkupSafe-1.0.tar.gz rename to thirdparty/MarkupSafe-1.0.tar.gz diff --git a/thirdparty/MarkupSafe-1.0.tar.gz.ABOUT b/thirdparty/MarkupSafe-1.0.tar.gz.ABOUT new file mode 100644 index 00000000..7ed50bf8 --- /dev/null +++ b/thirdparty/MarkupSafe-1.0.tar.gz.ABOUT @@ -0,0 +1,19 @@ +about_resource: MarkupSafe-1.0.tar.gz +attribute: true +checksum_md5: 2fcedc9284d50e577b5192e8e3578355 +checksum_sha1: 9072e80a7faa0f49805737a48f3d871eb1c48728 +contact: armin.ronacher@active-4.com +copyright: Copyright (c) Armin Ronacher +description: Implements a XML/HTML/XHTML Markup safe string for Python +download_url: https://pypi.python.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/MarkupSafe-1.0.tar.gz#md5=2fcedc9284d50e577b5192e8e3578355 +homepage_url: https://pypi.python.org/pypi/MarkupSafe/ +license_expression: bsd-new +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +name: MarkupSafe +notice_file: MarkupSafe-1.0.tar.gz.NOTICE +owner: Armin Ronacher +owner_url: http://lucumr.pocoo.org/about/ +version: '1.0' diff --git a/thirdparty/prod/MarkupSafe.LICENSE b/thirdparty/MarkupSafe-1.0.tar.gz.NOTICE similarity index 98% rename from thirdparty/prod/MarkupSafe.LICENSE rename to thirdparty/MarkupSafe-1.0.tar.gz.NOTICE index 0a486d61..ffee1f52 100644 --- a/thirdparty/prod/MarkupSafe.LICENSE +++ b/thirdparty/MarkupSafe-1.0.tar.gz.NOTICE @@ -1,33 +1,33 @@ -Copyright (c) 2010 by Armin Ronacher and contributors. See AUTHORS -for more details. - -Some rights reserved. - -Redistribution and use in source and binary forms of the software as well -as documentation, 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 names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE AND DOCUMENTATION 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 AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +Copyright (c) 2010 by Armin Ronacher and contributors. See AUTHORS +for more details. + +Some rights reserved. + +Redistribution and use in source and binary forms of the software as well +as documentation, 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 names of the contributors may not be used to endorse or + promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE AND DOCUMENTATION 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 AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/thirdparty/prod/PyYAML-3.12-py2-none-any.whl b/thirdparty/PyYAML-3.12-py2-none-any.whl similarity index 100% rename from thirdparty/prod/PyYAML-3.12-py2-none-any.whl rename to thirdparty/PyYAML-3.12-py2-none-any.whl diff --git a/thirdparty/prod/pyyaml.py2.ABOUT b/thirdparty/PyYAML-3.12-py2-none-any.whl.ABOUT similarity index 100% rename from thirdparty/prod/pyyaml.py2.ABOUT rename to thirdparty/PyYAML-3.12-py2-none-any.whl.ABOUT diff --git a/thirdparty/prod/PyYAML-3.12-py3-none-any.whl b/thirdparty/PyYAML-3.12-py3-none-any.whl similarity index 100% rename from thirdparty/prod/PyYAML-3.12-py3-none-any.whl rename to thirdparty/PyYAML-3.12-py3-none-any.whl diff --git a/thirdparty/prod/pyyaml.py3.ABOUT b/thirdparty/PyYAML-3.12-py3-none-any.whl.ABOUT similarity index 100% rename from thirdparty/prod/pyyaml.py3.ABOUT rename to thirdparty/PyYAML-3.12-py3-none-any.whl.ABOUT diff --git a/thirdparty/prod/PyYAML-3.12.tar.gz b/thirdparty/PyYAML-3.12.tar.gz similarity index 100% rename from thirdparty/prod/PyYAML-3.12.tar.gz rename to thirdparty/PyYAML-3.12.tar.gz diff --git a/thirdparty/prod/pyyaml.tar.ABOUT b/thirdparty/PyYAML-3.12.tar.gz.ABOUT similarity index 100% rename from thirdparty/prod/pyyaml.tar.ABOUT rename to thirdparty/PyYAML-3.12.tar.gz.ABOUT diff --git a/thirdparty/prod/apache-2.0.LICENSE b/thirdparty/apache-2.0.LICENSE similarity index 89% rename from thirdparty/prod/apache-2.0.LICENSE rename to thirdparty/apache-2.0.LICENSE index f433b1a5..d6456956 100644 --- a/thirdparty/prod/apache-2.0.LICENSE +++ b/thirdparty/apache-2.0.LICENSE @@ -175,3 +175,28 @@ 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/thirdparty/atomicwrites-1.2.1-py2.py3-none-any.whl b/thirdparty/atomicwrites-1.2.1-py2.py3-none-any.whl new file mode 100644 index 00000000..ecc390b4 Binary files /dev/null and b/thirdparty/atomicwrites-1.2.1-py2.py3-none-any.whl differ diff --git a/thirdparty/atomicwrites-1.2.1-py2.py3-none-any.whl.ABOUT b/thirdparty/atomicwrites-1.2.1-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..ea188d3a --- /dev/null +++ b/thirdparty/atomicwrites-1.2.1-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,14 @@ +about_resource: atomicwrites-1.2.1-py2.py3-none-any.whl +attribute: true +checksum_md5: 7335a59c5ecc22a3a6306b2caa5ff7e7 +checksum_sha1: 91442f0ffaf4ccf3abcfc8dcae1ccc810ff3ad07 +copyright: Copyright (c) Markus Unterwaditzer +download_url: https://files.pythonhosted.org/packages/3a/9a/9d878f8d885706e2530402de6417141129a943802c084238914fa6798d97/atomicwrites-1.2.1-py2.py3-none-any.whl +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: atomicwrites +owner: Markus Unterwaditzer +version: 1.2.1 diff --git a/thirdparty/attrs-18.2.0-py2.py3-none-any.whl b/thirdparty/attrs-18.2.0-py2.py3-none-any.whl new file mode 100644 index 00000000..a51c62aa Binary files /dev/null and b/thirdparty/attrs-18.2.0-py2.py3-none-any.whl differ diff --git a/thirdparty/attrs-18.2.0-py2.py3-none-any.whl.ABOUT b/thirdparty/attrs-18.2.0-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..b8c11cd5 --- /dev/null +++ b/thirdparty/attrs-18.2.0-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,21 @@ +about_resource: attrs-18.2.0-py2.py3-none-any.whl +attribute: true +checksum_md5: 75dad87564a041bc7c60eeeafefb4911 +checksum_sha1: 213cd958f00be22932ac7283d552ede1aa7db1f9 +copyright: Copyright (c) Hynek Schlawack +description: "attrs is the Python package that will bring back the joy of writing\ + \ classes by relieving you from the drudgery of implementing object protocols\ + \ (aka dunder methods).\r\n\r\nIts main goal is to help you to write concise and\ + \ correct software without slowing down your code." +download_url: https://files.pythonhosted.org/packages/3a/e1/5f9023cc983f1a628a8c2fd051ad19e76ff7b142a0faf329336f9a62a514/attrs-18.2.0-py2.py3-none-any.whl +homepage_url: http://attrs.org +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: attrs +notice_file: attrs-18.2.0-py2.py3-none-any.whl.NOTICE +owner: Hynek Schlawack +owner_url: http://attrs.org +version: 18.2.0 diff --git a/thirdparty/attrs-18.2.0-py2.py3-none-any.whl.NOTICE b/thirdparty/attrs-18.2.0-py2.py3-none-any.whl.NOTICE new file mode 100644 index 00000000..9e4b2aa1 --- /dev/null +++ b/thirdparty/attrs-18.2.0-py2.py3-none-any.whl.NOTICE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Hynek Schlawack + +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/thirdparty/backports.csv-1.0.6-py2.py3-none-any.whl b/thirdparty/backports.csv-1.0.6-py2.py3-none-any.whl new file mode 100644 index 00000000..5d2dc9b1 Binary files /dev/null and b/thirdparty/backports.csv-1.0.6-py2.py3-none-any.whl differ diff --git a/thirdparty/backports.csv.ABOUT b/thirdparty/backports.csv.ABOUT new file mode 100644 index 00000000..8d2f9f7e --- /dev/null +++ b/thirdparty/backports.csv.ABOUT @@ -0,0 +1,16 @@ +about_resource: backports.csv-1.0.6-py2.py3-none-any.whl +version: 1.0.6 +download_url: https://files.pythonhosted.org/packages/71/f7/5db9136de67021a6dce4eefbe50d46aa043e59ebb11c83d4ecfeb47b686e/backports.csv-1.0.6-py2.py3-none-any.whl + +name: backports.csv +homepage_url: https://github.com/ryanhiebert/backports.csv +owner: Ryan Hiebert + +notes: backports.csv is a backport of the csv module from Python 3. + Because of this fact, it is released under the same license as Python. + +license: python +license_file: python.LICENSE + +vcs_tool: git +vcs_repository: https://github.com/ryanhiebert/backports.csv.git diff --git a/thirdparty/prod/backports.csv.NOTICE b/thirdparty/backports.csv.NOTICE similarity index 100% rename from thirdparty/prod/backports.csv.NOTICE rename to thirdparty/backports.csv.NOTICE diff --git a/thirdparty/base/PSF.LICENSE b/thirdparty/base/PSF.LICENSE deleted file mode 100644 index 5db3415f..00000000 --- a/thirdparty/base/PSF.LICENSE +++ /dev/null @@ -1,635 +0,0 @@ -A. HISTORY OF THE SOFTWARE -========================== - -Python was created in the early 1990s by Guido van Rossum at Stichting -Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands -as a successor of a language called ABC. Guido remains Python's -principal author, although it includes many contributions from others. - -In 1995, Guido continued his work on Python at the Corporation for -National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) -in Reston, Virginia where he released several versions of the -software. - -In May 2000, Guido and the Python core development team moved to -BeOpen.com to form the BeOpen PythonLabs team. In October of the same -year, the PythonLabs team moved to Digital Creations (now Zope -Corporation, see http://www.zope.com). In 2001, the Python Software -Foundation (PSF, see http://www.python.org/psf/) was formed, a -non-profit organization created specifically to own Python-related -Intellectual Property. Zope Corporation is a sponsoring member of -the PSF. - -All Python releases are Open Source (see http://www.opensource.org for -the Open Source Definition). Historically, most, but not all, Python -releases have also been GPL-compatible; the table below summarizes -the various releases. - - Release Derived Year Owner GPL- - from compatible? (1) - - 0.9.0 thru 1.2 1991-1995 CWI yes - 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes - 1.6 1.5.2 2000 CNRI no - 2.0 1.6 2000 BeOpen.com no - 1.6.1 1.6 2001 CNRI yes (2) - 2.1 2.0+1.6.1 2001 PSF no - 2.0.1 2.0+1.6.1 2001 PSF yes - 2.1.1 2.1+2.0.1 2001 PSF yes - 2.2 2.1.1 2001 PSF yes - 2.1.2 2.1.1 2002 PSF yes - 2.1.3 2.1.2 2002 PSF yes - 2.2.1 2.2 2002 PSF yes - 2.2.2 2.2.1 2002 PSF yes - 2.2.3 2.2.2 2003 PSF yes - 2.3 2.2.2 2002-2003 PSF yes - 2.3.1 2.3 2002-2003 PSF yes - 2.3.2 2.3.1 2002-2003 PSF yes - 2.3.3 2.3.2 2002-2003 PSF yes - 2.3.4 2.3.3 2004 PSF yes - 2.3.5 2.3.4 2005 PSF yes - 2.4 2.3 2004 PSF yes - 2.4.1 2.4 2005 PSF yes - 2.4.2 2.4.1 2005 PSF yes - 2.4.3 2.4.2 2006 PSF yes - 2.4.4 2.4.3 2006 PSF yes - 2.5 2.4 2006 PSF yes - 2.5.1 2.5 2007 PSF yes - 2.5.2 2.5.2 2008 PSF yes - -Footnotes: - -(1) GPL-compatible doesn't mean that we're distributing Python under - the GPL. All Python licenses, unlike the GPL, let you distribute - a modified version without making your changes open source. The - GPL-compatible licenses make it possible to combine Python with - other software that is released under the GPL; the others don't. - -(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, - because its license has a choice of law clause. According to - CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 - is "not incompatible" with the GPL. - -Thanks to the many outside volunteers who have worked under Guido's -direction to make these releases possible. - - -B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON -=============================================================== - -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, 2007, 2008 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 LICENSE AGREEMENT FOR PYTHON 1.6.1 ---------------------------------------- - -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 (c) -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 - - -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. - -This copy of Python includes a copy of bzip2, which is licensed under the following terms: - - -This program, "bzip2", the associated library "libbzip2", and all -documentation, are copyright (C) 1996-2005 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, Cambridge, UK. -jseward@acm.org -bzip2/libbzip2 version 1.0.3 of 15 February 2005 - - -This copy of Python includes a copy of db, which is licensed under the following terms: - -/*- - * $Id: LICENSE,v 12.1 2005/06/16 20:20:10 bostic Exp $ - */ - -The following is the license that applies to this copy of the Berkeley DB -software. For a license to use the Berkeley DB software under conditions -other than those described here, or to purchase support for this software, -please contact Sleepycat Software by email at info@sleepycat.com, or on -the Web at http://www.sleepycat.com. - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -/* - * Copyright (c) 1990-2005 - * Sleepycat 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: - * 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 SLEEPYCAT 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 SLEEPYCAT 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. - */ -/* - * Copyright (c) 1990, 1993, 1994, 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. - */ -/* - * Copyright (c) 1995, 1996 - * The President and Fellows of Harvard 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. 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 HARVARD AND ITS 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 HARVARD 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 copy of Python includes a copy of openssl, which is licensed under the following terms: - - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a dual license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. Actually both licenses are BSD-style - Open Source licenses. In case of any license issues related to OpenSSL - please contact openssl-core@openssl.org. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2005 The OpenSSL 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. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``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 OpenSSL PROJECT 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 product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * 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 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 acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``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 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 licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - -This copy of Python includes a copy of tcl, which is licensed under the following terms: - -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. - -This copy of Python includes a copy of tk, which is licensed under the following terms: - -This software is copyrighted by the Regents of the University of -California, Sun Microsystems, Inc., 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. diff --git a/thirdparty/base/apache-2.0.LICENSE b/thirdparty/base/apache-2.0.LICENSE deleted file mode 100644 index f433b1a5..00000000 --- a/thirdparty/base/apache-2.0.LICENSE +++ /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/thirdparty/base/appdirs-1.4.3-py2.py3-none-any.whl b/thirdparty/base/appdirs-1.4.3-py2.py3-none-any.whl deleted file mode 100644 index fda65956..00000000 Binary files a/thirdparty/base/appdirs-1.4.3-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/appdirs.ABOUT b/thirdparty/base/appdirs.ABOUT deleted file mode 100644 index 489c4303..00000000 --- a/thirdparty/base/appdirs.ABOUT +++ /dev/null @@ -1,15 +0,0 @@ -about_resource: appdirs-1.4.3-py2.py3-none-any.whl -name: appdirs -version: 1.4.3 - -download_url: https://pypi.python.org/packages/56/eb/810e700ed1349edde4cbdc1b2a21e28cdf115f9faf263f6bbf8447c1abf3/appdirs-1.4.3-py2.py3-none-any.whl#md5=9ed4b51c9611775c3078b3831072e153 - -homepage_url: https://pypi.python.org/pypi/appdirs -owner: ActiveState - -vcs_repository: https://github.com/ActiveState/appdirs.git - -copyright: Copyright (c) 2010 ActiveState Software Inc. - -license_expression: mit -license_file: appdirs.LICENSE diff --git a/thirdparty/base/appdirs.LICENSE b/thirdparty/base/appdirs.LICENSE deleted file mode 100644 index d15d784d..00000000 --- a/thirdparty/base/appdirs.LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -Copyright (c) 2010 ActiveState Software 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, 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. - diff --git a/thirdparty/base/certifi-2017.4.17-py2.py3-none-any.whl b/thirdparty/base/certifi-2017.4.17-py2.py3-none-any.whl deleted file mode 100644 index 2350c983..00000000 Binary files a/thirdparty/base/certifi-2017.4.17-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/certifi.ABOUT b/thirdparty/base/certifi.ABOUT deleted file mode 100644 index 86317b28..00000000 --- a/thirdparty/base/certifi.ABOUT +++ /dev/null @@ -1,14 +0,0 @@ -about_resource: certifi-2017.4.17-py2.py3-none-any.whl -version: 2017.4.17 -description: Python package for providing Mozilla's CA Bundle. - -download_url: https://pypi.python.org/packages/eb/01/c1f58987b777d6c4ec535b4e004a4a07bfc9db06f0c7533367ca6da8f2a6/certifi-2017.4.17-py2.py3-none-any.whl - -owner: Kenneth Reitz -contact: me@kennethreitz.com -homepage_url: http://certifi.io/ -name: certifi - -license_expression: mpl-2.0 -license_file: mpl-2.0.LICENSE -notice_file: certifi.NOTICE \ No newline at end of file diff --git a/thirdparty/base/certifi.LICENSE b/thirdparty/base/certifi.LICENSE deleted file mode 100644 index 802b53ff..00000000 --- a/thirdparty/base/certifi.LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -This packge contains a modified version of ca-bundle.crt: - -ca-bundle.crt -- Bundle of CA Root Certificates - -Certificate data from Mozilla as of: Thu Nov 3 19:04:19 2011# -This is a bundle of X.509 certificates of public Certificate Authorities -(CA). These were automatically extracted from Mozilla's root certificates -file (certdata.txt). This file can be found in the mozilla source tree: -http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1# -It contains the certificates in PEM format and therefore -can be directly used with curl / libcurl / php_curl, or with -an Apache+mod_ssl webserver for SSL client authentication. -Just configure this file as the SSLCACertificateFile.# - -***** BEGIN LICENSE BLOCK ***** -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/. - -***** END LICENSE BLOCK ***** -@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ diff --git a/thirdparty/base/chardet.ABOUT b/thirdparty/base/chardet.ABOUT deleted file mode 100644 index 7f2cd641..00000000 --- a/thirdparty/base/chardet.ABOUT +++ /dev/null @@ -1,10 +0,0 @@ -about_resource: chardet-3.0.3-py2.py3-none-any.whl -name: chardet -version: 3.0.3 -homepage_url: https://github.com/chardet/chardet -download_url: https://pypi.python.org/packages/8c/27/99f781a11e4daa5acadf97add6e5883ec5f8f9abbf279e790fd0ff371db7/chardet-3.0.3-py2.py3-none-any.whl -license_expression: lgpl-2.1 -license_url: https://raw.github.com/erikrose/chardet/70af46cb8e146326081fd76360d1c19675ee627c/COPYING -license_file: lgpl-2.1.LICENSE -vcs_tool: git -vcs_repository: https://github.com/chardet/chardet.git diff --git a/thirdparty/base/idna-2.5-py2.py3-none-any.whl b/thirdparty/base/idna-2.5-py2.py3-none-any.whl deleted file mode 100644 index 1bd6c351..00000000 Binary files a/thirdparty/base/idna-2.5-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/idna.ABOUT b/thirdparty/base/idna.ABOUT deleted file mode 100644 index 1ff04bfe..00000000 --- a/thirdparty/base/idna.ABOUT +++ /dev/null @@ -1,21 +0,0 @@ -about_resource: idna-2.5-py2.py3-none-any.whl -version: 2.5 - -download_url: https://pypi.python.org/packages/11/7d/9bbbd7bb35f34b0169542487d2a8859e44306bb2e6a4455d491800a5621f/idna-2.5-py2.py3-none-any.whl - -owner: Kim Davies -homepage_url: https://github.com/kjd/idna -name: idna - -copyright: | - Copyright (c) 2013-2017, Kim Davies - Copyright (c) 2001-2014 Python Software Foundation - Copyright (c) 1991-2014 Unicode, Inc. - -license_expression: bsd-new and python and unicode-data-software - -license_file: | - idna.LICENSE - PSF.LICENSE - unicode-data-software.LICENSE -notice_file: idna.NOTICE \ No newline at end of file diff --git a/thirdparty/base/idna.LICENSE b/thirdparty/base/idna.LICENSE deleted file mode 100644 index 81a951e4..00000000 --- a/thirdparty/base/idna.LICENSE +++ /dev/null @@ -1,32 +0,0 @@ -License -------- - -Copyright (c) 2013-2017, Kim Davies. 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 copyright holder nor the names of the - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -#. THIS SOFTWARE IS PROVIDED BY THE 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. diff --git a/thirdparty/base/idna.NOTICE b/thirdparty/base/idna.NOTICE deleted file mode 100644 index 9d38815e..00000000 --- a/thirdparty/base/idna.NOTICE +++ /dev/null @@ -1,80 +0,0 @@ -License -------- - -Copyright (c) 2013-2017, Kim Davies. 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 copyright holder nor the names of the - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -#. THIS SOFTWARE IS PROVIDED BY THE 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. - -Portions of the codec implementation and unit tests are derived from the -Python standard library, which carries the `Python Software Foundation -License `_: - - Copyright (c) 2001-2014 Python Software Foundation; All Rights Reserved - -Portions of the unit tests are derived from the Unicode standard, which -is subject to the Unicode, Inc. License Agreement: - - Copyright (c) 1991-2014 Unicode, Inc. All rights reserved. - Distributed under the Terms of Use in - . - - 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 - - (a) this copyright and permission notice appear with all copies - of the Data Files or Software, - - (b) this copyright and permission notice appear in associated - documentation, and - - (c) there is clear notice in each modified Data File or in the Software - as well as in the documentation associated with the Data File(s) or - Software that the data or software has been modified. - - 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/thirdparty/base/packaging-16.8-py2.py3-none-any.whl b/thirdparty/base/packaging-16.8-py2.py3-none-any.whl deleted file mode 100644 index 5c9cc7af..00000000 Binary files a/thirdparty/base/packaging-16.8-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/packaging.ABOUT b/thirdparty/base/packaging.ABOUT deleted file mode 100644 index 4b62885e..00000000 --- a/thirdparty/base/packaging.ABOUT +++ /dev/null @@ -1,17 +0,0 @@ -about_resource: packaging-16.8-py2.py3-none-any.whl -name: packaging -version: 16.8 - -download_url: https://pypi.python.org/packages/87/1b/c39b7c65b5612812b83d6cab7ef2885eac9f6beb0b7b8a7071a186aea3b1/packaging-16.8-py2.py3-none-any.whl#md5=c7326351bf015fa53c74b0075923ab02 - -homepage_url: https://pypi.python.org/pypi/packaging -owner: Python Packaging Authority - -copyright: Copyright (c) Donald Stufft and individual contributors. - -license_expression: bsd-simplified or apache-2.0 -license_file: | - apache-2.0.LICENSE - packaging.LICENSE - -notice_file: packaging.NOTICE diff --git a/thirdparty/base/packaging.LICENSE b/thirdparty/base/packaging.LICENSE deleted file mode 100644 index 42ce7b75..00000000 --- a/thirdparty/base/packaging.LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -Copyright (c) Donald Stufft and individual 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. - -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/thirdparty/base/packaging.NOTICE b/thirdparty/base/packaging.NOTICE deleted file mode 100644 index 769ae59c..00000000 --- a/thirdparty/base/packaging.NOTICE +++ /dev/null @@ -1,3 +0,0 @@ -This software is made available under the terms of *either* of the licenses -found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made -under the terms of *both* these licenses. \ No newline at end of file diff --git a/thirdparty/base/pip-9.0.1-py2.py3-none-any.whl b/thirdparty/base/pip-9.0.1-py2.py3-none-any.whl deleted file mode 100644 index 4b8ecc69..00000000 Binary files a/thirdparty/base/pip-9.0.1-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/pip.ABOUT b/thirdparty/base/pip.ABOUT deleted file mode 100644 index 2bd06a80..00000000 --- a/thirdparty/base/pip.ABOUT +++ /dev/null @@ -1,14 +0,0 @@ -about_resource: pip-9.0.1-py2.py3-none-any.whl (1.3MB) -download_url: https://pypi.python.org/packages/b6/ac/7015eb97dc749283ffdec1c3a88ddb8ae03b8fad0f0e611408f196358da3/pip-9.0.1-py2.py3-none-any.whl#md5=297dbd16ef53bcef0447d245815f5144 -version: 9.0.1 - -name: pip -owner: The pip developers -contact: python-virtualenv@groups.google.com -homepage_url: http://www.pip-installer.org - -license_expression: mit, OTHER TODO -license_file: pip.LICENSE - -vcs_tool: git -vcs_repository: https://github.com/pypa/pip.git diff --git a/thirdparty/base/pyparsing-2.2.0-py2.py3-none-any.whl b/thirdparty/base/pyparsing-2.2.0-py2.py3-none-any.whl deleted file mode 100644 index 0465e176..00000000 Binary files a/thirdparty/base/pyparsing-2.2.0-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/pyparsing.ABOUT b/thirdparty/base/pyparsing.ABOUT deleted file mode 100644 index 5d4b69b6..00000000 --- a/thirdparty/base/pyparsing.ABOUT +++ /dev/null @@ -1,13 +0,0 @@ -about_resource: pyparsing-2.2.0-py2.py3-none-any.whl -name: pyparsing -version: 2.2.0 -homepage_url: http://pyparsing.wikispaces.com/ -download_url: https://pypi.python.org/packages/6a/8a/718fd7d3458f9fab8e67186b00abdd345b639976bc7fb3ae722e1b026a50/pyparsing-2.2.0-py2.py3-none-any.whl#md5=7247e7896688eff4bc8c7fc5d0cdd2b0 -owner: Paul McGuire -copyright: Copyright (c) 2003-2016 Paul T. McGuire - -vcs_tool: svn -vcs_repository: http://svn.code.sf.net/p/pyparsing/code/tags/pyparsing_2.1.9/ - -license_expression: mit -license_file: pyparsing.LICENSE diff --git a/thirdparty/base/requests-2.17.3-py2.py3-none-any.whl b/thirdparty/base/requests-2.17.3-py2.py3-none-any.whl deleted file mode 100644 index 0558438c..00000000 Binary files a/thirdparty/base/requests-2.17.3-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/requests.ABOUT b/thirdparty/base/requests.ABOUT deleted file mode 100644 index 77d9c064..00000000 --- a/thirdparty/base/requests.ABOUT +++ /dev/null @@ -1,15 +0,0 @@ -about_resource: requests-2.17.3-py2.py3-none-any.whl -version: 2.17.3 -download_url: https://pypi.python.org/packages/29/b9/d26a6ab2ee178415ab8c0c591d2a1eb782a50c42a417ae390055f86a63c1/requests-2.17.3-py2.py3-none-any.whl - -name: requests -homepage_url: http://python-requests.org -owner: Kenneth Reitz -license_expression: apache-2.0 -notice_file: requests.NOTICE -license_file: apache-2.0.LICENSE - -vcs_tool: git -vcs_repository: https://github.com/kennethreitz/requests.git - -copyright: Copyright (c) 2017 Kenneth Reitz diff --git a/thirdparty/base/setuptools-36.6.0-py2.py3-none-any.whl b/thirdparty/base/setuptools-36.6.0-py2.py3-none-any.whl deleted file mode 100644 index 4dc4b9ae..00000000 Binary files a/thirdparty/base/setuptools-36.6.0-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/setuptools.ABOUT b/thirdparty/base/setuptools.ABOUT deleted file mode 100644 index d128d712..00000000 --- a/thirdparty/base/setuptools.ABOUT +++ /dev/null @@ -1,11 +0,0 @@ -about_resource: setuptools-36.6.0-py2.py3-none-any.whl -version: 36.6.0 -download_url: https://pypi.python.org/packages/bd/4c/b06ab3abfc8bc93b87b70f4cab22352c3c72deba7b71390d14bfffa97c85/setuptools-36.6.0-py2.py3-none-any.whl#md5=df531523e300bc3e6b9ce4451681912c - -name: setuptools - -homepage_url: https://pypi.python.org/pypi/setuptools -owner: Python Packaging Authority - -license_expression: psf -license_file: PSF.LICENSE diff --git a/thirdparty/base/six-1.10.0-py2.py3-none-any.whl b/thirdparty/base/six-1.10.0-py2.py3-none-any.whl deleted file mode 100644 index 08872619..00000000 Binary files a/thirdparty/base/six-1.10.0-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/six.ABOUT b/thirdparty/base/six.ABOUT deleted file mode 100644 index 5260c6d9..00000000 --- a/thirdparty/base/six.ABOUT +++ /dev/null @@ -1,16 +0,0 @@ -about_resource: six-1.10.0-py2.py3-none-any.whl -version: 1.10.0 -download_url: https://pypi.python.org/packages/3.3/s/six/six-1.10.0-py2.py3-none-any.whl - -name: six -description: Python 2 and 3 compatibility utilities -homepage_url: http://bitbucket.org/gutworth/six -license_expression: mit -license_file: six.LICENSE - -owner: Benjamin Peterson -contact: http://www.benjamin-peterson.org/ -copyright: Copyright (c) 2010-2011 Benjamin Peterson - -vcs_tool: hg -vcs_repository: https://bitbucket.org/gutworth/six diff --git a/thirdparty/base/unicode-data-software.LICENSE b/thirdparty/base/unicode-data-software.LICENSE deleted file mode 100644 index 82d29855..00000000 --- a/thirdparty/base/unicode-data-software.LICENSE +++ /dev/null @@ -1,33 +0,0 @@ -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 (a) the above copyright notice(s) -and this permission notice appear with all copies of the Data Files or Software, -(b) both the above copyright notice(s) and this permission notice appear in -associated documentation, and (c) there is clear notice in each modified Data -File or in the Software as well as in the documentation associated with the Data -File(s) or Software that the data or software has been modified. - -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. - -Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United -States and other countries. All third party trademarks referenced herein are the -property of their respective owners. diff --git a/thirdparty/base/urllib3-1.21.1-py2.py3-none-any.whl b/thirdparty/base/urllib3-1.21.1-py2.py3-none-any.whl deleted file mode 100644 index 9061cfdf..00000000 Binary files a/thirdparty/base/urllib3-1.21.1-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/urllib3.ABOUT b/thirdparty/base/urllib3.ABOUT deleted file mode 100644 index 1c6792af..00000000 --- a/thirdparty/base/urllib3.ABOUT +++ /dev/null @@ -1,14 +0,0 @@ -about_resource: urllib3-1.21.1-py2.py3-none-any.whl -version: 1.21.1 -download_url: https://pypi.python.org/packages/24/53/f397db567de0aa0e81b211d81c13c41a779f14893e42189cf5bdb97611b2/urllib3-1.21.1-py2.py3-none-any.whl - -name: urllib3 -homepage_url: https://github.com/shazow/urllib3 -license_expression: mit -license_file: urllib3.LICENSE - -owner: Andrey Petrov -copyright: Copyright 2008-2016 Andrey Petrov and contributors - -vcs_tool: git -vcs_repository: https://github.com/shazow/urllib3.git diff --git a/thirdparty/base/urllib3.LICENSE b/thirdparty/base/urllib3.LICENSE deleted file mode 100644 index 1c3283ee..00000000 --- a/thirdparty/base/urllib3.LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -This is the MIT license: http://www.opensource.org/licenses/mit-license.php - -Copyright 2008-2016 Andrey Petrov and contributors (see CONTRIBUTORS.txt) - -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. diff --git a/thirdparty/base/virtualenv.py.ABOUT b/thirdparty/base/virtualenv.py.ABOUT deleted file mode 100644 index 51b0b3c5..00000000 --- a/thirdparty/base/virtualenv.py.ABOUT +++ /dev/null @@ -1,17 +0,0 @@ -about_resource: virtualenv.py -version: 15.1.0 -download_url: https://raw.githubusercontent.com/pypa/virtualenv/15.1.0/virtualenv.py - -vcs_tool: git -vcs_repository: https://github.com/pypa/virtualenv.git - -name: virtualenv -homepage_url: http://virtualenv.org/ -owner: The virtualenv developers - -license_url: https://raw.github.com/pypa/virtualenv/develop/LICENSE.txt -license_file: virtualenv.LICENSE -license_expression: mit -copyright: Copyright (c) 2007 Ian Bicking and Contributors - Copyright (c) 2009 Ian Bicking, The Open Planning Project - Copyright (c) 2011-2016 The virtualenv developers diff --git a/thirdparty/base/wheel-0.29.0-py2.py3-none-any.whl b/thirdparty/base/wheel-0.29.0-py2.py3-none-any.whl deleted file mode 100644 index 506d5e52..00000000 Binary files a/thirdparty/base/wheel-0.29.0-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/base/wheel.ABOUT b/thirdparty/base/wheel.ABOUT deleted file mode 100644 index a486f9eb..00000000 --- a/thirdparty/base/wheel.ABOUT +++ /dev/null @@ -1,13 +0,0 @@ -about_resource: wheel-0.29.0-py2.py3-none-any.whl -version: 0.29.0 -download_url: https://pypi.python.org/packages/py2.py3/w/wheel/wheel-0.29.0-py2.py3-none-any.whl - -name: wheel -homepage_url: https://bitbucket.org/pypa/wheel -vcs_tool: hg -vcs_repository: https://bitbucket.org/pypa/wheel - -copyright: copyright (c) 2012-2014 Daniel Holth and - contributors. -license_expression: mit -license_file: wheel.LICENSE \ No newline at end of file diff --git a/thirdparty/boolean.py-3.6-py2.py3-none-any.whl b/thirdparty/boolean.py-3.6-py2.py3-none-any.whl new file mode 100644 index 00000000..b1f55798 Binary files /dev/null and b/thirdparty/boolean.py-3.6-py2.py3-none-any.whl differ diff --git a/thirdparty/boolean.py-3.6-py2.py3-none-any.whl.ABOUT b/thirdparty/boolean.py-3.6-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..a0507008 --- /dev/null +++ b/thirdparty/boolean.py-3.6-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,18 @@ +about_resource: boolean.py-3.6-py2.py3-none-any.whl +attribute: true +checksum_md5: da39999eb131b589e84ad935dc4ca642 +checksum_sha1: d31b55e7ad2ee917232b3213afe3ae9678156a9f +copyright: Copyright (c) 2009-2016 Sebastian Kraemer, basti.kr@gmail.com and others +description: Implements boolean algebra in one module. +download_url: https://files.pythonhosted.org/packages/9b/27/d22062a221010e17935237ba4b574cd828238ea02e0765337c238466a512/boolean.py-3.6-py2.py3-none-any.whl +homepage_url: https://github.com/bastikr/boolean.py +license_expression: bsd-simplified +licenses: +- file: bsd-simplified.LICENSE + key: bsd-simplified + name: BSD-2-Clause +name: boolean.py +notice_file: boolean.py-3.6-py2.py3-none-any.whl.NOTICE +notice_url: https://github.com/bastikr/boolean.py/blob/master/LICENSE.txt +owner: Sebastian Kraemer +version: '3.6' diff --git a/thirdparty/prod/boolean.py.LICENSE b/thirdparty/boolean.py-3.6-py2.py3-none-any.whl.NOTICE similarity index 94% rename from thirdparty/prod/boolean.py.LICENSE rename to thirdparty/boolean.py-3.6-py2.py3-none-any.whl.NOTICE index a0c637f4..b1b5bb34 100644 --- a/thirdparty/prod/boolean.py.LICENSE +++ b/thirdparty/boolean.py-3.6-py2.py3-none-any.whl.NOTICE @@ -1,4 +1,4 @@ -Copyright (c) 2009-2016 Sebastian Kraemer, basti.kr@gmail.com and others +Copyright (c) 2009-2017 Sebastian Kraemer, basti.kr@gmail.com All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/thirdparty/bsd-new.LICENSE b/thirdparty/bsd-new.LICENSE new file mode 100644 index 00000000..57326dd0 --- /dev/null +++ b/thirdparty/bsd-new.LICENSE @@ -0,0 +1,9 @@ +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/thirdparty/bsd-simplified.LICENSE b/thirdparty/bsd-simplified.LICENSE new file mode 100644 index 00000000..804725c7 --- /dev/null +++ b/thirdparty/bsd-simplified.LICENSE @@ -0,0 +1,7 @@ +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. \ No newline at end of file diff --git a/thirdparty/bumpversion-0.5.4.dev0-py2.py3-none-any.whl b/thirdparty/bumpversion-0.5.4.dev0-py2.py3-none-any.whl new file mode 100644 index 00000000..662ed1ef Binary files /dev/null and b/thirdparty/bumpversion-0.5.4.dev0-py2.py3-none-any.whl differ diff --git a/thirdparty/bumpversion.ABOUT b/thirdparty/bumpversion.ABOUT new file mode 100644 index 00000000..08cf01f2 --- /dev/null +++ b/thirdparty/bumpversion.ABOUT @@ -0,0 +1,10 @@ +about_resource: bumpversion-0.5.4.dev0-py2.py3-none-any.whl +download_url: https://github.com/peritus/bumpversion/archive/00d121468e7e753b8c05f256ea0cfb759b805226.zip +name: bumpversion +version: 0.5.4-dev (00d121468e7) +home_url: https://github.com/peritus/bumpversion +author: Filip Noetzel +author_email: filip+bumpversion@j03.de +license: MIT +license-text_file: bumpversion.LICENSE +copyright: Copyright (C) 2013-2014 Filip Noetzel diff --git a/thirdparty/bumpversion.LICENSE b/thirdparty/bumpversion.LICENSE new file mode 100644 index 00000000..d33900c5 --- /dev/null +++ b/thirdparty/bumpversion.LICENSE @@ -0,0 +1,20 @@ +Copyright (C) 2013-2014 Filip Noetzel + +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. + diff --git a/thirdparty/certifi-2018.4.16-py2.py3-none-any.whl b/thirdparty/certifi-2018.4.16-py2.py3-none-any.whl new file mode 100644 index 00000000..37d13a39 Binary files /dev/null and b/thirdparty/certifi-2018.4.16-py2.py3-none-any.whl differ diff --git a/thirdparty/certifi-2018.4.16-py2.py3-none-any.whl.ABOUT b/thirdparty/certifi-2018.4.16-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..ac0ed234 --- /dev/null +++ b/thirdparty/certifi-2018.4.16-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,18 @@ +about_resource: certifi-2018.4.16-py2.py3-none-any.whl +checksum_md5: 8280b65d50546025140b542904e86c3b +checksum_sha1: 760c62185c36483f7f7b9db7788c699e9c735990 +contact: me@kennethreitz.com +copyright: Kenneth Reitz +description: Certifi is a carefully curated collection of Root Certificates for validating + the trustworthiness of SSL certificates while verifying the identity of TLS hosts. + It has been extracted from the Requests project. +download_url: https://files.pythonhosted.org/packages/7c/e6/92ad559b7192d846975fc916b65f667c7b8c3a32bea7372340bfe9a15fa5/certifi-2018.4.16-py2.py3-none-any.whl#sha256=9fa520c1bacfb634fa7af20a76bcbd3d5fb390481724c597da32c719a7dca4b0 +homepage_url: https://certifi.io/en/latest/ +license_expression: mpl-2.0 +name: certifi +notice_url: https://certifi.io/en/latest/ +notice_file: certifi.NOTICE +license_file: mpl-2.0.LICENSE +owner: Kenneth Reitz +owner_url: https://github.com/kennethreitz +version: 2018.4.16 diff --git a/thirdparty/base/certifi.NOTICE b/thirdparty/certifi.NOTICE similarity index 100% rename from thirdparty/base/certifi.NOTICE rename to thirdparty/certifi.NOTICE diff --git a/thirdparty/base/chardet-3.0.3-py2.py3-none-any.whl b/thirdparty/chardet-3.0.4-py2.py3-none-any.whl similarity index 93% rename from thirdparty/base/chardet-3.0.3-py2.py3-none-any.whl rename to thirdparty/chardet-3.0.4-py2.py3-none-any.whl index 47eb51a5..d276977d 100644 Binary files a/thirdparty/base/chardet-3.0.3-py2.py3-none-any.whl and b/thirdparty/chardet-3.0.4-py2.py3-none-any.whl differ diff --git a/thirdparty/chardet-3.0.4-py2.py3-none-any.whl.ABOUT b/thirdparty/chardet-3.0.4-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..b8b5633c --- /dev/null +++ b/thirdparty/chardet-3.0.4-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,16 @@ +about_resource: chardet-3.0.4-py2.py3-none-any.whl +checksum_md5: 0004b00caff7bb543a1d0d0bd0185a03 +checksum_sha1: 96faab7de7e9a71b37f22adb64daf2898e967e3e +copyright: Copyright (c) Mark Pilgrim, Netscape Communications Corporation, Dan Blanchard, + Ian Cordasco and others +description: Python 2/3 compatible character encoding detector. +download_url: https://pypi.python.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl#md5=0004b00caff7bb543a1d0d0bd0185a03 +homepage_url: https://github.com/chardet/chardet +license_expression: lgpl-2.1-plus +name: chardet +notice_url: https://github.com/chardet/chardet/blob/3.0.4/LICENSE +owner: chardet Project +owner_url: https://github.com/chardet +vcs_repository: https://github.com/chardet/chardet.git +version: 3.0.4 +license_file: lgpl-2.1-plus.LICENSE diff --git a/thirdparty/prod/click-6.7-py2.py3-none-any.whl b/thirdparty/click-6.7-py2.py3-none-any.whl similarity index 100% rename from thirdparty/prod/click-6.7-py2.py3-none-any.whl rename to thirdparty/click-6.7-py2.py3-none-any.whl diff --git a/thirdparty/prod/click.ABOUT b/thirdparty/click-6.7-py2.py3-none-any.whl.ABOUT similarity index 68% rename from thirdparty/prod/click.ABOUT rename to thirdparty/click-6.7-py2.py3-none-any.whl.ABOUT index c55d55e9..c5bb1ea9 100644 --- a/thirdparty/prod/click.ABOUT +++ b/thirdparty/click-6.7-py2.py3-none-any.whl.ABOUT @@ -1,16 +1,18 @@ about_resource: click-6.7-py2.py3-none-any.whl -version: 6.7 -download_url: https://pypi.python.org/packages/34/c1/8806f99713ddb993c5366c362b2f908f18269f8d792aff1abfd700775a77/click-6.7-py2.py3-none-any.whl#md5=5e7a4e296b3212da2ff11017675d7a4d -name: click - -owner: Armin Ronacher +checksum_md5: 5e7a4e296b3212da2ff11017675d7a4d +checksum_sha1: 9490775172e63ba94233d4b201f0e8d78b0cd939 contact: armin.ronacher@active-4.com +copyright: Copyright (c) 2014 by Armin Ronacher. +description: A simple wrapper around optparse for powerful command line utilities. +download_url: https://pypi.python.org/packages/34/c1/8806f99713ddb993c5366c362b2f908f18269f8d792aff1abfd700775a77/click-6.7-py2.py3-none-any.whl#md5=5e7a4e296b3212da2ff11017675d7a4d homepage_url: http://click.pocoo.org/ +license_expression: bsd-new +name: click vcs_tool: git vcs_repository: https://github.com/pallets/click.git -description: A simple wrapper around optparse for - powerful command line utilities. -license: bsd-new +owner: Armin Ronacher +owner_url: http://lucumr.pocoo.org/about/ +version: 6.7 license_file: click.LICENSE notes: Click uses parts of optparse written by Gregory P. Ward and maintained by the Python software foundation. This is limited to code in the parser.py diff --git a/thirdparty/prod/click.LICENSE b/thirdparty/click.LICENSE similarity index 100% rename from thirdparty/prod/click.LICENSE rename to thirdparty/click.LICENSE diff --git a/thirdparty/codecov-2.0.15-py2.py3-none-any.whl b/thirdparty/codecov-2.0.15-py2.py3-none-any.whl new file mode 100644 index 00000000..06d57b3d Binary files /dev/null and b/thirdparty/codecov-2.0.15-py2.py3-none-any.whl differ diff --git a/thirdparty/codecov.ABOUT b/thirdparty/codecov.ABOUT new file mode 100644 index 00000000..f362e1fe --- /dev/null +++ b/thirdparty/codecov.ABOUT @@ -0,0 +1,11 @@ +about_resource: codecov-2.0.15-py2.py3-none-any.whl +download_url: https://pypi.python.org/packages/8b/28/4c1950a61c3c5786f0f34d643d0d28ec832433c9a7c0bd157690d4eb1d5f/codecov-2.0.15-py2.py3-none-any.whl + +version: 2.0.15 + +name: codecov +home_url: https://github.com/codecov/codecov-python +owner: codecov +license_expression: apache-2.0 +license_file: apache-2.0.LICENSE +copyright: Copyright (c) codecov diff --git a/thirdparty/prod/colorama-0.3.9-py2.py3-none-any.whl b/thirdparty/colorama-0.3.9-py2.py3-none-any.whl similarity index 100% rename from thirdparty/prod/colorama-0.3.9-py2.py3-none-any.whl rename to thirdparty/colorama-0.3.9-py2.py3-none-any.whl diff --git a/thirdparty/prod/colorama.ABOUT b/thirdparty/colorama.ABOUT similarity index 78% rename from thirdparty/prod/colorama.ABOUT rename to thirdparty/colorama.ABOUT index 4e2ddc30..b5bdff9a 100644 --- a/thirdparty/prod/colorama.ABOUT +++ b/thirdparty/colorama.ABOUT @@ -4,8 +4,9 @@ version: 0.3.9 name: colorama description: Cross-platform colored terminal text -homepage_url: https://pypi.python.org/pypi/colorama +home_url: https://pypi.python.org/pypi/colorama owner: Jonathan Hartley license_expression: bds-new +keywords: color colour terminal text ansi windows crossplatform xplatform license_file: colorama.LICENSE copyright: Copyright (c) 2010 Jonathan Hartley \ No newline at end of file diff --git a/thirdparty/prod/colorama.LICENSE b/thirdparty/colorama.LICENSE similarity index 100% rename from thirdparty/prod/colorama.LICENSE rename to thirdparty/colorama.LICENSE diff --git a/thirdparty/dev/apache-2.0.LICENSE b/thirdparty/dev/apache-2.0.LICENSE deleted file mode 100644 index f433b1a5..00000000 --- a/thirdparty/dev/apache-2.0.LICENSE +++ /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/thirdparty/dev/apipkg-1.4-py2.py3-none-any.whl b/thirdparty/dev/apipkg-1.4-py2.py3-none-any.whl deleted file mode 100644 index 724449d9..00000000 Binary files a/thirdparty/dev/apipkg-1.4-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/dev/apipkg.ABOUT b/thirdparty/dev/apipkg.ABOUT deleted file mode 100644 index c0b1b141..00000000 --- a/thirdparty/dev/apipkg.ABOUT +++ /dev/null @@ -1,10 +0,0 @@ -about_resource: apipkg-1.4-py2.py3-none-any.whl -download_url: https://pypi.python.org/packages/94/72/fd4f2e46ce7b0d388191c819ef691c8195fab09602bbf1a2f92aa5351444/apipkg-1.4-py2.py3-none-any.whl#md5=5644eb6aff3f19e13430251a820e987f -version: 1.4.1 - -name: apipkg -homepage_url: https://bitbucket.org/hpk42/apipkg -owner: Holger Krekel -license_expression: mit -license_file: apipkg.LICENSE -copyright: Copyright (c) 2009 holger krekel diff --git a/thirdparty/dev/funcsigs.ABOUT b/thirdparty/dev/funcsigs.ABOUT deleted file mode 100644 index d533283c..00000000 --- a/thirdparty/dev/funcsigs.ABOUT +++ /dev/null @@ -1,12 +0,0 @@ -about_resource: funcsigs-1.0.2-py2.py3-none-any.whl -version: 1.0.2 -download_url: https://pypi.python.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz#md5=7e583285b1fb8a76305d6d68f4ccc14e - -name: funcsigs -description: funcsigs is a backport of the PEP 362 function signature features from Python 3.3’s inspect module. The backport is compatible with Python 2.6, 2.7 as well as 3.2 and up. - -homepage_url: http://funcsigs.readthedocs.org/ -owner: Testing Cabal -license: apache-2.0 -license_file: funcsigs.LICENSE -copyright: Copyright (c) Testing Cabal \ No newline at end of file diff --git a/thirdparty/dev/funcsigs.LICENSE b/thirdparty/dev/funcsigs.LICENSE deleted file mode 100644 index d9a10c0d..00000000 --- a/thirdparty/dev/funcsigs.LICENSE +++ /dev/null @@ -1,176 +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/thirdparty/dev/pbr-1.10.0-py2.py3-none-any.whl b/thirdparty/dev/pbr-1.10.0-py2.py3-none-any.whl deleted file mode 100644 index be5b24ed..00000000 Binary files a/thirdparty/dev/pbr-1.10.0-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/dev/pbr.ABOUT b/thirdparty/dev/pbr.ABOUT deleted file mode 100644 index 14893230..00000000 --- a/thirdparty/dev/pbr.ABOUT +++ /dev/null @@ -1,15 +0,0 @@ -about_resource: pbr-1.10.0-py2.py3-none-any.whl -version: 1.10.0 -download_url: https://pypi.python.org/packages/0c/53/014354fc93c591ccc4abff12c473ad565a2eb24dcd82490fae33dbf2539f/mock-2.0.0.tar.gz#md5=0febfafd14330c9dcaa40de2d82d40ad - -name: pbr -description: | - PBR is a library that injects some useful and sensible default behaviors into your setuptools run. - It started off life as the chunks of code that were copied between all of the OpenStack projects. - Around the time that OpenStack hit 18 different projects each with at least 3 active branches, it seemed like a good time to make that code into a proper reusable library. - -homepage_url: http://git.openstack.org/cgit/openstack-dev/pbr -owner: OpenStack -license: apache-2.0 -license_file: pbr.LICENSE -copyright: Copyright (c) OpenStack.org \ No newline at end of file diff --git a/thirdparty/dev/pbr.LICENSE b/thirdparty/dev/pbr.LICENSE deleted file mode 100644 index d9a10c0d..00000000 --- a/thirdparty/dev/pbr.LICENSE +++ /dev/null @@ -1,176 +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/thirdparty/dev/py-1.4.33-py2.py3-none-any.whl b/thirdparty/dev/py-1.4.33-py2.py3-none-any.whl deleted file mode 100644 index b5cd8d45..00000000 Binary files a/thirdparty/dev/py-1.4.33-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/dev/py.ABOUT b/thirdparty/dev/py.ABOUT deleted file mode 100644 index 3fb6e0f4..00000000 --- a/thirdparty/dev/py.ABOUT +++ /dev/null @@ -1,14 +0,0 @@ -about_resource: py-1.4.33-py2.py3-none-any.whl -version: 1.4.33 -download_url: https://pypi.python.org/packages/92/8b/ac214296ed28a05efd36e8b55a7820eda62d7028ecf10e5a98afb1982e93/py-1.4.33-py2.py3-none-any.whl - -name: py -description: library with cross-python path, ini-parsing, io, code, log facilities -homepage_url: http://pylib.readthedocs.org/ -owner: holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others -contact: pytest-dev@python.org -license_expression: mit -license_file: py.LICENSE -copyright: copyright (c) 2004-2014 Holger Krekel and others -vcs_tool: git -vcs_repository: https://github.com/pytest-dev/py.git \ No newline at end of file diff --git a/thirdparty/dev/py.LICENSE b/thirdparty/dev/py.LICENSE deleted file mode 100644 index 31ecdfb1..00000000 --- a/thirdparty/dev/py.LICENSE +++ /dev/null @@ -1,19 +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. - diff --git a/thirdparty/dev/pytest-3.1.0-py2.py3-none-any.whl b/thirdparty/dev/pytest-3.1.0-py2.py3-none-any.whl deleted file mode 100644 index dfaf980a..00000000 Binary files a/thirdparty/dev/pytest-3.1.0-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/dev/pytest.ABOUT b/thirdparty/dev/pytest.ABOUT deleted file mode 100644 index 0d584425..00000000 --- a/thirdparty/dev/pytest.ABOUT +++ /dev/null @@ -1,14 +0,0 @@ -about_resource: pytest-3.1.0-py2.py3-none-any.whl -download_url: https://pypi.python.org/packages/55/9c/5529093be0f518fe710d5b925680429c24810dadd6519c0ca86435656e85/pytest-3.1.0-py2.py3-none-any.whl -version: 3.1.0 - -name: pytest -description: "pytest: simple powerful testing with Python" -homepage_url: http://pytest.org -owner: Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others -contact: holger at merlinux.eu -license_expression: mit -license_file: pytest.LICENSE -copyright: Copyright Holger Krekel and others, 2004-2014 -vcs_tool: git -vcs_repository: https://github.com/pytest-dev/pytest.git \ No newline at end of file diff --git a/thirdparty/dev/funcsigs-1.0.2-py2.py3-none-any.whl b/thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl similarity index 100% rename from thirdparty/dev/funcsigs-1.0.2-py2.py3-none-any.whl rename to thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl diff --git a/thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl.ABOUT b/thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..712c4985 --- /dev/null +++ b/thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,23 @@ +about_resource: funcsigs-1.0.2-py2.py3-none-any.whl +attribute: true +checksum_md5: 701d58358171f34b6d1197de2923a35a +checksum_sha1: 8a601c541be194ae91f7b70075aa67d2a678ddbd +copyright: Copyright 2013 Aaron Iles +description: funcsigs is a backport of the PEP 362 function signature features from + Python 3.3's inspect module. The backport is compatible with Python 2.6, 2.7 as + well as 3.3 and up. 3.2 was supported by version 0.4, but with setuptools and + pip no longer supporting 3.2, we cannot make any statement about 3.2 compatibility. +download_url: https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl +homepage_url: http://funcsigs.readthedocs.org/ +license_expression: apache-2.0 +licenses: +- file: apache-2.0.LICENSE + key: apache-2.0 + name: Apache License 2.0 +name: funcsigs +notice_file: funcsigs-1.0.2-py2.py3-none-any.whl.NOTICE +notice_url: https://github.com/testing-cabal/funcsigs/blob/master/LICENSE +owner: testing-cabal +owner_url: https://github.com/testing-cabal +track_changes: true +version: 1.0.2 diff --git a/thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl.NOTICE b/thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl.NOTICE new file mode 100644 index 00000000..4906f96a --- /dev/null +++ b/thirdparty/funcsigs-1.0.2-py2.py3-none-any.whl.NOTICE @@ -0,0 +1,13 @@ +Copyright 2013 Aaron Iles + +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. \ No newline at end of file diff --git a/thirdparty/idna-2.6-py2.py3-none-any.whl b/thirdparty/idna-2.6-py2.py3-none-any.whl new file mode 100644 index 00000000..11cb4140 Binary files /dev/null and b/thirdparty/idna-2.6-py2.py3-none-any.whl differ diff --git a/thirdparty/idna-2.6-py2.py3-none-any.whl.ABOUT b/thirdparty/idna-2.6-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..d17b445d --- /dev/null +++ b/thirdparty/idna-2.6-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,28 @@ +about_resource: idna-2.6-py2.py3-none-any.whl +attribute: true +checksum_md5: 875c4a7b32b4897537d5ea9247b5c79e +checksum_sha1: a75f31778ea0bbf218d7ae085f4f961d004d6ff2 +contact: http://kim.id.au/ +copyright: Copyright (c) 2013-2017, Kim Davies +description: 'Internationalized Domain Names for Python (IDNA 2008 and UTS #46)' +download_url: https://pypi.python.org/packages/27/cc/6dd9a3869f15c2edfab863b992838277279ce92663d334df9ecf5106f5c6/idna-2.6-py2.py3-none-any.whl#md5=875c4a7b32b4897537d5ea9247b5c79e +homepage_url: https://github.com/kjd/idna +license_expression: bsd-new AND python AND unicode +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +- file: python.LICENSE + key: python + name: Python Software Foundation License v2 +- file: unicode.LICENSE + key: unicode + name: Unicode Inc License Agreement +name: idna +notice_file: idna-2.6-py2.py3-none-any.whl.NOTICE +notice_url: https://github.com/kjd/idna/blob/v2.6/LICENSE.rst +owner: Kim Davies +owner_url: https://github.com/kjd +track_changes: true +vcs_repository: https://github.com/kjd/idna +version: '2.6' diff --git a/thirdparty/idna-2.6-py2.py3-none-any.whl.NOTICE b/thirdparty/idna-2.6-py2.py3-none-any.whl.NOTICE new file mode 100644 index 00000000..45478d85 --- /dev/null +++ b/thirdparty/idna-2.6-py2.py3-none-any.whl.NOTICE @@ -0,0 +1,28 @@ +Copyright (c) 2013-2017, Kim Davies. 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 copyright holder nor the names of the contributors may be used to endorse or promote products derived from this software without specific prior written permission. + THIS SOFTWARE IS PROVIDED BY THE 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. + +Portions of the codec implementation and unit tests are derived from the Python standard library, which carries the Python Software Foundation License: + + Copyright (c) 2001-2014 Python Software Foundation; All Rights Reserved + +Portions of the unit tests are derived from the Unicode standard, which is subject to the Unicode, Inc. License Agreement: + + Copyright (c) 1991-2014 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in . + + 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 + + (a) this copyright and permission notice appear with all copies of the Data Files or Software, + + (b) this copyright and permission notice appear in associated documentation, and + + (c) there is clear notice in each modified Data File or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified. + + 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. \ No newline at end of file diff --git a/thirdparty/ipaddress-1.0.16-py27-none-any.whl b/thirdparty/ipaddress-1.0.16-py27-none-any.whl new file mode 100644 index 00000000..f1ce0dff Binary files /dev/null and b/thirdparty/ipaddress-1.0.16-py27-none-any.whl differ diff --git a/thirdparty/ipaddress.ABOUT b/thirdparty/ipaddress.ABOUT new file mode 100644 index 00000000..685d53ec --- /dev/null +++ b/thirdparty/ipaddress.ABOUT @@ -0,0 +1,17 @@ +about_resource: ipaddress-1.0.16-py2-none-any.whl +download_url: https://pypi.python.org/packages/cd/c5/bd44885274379121507870d4abfe7ba908326cf7bfd50a48d9d6ae091c0d/ipaddress-1.0.16.tar.gz#md5=1e27b62aa20f5b6fc200b2bdbf0d0847 +name: ipaddress +version: 1.0.16 + +license_expression: python +license_file: python.LICENSE + +note: This is a Python 2.7 backport of the Python 3.3 ipaddress module. the license is PSF + +copyright: Copyright (c) Google Inc. and others. + +owner: Philipp Hagemeister +home_url: https://github.com/phihag/ipaddress + +vcs_tool: git +vcs_repository: https://github.com/phihag/ipaddress.git diff --git a/thirdparty/base/lgpl-2.1.LICENSE b/thirdparty/lgpl-2.1-plus.LICENSE similarity index 100% rename from thirdparty/base/lgpl-2.1.LICENSE rename to thirdparty/lgpl-2.1-plus.LICENSE diff --git a/thirdparty/prod/lgpl-2.1.LICENSE b/thirdparty/lgpl-2.1.LICENSE similarity index 99% rename from thirdparty/prod/lgpl-2.1.LICENSE rename to thirdparty/lgpl-2.1.LICENSE index ba428aae..d8c9cefe 100644 --- a/thirdparty/prod/lgpl-2.1.LICENSE +++ b/thirdparty/lgpl-2.1.LICENSE @@ -55,7 +55,8 @@ 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 @@ -111,7 +112,8 @@ 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 @@ -158,7 +160,8 @@ 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 @@ -216,7 +219,8 @@ 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. @@ -267,7 +271,8 @@ Library will still fall under Section 6.) 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 @@ -329,7 +334,8 @@ 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 @@ -370,7 +376,8 @@ 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 @@ -422,7 +429,8 @@ 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 @@ -456,7 +464,8 @@ 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 diff --git a/thirdparty/license_expression-0.99-py2.py3-none-any.whl b/thirdparty/license_expression-0.99-py2.py3-none-any.whl new file mode 100644 index 00000000..de496136 Binary files /dev/null and b/thirdparty/license_expression-0.99-py2.py3-none-any.whl differ diff --git a/thirdparty/license_expression-0.99-py2.py3-none-any.whl.ABOUT b/thirdparty/license_expression-0.99-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..1deec7a3 --- /dev/null +++ b/thirdparty/license_expression-0.99-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: license_expression-0.99-py2.py3-none-any.whl +attribute: true +checksum_md5: cff177fd902ec3ee425fc2db26974aaa +checksum_sha1: 8d89733bf0012122d557b1b8a6c79a70fa742c46 +contact: http://www.nexb.com/contactus.html +copyright: Copyright (c) 2017 nexB Inc. and others. +description: Utility library to parse, normalize and compare License expressions for + Python using a boolean logic engine. For expressions using SPDX or any other license + id scheme. +download_url: https://files.pythonhosted.org/packages/8a/8e/f9786e4f61f5626d34e9a826790035817ff8c6b8100f0bd019a5eed00631/license_expression-0.99-py2.py3-none-any.whl +homepage_url: https://github.com/nexB/license-expression +license_expression: apache-2.0 +license_file: apache-2.0.LICENSE +name: license-expression +notice_file: license_expression-0.99-py2.py3-none-any.whl.NOTICE +notice_url: https://github.com/nexB/license-expression/blob/master/NOTICE +owner: nexB +owner_url: http://www.nexb.com/ +version: '0.99' diff --git a/thirdparty/prod/license-expression.NOTICE b/thirdparty/license_expression-0.99-py2.py3-none-any.whl.NOTICE similarity index 64% rename from thirdparty/prod/license-expression.NOTICE rename to thirdparty/license_expression-0.99-py2.py3-none-any.whl.NOTICE index 46142d0a..8e06419e 100644 --- a/thirdparty/prod/license-expression.NOTICE +++ b/thirdparty/license_expression-0.99-py2.py3-none-any.whl.NOTICE @@ -4,7 +4,7 @@ Software license license-expression is a free software tool from nexB Inc. and others. Visit https://github.com/nexB/license-expression for support and download. -Copyright (c) 2017 nexB Inc. and others. All rights reserved. +Copyright (c) 2016 nexB Inc. and others. All rights reserved. http://nexb.com and http://aboutcode.org This software is licensed under the Apache License version 2.0. @@ -15,3 +15,12 @@ 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. + + +Third-party software licenses +============================= + +license-expression embeds third-party free and open source software packages under +various licenses. The origin and license of these packages is documented by .ABOUT +files. The corresponding source code for pre-compiled third-party software is +available in the thirdparty directory. \ No newline at end of file diff --git a/thirdparty/mit.LICENSE b/thirdparty/mit.LICENSE new file mode 100644 index 00000000..e662c786 --- /dev/null +++ b/thirdparty/mit.LICENSE @@ -0,0 +1,5 @@ +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/thirdparty/dev/mock-2.0.0-py2.py3-none-any.whl b/thirdparty/mock-2.0.0-py2.py3-none-any.whl similarity index 100% rename from thirdparty/dev/mock-2.0.0-py2.py3-none-any.whl rename to thirdparty/mock-2.0.0-py2.py3-none-any.whl diff --git a/thirdparty/dev/mock.ABOUT b/thirdparty/mock-2.0.0-py2.py3-none-any.whl.ABOUT similarity index 91% rename from thirdparty/dev/mock.ABOUT rename to thirdparty/mock-2.0.0-py2.py3-none-any.whl.ABOUT index 2d68e113..fdde7dfc 100644 --- a/thirdparty/dev/mock.ABOUT +++ b/thirdparty/mock-2.0.0-py2.py3-none-any.whl.ABOUT @@ -8,7 +8,7 @@ homepage_url: https://github.com/testing-cabal/mock owner: Testing Cabal contact: http://lists.idyll.org/listinfo/testing-in-python license: bsd-simplified -license_file: mock.LICENSE +license_file: mock-2.0.0-py2.py3-none-any.whl.LICENSE copyright: Copyright (c) 2003-2013, Michael Foord & the mock team diff --git a/thirdparty/dev/mock.LICENSE b/thirdparty/mock-2.0.0-py2.py3-none-any.whl.LICENSE similarity index 100% rename from thirdparty/dev/mock.LICENSE rename to thirdparty/mock-2.0.0-py2.py3-none-any.whl.LICENSE diff --git a/thirdparty/more_itertools-4.2.0-py2-none-any.whl b/thirdparty/more_itertools-4.2.0-py2-none-any.whl new file mode 100644 index 00000000..5a31af74 Binary files /dev/null and b/thirdparty/more_itertools-4.2.0-py2-none-any.whl differ diff --git a/thirdparty/more_itertools-4.2.0-py2-none-any.whl.ABOUT b/thirdparty/more_itertools-4.2.0-py2-none-any.whl.ABOUT new file mode 100644 index 00000000..2a950853 --- /dev/null +++ b/thirdparty/more_itertools-4.2.0-py2-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: more_itertools-4.2.0-py2-none-any.whl +attribute: true +checksum_md5: 89 e95ea35f539a8e82c9a7b6156e4de1 +checksum_sha1: cdd72ea299f10dfec0e903d5a70d64a011f67300 +contact: grinch@grinchcentral.com +copyright: Copyright (c) Erik Rose +description: More routines for operating on iterables, beyond itertools +download_url: https://files.pythonhosted.org/packages/9e/92/d05d8679c3bcaa263169aa47de660080df36d35697855515745657c1ba78/more_itertools-4.2.0-py2-none-any.whl +homepage_url: https://github.com/erikrose/more-itertools +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: more_itertools +owner: Erik Rose +owner_url: http://www.grinchcentral.com/ +vcs_repository: https://github.com/erikrose/more-itertools +version: 4.2.0 diff --git a/thirdparty/more_itertools-4.2.0-py3-none-any.whl b/thirdparty/more_itertools-4.2.0-py3-none-any.whl new file mode 100644 index 00000000..0ac0745b Binary files /dev/null and b/thirdparty/more_itertools-4.2.0-py3-none-any.whl differ diff --git a/thirdparty/more_itertools-4.2.0-py3-none-any.whl.ABOUT b/thirdparty/more_itertools-4.2.0-py3-none-any.whl.ABOUT new file mode 100644 index 00000000..52d2cfb1 --- /dev/null +++ b/thirdparty/more_itertools-4.2.0-py3-none-any.whl.ABOUT @@ -0,0 +1,21 @@ +about_resource: more_itertools-4.2.0-py3-none-any.whl +attribute: true +checksum_md5: 6c3bac88c1996a46a4edc7631883098a +checksum_sha1: 94c95c3b9e2d638284a401f222c455cac6fcf1e4 +contact: grinch@grinchcentral.com +copyright: Copyright (c) Erik Rose +description: More routines for operating on iterables, beyond itertools +download_url: https://files.pythonhosted.org/packages/85/40/90c3b0393e12b9827381004224de8814686e3d7182f9d4182477f600826d/more_itertools-4.2.0-py3-none-any.whl +homepage_url: https://github.com/erikrose/more-itertools +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: more_itertools +notice_file: more_itertools-4.2.0-py3-none-any.whl.NOTICE +notice_url: https://github.com/erikrose/more-itertools/blob/4.2.0/LICENSE +owner: Erik Rose +owner_url: http://www.grinchcentral.com/ +vcs_repository: https://github.com/erikrose/more-itertools +version: 4.2.0 diff --git a/thirdparty/more_itertools-4.2.0-py3-none-any.whl.NOTICE b/thirdparty/more_itertools-4.2.0-py3-none-any.whl.NOTICE new file mode 100644 index 00000000..0a523bec --- /dev/null +++ b/thirdparty/more_itertools-4.2.0-py3-none-any.whl.NOTICE @@ -0,0 +1,19 @@ +Copyright (c) 2012 Erik Rose + +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. diff --git a/thirdparty/base/mpl-2.0.LICENSE b/thirdparty/mpl-2.0.LICENSE similarity index 100% rename from thirdparty/base/mpl-2.0.LICENSE rename to thirdparty/mpl-2.0.LICENSE diff --git a/thirdparty/nltk-3.2-py2-none-any.whl b/thirdparty/nltk-3.2-py2-none-any.whl new file mode 100644 index 00000000..bb9e8527 Binary files /dev/null and b/thirdparty/nltk-3.2-py2-none-any.whl differ diff --git a/thirdparty/nltk.ABOUT b/thirdparty/nltk.ABOUT new file mode 100644 index 00000000..1732ac1e --- /dev/null +++ b/thirdparty/nltk.ABOUT @@ -0,0 +1,8 @@ +about_resource: nltk-3.2-py2-none-any.whl +name: NLTK +version: 3.2 +homepage_url: http://www.nltk.org/ +license_expression: apache-2.0 +download_url: https://pypi.python.org/packages/source/n/nltk/nltk-3.2.tar.gz + +license_file: apache-2.0.LICENSE diff --git a/thirdparty/other-permissive.LICENSE b/thirdparty/other-permissive.LICENSE new file mode 100644 index 00000000..62c219c3 --- /dev/null +++ b/thirdparty/other-permissive.LICENSE @@ -0,0 +1 @@ +This component contains multiple third-party subcomponents licensed under permissive licenses in the style of MIT, BSD, X11, and/or Apache. \ No newline at end of file diff --git a/thirdparty/packageurl_python-0.7.0-py2.py3-none-any.whl b/thirdparty/packageurl_python-0.7.0-py2.py3-none-any.whl new file mode 100644 index 00000000..dd71bea8 Binary files /dev/null and b/thirdparty/packageurl_python-0.7.0-py2.py3-none-any.whl differ diff --git a/thirdparty/packageurl_python-0.7.0-py2.py3-none-any.whl.ABOUT b/thirdparty/packageurl_python-0.7.0-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..dd981da2 --- /dev/null +++ b/thirdparty/packageurl_python-0.7.0-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,14 @@ +about_resource: packageurl_python-0.7.0-py2.py3-none-any.whl +name: packageurl-python +version: 0.7.0 +attribute: true +checksum_md5: 00cfa9bf7d6bb225d80f3d3fcdc50be7 +checksum_sha1: bde94e3e752b235b4a1aa57525989225c105b9d0 +copyright: Copyright (c) The purl authors +download_url: https://files.pythonhosted.org/packages/7c/48/c4e3107a8071a399a1437cc7dc19166009849bc4bb66c9553935ea9db860/packageurl_python-0.7.0-py2.py3-none-any.whl +homepage_url: https://github.com/package-url/packageurl-python +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License diff --git a/thirdparty/pathlib2-2.3.2-py2.py3-none-any.whl b/thirdparty/pathlib2-2.3.2-py2.py3-none-any.whl new file mode 100644 index 00000000..0cd52d85 Binary files /dev/null and b/thirdparty/pathlib2-2.3.2-py2.py3-none-any.whl differ diff --git a/thirdparty/pathlib2-2.3.2-py2.py3-none-any.whl.ABOUT b/thirdparty/pathlib2-2.3.2-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..dca34560 --- /dev/null +++ b/thirdparty/pathlib2-2.3.2-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: pathlib2-2.3.2-py2.py3-none-any.whl +attribute: true +checksum_md5: 337ce92ec14734203665fca8c60d06f9 +checksum_sha1: ff29acd4cb59424e631179c2279d6fd9ac4a4566 +copyright: Copyright (c) 2014-2017 Matthias C. M. Troffaes Copyright (c) 2012-2014 + Antoine Pitrou and contributors +description: The goal of pathlib2 is to provide a backport of standard pathlib module + which tracks the standard library module, so all the newest features of the standard + pathlib can be used also on older Python versions. +download_url: https://files.pythonhosted.org/packages/66/a7/9f8d84f31728d78beade9b1271ccbfb290c41c1e4dc13dbd4997ad594dcd/pathlib2-2.3.2-py2.py3-none-any.whl +homepage_url: https://github.com/mcmtroffaes/pathlib2/ +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: pathlib2 +vcs_repository: https://github.com/mcmtroffaes/pathlib2 +version: 2.3.2 diff --git a/thirdparty/pbr-4.1.0-py2.py3-none-any.whl b/thirdparty/pbr-4.1.0-py2.py3-none-any.whl new file mode 100644 index 00000000..e7966341 Binary files /dev/null and b/thirdparty/pbr-4.1.0-py2.py3-none-any.whl differ diff --git a/thirdparty/pbr-4.1.0-py2.py3-none-any.whl.ABOUT b/thirdparty/pbr-4.1.0-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..18a00db0 --- /dev/null +++ b/thirdparty/pbr-4.1.0-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,12 @@ +homepage_url: https://docs.openstack.org/pbr/latest/ +about_resource: pbr-4.1.0-py2.py3-none-any.whl +name: pbr +version: 4.1.0 + +checksum_md5: 6fa3427a1cd28503459b2c6be97e3d90 +checksum_sha1: a3945f6b1de1d43df0533b7b0aecf80ae6877ee3 +copyright: | + Copyright 2011 OpenStack Foundation\r\nCopyright 2012-2013 Hewlett-Packard + Development Company, L.P. +download_url: https://files.pythonhosted.org/packages/ae/d6/2ab389a3bf5fffd03069dacaddb0cdd531594abab5119f308527c0df53e6/pbr-4.1.0-py2.py3-none-any.whl +license_expression: apache-2.0 diff --git a/thirdparty/pip-18.1-py2.py3-none-any.whl b/thirdparty/pip-18.1-py2.py3-none-any.whl new file mode 100644 index 00000000..c3c146f6 Binary files /dev/null and b/thirdparty/pip-18.1-py2.py3-none-any.whl differ diff --git a/thirdparty/pip-18.1-py2.py3-none-any.whl.ABOUT b/thirdparty/pip-18.1-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..69098519 --- /dev/null +++ b/thirdparty/pip-18.1-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,27 @@ +about_resource: pip-18.1-py2.py3-none-any.whl +attribute: true +checksum_md5: 2fba06061e2274c00c67804f6ddef15e +checksum_sha1: 470a41b274f5f0f3214b97a8915a0fbde7418c8d +copyright: Copyright (c) 2008-2016 The pip developers (see AUTHORS.txt file) +description: A tool for installing and managing Python packages. +download_url: https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl#sha256=7909d0a0932e88ea53a7014dfd14522ffef91a464daaaf5c573343852ef98550 +homepage_url: http://www.pip-installer.org +license_expression: mit AND bsd-new AND lgpl-2.1 +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +- file: lgpl-2.1.LICENSE + key: lgpl-2.1 + name: GNU Lesser General Public License 2.1 +- file: mit.LICENSE + key: mit + name: MIT License +name: pip +notice_file: pip-18.1-py2.py3-none-any.whl.NOTICE +notice_url: https://github.com/pypa/pip/blob/master/LICENSE.txt +owner: The pip developers +owner_url: http://www.pip-installer.org/en/latest/ +redistribute: true +track_changes: true +version: '18.1' diff --git a/thirdparty/base/pyparsing.LICENSE b/thirdparty/pip-18.1-py2.py3-none-any.whl.NOTICE similarity index 62% rename from thirdparty/base/pyparsing.LICENSE rename to thirdparty/pip-18.1-py2.py3-none-any.whl.NOTICE index 1bf98523..a7ced4ce 100644 --- a/thirdparty/base/pyparsing.LICENSE +++ b/thirdparty/pip-18.1-py2.py3-none-any.whl.NOTICE @@ -1,18 +1,20 @@ -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. +Copyright (c) 2008-2016 The pip developers (see AUTHORS.txt file) + +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/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl b/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl new file mode 100644 index 00000000..5d32d302 Binary files /dev/null and b/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl differ diff --git a/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl.ABOUT b/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..26e9df66 --- /dev/null +++ b/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: pluggy-0.8.0-py2.py3-none-any.whl +attribute: true +checksum_md5: 15ae1293ef2c5bfda2bda23985c58b29 +checksum_sha1: ed6f9151fcba487a9bcad3b438d8752d6f96e4f7 +contact: pytest-dev@python.org +copyright: Copyright (c) Holger Krekel +description: Plugin and hook calling mechanisms for python +download_url: https://files.pythonhosted.org/packages/1c/e7/017c262070af41fe251401cb0d0e1b7c38f656da634cd0c15604f1f30864/pluggy-0.8.0-py2.py3-none-any.whl +homepage_url: https://github.com/pytest-dev/pluggy +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: pluggy +notice_file: pluggy-0.8.0-py2.py3-none-any.whl.NOTICE +owner: pytest-dev +owner_url: https://github.com/pytest-dev +version: 0.8.0 diff --git a/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl.NOTICE b/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl.NOTICE new file mode 100644 index 00000000..7fa89e83 --- /dev/null +++ b/thirdparty/pluggy-0.8.0-py2.py3-none-any.whl.NOTICE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 holger krekel (rather uses bitbucket/hpk42) + +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/thirdparty/prod/Jinja2-2.9.6-py2.py3-none-any.whl b/thirdparty/prod/Jinja2-2.9.6-py2.py3-none-any.whl deleted file mode 100644 index 9fb201e6..00000000 Binary files a/thirdparty/prod/Jinja2-2.9.6-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/prod/Jinja2.ABOUT b/thirdparty/prod/Jinja2.ABOUT deleted file mode 100644 index df7c9433..00000000 --- a/thirdparty/prod/Jinja2.ABOUT +++ /dev/null @@ -1,9 +0,0 @@ -about_resource: Jinja2-2.9.6-py2.py3-none-any.whl -version: 2.9.6 -download_url: https://pypi.python.org/packages/5e/73/10c45b82a88ed6b7751bd40da31eeefd7b362e07b56a99aa6e56655a0794/Jinja2-2.9.6-py2.py3-none-any.whl#md5=61a215bcdb0f7939c70582bc00b293f1 - -name: Jinja2 -license_expression: bsd-new -copyright: Copyright (c) 2009 by the Jinja Team -license_file: Jinja2.LICENSE -homepage_url: http://jinja.pocoo.org/ diff --git a/thirdparty/prod/MarkupSafe.ABOUT b/thirdparty/prod/MarkupSafe.ABOUT deleted file mode 100644 index d872e56f..00000000 --- a/thirdparty/prod/MarkupSafe.ABOUT +++ /dev/null @@ -1,9 +0,0 @@ -about_resource: MarkupSafe-1.0.tar.gz -version: 1.0 -download_url: https://pypi.python.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/MarkupSafe-1.0.tar.gz#md5=2fcedc9284d50e577b5192e8e3578355 - -name: MarkupSafe -license_expression: bsd-new -copyright: Copyright (c) 2010 by Armin Ronacher and contributors -license_file: MarkupSafe.LICENSE -homepage_url: https://github.com/pallets/markupsafe diff --git a/thirdparty/prod/PSF.LICENSE b/thirdparty/prod/PSF.LICENSE deleted file mode 100644 index b6bddd8f..00000000 --- a/thirdparty/prod/PSF.LICENSE +++ /dev/null @@ -1,48 +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, 2007, 2008, 2009, 2010, -2011, 2012, 2013, 2014, 2015, 2016, 2017 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. diff --git a/thirdparty/prod/backports.csv-1.0.5-py2.py3-none-any.whl b/thirdparty/prod/backports.csv-1.0.5-py2.py3-none-any.whl deleted file mode 100644 index 7babb3c2..00000000 Binary files a/thirdparty/prod/backports.csv-1.0.5-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/prod/backports.csv.ABOUT b/thirdparty/prod/backports.csv.ABOUT deleted file mode 100644 index c682ebf3..00000000 --- a/thirdparty/prod/backports.csv.ABOUT +++ /dev/null @@ -1,13 +0,0 @@ -about_resource: backports.csv-1.0.5-py2.py3-none-any.whl -version: 1.0.5 -download_url: https://pypi.python.org/packages/23/01/0b1fce3fd8199fe32338dc66747baad52c7183b7f587128bc77cefde0620/backports.csv-1.0.5-py2.py3-none-any.whl#md5=2b3dc8b5ca0a6f50ed50595a074ed870 - -name: backports.csv -homepage_url: https://github.com/ryanhiebert/backports.csv -owner: Ryan Hiebert - -license: python -license_file: PSF.LICENSE - -vcs_tool: git -vcs_repository: https://github.com/ryanhiebert/backports.csv.git diff --git a/thirdparty/prod/boolean.py-3.5-py2.py3-none-any.whl b/thirdparty/prod/boolean.py-3.5-py2.py3-none-any.whl deleted file mode 100644 index 5fe68e51..00000000 Binary files a/thirdparty/prod/boolean.py-3.5-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/prod/boolean.py.ABOUT b/thirdparty/prod/boolean.py.ABOUT deleted file mode 100644 index 31eb628f..00000000 --- a/thirdparty/prod/boolean.py.ABOUT +++ /dev/null @@ -1,11 +0,0 @@ -about_resource: boolean.py-3.5-py2.py3-none-any.whl -version: 3.5 -download_url: https://pypi.python.org/packages/80/f3/0508ae7ba76b02f7fd666b705766edc1863fc8ef29d0519b4c95d60ab1bb/boolean.py-3.5-py2.py3-none-any.whl#md5=cf90b0c0530663bbf71a53fb58f6fa72 - -name: boolean.py - -copyright: Copyright (c) 2009-2016 Sebastian Kraemer, basti.kr@gmail.com and others -license_expression: bsd-simplified -license_file: boolean.py.LICENSE - -homepage_url: https://github.com/bastikr/boolean.py diff --git a/thirdparty/prod/license_expression-0.94-py2.py3-none-any.whl b/thirdparty/prod/license_expression-0.94-py2.py3-none-any.whl deleted file mode 100644 index c6c8a266..00000000 Binary files a/thirdparty/prod/license_expression-0.94-py2.py3-none-any.whl and /dev/null differ diff --git a/thirdparty/prod/license_expression.ABOUT b/thirdparty/prod/license_expression.ABOUT deleted file mode 100644 index b2cea2b5..00000000 --- a/thirdparty/prod/license_expression.ABOUT +++ /dev/null @@ -1,12 +0,0 @@ -about_resource: license_expression-0.94py2.py3-none-any.whl -name: license-expression -version: 0.94 -download_url: https://pypi.python.org/packages/d8/a5/24528298829a430d4ace4de39d7ae1cd94482c55aa5d6dceb98c1ae163a6/license_expression-0.94-py2.py3-none-any.whl#md5=19404419f6fe0db20a09f1416207138f - -copyright: Copyright (c) 2017 nexB Inc. and others. - -owner: nexB Inc. -license_expression: apache-2.0 -license_file: apache-2.0.LICENSE -notice_file: license-expression.NOTICE -homepage_url: https://github.com/nexB/license-expression diff --git a/thirdparty/public-domain.LICENSE b/thirdparty/public-domain.LICENSE new file mode 100644 index 00000000..a7a158b9 --- /dev/null +++ b/thirdparty/public-domain.LICENSE @@ -0,0 +1 @@ +Public Domain \ No newline at end of file diff --git a/thirdparty/py-1.7.0-py2.py3-none-any.whl b/thirdparty/py-1.7.0-py2.py3-none-any.whl new file mode 100644 index 00000000..dd9b412b Binary files /dev/null and b/thirdparty/py-1.7.0-py2.py3-none-any.whl differ diff --git a/thirdparty/py-1.7.0-py2.py3-none-any.whl.ABOUT b/thirdparty/py-1.7.0-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..7130d609 --- /dev/null +++ b/thirdparty/py-1.7.0-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: py-1.7.0-py2.py3-none-any.whl +attribute: true +checksum_md5: 22cf37693f28856ebbb74c08d01f7c76 +checksum_sha1: e2496f9e0563ded8c70e582b7ffcff46f87b8804 +contact: pytest-dev@python.org +copyright: Copyright (c) Holger Krekel and others +description: library with cross-python path, ini-parsing, io, code, log facilities +download_url: https://files.pythonhosted.org/packages/3e/c7/3da685ef117d42ac8d71af525208759742dd235f8094221fdaafcd3dba8f/py-1.7.0-py2.py3-none-any.whl +homepage_url: http://pylib.readthedocs.org/ +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: py +notice_file: py-1.7.0-py2.py3-none-any.whl.NOTICE +owner: pytest-dev +owner_url: https://github.com/pytest-dev +version: 1.7.0 diff --git a/thirdparty/dev/apipkg.LICENSE b/thirdparty/py-1.7.0-py2.py3-none-any.whl.NOTICE similarity index 93% rename from thirdparty/dev/apipkg.LICENSE rename to thirdparty/py-1.7.0-py2.py3-none-any.whl.NOTICE index 31ecdfb1..8abfb559 100644 --- a/thirdparty/dev/apipkg.LICENSE +++ b/thirdparty/py-1.7.0-py2.py3-none-any.whl.NOTICE @@ -1,19 +1,19 @@ - - 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. - +Copyright (c) 2004-2014 Holger Krekel and others + + 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/thirdparty/py2-ipaddress-3.4.1.tar.gz b/thirdparty/py2-ipaddress-3.4.1.tar.gz new file mode 100644 index 00000000..a16a586e Binary files /dev/null and b/thirdparty/py2-ipaddress-3.4.1.tar.gz differ diff --git a/thirdparty/py2-ipaddress-3.4.1.tar.gz.ABOUT b/thirdparty/py2-ipaddress-3.4.1.tar.gz.ABOUT new file mode 100644 index 00000000..397c63b3 --- /dev/null +++ b/thirdparty/py2-ipaddress-3.4.1.tar.gz.ABOUT @@ -0,0 +1,27 @@ +about_resource: py2-ipaddress-3.4.1.tar.gz +attribute: true +checksum_md5: 47734313c841068e3d5386d048d01c3d +checksum_sha1: 26d0737c3f4d11d831ffa02df4389a428bedf205 +contact: http://www.google.com/intl/en/contact/ +copyright: Copyright (c) Google Inc. and others +description: Python 2.7 backport of the Python 3.3 ipaddress module. Not all 3.3 functionality + is supported, due to the lack of a distinct bytes type in Python 2.7. Nevertheless, + it is quite useful if you're stuck with Python 2.7. +download_url: https://files.pythonhosted.org/packages/06/f2/ff20f2d2fd4757be329c8ecb81e9e7fa3bec0b65445821e3a575410cf194/py2-ipaddress-3.4.1.tar.gz +homepage_url: https://bitbucket.org/kwi/py2-ipaddress +license_expression: python AND public-domain +licenses: +- file: public-domain.LICENSE + key: public-domain + name: Public Domain +- file: python.LICENSE + key: python + name: Python Software Foundation License v2 +name: py2-ipaddress +notes: This is a Python 2.6 backport of the Python 3.4 ipaddress module. +notice_file: py2-ipaddress-3.4.1.tar.gz.NOTICE +owner: Google +owner_url: http://www.google.com/intl/en/about/index.html +track_changes: true +vcs_repository: https://bitbucket.org/kwi/py2-ipaddress +version: 3.4.1 diff --git a/thirdparty/py2-ipaddress-3.4.1.tar.gz.NOTICE b/thirdparty/py2-ipaddress-3.4.1.tar.gz.NOTICE new file mode 100644 index 00000000..2915c1d3 --- /dev/null +++ b/thirdparty/py2-ipaddress-3.4.1.tar.gz.NOTICE @@ -0,0 +1,10 @@ +License +------- + +The ``ipaddress`` modules (both the original and this backport) are licensed +under the `Python Software Foundation License version 2`__. + +The modifications made for Python 2.6 compatibility are hereby released into +the public domain by the authors. + +__ https://www.python.org/download/releases/3.4.0/license \ No newline at end of file diff --git a/thirdparty/py2_ipaddress-3.4.1-py2-none-any.whl b/thirdparty/py2_ipaddress-3.4.1-py2-none-any.whl new file mode 100644 index 00000000..34b89a81 Binary files /dev/null and b/thirdparty/py2_ipaddress-3.4.1-py2-none-any.whl differ diff --git a/thirdparty/py2_ipaddress-3.4.1-py2-none-any.whl.ABOUT b/thirdparty/py2_ipaddress-3.4.1-py2-none-any.whl.ABOUT new file mode 100644 index 00000000..99b47028 --- /dev/null +++ b/thirdparty/py2_ipaddress-3.4.1-py2-none-any.whl.ABOUT @@ -0,0 +1,25 @@ +about_resource: py2_ipaddress-3.4.1-py2-none-any.whl +attribute: true +contact: http://www.google.com/intl/en/contact/ +copyright: Copyright (c) Google Inc. and others +description: Python 2.7 backport of the Python 3.3 ipaddress module. Not all 3.3 functionality + is supported, due to the lack of a distinct bytes type in Python 2.7. Nevertheless, + it is quite useful if you're stuck with Python 2.7. +download_url: https://files.pythonhosted.org/packages/06/f2/ff20f2d2fd4757be329c8ecb81e9e7fa3bec0b65445821e3a575410cf194/py2-ipaddress-3.4.1.tar.gz +homepage_url: https://bitbucket.org/kwi/py2-ipaddress +license_expression: python AND public-domain +licenses: +- file: public-domain.LICENSE + key: public-domain + name: Public Domain +- file: python.LICENSE + key: python + name: Python Software Foundation License v2 +name: py2-ipaddress +notes: This is a Python 2.6 backport of the Python 3.4 ipaddress module. +notice_file: py2-ipaddress-3.4.1.tar.gz.NOTICE +owner: Google +owner_url: http://www.google.com/intl/en/about/index.html +track_changes: true +vcs_repository: https://bitbucket.org/kwi/py2-ipaddress +version: 3.4.1 diff --git a/thirdparty/pytest-3.9.2-py2.py3-none-any.whl b/thirdparty/pytest-3.9.2-py2.py3-none-any.whl new file mode 100644 index 00000000..772bb4c1 Binary files /dev/null and b/thirdparty/pytest-3.9.2-py2.py3-none-any.whl differ diff --git a/thirdparty/pytest-3.9.2-py2.py3-none-any.whl.ABOUT b/thirdparty/pytest-3.9.2-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..ff495e53 --- /dev/null +++ b/thirdparty/pytest-3.9.2-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: pytest-3.9.2-py2.py3-none-any.whl +attribute: true +checksum_md5: af3e44fae34364a246d887f523e17f44 +checksum_sha1: 08477e2826f6673f1298753d7d094d3939a939b0 +contact: pytest-dev@python.org +copyright: Copyright (c) Holger Krekel and others +description: 'pytest: simple powerful testing with Python' +download_url: https://files.pythonhosted.org/packages/80/2a/2995cbec008f624e1dd8ddc5350535a5d2f33c10b82c06037298e6c52bee/pytest-3.9.2-py2.py3-none-any.whl +homepage_url: http://pytest.org +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: pytest +notice_file: pytest-3.9.2-py2.py3-none-any.whl.NOTICE +owner: pytest-dev +owner_url: https://github.com/pytest-dev +version: 3.9.2 diff --git a/thirdparty/dev/pytest.LICENSE b/thirdparty/pytest-3.9.2-py2.py3-none-any.whl.NOTICE similarity index 93% rename from thirdparty/dev/pytest.LICENSE rename to thirdparty/pytest-3.9.2-py2.py3-none-any.whl.NOTICE index 9e27bd78..3dba330d 100644 --- a/thirdparty/dev/pytest.LICENSE +++ b/thirdparty/pytest-3.9.2-py2.py3-none-any.whl.NOTICE @@ -1,21 +1,21 @@ -The MIT License (MIT) - -Copyright (c) 2004-2016 Holger Krekel and others - -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 MIT License (MIT) + +Copyright (c) Holger Krekel and others + +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/thirdparty/python.LICENSE b/thirdparty/python.LICENSE new file mode 100644 index 00000000..81829681 --- /dev/null +++ b/thirdparty/python.LICENSE @@ -0,0 +1,192 @@ +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/thirdparty/prod/pyyaml.LICENSE b/thirdparty/pyyaml.LICENSE similarity index 100% rename from thirdparty/prod/pyyaml.LICENSE rename to thirdparty/pyyaml.LICENSE diff --git a/thirdparty/requests-2.18.4-py2.py3-none-any.whl b/thirdparty/requests-2.18.4-py2.py3-none-any.whl new file mode 100644 index 00000000..cf3bdc07 Binary files /dev/null and b/thirdparty/requests-2.18.4-py2.py3-none-any.whl differ diff --git a/thirdparty/requests-2.18.4-py2.py3-none-any.whl.ABOUT b/thirdparty/requests-2.18.4-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..c0a16cc4 --- /dev/null +++ b/thirdparty/requests-2.18.4-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: requests-2.18.4-py2.py3-none-any.whl +checksum_md5: eb9be71cc41fd73a51a7c9cd1adde5de +checksum_sha1: 52ccdd6ee808bddd0c6eabc6eda79e79381266df +contact: me@kennethreitz.com +copyright: Copyright (c) 2017 Kenneth Reitz +description: Requests is the only Non-GMO HTTP library for Python, safe for human + consumption. +download_url: https://pypi.python.org/packages/49/df/50aa1999ab9bde74656c2919d9c0c085fd2b3775fd3eca826012bef76d8c/requests-2.18.4-py2.py3-none-any.whl#md5=eb9be71cc41fd73a51a7c9cd1adde5de +homepage_url: http://python-requests.org +license_expression: apache-2.0 +name: Requests +owner: Kenneth Reitz +owner_url: https://github.com/kennethreitz +version: 2.18.4 +notice_file: requests.NOTICE +license_file: apache-2.0.LICENSE + +vcs_tool: git +vcs_repository: https://github.com/kennethreitz/requests.git diff --git a/thirdparty/base/requests.NOTICE b/thirdparty/requests.NOTICE similarity index 100% rename from thirdparty/base/requests.NOTICE rename to thirdparty/requests.NOTICE diff --git a/thirdparty/scandir-1.9.0-cp27-cp27m-macosx_10_11_x86_64.whl b/thirdparty/scandir-1.9.0-cp27-cp27m-macosx_10_11_x86_64.whl new file mode 100644 index 00000000..aa9d968a Binary files /dev/null and b/thirdparty/scandir-1.9.0-cp27-cp27m-macosx_10_11_x86_64.whl differ diff --git a/thirdparty/scandir-1.9.0-cp27-cp27m-macosx_10_11_x86_64.whl.ABOUT b/thirdparty/scandir-1.9.0-cp27-cp27m-macosx_10_11_x86_64.whl.ABOUT new file mode 100644 index 00000000..becb7188 --- /dev/null +++ b/thirdparty/scandir-1.9.0-cp27-cp27m-macosx_10_11_x86_64.whl.ABOUT @@ -0,0 +1,14 @@ +about_resource: scandir-1.9.0-cp27-cp27m-macosx_10_11_x86_64.whl +attribute: true +copyright: Copyright (c) Ben Hoyt +download_url: https://files.pythonhosted.org/packages/16/2a/557af1181e6b4e30254d5a6163b18f5053791ca66e251e77ab08887e8fe3/scandir-1.9.0.tar.gz +homepage_url: https://github.com/benhoyt/scandir +license_expression: bsd-new +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +name: scandir +owner: Ben Hoyt +vcs_repository: https://github.com/benhoyt/scandir +version: 1.9.0 diff --git a/thirdparty/scandir-1.9.0-cp27-cp27m-win32.whl b/thirdparty/scandir-1.9.0-cp27-cp27m-win32.whl new file mode 100644 index 00000000..fd2f1047 Binary files /dev/null and b/thirdparty/scandir-1.9.0-cp27-cp27m-win32.whl differ diff --git a/thirdparty/scandir-1.9.0-cp27-cp27m-win32.whl.ABOUT b/thirdparty/scandir-1.9.0-cp27-cp27m-win32.whl.ABOUT new file mode 100644 index 00000000..c02cc8bd --- /dev/null +++ b/thirdparty/scandir-1.9.0-cp27-cp27m-win32.whl.ABOUT @@ -0,0 +1,14 @@ +about_resource: scandir-1.9.0-cp27-cp27m-win32.whl +attribute: true +copyright: Copyright (c) Ben Hoyt +download_url: https://files.pythonhosted.org/packages/16/2a/557af1181e6b4e30254d5a6163b18f5053791ca66e251e77ab08887e8fe3/scandir-1.9.0.tar.gz +homepage_url: https://github.com/benhoyt/scandir +license_expression: bsd-new +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +name: scandir +owner: Ben Hoyt +vcs_repository: https://github.com/benhoyt/scandir +version: 1.9.0 diff --git a/thirdparty/scandir-1.9.0-cp27-cp27m-win_amd64.whl b/thirdparty/scandir-1.9.0-cp27-cp27m-win_amd64.whl new file mode 100644 index 00000000..7c718c67 Binary files /dev/null and b/thirdparty/scandir-1.9.0-cp27-cp27m-win_amd64.whl differ diff --git a/thirdparty/scandir-1.9.0-cp27-cp27m-win_amd64.whl.ABOUT b/thirdparty/scandir-1.9.0-cp27-cp27m-win_amd64.whl.ABOUT new file mode 100644 index 00000000..d8712ffe --- /dev/null +++ b/thirdparty/scandir-1.9.0-cp27-cp27m-win_amd64.whl.ABOUT @@ -0,0 +1,14 @@ +about_resource: scandir-1.9.0-cp27-cp27m-win_amd64.whl +attribute: true +copyright: Copyright (c) Ben Hoyt +download_url: https://files.pythonhosted.org/packages/16/2a/557af1181e6b4e30254d5a6163b18f5053791ca66e251e77ab08887e8fe3/scandir-1.9.0.tar.gz +homepage_url: https://github.com/benhoyt/scandir +license_expression: bsd-new +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +name: scandir +owner: Ben Hoyt +vcs_repository: https://github.com/benhoyt/scandir +version: 1.9.0 diff --git a/thirdparty/scandir-1.9.0-cp27-cp27mu-linux_x86_64.whl b/thirdparty/scandir-1.9.0-cp27-cp27mu-linux_x86_64.whl new file mode 100644 index 00000000..02641165 Binary files /dev/null and b/thirdparty/scandir-1.9.0-cp27-cp27mu-linux_x86_64.whl differ diff --git a/thirdparty/scandir-1.9.0-cp27-cp27mu-linux_x86_64.whl.ABOUT b/thirdparty/scandir-1.9.0-cp27-cp27mu-linux_x86_64.whl.ABOUT new file mode 100644 index 00000000..6db8cafd --- /dev/null +++ b/thirdparty/scandir-1.9.0-cp27-cp27mu-linux_x86_64.whl.ABOUT @@ -0,0 +1,14 @@ +about_resource: scandir-1.9.0-cp27-cp27mu-linux_x86_64.whl +attribute: true +copyright: Copyright (c) Ben Hoyt +download_url: https://files.pythonhosted.org/packages/16/2a/557af1181e6b4e30254d5a6163b18f5053791ca66e251e77ab08887e8fe3/scandir-1.9.0.tar.gz +homepage_url: https://github.com/benhoyt/scandir +license_expression: bsd-new +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +name: scandir +owner: Ben Hoyt +vcs_repository: https://github.com/benhoyt/scandir +version: 1.9.0 diff --git a/thirdparty/scandir-1.9.0.tar.gz b/thirdparty/scandir-1.9.0.tar.gz new file mode 100644 index 00000000..f134aace Binary files /dev/null and b/thirdparty/scandir-1.9.0.tar.gz differ diff --git a/thirdparty/scandir-1.9.0.tar.gz.ABOUT b/thirdparty/scandir-1.9.0.tar.gz.ABOUT new file mode 100644 index 00000000..769e15ce --- /dev/null +++ b/thirdparty/scandir-1.9.0.tar.gz.ABOUT @@ -0,0 +1,16 @@ +about_resource: scandir-1.9.0.tar.gz +attribute: true +checksum_md5: 506c4cc5f38c00b301642a9cb0433910 +checksum_sha1: 64c550daec4ef70aa913e1e046b265ff9914c3e8 +copyright: Copyright (c) Ben Hoyt +download_url: https://files.pythonhosted.org/packages/16/2a/557af1181e6b4e30254d5a6163b18f5053791ca66e251e77ab08887e8fe3/scandir-1.9.0.tar.gz +homepage_url: https://github.com/benhoyt/scandir +license_expression: bsd-new +licenses: +- file: bsd-new.LICENSE + key: bsd-new + name: BSD-3-Clause +name: scandir +owner: Ben Hoyt +vcs_repository: https://github.com/benhoyt/scandir +version: 1.9.0 diff --git a/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl b/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl new file mode 100644 index 00000000..7b1402d7 Binary files /dev/null and b/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl differ diff --git a/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl.ABOUT b/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..b4825038 --- /dev/null +++ b/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,23 @@ +about_resource: setuptools-40.4.3-py2.py3-none-any.whl +attribute: true +checksum_md5: dcc78bea79a5eab83e7174fb4000d804 +checksum_sha1: 40410299ab3c7b091f9dff4dd7bda7f874c4d1b6 +contact: distutils-sig@python.org +copyright: Copyright (c) Python Packaging Authority +description: Easily download, build, install, upgrade, and uninstall Python packages +download_url: https://files.pythonhosted.org/packages/96/06/c8ee69628191285ddddffb277bd5abdf769166e7a14b867c2a172f0175b1/setuptools-40.4.3-py2.py3-none-any.whl#sha256=ce4137d58b444bac11a31d4e0c1805c69d89e8ed4e91fde1999674ecc2f6f9ff +homepage_url: https://pypi.python.org/pypi/setuptools +license_expression: python AND mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +- file: python.LICENSE + key: python + name: Python Software Foundation License v2 +name: setuptools +notice_file: setuptools-40.4.3-py2.py3-none-any.whl.NOTICE +owner: Python Packaging Authority +owner_url: https://www.pypa.io/en/latest/ +track_changes: true +version: 40.4.3 diff --git a/thirdparty/base/setuptools.LICENSE b/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl.NOTICE similarity index 97% rename from thirdparty/base/setuptools.LICENSE rename to thirdparty/setuptools-40.4.3-py2.py3-none-any.whl.NOTICE index 6e0693b4..308e3587 100644 --- a/thirdparty/base/setuptools.LICENSE +++ b/thirdparty/setuptools-40.4.3-py2.py3-none-any.whl.NOTICE @@ -1,19 +1,19 @@ -Copyright (C) 2016 Jason R Coombs - -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. +Copyright (C) 2016 Jason R Coombs + +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/thirdparty/six-1.11.0-py2.py3-none-any.whl b/thirdparty/six-1.11.0-py2.py3-none-any.whl new file mode 100644 index 00000000..59960239 Binary files /dev/null and b/thirdparty/six-1.11.0-py2.py3-none-any.whl differ diff --git a/thirdparty/six-1.11.0-py2.py3-none-any.whl.ABOUT b/thirdparty/six-1.11.0-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..4d499046 --- /dev/null +++ b/thirdparty/six-1.11.0-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,18 @@ +about_resource: six-1.11.0-py2.py3-none-any.whl +checksum_md5: 866ab722be6bdfed6830f3179af65468 +checksum_sha1: fa2683a24d4a7422add33400048fc375b2afe57b +contact: benjamin@python.org +copyright: Copyright (c) 2010-2011 Benjamin Peterson +description: Six is a Python 2 and 3 compatibility library. It provides utility functions + for smoothing over the differences between the Python versions with the goal of + writing Python code that is compatible on both Python versions. +download_url: https://pypi.python.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl +homepage_url: http://bitbucket.org/gutworth/six +license_expression: mit +name: six +notice_file: six.LICENSE +notice_url: https://github.com/benjaminp/six/blob/master/LICENSE +owner: Benjamin Peterson +owner_url: http://www.benjamin-peterson.org/ +vcs_repository: https://bitbucket.org/gutworth/six +version: 1.11.0 diff --git a/thirdparty/base/six.LICENSE b/thirdparty/six.LICENSE similarity index 100% rename from thirdparty/base/six.LICENSE rename to thirdparty/six.LICENSE diff --git a/thirdparty/unicode.LICENSE b/thirdparty/unicode.LICENSE new file mode 100644 index 00000000..6d0fbca5 --- /dev/null +++ b/thirdparty/unicode.LICENSE @@ -0,0 +1,17 @@ +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/, and http://www.unicode.org/cldr/data/ . Unicode Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. + + 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-2009 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 (a) the above copyright notice(s) and this permission notice appear with all copies of the Data Files or Software, (b) both the above copyright notice(s) and this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified. + + 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. + + Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be registered in some jurisdictions. All other trademarks and registered trademarks mentioned herein are the property of their respective owners. diff --git a/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl b/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl new file mode 100644 index 00000000..1a906569 Binary files /dev/null and b/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl differ diff --git a/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl.ABOUT b/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..791f3f4d --- /dev/null +++ b/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,19 @@ +about_resource: virtualenv-16.0.0-py2.py3-none-any.whl +attribute: true +checksum_md5: d9ea4de7dc7830a8deec1a9f59de0a8a +checksum_sha1: dc15dc5965f4ecff4f8a5cbdc7fa3af38d2f03a9 +copyright: "Copyright (c) 2007 Ian Bicking and Contributors\r\nCopyright (c) 2009\ + \ Ian Bicking, The Open Planning Project\r\nCopyright (c) The virtualenv developers" +description: virtualenv is a tool to create isolated Python environments. +download_url: https://files.pythonhosted.org/packages/b6/30/96a02b2287098b23b875bc8c2f58071c35d2efe84f747b64d523721dc2b5/virtualenv-16.0.0-py2.py3-none-any.whl +homepage_url: http://virtualenv.org/ +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: virtualenv +notice_file: virtualenv-16.0.0-py2.py3-none-any.whl.NOTICE +owner: The virtualenv developers +owner_url: http://www.virtualenv.org/en/latest/ +version: 16.0.0 diff --git a/thirdparty/base/virtualenv.LICENSE b/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl.NOTICE similarity index 93% rename from thirdparty/base/virtualenv.LICENSE rename to thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl.NOTICE index ab145001..08dd0f29 100644 --- a/thirdparty/base/virtualenv.LICENSE +++ b/thirdparty/virtualenv-16.0.0-py2.py3-none-any.whl.NOTICE @@ -1,22 +1,22 @@ -Copyright (c) 2007 Ian Bicking and Contributors -Copyright (c) 2009 Ian Bicking, The Open Planning Project -Copyright (c) 2011-2016 The virtualenv developers - -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. +Copyright (c) 2007 Ian Bicking and Contributors +Copyright (c) 2009 Ian Bicking, The Open Planning Project +Copyright (c) 2011-2016 The virtualenv developers + +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/thirdparty/base/virtualenv.py b/thirdparty/virtualenv.py similarity index 97% rename from thirdparty/base/virtualenv.py rename to thirdparty/virtualenv.py index 42cd1f4b..cbf41de2 100644 --- a/thirdparty/base/virtualenv.py +++ b/thirdparty/virtualenv.py @@ -22,6 +22,7 @@ import zlib import errno import glob +import distutils.spawn import distutils.sysconfig import struct import subprocess @@ -36,12 +37,12 @@ except ImportError: import configparser as ConfigParser -__version__ = "15.1.0" +__version__ = "16.0.0" virtualenv_version = __version__ # legacy -if sys.version_info < (2, 6): +if sys.version_info < (2, 7): print('ERROR: %s' % sys.exc_info()[1]) - print('ERROR: this script requires Python 2.6 or greater.') + print('ERROR: this script requires Python 2.7 or greater.') sys.exit(101) try: @@ -538,7 +539,7 @@ def main(): '-p', '--python', dest='python', metavar='PYTHON_EXE', - help='The Python interpreter to use, e.g., --python=python2.5 will use the python2.5 ' + help='The Python interpreter to use, e.g., --python=python3.5 will use the python3.5 ' 'interpreter to create the new environment. The default is the interpreter that ' 'virtualenv was installed with (%s)' % sys.executable) @@ -569,12 +570,6 @@ def main(): default=True, help="Always copy files rather than symlinking.") - parser.add_option( - '--unzip-setuptools', - dest='unzip_setuptools', - action='store_true', - help="Unzip Setuptools when installing it.") - parser.add_option( '--relocatable', dest='relocatable', @@ -643,6 +638,11 @@ def main(): action='store_true', help="DEPRECATED. Retained only for backward compatibility. This option has no effect.") + parser.add_option( + '--unzip-setuptools', + action='store_true', + help="DEPRECATED. Retained only for backward compatibility. This option has no effect.") + if 'extend_parser' in globals(): extend_parser(parser) @@ -703,7 +703,6 @@ def main(): create_environment(home_dir, site_packages=options.system_site_packages, clear=options.clear, - unzip_setuptools=options.unzip_setuptools, prompt=options.prompt, search_dirs=options.search_dirs, download=options.download, @@ -859,9 +858,13 @@ def space_path2url(p): import tempfile import os - import pip + try: + from pip._internal import main as _main + cert_data = pkgutil.get_data("pip._vendor.certifi", "cacert.pem") + except ImportError: + from pip import main as _main + cert_data = pkgutil.get_data("pip._vendor.requests", "cacert.pem") - cert_data = pkgutil.get_data("pip._vendor.requests", "cacert.pem") if cert_data is not None: cert_file = tempfile.NamedTemporaryFile(delete=False) cert_file.write(cert_data) @@ -875,7 +878,7 @@ def space_path2url(p): args += ["--cert", cert_file.name] args += sys.argv[1:] - sys.exit(pip.main(args)) + sys.exit(_main(args)) finally: if cert_file is not None: os.remove(cert_file.name) @@ -905,7 +908,6 @@ def space_path2url(p): def create_environment(home_dir, site_packages=False, clear=False, - unzip_setuptools=False, prompt=None, search_dirs=None, download=False, no_setuptools=False, no_pip=False, no_wheel=False, symlink=True): @@ -1243,24 +1245,41 @@ def install_python(home_dir, lib_dir, inc_dir, bin_dir, site_packages, clear, sy elif os.path.exists(python_d_dest): logger.info('Removed python_d.exe as it is no longer at the source') os.unlink(python_d_dest) + # we need to copy the DLL to enforce that windows will load the correct one. # may not exist if we are cygwin. - py_executable_dll = 'python%s%s.dll' % ( - sys.version_info[0], sys.version_info[1]) - py_executable_dll_d = 'python%s%s_d.dll' % ( - sys.version_info[0], sys.version_info[1]) - pythondll = os.path.join(os.path.dirname(sys.executable), py_executable_dll) - pythondll_d = os.path.join(os.path.dirname(sys.executable), py_executable_dll_d) - pythondll_d_dest = os.path.join(os.path.dirname(py_executable), py_executable_dll_d) - if os.path.exists(pythondll): - logger.info('Also created %s' % py_executable_dll) - shutil.copyfile(pythondll, os.path.join(os.path.dirname(py_executable), py_executable_dll)) - if os.path.exists(pythondll_d): - logger.info('Also created %s' % py_executable_dll_d) - shutil.copyfile(pythondll_d, pythondll_d_dest) - elif os.path.exists(pythondll_d_dest): - logger.info('Removed %s as the source does not exist' % pythondll_d_dest) - os.unlink(pythondll_d_dest) + if is_pypy: + py_executable_dlls = [ + ( + 'libpypy-c.dll', + 'libpypy_d-c.dll', + ), + ] + else: + py_executable_dlls = [ + ( + 'python%s.dll' % (sys.version_info[0]), + 'python%s_d.dll' % (sys.version_info[0]) + ), + ( + 'python%s%s.dll' % (sys.version_info[0], sys.version_info[1]), + 'python%s%s_d.dll' % (sys.version_info[0], sys.version_info[1]) + ) + ] + + for py_executable_dll, py_executable_dll_d in py_executable_dlls: + pythondll = os.path.join(os.path.dirname(sys.executable), py_executable_dll) + pythondll_d = os.path.join(os.path.dirname(sys.executable), py_executable_dll_d) + pythondll_d_dest = os.path.join(os.path.dirname(py_executable), py_executable_dll_d) + if os.path.exists(pythondll): + logger.info('Also created %s' % py_executable_dll) + shutil.copyfile(pythondll, os.path.join(os.path.dirname(py_executable), py_executable_dll)) + if os.path.exists(pythondll_d): + logger.info('Also created %s' % py_executable_dll_d) + shutil.copyfile(pythondll_d, pythondll_d_dest) + elif os.path.exists(pythondll_d_dest): + logger.info('Removed %s as the source does not exist' % pythondll_d_dest) + os.unlink(pythondll_d_dest) if is_pypy: # make a symlink python --> pypy-c python_executable = os.path.join(os.path.dirname(py_executable), 'python') @@ -1270,7 +1289,7 @@ def install_python(home_dir, lib_dir, inc_dir, bin_dir, site_packages, clear, sy copyfile(py_executable, python_executable, symlink) if is_win: - for name in ['libexpat.dll', 'libpypy.dll', 'libpypy-c.dll', + for name in ['libexpat.dll', 'libeay32.dll', 'ssleay32.dll', 'sqlite3.dll', 'tcl85.dll', 'tk85.dll']: src = join(prefix, name) @@ -1554,11 +1573,7 @@ def resolve_interpreter(exe): exe = python_versions[exe] if os.path.abspath(exe) != exe: - paths = os.environ.get('PATH', '').split(os.pathsep) - for path in paths: - if os.path.exists(join(path, exe)): - exe = join(path, exe) - break + exe = distutils.spawn.find_executable(exe) or exe if not os.path.exists(exe): logger.fatal('The path %s (from --python=%s) does not exist' % (exe, orig_exe)) raise SystemExit(3) diff --git a/thirdparty/virtualenv.py.ABOUT b/thirdparty/virtualenv.py.ABOUT new file mode 100644 index 00000000..96161277 --- /dev/null +++ b/thirdparty/virtualenv.py.ABOUT @@ -0,0 +1,19 @@ +about_resource: virtualenv.py +attribute: true +checksum_md5: e90c0347ea7779ad01fb730f0e0f7845 +checksum_sha1: 8b84034c7e4d825dd8d11e44d61437bb0b05bb6d +copyright: "Copyright (c) 2007 Ian Bicking and Contributors\r\nCopyright (c) 2009\ + \ Ian Bicking, The Open Planning Project\r\nCopyright (c) The virtualenv developers" +description: virtualenv is a tool to create isolated Python environments. +download_url: https://raw.githubusercontent.com/pypa/virtualenv/16.0.0/virtualenv.py +homepage_url: http://virtualenv.org/ +license_expression: mit +licenses: +- file: mit.LICENSE + key: mit + name: MIT License +name: virtualenv +notice_file: virtualenv.py.NOTICE +owner: The virtualenv developers +owner_url: http://www.virtualenv.org/en/latest/ +version: 16.0.0 diff --git a/thirdparty/base/pip.LICENSE b/thirdparty/virtualenv.py.NOTICE similarity index 50% rename from thirdparty/base/pip.LICENSE rename to thirdparty/virtualenv.py.NOTICE index 6fd7633e..08dd0f29 100644 --- a/thirdparty/base/pip.LICENSE +++ b/thirdparty/virtualenv.py.NOTICE @@ -1,39 +1,22 @@ -Copyright (c) 2008-2014 The pip developers (see AUTHORS.txt file) - -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. - - -License for Bundle of CA Root Certificates (pip/cacert.pem) -=========================================================== - -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 +Copyright (c) 2007 Ian Bicking and Contributors +Copyright (c) 2009 Ian Bicking, The Open Planning Project +Copyright (c) 2011-2016 The virtualenv developers + +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/thirdparty/wheel-0.31.1-py2.py3-none-any.whl b/thirdparty/wheel-0.31.1-py2.py3-none-any.whl new file mode 100644 index 00000000..cfd7b906 Binary files /dev/null and b/thirdparty/wheel-0.31.1-py2.py3-none-any.whl differ diff --git a/thirdparty/wheel-0.31.1-py2.py3-none-any.whl.ABOUT b/thirdparty/wheel-0.31.1-py2.py3-none-any.whl.ABOUT new file mode 100644 index 00000000..87187174 --- /dev/null +++ b/thirdparty/wheel-0.31.1-py2.py3-none-any.whl.ABOUT @@ -0,0 +1,16 @@ +about_resource: wheel-0.31.1-py2.py3-none-any.whl +checksum_md5: c6fad0d4eb25cfb29f986a5558479dc1 +checksum_sha1: c6f78e969470216bca108cd961e2380fea23613f +contact: distutils-sig@python.org +copyright: copyright (c) 2012-2014 Daniel Holth and contributors. +download_url: https://files.pythonhosted.org/packages/81/30/e935244ca6165187ae8be876b6316ae201b71485538ffac1d718843025a9/wheel-0.31.1-py2.py3-none-any.whl#sha256=80044e51ec5bbf6c894ba0bc48d26a8c20a9ba629f4ca19ea26ecfcf87685f5f +homepage_url: https://bitbucket.org/pypa/wheel +license_expression: mit +name: Wheel +notice_file: wheel.LICENSE +owner: Python Packaging Authority +owner_url: https://www.pypa.io/en/latest/ +version: 0.31.1 + +vcs_tool: hg +vcs_repository: https://bitbucket.org/pypa/wheel diff --git a/thirdparty/base/wheel.LICENSE b/thirdparty/wheel.LICENSE similarity index 100% rename from thirdparty/base/wheel.LICENSE rename to thirdparty/wheel.LICENSE diff --git a/thirdparty/base/wincertstore-0.2-py2.py3-none-any.whl b/thirdparty/wincertstore-0.2-py2.py3-none-any.whl similarity index 100% rename from thirdparty/base/wincertstore-0.2-py2.py3-none-any.whl rename to thirdparty/wincertstore-0.2-py2.py3-none-any.whl diff --git a/thirdparty/base/wincertstore.ABOUT b/thirdparty/wincertstore.ABOUT similarity index 94% rename from thirdparty/base/wincertstore.ABOUT rename to thirdparty/wincertstore.ABOUT index 4064dd7d..ed134331 100644 --- a/thirdparty/base/wincertstore.ABOUT +++ b/thirdparty/wincertstore.ABOUT @@ -4,7 +4,7 @@ download_url: https://pypi.python.org/packages/2.7/w/wincertstore/wincertstore-0 name: wincertstore -license_expression: psf +license_expression: python license_file: wincertstore.LICENSE contact: christian@python.org diff --git a/thirdparty/base/wincertstore.LICENSE b/thirdparty/wincertstore.LICENSE similarity index 100% rename from thirdparty/base/wincertstore.LICENSE rename to thirdparty/wincertstore.LICENSE