diff --git a/.github/stale.yml b/.github/stale.yml index 9a4d28201..542ed574b 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -7,6 +7,11 @@ exemptLabels: - backlog - kind/debt - need-triage + - kind/requirement + - king/bug + - Epic + - target/1.7.5 + - target/1.8.0 # Label to use when marking an issue as stale staleLabel: staled # Comment to post when marking an issue as stale. Set to `false` to disable diff --git a/.gitignore b/.gitignore index 7e9ac6e59..7f8396f03 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ src/portal/src/**/*.js.map **/aot **/dist **/.bin +src/core/conf/app.conf diff --git a/Makefile b/Makefile index fe33ffa2f..0c986f070 100644 --- a/Makefile +++ b/Makefile @@ -4,13 +4,13 @@ # # all: prepare env, compile binaries, build images and install images # prepare: prepare env -# compile: compile adminserver, ui and jobservice code +# compile: compile core and jobservice code # # compile_golangimage: # compile from golang image # for example: make compile_golangimage -e GOBUILDIMAGE= \ # golang:1.11.2 -# compile_adminserver, compile_core, compile_jobservice: compile specific binary +# compile_core, compile_jobservice: compile specific binary # # build: build Harbor docker images from photon baseimage # @@ -43,7 +43,7 @@ # # clean: remove binary, Harbor images, specific version docker-compose \ # file, specific version tag and online/offline install package -# cleanbinary: remove adminserver, ui and jobservice binary +# cleanbinary: remove core and jobservice binary # cleanimage: remove Harbor images # cleandockercomposefile: # remove specific version docker-compose @@ -102,6 +102,7 @@ CLAIRVERSION=v2.0.7 CLAIRDBVERSION=$(VERSIONTAG) MIGRATORVERSION=$(VERSIONTAG) REDISVERSION=$(VERSIONTAG) +NOTARYMIGRATEVERSION=v3.5.4 # version of chartmuseum CHARTMUSEUMVERSION=v0.8.1 @@ -128,25 +129,24 @@ GOBUILDIMAGE=golang:1.11.2 GOBUILDPATH=$(GOBASEPATH)/harbor GOIMAGEBUILDCMD=/usr/local/go/bin/go GOIMAGEBUILD=$(GOIMAGEBUILDCMD) build -GOBUILDPATH_ADMINSERVER=$(GOBUILDPATH)/src/adminserver GOBUILDPATH_CORE=$(GOBUILDPATH)/src/core GOBUILDPATH_JOBSERVICE=$(GOBUILDPATH)/src/jobservice GOBUILDPATH_REGISTRYCTL=$(GOBUILDPATH)/src/registryctl +GOBUILDPATH_MIGRATEPATCH=$(GOBUILDPATH)/src/cmd/migrate-patch GOBUILDMAKEPATH=$(GOBUILDPATH)/make -GOBUILDMAKEPATH_ADMINSERVER=$(GOBUILDMAKEPATH)/photon/adminserver GOBUILDMAKEPATH_CORE=$(GOBUILDMAKEPATH)/photon/core GOBUILDMAKEPATH_JOBSERVICE=$(GOBUILDMAKEPATH)/photon/jobservice GOBUILDMAKEPATH_REGISTRYCTL=$(GOBUILDMAKEPATH)/photon/registryctl +GOBUILDMAKEPATH_NOTARY=$(GOBUILDMAKEPATH)/photon/notary # binary -ADMINSERVERBINARYPATH=$(MAKEDEVPATH)/adminserver -ADMINSERVERBINARYNAME=harbor_adminserver CORE_BINARYPATH=$(MAKEDEVPATH)/core CORE_BINARYNAME=harbor_core JOBSERVICEBINARYPATH=$(MAKEDEVPATH)/jobservice JOBSERVICEBINARYNAME=harbor_jobservice REGISTRYCTLBINARYPATH=$(MAKEDEVPATH)/registryctl REGISTRYCTLBINARYNAME=harbor_registryctl +MIGRATEPATCHBINARYNAME=migrate-patch # configfile CONFIGPATH=$(MAKEPATH) @@ -174,7 +174,6 @@ MAKEFILEPATH_PHOTON=$(MAKEPATH)/photon DOCKERFILEPATH_COMMON=$(MAKEPATH)/common # docker image name -DOCKERIMAGENAME_ADMINSERVER=goharbor/harbor-adminserver DOCKERIMAGENAME_PORTAL=goharbor/harbor-portal DOCKERIMAGENAME_CORE=goharbor/harbor-core DOCKERIMAGENAME_JOBSERVICE=goharbor/harbor-jobservice @@ -209,8 +208,7 @@ REGISTRYUSER=user REGISTRYPASSWORD=default # cmds -DOCKERSAVE_PARA=$(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) \ - $(DOCKERIMAGENAME_PORTAL):$(VERSIONTAG) \ +DOCKERSAVE_PARA= $(DOCKERIMAGENAME_PORTAL):$(VERSIONTAG) \ $(DOCKERIMAGENAME_CORE):$(VERSIONTAG) \ $(DOCKERIMAGENAME_LOG):$(VERSIONTAG) \ $(DOCKERIMAGENAME_DB):$(VERSIONTAG) \ @@ -223,15 +221,13 @@ PACKAGE_OFFLINE_PARA=-zcvf harbor-offline-installer-$(PKGVERSIONTAG).tgz \ $(HARBORPKG)/common/templates $(HARBORPKG)/$(DOCKERIMGFILE).$(VERSIONTAG).tar.gz \ $(HARBORPKG)/prepare \ $(HARBORPKG)/LICENSE $(HARBORPKG)/install.sh \ - $(HARBORPKG)/harbor.cfg $(HARBORPKG)/$(DOCKERCOMPOSEFILENAME) \ - $(HARBORPKG)/open_source_license - + $(HARBORPKG)/harbor.cfg $(HARBORPKG)/$(DOCKERCOMPOSEFILENAME) + PACKAGE_ONLINE_PARA=-zcvf harbor-online-installer-$(PKGVERSIONTAG).tgz \ $(HARBORPKG)/common/templates $(HARBORPKG)/prepare \ $(HARBORPKG)/LICENSE \ $(HARBORPKG)/install.sh $(HARBORPKG)/$(DOCKERCOMPOSEFILENAME) \ - $(HARBORPKG)/harbor.cfg \ - $(HARBORPKG)/open_source_license + $(HARBORPKG)/harbor.cfg DOCKERCOMPOSE_LIST=-f $(DOCKERCOMPOSEFILEPATH)/$(DOCKERCOMPOSEFILENAME) @@ -264,13 +260,6 @@ ui_version: check_environment: @$(MAKEPATH)/$(CHECKENVCMD) -compile_adminserver: - @echo "compiling binary for adminserver (golang image)..." - @echo $(GOBASEPATH) - @echo $(GOBUILDPATH) - $(DOCKERCMD) run --rm -v $(BUILDPATH):$(GOBUILDPATH) -w $(GOBUILDPATH_ADMINSERVER) $(GOBUILDIMAGE) $(GOIMAGEBUILD) -o $(GOBUILDMAKEPATH_ADMINSERVER)/$(ADMINSERVERBINARYNAME) - @echo "Done." - compile_core: @echo "compiling binary for core (golang image)..." @echo $(GOBASEPATH) @@ -288,7 +277,12 @@ compile_registryctl: @$(DOCKERCMD) run --rm -v $(BUILDPATH):$(GOBUILDPATH) -w $(GOBUILDPATH_REGISTRYCTL) $(GOBUILDIMAGE) $(GOIMAGEBUILD) -o $(GOBUILDMAKEPATH_REGISTRYCTL)/$(REGISTRYCTLBINARYNAME) @echo "Done." -compile:check_environment compile_adminserver compile_core compile_jobservice compile_registryctl +compile_notary_migrate_patch: + @echo "compiling binary for migrate patch (golang image)..." + @$(DOCKERCMD) run --rm -v $(BUILDPATH):$(GOBUILDPATH) -w $(GOBUILDPATH_MIGRATEPATCH) $(GOBUILDIMAGE) $(GOIMAGEBUILD) -o $(GOBUILDMAKEPATH_NOTARY)/$(MIGRATEPATCHBINARYNAME) + @echo "Done." + +compile:check_environment compile_core compile_jobservice compile_registryctl compile_notary_migrate_patch prepare: @echo "preparing..." @@ -296,7 +290,7 @@ prepare: build: make -f $(MAKEFILEPATH_PHOTON)/Makefile build -e DEVFLAG=$(DEVFLAG) \ - -e REGISTRYVERSION=$(REGISTRYVERSION) -e NGINXVERSION=$(NGINXVERSION) -e NOTARYVERSION=$(NOTARYVERSION) \ + -e REGISTRYVERSION=$(REGISTRYVERSION) -e NGINXVERSION=$(NGINXVERSION) -e NOTARYVERSION=$(NOTARYVERSION) -e NOTARYMIGRATEVERSION=$(NOTARYMIGRATEVERSION) \ -e CLAIRVERSION=$(CLAIRVERSION) -e CLAIRDBVERSION=$(CLAIRDBVERSION) -e VERSIONTAG=$(VERSIONTAG) \ -e BUILDBIN=$(BUILDBIN) -e REDISVERSION=$(REDISVERSION) -e MIGRATORVERSION=$(MIGRATORVERSION) \ -e CHARTMUSEUMVERSION=$(CHARTMUSEUMVERSION) -e DOCKERIMAGENAME_CHART_SERVER=$(DOCKERIMAGENAME_CHART_SERVER) @@ -320,7 +314,6 @@ modify_composefile_clair: @cp $(DOCKERCOMPOSEFILEPATH)/$(DOCKERCOMPOSECLAIRTPLFILENAME) $(DOCKERCOMPOSEFILEPATH)/$(DOCKERCOMPOSECLAIRFILENAME) @$(SEDCMD) -i -e 's/__postgresql_version__/$(CLAIRDBVERSION)/g' $(DOCKERCOMPOSEFILEPATH)/$(DOCKERCOMPOSECLAIRFILENAME) @$(SEDCMD) -i -e 's/__clair_version__/$(CLAIRVERSION)-$(VERSIONTAG)/g' $(DOCKERCOMPOSEFILEPATH)/$(DOCKERCOMPOSECLAIRFILENAME) - modify_composefile_chartmuseum: @echo "preparing docker-compose chartmuseum file..." @cp $(DOCKERCOMPOSEFILEPATH)/$(DOCKERCOMPOSECHARTMUSEUMTPLFILENAME) $(DOCKERCOMPOSEFILEPATH)/$(DOCKERCOMPOSECHARTMUSEUMFILENAME) @@ -344,7 +337,6 @@ package_online: modify_composefile $(HARBORPKG)/docker-compose.yml ; \ fi @cp LICENSE $(HARBORPKG)/LICENSE - @cp open_source_license $(HARBORPKG)/open_source_license @$(TARCMD) $(PACKAGE_ONLINE_PARA) @rm -rf $(HARBORPKG) @@ -354,7 +346,6 @@ package_offline: compile ui_version build modify_sourcefiles modify_composefile @echo "packing offline package ..." @cp -r make $(HARBORPKG) @cp LICENSE $(HARBORPKG)/LICENSE - @cp open_source_license $(HARBORPKG)/open_source_license @echo "saving harbor docker image" @$(DOCKERSAVE) $(DOCKERSAVE_PARA) > $(HARBORPKG)/$(DOCKERIMGFILE).$(VERSIONTAG).tar @@ -409,11 +400,6 @@ govet: pushimage: @echo "pushing harbor images ..." - @$(DOCKERTAG) $(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) $(REGISTRYSERVER)$(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) - @$(PUSHSCRIPTPATH)/$(PUSHSCRIPTNAME) $(REGISTRYSERVER)$(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) \ - $(REGISTRYUSER) $(REGISTRYPASSWORD) $(REGISTRYSERVER) - @$(DOCKERRMIMAGE) $(REGISTRYSERVER)$(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) - @$(DOCKERTAG) $(DOCKERIMAGENAME_PORTAL):$(VERSIONTAG) $(REGISTRYSERVER)$(DOCKERIMAGENAME_PORTAL):$(VERSIONTAG) @$(PUSHSCRIPTPATH)/$(PUSHSCRIPTNAME) $(REGISTRYSERVER)$(DOCKERIMAGENAME_PORTAL):$(VERSIONTAG) \ $(REGISTRYUSER) $(REGISTRYPASSWORD) $(REGISTRYSERVER) @@ -466,13 +452,11 @@ swagger_client: cleanbinary: @echo "cleaning binary..." - @if [ -f $(ADMINSERVERBINARYPATH)/$(ADMINSERVERBINARYNAME) ] ; then rm $(ADMINSERVERBINARYPATH)/$(ADMINSERVERBINARYNAME) ; fi @if [ -f $(CORE_BINARYPATH)/$(CORE_BINARYNAME) ] ; then rm $(CORE_BINARYPATH)/$(CORE_BINARYNAME) ; fi @if [ -f $(JOBSERVICEBINARYPATH)/$(JOBSERVICEBINARYNAME) ] ; then rm $(JOBSERVICEBINARYPATH)/$(JOBSERVICEBINARYNAME) ; fi cleanimage: @echo "cleaning image for photon..." - - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_CORE):$(VERSIONTAG) - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_DB):$(VERSIONTAG) - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_JOBSERVICE):$(VERSIONTAG) diff --git a/OWNERS.md b/OWNERS.md index 9e639ef5a..54cb35222 100644 --- a/OWNERS.md +++ b/OWNERS.md @@ -15,11 +15,11 @@ describes governance guidelines and maintainer responsibilities. | Qian Deng | [ninjadq](https://github.com/ninjadq) | [VMware](https://www.github.com/vmware/) | | Mia Zhou | [zhoumeina](https://github.com/zhoumeina) | [VMware](https://www.github.com/vmware/) | | Steven Zou | [steven-zou](https://github.com/steven-zou) | [VMware](https://www.github.com/vmware/) | -| James Zabala | [clouderati](https://github.com/clouderati) | [VMware](https://www.github.com/vmware/) | - # Maintainers | Maintainer | GitHub ID | Affiliation | | ---------- | --------- | ----------- | | Nathan Lowe | [nlowe](https://github.com/nlowe) | [Hyland Software](https://github.com/HylandSoftware) | | De Chen | [cd1989](https://github.com/cd1989) | [Caicloud](https://github.com/caicloud) | +| Mingming Pei | [mmpei](https://github.com/mmpei) | [Netease](https://github.com/netease) | +| Fanjian Kong | [kofj](https://github.com/kofj) | [Qihoo360](https://github.com/Qihoo360) | diff --git a/README.md b/README.md index 1921335cc..c0f754d09 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,9 @@ Refer to **[User Guide](docs/user_guide.md)** for more details on how to use Har ## Community * **Twitter:** [@project_harbor](https://twitter.com/project_harbor) -* **User Group:** Join Harbor user email group: [harbor-users@googlegroups.com](https://groups.google.com/forum/#!forum/harbor-users) to get update of Harbor's news, features, releases, or to provide suggestion and feedback. To subscribe, send an email to [harbor-users+subscribe@googlegroups.com](mailto:harbor-users+subscribe@googlegroups.com) . -* **Developer Group:** Join Harbor developer group: [harbor-dev@googlegroups.com](https://groups.google.com/forum/#!forum/harbor-dev) for discussion on Harbor development and contribution. To subscribe, send an email to [harbor-dev+subscribe@googlegroups.com](mailto:harbor-dev+subscribe@googlegroups.com). -* **Slack:** Join Harbor's community for discussion and ask questions: [Cloud Native Computing Foundation](https://slack.cncf.io/), channel: #harbor and #harbor-dev +* **User Group:** Join Harbor user email group: [harbor-users@lists.cncf.io](https://lists.cncf.io/g/harbor-users) to get update of Harbor's news, features, releases, or to provide suggestion and feedback. +* **Developer Group:** Join Harbor developer group: [harbor-dev@lists.cncf.io](https://lists.cncf.io/g/harbor-dev) for discussion on Harbor development and contribution. +* **Slack:** Join Harbor's community for discussion and ask questions: [Cloud Native Computing Foundation](https://slack.cncf.io/), channel: [#harbor](https://cloud-native.slack.com/messages/harbor/) and [#harbor-dev](https://cloud-native.slack.com/messages/harbor-dev/) ## Additional Tools diff --git a/docs/installation_guide.md b/docs/installation_guide.md index 886184b09..0b96f6a48 100644 --- a/docs/installation_guide.md +++ b/docs/installation_guide.md @@ -210,7 +210,6 @@ Stopping registry ... done Stopping redis ... done Stopping registryctl ... done Stopping harbor-db ... done -Stopping harbor-adminserver ... done Stopping harbor-log ... done ``` Restarting Harbor after stopping: @@ -220,7 +219,6 @@ Starting log ... done Starting registry ... done Starting registryctl ... done Starting postgresql ... done -Starting adminserver ... done Starting core ... done Starting portal ... done Starting redis ... done @@ -390,7 +388,6 @@ By default, Harbor limits the CPU usage of Clair container to 150000 and avoids $ sudo docker-compose ps Name Command State Ports ----------------------------------------------------------------------------------------------------------------------------- - harbor-adminserver /harbor/start.sh Up harbor-core /harbor/start.sh Up harbor-db /entrypoint.sh postgres Up 5432/tcp harbor-jobservice /harbor/start.sh Up diff --git a/docs/migration_guide.md b/docs/migration_guide.md index 61d38259a..ea4eefd6e 100644 --- a/docs/migration_guide.md +++ b/docs/migration_guide.md @@ -47,8 +47,8 @@ or above it's not necessary to call the migrator tool to migrate the schema. ``` docker run -it --rm -v ${harbor_cfg}:/harbor-migration/harbor-cfg/harbor.cfg goharbor/harbor-migrator:[tag] --cfg up ``` - **NOTE:** The schema upgrade and data migration of Database is performed by adminserver when Harbor starts, if the migration fails, - please check the log of adminserver to debug. + **NOTE:** The schema upgrade and data migration of Database is performed by core when Harbor starts, if the migration fails, + please check the log of core to debug. 6. Under the directory `./harbor`, run the `./install.sh` script to install the new Harbor instance. If you choose to install Harbor with components like Notary, Clair, and chartmuseum, refer to [Installation & Configuration Guide](../docs/installation_guide.md) for more information. diff --git a/docs/swagger.yaml b/docs/swagger.yaml index 6e5ec14cb..b0dfc83ee 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -748,6 +748,45 @@ paths: description: User need to log in first. '500': description: Internal errors. + /users/search: + get: + summary: Search users by username, email + description: | + This endpoint is to search the users by username, email. + parameters: + - name: username + in: query + type: string + required: false + description: Username for filtering results. + - name: email + in: query + type: string + required: false + description: Email for filtering results. + - name: page + in: query + type: integer + format: int32 + required: false + description: 'The page nubmer, default is 1.' + - name: page_size + in: query + type: integer + format: int32 + required: false + description: The size of per page. + tags: + - Products + responses: + '200': + description: Search users by username, email successfully. + schema: + type: array + items: + $ref: '#/definitions/UserSearch' + '500': + description: Unexpected internal errors. '/users/{user_id}': get: summary: Get a user's profile. @@ -3849,6 +3888,15 @@ definitions: type: string update_time: type: string + UserSearch: + type: object + properties: + user_id: + type: integer + format: int + description: The ID of the user. + username: + type: string Password: type: object properties: @@ -5074,15 +5122,10 @@ definitions: properties: type: type: string - description: The schedule type. The valid values are daily, weekly and None. 'None' means to cancel the schedule. - weekday: - type: integer - format: int8 - description: 'Optional, only used when the type is weekly. The valid values are 1-7.' - offtime: - type: integer - format: int64 - description: 'The time offset with the UTC 00:00 in seconds.' + description: The schedule type. The valid values are hourly, daily, weekly, custom and None. 'None' means to cancel the schedule. + cron: + type: string + description: A cron expression, a time-based job scheduler. SearchResult: type: object description: The chart search result item @@ -5137,6 +5180,9 @@ definitions: description: type: string description: The description of robot account + expiresat: + type: integer + description: The expiration of robot account (in seconds) project_id: type: integer description: The project id of robot account diff --git a/docs/use_make.md b/docs/use_make.md index 7fc98888d..c18da1ad6 100644 --- a/docs/use_make.md +++ b/docs/use_make.md @@ -15,9 +15,8 @@ all | prepare env, compile binaries, build images and install im prepare | prepare env compile | compile ui and jobservice code compile_portal | compile portal code -compile_ui | compile ui binary +compile_core | compile core binary compile_jobservice | compile jobservice binary -compile_adminserver | compile admin server binary build | build Harbor docker images (default: using build_photon) build_photon | build Harbor docker images from Photon OS base image install | compile binaries, build images, prepare specific version of compose file and startup Harbor instance diff --git a/make/common/templates/adminserver/env b/make/common/templates/core/config_env similarity index 100% rename from make/common/templates/adminserver/env rename to make/common/templates/core/config_env diff --git a/make/common/templates/core/env b/make/common/templates/core/env index 8cc74521f..f855fd148 100644 --- a/make/common/templates/core/env +++ b/make/common/templates/core/env @@ -2,7 +2,6 @@ LOG_LEVEL=info CONFIG_PATH=/etc/core/app.conf CORE_SECRET=$core_secret JOBSERVICE_SECRET=$jobservice_secret -ADMINSERVER_URL=$adminserver_url UAA_CA_ROOT=/etc/core/certificates/uaa_ca.pem _REDIS_URL=$redis_host:$redis_port,100,$redis_password SYNC_REGISTRY=false diff --git a/make/common/templates/registry/config.yml b/make/common/templates/registry/config.yml index 419d3494e..282eeb671 100644 --- a/make/common/templates/registry/config.yml +++ b/make/common/templates/registry/config.yml @@ -27,6 +27,8 @@ auth: realm: $public_url/service/token rootcertbundle: /etc/registry/root.crt service: harbor-registry +validation: + disabled: true notifications: endpoints: - name: harbor diff --git a/make/docker-compose.tpl b/make/docker-compose.tpl index 315c311fe..22144d29b 100644 --- a/make/docker-compose.tpl +++ b/make/docker-compose.tpl @@ -99,7 +99,7 @@ services: container_name: harbor-core env_file: - ./common/config/core/env - - ./common/config/adminserver/env + - ./common/config/core/config_env restart: always cap_drop: - ALL diff --git a/make/migrations/postgresql/0004_add_robot_account.up.sql b/make/migrations/postgresql/0004_1.8.0_schema.up.sql similarity index 50% rename from make/migrations/postgresql/0004_add_robot_account.up.sql rename to make/migrations/postgresql/0004_1.8.0_schema.up.sql index c2e3d273b..f36592a33 100644 --- a/make/migrations/postgresql/0004_add_robot_account.up.sql +++ b/make/migrations/postgresql/0004_1.8.0_schema.up.sql @@ -1,12 +1,26 @@ +/*add robot account table*/ CREATE TABLE robot ( id SERIAL PRIMARY KEY NOT NULL, name varchar(255), description varchar(1024), project_id int, + expiresat bigint, disabled boolean DEFAULT false NOT NULL, creation_time timestamp default CURRENT_TIMESTAMP, update_time timestamp default CURRENT_TIMESTAMP, CONSTRAINT unique_robot UNIQUE (name, project_id) ); -CREATE TRIGGER robot_update_time_at_modtime BEFORE UPDATE ON robot FOR EACH ROW EXECUTE PROCEDURE update_update_time_at_column(); \ No newline at end of file +CREATE TRIGGER robot_update_time_at_modtime BEFORE UPDATE ON robot FOR EACH ROW EXECUTE PROCEDURE update_update_time_at_column(); + +/*add master role*/ +INSERT INTO role (role_code, name) VALUES ('DRWS', 'master'); + +/*delete replication jobs whose policy has been marked as "deleted"*/ +DELETE FROM replication_job AS j +USING replication_policy AS p +WHERE j.policy_id = p.id AND p.deleted = TRUE; + +/*delete replication policy which has been marked as "deleted"*/ +DELETE FROM replication_policy AS p +WHERE p.deleted = TRUE; \ No newline at end of file diff --git a/make/migrations/postgresql/0005_add_master_role.up.sql b/make/migrations/postgresql/0005_add_master_role.up.sql deleted file mode 100644 index d24d3f5e6..000000000 --- a/make/migrations/postgresql/0005_add_master_role.up.sql +++ /dev/null @@ -1 +0,0 @@ -INSERT INTO role (role_code, name) VALUES ('DRWS', 'master'); \ No newline at end of file diff --git a/make/photon/Makefile b/make/photon/Makefile index 2f5bd1d1e..c70209963 100644 --- a/make/photon/Makefile +++ b/make/photon/Makefile @@ -3,7 +3,7 @@ # Targets: # # build: build harbor photon images -# clean: clean adminserver, ui and jobservice harbor images +# clean: clean core and jobservice harbor images # common SHELL := /bin/bash @@ -21,10 +21,7 @@ DOCKERBUILD=$(DOCKERCMD) build --pull DOCKERRMIMAGE=$(DOCKERCMD) rmi DOCKERIMASES=$(DOCKERCMD) images -# binary -ADMINSERVERSOURCECODE=$(SRCPATH)/adminserver -ADMINSERVERBINARYPATH=$(MAKEDEVPATH)/adminserver -ADMINSERVERBINARYNAME=harbor_adminserver +# binary CORE_SOURCECODE=$(SRCPATH)/core CORE_BINARYPATH=$(MAKEDEVPATH)/core CORE_BINARYNAME=harbor_core @@ -35,10 +32,6 @@ JOBSERVICEBINARYNAME=harbor_jobservice # photon dockerfile DOCKERFILEPATH=$(MAKEPATH)/photon -DOCKERFILEPATH_ADMINSERVER=$(DOCKERFILEPATH)/adminserver -DOCKERFILENAME_ADMINSERVER=Dockerfile -DOCKERIMAGENAME_ADMINSERVER=goharbor/harbor-adminserver - DOCKERFILEPATH_PORTAL=$(DOCKERFILEPATH)/portal DOCKERFILENAME_PORTAL=Dockerfile DOCKERIMAGENAME_PORTAL=goharbor/harbor-portal @@ -105,11 +98,6 @@ _build_db: @$(DOCKERBUILD) -f $(DOCKERFILEPATH_DB)/$(DOCKERFILENAME_DB) -t $(DOCKERIMAGENAME_DB):$(VERSIONTAG) . @echo "Done." -_build_adminserver: - @echo "building adminserver container for photon..." - @$(DOCKERBUILD) -f $(DOCKERFILEPATH_ADMINSERVER)/$(DOCKERFILENAME_ADMINSERVER) -t $(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) . - @echo "Done." - _build_portal: @echo "building portal container for photon..." $(DOCKERBUILD) -f $(DOCKERFILEPATH_PORTAL)/$(DOCKERFILENAME_PORTAL) -t $(DOCKERIMAGENAME_PORTAL):$(VERSIONTAG) . @@ -167,13 +155,11 @@ _build_notary: @if [ "$(NOTARYFLAG)" = "true" ] ; then \ if [ "$(BUILDBIN)" != "true" ] ; then \ rm -rf $(DOCKERFILEPATH_NOTARY)/binary && mkdir -p $(DOCKERFILEPATH_NOTARY)/binary && \ - $(call _get_binary, https://storage.googleapis.com/harbor-builds/bin/notary/release-$(NOTARYVERSION)/notary-signer, $(DOCKERFILEPATH_NOTARY)/binary/notary-signer) && \ - $(call _get_binary, https://storage.googleapis.com/harbor-builds/bin/notary/release-$(NOTARYVERSION)/notary-server, $(DOCKERFILEPATH_NOTARY)/binary/notary-server) ; \ + $(call _get_binary, https://storage.googleapis.com/harbor-builds/bin/notary/release-$(NOTARYVERSION)/binary-bundle.tgz, $(DOCKERFILEPATH_NOTARY)/binary-bundle.tgz); \ + cd $(DOCKERFILEPATH_NOTARY) && tar -zvxf binary-bundle.tgz && cd - ; \ else \ - cd $(DOCKERFILEPATH_NOTARY) && $(DOCKERFILEPATH_NOTARY)/builder $(NOTARYVERSION) && cd - ; \ + cd $(DOCKERFILEPATH_NOTARY) && $(DOCKERFILEPATH_NOTARY)/builder $(NOTARYVERSION) $(NOTARYMIGRATEVERSION) && cd - ; \ fi ; \ - $(call _get_binary, https://storage.googleapis.com/harbor-builds/bin/notary/release-$(NOTARYVERSION)/notary-migrate-postgresql.tgz, $(DOCKERFILEPATH_NOTARY)/binary/notary-migrate.tgz); \ - cd $(DOCKERFILEPATH_NOTARY)/binary && tar -zvxf notary-migrate.tgz && cd - ; \ echo "building notary container for photon..."; \ chmod 655 $(DOCKERFILEPATH_NOTARY)/binary/notary-signer && $(DOCKERBUILD) -f $(DOCKERFILEPATH_NOTARY)/$(DOCKERFILENAME_NOTARYSIGNER) -t $(DOCKERIMAGENAME_NOTARYSIGNER):$(NOTARYVERSION)-$(VERSIONTAG) . ; \ chmod 655 $(DOCKERFILEPATH_NOTARY)/binary/notary-server && $(DOCKERBUILD) -f $(DOCKERFILEPATH_NOTARY)/$(DOCKERFILENAME_NOTARYSERVER) -t $(DOCKERIMAGENAME_NOTARYSERVER):$(NOTARYVERSION)-$(VERSIONTAG) . ; \ @@ -214,11 +200,10 @@ define _get_binary $(WGET) --timeout 30 --no-check-certificate $1 -O $2 endef -build: _build_db _build_adminserver _build_portal _build_core _build_jobservice _build_log _build_nginx _build_registry _build_registryctl _build_notary _build_clair _build_redis _build_migrator _build_chart_server +build: _build_db _build_portal _build_core _build_jobservice _build_log _build_nginx _build_registry _build_registryctl _build_notary _build_clair _build_redis _build_migrator _build_chart_server cleanimage: @echo "cleaning image for photon..." - - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_ADMINSERVER):$(VERSIONTAG) - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_PORTAL):$(VERSIONTAG) - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_CORE):$(VERSIONTAG) - $(DOCKERRMIMAGE) -f $(DOCKERIMAGENAME_JOBSERVICE):$(VERSIONTAG) diff --git a/make/photon/adminserver/Dockerfile b/make/photon/adminserver/Dockerfile deleted file mode 100644 index f0ec24883..000000000 --- a/make/photon/adminserver/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM photon:2.0 - -RUN tdnf install -y sudo >> /dev/null \ - && tdnf clean all \ - && groupadd -r -g 10000 harbor && useradd --no-log-init -r -g 10000 -u 10000 harbor \ - && mkdir /harbor/ -COPY ./make/photon/adminserver/harbor_adminserver ./make/photon/adminserver/start.sh /harbor/ -#As UI will be blocked until adminserver is ready, let adminserver do the initialise work for DB -COPY ./make/migrations /harbor/migrations - -HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080/api/ping || exit 1 - -RUN chmod u+x /harbor/harbor_adminserver /harbor/start.sh -WORKDIR /harbor/ -ENTRYPOINT ["/harbor/start.sh"] diff --git a/make/photon/adminserver/start.sh b/make/photon/adminserver/start.sh deleted file mode 100644 index cc7f4a2ec..000000000 --- a/make/photon/adminserver/start.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -#In the case when the config store is set to filesystem, the directory has to be writable. -if [ -d /etc/adminserver/config ]; then - chown -R 10000:10000 /etc/adminserver/config -fi -sudo -E -u \#10000 "/harbor/harbor_adminserver" diff --git a/make/photon/notary/binary.Dockerfile b/make/photon/notary/binary.Dockerfile index 8c653197b..911562e53 100644 --- a/make/photon/notary/binary.Dockerfile +++ b/make/photon/notary/binary.Dockerfile @@ -1,8 +1,13 @@ FROM golang:1.11.2 +ARG NOTARY_VERSION +ARG MIGRATE_VERSION +RUN test -n "$NOTARY_VERSION" +RUN test -n "$MIGRATE_VERSION" ENV NOTARYPKG github.com/theupdateframework/notary +ENV MIGRATEPKG github.com/golang-migrate/migrate -COPY . /go/src/${NOTARYPKG} +RUN git clone -b $NOTARY_VERSION https://github.com/theupdateframework/notary.git /go/src/${NOTARYPKG} WORKDIR /go/src/${NOTARYPKG} RUN go install -tags pkcs11 \ @@ -10,3 +15,16 @@ RUN go install -tags pkcs11 \ RUN go install -tags pkcs11 \ -ldflags "-w -X ${NOTARYPKG}/version.GitCommit=`git rev-parse --short HEAD` -X ${NOTARYPKG}/version.NotaryVersion=`cat NOTARY_VERSION`" ${NOTARYPKG}/cmd/notary-signer +RUN cp -r /go/src/${NOTARYPKG}/migrations/ / + +RUN git clone -b $MIGRATE_VERSION https://github.com/golang-migrate/migrate /go/src/${MIGRATEPKG} +WORKDIR /go/src/${MIGRATEPKG} + +RUN curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 && chmod +x /usr/local/bin/dep +RUN dep ensure -vendor-only + +ENV DATABASES="postgres mysql redshift cassandra spanner cockroachdb clickhouse" +ENV SOURCES="file go_bindata github aws_s3 google_cloud_storage" + +RUN go install -tags "$DATABASES $SOURCES" -ldflags="-X main.Version=${MIGRATE_VERSION}" ${MIGRATEPKG}/cli && mv /go/bin/cli /go/bin/migrate + diff --git a/make/photon/notary/builder b/make/photon/notary/builder index 88e6c8376..1d11aa027 100755 --- a/make/photon/notary/builder +++ b/make/photon/notary/builder @@ -2,43 +2,28 @@ set +e -if [ -z $1 ]; then - error "Please set the 'version' variable" +if [ -z $2 ]; then + error "Please set the notary and migrate version" exit 1 fi -VERSION="$1" - +echo "Building notary and golang-migrate from source, notary version: $1, golang-migrate version: $2" set -e # the temp folder to store binary file... mkdir -p binary -rm -rf binary/notary-server || true -rm -rf binary/notary-signer || true +rm -rf binary/* || true cd `dirname $0` -cur=$PWD +docker build --build-arg NOTARY_VERSION=$1 --build-arg MIGRATE_VERSION=$2 -f ./binary.Dockerfile -t notary-binary . -# the temp folder to store notary source code... -TEMP=`mktemp -d /$TMPDIR/notary.XXXXXX` -git clone -b $VERSION https://github.com/theupdateframework/notary.git $TEMP - -echo 'build the notary binary bases on the golang:1.11.2...' -cp binary.Dockerfile $TEMP -cd $TEMP -docker build -f binary.Dockerfile -t notary-golang $TEMP -cp -r $TEMP/migrations binary - -echo 'copy the notary binary to local...' -ID=$(docker create notary-golang) -echo $ID -cd $cur -docker cp $ID:/go/bin/notary-server binary -docker cp $ID:/go/bin/notary-signer binary +echo 'copy the binary files to local...' +ID=$(docker create notary-binary) +docker cp $ID:/go/bin/notary-server binary/ +docker cp $ID:/go/bin/notary-signer binary/ +docker cp $ID:/go/bin/migrate binary/ +docker cp $ID:/migrations binary/ docker rm -f $ID -docker rmi -f notary-golang - -rm -rf $TEMP - +docker rmi -f notary-binary diff --git a/make/photon/notary/server-start.sh b/make/photon/notary/server-start.sh index c3467522e..0e38be19e 100644 --- a/make/photon/notary/server-start.sh +++ b/make/photon/notary/server-start.sh @@ -1,2 +1,2 @@ #!/bin/sh -sudo -E -u \#10000 sh -c "/usr/bin/env /migrations/migrate.sh && /bin/notary-server -config=/etc/notary/server-config.postgres.json -logf=logfmt" +sudo -E -u \#10000 sh -c "migrate-patch -database='${DB_URL}' && /migrations/migrate.sh && /bin/notary-server -config=/etc/notary/server-config.postgres.json -logf=logfmt" diff --git a/make/photon/notary/server.Dockerfile b/make/photon/notary/server.Dockerfile index 4ec80d936..5d60d17f4 100644 --- a/make/photon/notary/server.Dockerfile +++ b/make/photon/notary/server.Dockerfile @@ -5,10 +5,11 @@ RUN tdnf install -y shadow sudo \ && groupadd -r -g 10000 notary \ && useradd --no-log-init -r -g 10000 -u 10000 notary +COPY ./make/photon/notary/migrate-patch /bin/migrate-patch COPY ./make/photon/notary/binary/notary-server /bin/notary-server COPY ./make/photon/notary/binary/migrate /bin/migrate COPY ./make/photon/notary/binary/migrations/ /migrations/ COPY ./make/photon/notary/server-start.sh /bin/server-start.sh -RUN chmod u+x /bin/notary-server /migrations/migrate.sh /bin/migrate /bin/server-start.sh +RUN chmod +x /bin/notary-server /migrations/migrate.sh /bin/migrate /bin/migrate-patch /bin/server-start.sh ENV SERVICE_NAME=notary_server ENTRYPOINT [ "/bin/server-start.sh" ] diff --git a/make/photon/notary/signer-start.sh b/make/photon/notary/signer-start.sh index f585ad6ad..05fc15118 100644 --- a/make/photon/notary/signer-start.sh +++ b/make/photon/notary/signer-start.sh @@ -1,2 +1,2 @@ #!/bin/sh -sudo -E -u \#10000 sh -c "/usr/bin/env && /migrations/migrate.sh && /bin/notary-signer -config=/etc/notary/signer-config.postgres.json -logf=logfmt" +sudo -E -u \#10000 sh -c "migrate-patch -database='${DB_URL}' && /migrations/migrate.sh && /bin/notary-signer -config=/etc/notary/signer-config.postgres.json -logf=logfmt" diff --git a/make/photon/notary/signer.Dockerfile b/make/photon/notary/signer.Dockerfile index 83784ff1f..b27bd3cd5 100644 --- a/make/photon/notary/signer.Dockerfile +++ b/make/photon/notary/signer.Dockerfile @@ -4,11 +4,12 @@ RUN tdnf install -y shadow sudo \ && tdnf clean all \ && groupadd -r -g 10000 notary \ && useradd --no-log-init -r -g 10000 -u 10000 notary +COPY ./make/photon/notary/migrate-patch /bin/migrate-patch COPY ./make/photon/notary/binary/notary-signer /bin/notary-signer COPY ./make/photon/notary/binary/migrate /bin/migrate COPY ./make/photon/notary/binary/migrations/ /migrations/ COPY ./make/photon/notary/signer-start.sh /bin/signer-start.sh -RUN chmod u+x /bin/notary-signer /migrations/migrate.sh /bin/migrate /bin/signer-start.sh +RUN chmod +x /bin/notary-signer /migrations/migrate.sh /bin/migrate /bin/migrate-patch /bin/signer-start.sh ENV SERVICE_NAME=notary_signer ENTRYPOINT [ "/bin/signer-start.sh" ] diff --git a/make/prepare b/make/prepare index bcb2d0eb9..0af25e4c8 100755 --- a/make/prepare +++ b/make/prepare @@ -253,10 +253,6 @@ registry_custom_ca_bundle_path = rcp.get("configuration", "registry_custom_ca_bu core_secret = ''.join(random.choice(string.ascii_letters+string.digits) for i in range(16)) jobservice_secret = ''.join(random.choice(string.ascii_letters+string.digits) for i in range(16)) -adminserver_config_dir = os.path.join(config_dir,"adminserver") -if not os.path.exists(adminserver_config_dir): - os.makedirs(os.path.join(config_dir, "adminserver")) - core_config_dir = prep_conf_dir(config_dir,"core") core_certificates_dir = prep_conf_dir(core_config_dir,"certificates") db_config_dir = prep_conf_dir(config_dir, "db") @@ -267,7 +263,7 @@ nginx_config_dir = prep_conf_dir (config_dir, "nginx") nginx_conf_d = prep_conf_dir(nginx_config_dir, "conf.d") log_config_dir = prep_conf_dir (config_dir, "log") -adminserver_conf_env = os.path.join(config_dir, "adminserver", "env") +conf_env = os.path.join(config_dir, "core", "config_env") core_conf_env = os.path.join(config_dir, "core", "env") core_conf = os.path.join(config_dir, "core", "app.conf") core_cert_dir = os.path.join(config_dir, "core", "certificates") @@ -279,8 +275,7 @@ db_conf_env = os.path.join(config_dir, "db", "env") job_conf_env = os.path.join(config_dir, "jobservice", "env") nginx_conf = os.path.join(config_dir, "nginx", "nginx.conf") cert_dir = os.path.join(config_dir, "nginx", "cert") -log_rotate_config = os.path.join(config_dir, "log", "logrotate.conf") -adminserver_url = "http://adminserver:8080" +log_rotate_config = os.path.join(config_dir, "log", "logrotate.conf") registry_url = "http://registry:5000" registry_controller_url = "http://registryctl:8080" core_url = "http://core:8080" @@ -338,8 +333,8 @@ reload_key = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ ldap_group_admin_dn = rcp.get("configuration", "ldap_group_admin_dn") if rcp.has_option("configuration", "ldap_group_admin_dn") else "" -render(os.path.join(templates_dir, "adminserver", "env"), - adminserver_conf_env, +render(os.path.join(templates_dir, "core", "config_env"), + conf_env, reload_config=reload_config, public_url=public_url, core_url=core_url, @@ -415,7 +410,6 @@ render(os.path.join(templates_dir, "core", "env"), redis_host=redis_host, redis_port=redis_port, redis_password=redis_password, - adminserver_url = adminserver_url, chart_cache_driver = chart_cache_driver, redis_url_reg = redis_url_reg) diff --git a/open_source_license b/open_source_license deleted file mode 100644 index 2d3a6979a..000000000 --- a/open_source_license +++ /dev/null @@ -1,16432 +0,0 @@ -open_source_license.txt - -Harbor 1.7.0 GA - -====================================================================== - - - -=============== TABLE OF CONTENTS ============================= - -The following is a listing of the open source components detailed in -this document. This list is provided for your convenience; please read -further if you wish to review the copyright notice(s) and the full text -of the license associated with each component. - -PART 1. APPLICATION LAYER - - -SECTION 1: Apache License, V2.0 - - >>> Clair-2.0.7 - >>> beego-1.9.0 - >>> docker/distribution-2.6.2 - >>> docker/libtrust-aabc10ec2 - >>> docker/notary-c04e3e6d05881045def11167c51d4a8baa34899a - >>> gopkg.in/yaml.v2-v2.1.1 - >>> helm-2.9.1 - >>> opencontainers/go-digest-1.0.0-rc0 - >>> redigo-v1.6.0 - >>> registry-2.6.2 - >>> rxjs-6.3.1 - >>> tslib-1.9.3 - >>> web-animations-js-2.3.1 - - -SECTION 2: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES - - >>> @ngx-translate/core@10.0.2-10.0.2 - >>> @webcomponents/custom-elements-1.2.0 - >>> Masterminds/semver-1.4.2 - >>> Sirupsen/logrus-1.0.5 - >>> alembic-0.8.8 - >>> angular-6.1.4 - >>> clarity-ui-0.12.10 - >>> core-js-2.5.6 - >>> dgrijalva/jwt-go-d2709f9f1f31ebcda9651b03077758c1f3a0018c - >>> dumb-init-1.2.0 - >>> ghodss/yaml-1.0.0 - >>> go-ldap/ldap-v2.5.0 - >>> gocraft/work-0.5.1 - >>> golang-1.9.2 - >>> golang-migrate-3.3.0 - >>> golang.org/x/crypto-5f961cd492ac9d43fc33a8ef646bae79d113fd97 - >>> golang/oauth2-bb50c06 - >>> gorilla/context-v1.1 - >>> gorilla/handlers-v1.3.0 - >>> gorilla/mux-v1.6.0 - >>> intl.js-1.2.5 - >>> jwt-go-3.0.0 - >>> lib/pq-b2004221932bd6b13167ef654c81cffac36f7537 - >>> mattn/go-sqlite3-v1.6.0 - >>> mutationobserver-shim-0.3.2 - >>> ng-packagr-4.1.1 - >>> ngx-clipboard-11.1.3 - >>> ngx-cookie-1.0.1 - >>> ngx-markdown-6.2.0 - >>> ngx-translate/http-loader-3.0.1 - >>> robfig/cron-v1 - >>> sling-1.1.0 - >>> testify-v1.2.0 - >>> ts-helpers-1.1.2 - >>> types-0.1.1 - >>> zone.js-0.8.26 - - -SECTION 3: Mozilla Public License, V2.0 - - >>> go-sql-driver/mysql-v1.3 - - -PART 2. OPERATING SYSTEM: PHOTON - - -SECTION 1: Apache License, V2.0 - - >>> photon-release-2.0-2.ph2 - >>> photon-repos-2.0-2.ph2 - - -SECTION 2: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES - - >>> bzip2-1.0.6-8.ph2 - >>> cronie-1.5.1-1.ph2 - >>> curl-7.59.0-3.ph2 - >>> cyrus-sasl-2.1.26-14.ph2 - >>> expat-2.2.4-1.ph2 - >>> krb5-1.16-2.ph2 - >>> libarchive-3.3.1-2.ph2 - >>> libcap-2.25-7.ph2 - >>> libdb-5.3.28-1.ph2 - >>> libfastjson-0.99.4-1.ph2 - >>> libffi-3.2.1-5.ph2 - >>> liblogging-1.0.6-1.ph2 - >>> libselinux-2.6-4.ph2 - >>> libsolv-0.6.26-3.ph2 - >>> libssh2-1.8.0-1.ph2 - >>> libxml2-2.9.7-2.ph2 - >>> linux-pam-1.3.0-1.ph2 - >>> ncurses-6.0-14.ph2 - >>> nginx-1.13.8-5.ph2 - >>> openldap-2.4.44-3.ph2 - >>> openssl-1.0.2p-1.ph2 - >>> pcre-8.41-1.ph2 - >>> popt-1.16-5.ph2 - >>> postgresql-9.6.10-1.ph2 - >>> python2-2.7.15-2.ph2 - >>> redis-4.0.10-1.ph2 - >>> shadow-4.2.1-16.ph2 - >>> sqlite-3.22.0-3.ph2 - >>> sudo-1.8.20p2-5.ph2 - >>> toybox-0.7.3-6.ph2 - >>> tzdata-2017b-3.ph2 - >>> xz-5.2.3-2.ph2 - >>> zlib-1.2.11-1.ph2 - - -SECTION 3: GNU General Public License, V1.0 - - >>> perl-5.24.1-6.ph2 - >>> perl-dbi-1.636-1.ph2 - - -SECTION 4: GNU General Public License, V2.0 - - >>> e2fsprogs-1.43.4-2.ph2 - >>> gcc-6.3.0-7.ph2 - >>> git-2.17.1-2.ph2 - >>> logrotate-3.11.0-3.ph2 - >>> perl-yaml-1.23-1.ph2 - >>> pkg-config-0.29.2-1.ph2 - >>> rpm-4.13.0.2-1.ph2 - >>> tdnf-1.2.3-4.ph2 - >>> util-linux-2.32-1.ph2 - - -SECTION 5: GNU General Public License, V3.0 - - >>> autogen-5.18.12-2.ph2 - >>> bash-4.4.12-3.ph2 - >>> coreutils-8.27-3.ph2 - >>> elfutils-0.169-3.ph2 - >>> gawk-4.1.4-1.ph2 - >>> gdbm-1.13-3.ph2 - >>> grep-3.0-4.ph2 - >>> gzip-1.8-1.ph2 - >>> librelp-1.2.13-2.ph2 - >>> perl-cgi-4.35-1.ph2 - >>> readline-7.0-2.ph2 - >>> rsyslog-8.26.0-6.ph2 - >>> tar-1.29-1.ph2 - - -SECTION 6: GNU Lesser General Public License, V2.1 - - >>> cracklib-2.9.6-8.ph2 - >>> glibc-2.26-13.ph2 - >>> gnutls-3.5.15-3.ph2 - >>> hawkey-2017.1-6.ph2 - >>> kmod-24-3.ph2 - >>> libestr-0.1.10-2.ph2 - >>> libgcrypt-1.8.1-2.ph2 - >>> libgpg-error-1.27-1.ph2 - >>> libsepol-2.6-1.ph2 - >>> libtasn1-4.13-1.ph2 - >>> systemd-233-16.ph2 - - -SECTION 7: GNU Lesser General Public License, V3.0 - - >>> gmp-6.1.2-2.ph2 - >>> mpfr-3.1.5-1.ph2 - >>> nettle-3.3-1.ph2 - - -SECTION 8: GNU Library General Public License, V2.0 - - >>> glib-2.52.1-3.ph2 - - -SECTION 9: Mozilla Public License, V2.0 - - >>> ca-certificates-20180919-1.ph2 - >>> nspr-4.15-1.ph2 - >>> nss-3.31.1-1.ph2 - - -APPENDIX. Standard License Files - - >>> Apache License, V2.0 - - >>> GNU General Public License, V1.0 - - >>> GNU General Public License, V2.0 - - >>> GNU General Public License, V3.0 - - >>> GNU Library General Public License, V2.0 - - >>> GNU Lesser General Public License, V2.1 - - >>> GNU Lesser General Public License, V3.0 - - >>> Mozilla Public License, V2.0 - - - -====================PART 1. APPLICATION LAYER ==================== - - ---------------- SECTION 1: Apache License, V2.0 ---------- - -Apache License, V2.0 is applicable to the following component(s). - - ->>> Clair-2.0.7 - -CoreOS Project -Copyright 2015 CoreOS, Inc - -This product includes software developed at CoreOS, Inc. -(http:www.coreos.com/). - -Copyright 2017 clair authors - -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. - -ADDITIONAL LICENSE INFORMATION: - -> MIT - -clair-2.0.7.tar.gz\clair-2.0.7.tar\clair-2.0.7\vendor\github.com\beorn7\perks\LICENSE - -Copyright (C) 2013 Blake Mizerany - -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. - -> BSD-2 - -clair-2.0.7.tar.gz\clair-2.0.7.tar\clair-2.0.7\vendor\github.com\guregu\null\LICENSE - -Copyright (c) 2014, Greg Roseberry -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. - -> MPL 2.0 - -clair-2.0.7.tar.gz\clair-2.0.7.tar\clair-2.0.7\vendor\github.com\hashicorp\golang-lru\LICENSE - -License: MPL 2.0 - -> BSD-3 - -clair-2.0.7.tar.gz\clair-2.0.7.tar\clair-2.0.7\vendor\github.com\julienschmidt\httprouter\LICENSE - -Copyright (c) 2013 Julien Schmidt. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -* The names of the contributors may not be used to endorse or promote -products derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL JULIEN SCHMIDT 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. - ->>> beego-1.9.0 - -Copyright 2014 beego Author. All Rights Reserved. - -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. - -ADDITIONAL LICENSE INFORMATION: - ->MIT - -beego-1.9.0.tar.gz\beego-1.9.0.tar\beego-1.9.0\utils\captcha\LICENSE - -Copyright (c) 2011-2014 Dmitry Chestnykh - -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. - ->BSD-2 clause - -beego-1.9.0.tar.gz\beego-1.9.0.tar\beego-1.9.0\session\README.md - -LICENSE -BSD License http://creativecommons.org/licenses/BSD/ - ->>> docker/distribution-2.6.2 - -License: Apache 2.0 - ->>> docker/libtrust-aabc10ec2 - -Copyright 2014 Docker, Inc. - -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. - ->>> docker/notary-c04e3e6d05881045def11167c51d4a8baa34899a - -Copyright 2014 Alan Shreve - -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. - - -ADDITIONAL LICENSE INFORMATION: - -> BSD-3 - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\tuf\LICENSE - -Copyright (c) 2015, Docker Inc. -Copyright (c) 2014-2015 Prime Directive, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Prime Directive, Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -> Public Domain - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\github.com\agl\ed25519\ed25519.go - - This code is a port of the public domain, "ref10" implementation of ed25519 - from SUPERCOP. - - -> Zlib License (MIT-Style) - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\github.com\bugsnag\osext\LICENSE - -Copyright (c) 2012 Daniel Theophanes - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - - 3. This notice may not be removed or altered from any source - distribution. - - -> MIT - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\github.com\bugsnag\panicwrap\LICENSE - -The MIT License (MIT) - -Copyright (c) 2013 Mitchell Hashimoto - -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. - - -> WTFPL 2.0 - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\github.com\BurntSushi\toml\COPYING - - -DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE -Version 2, December 2004 - -Copyright (C) 2004 Sam Hocevar - -Everyone is permitted to copy and distribute verbatim or modified -copies of this license document, and changing it is allowed as long -as the name is changed. - -DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. You just DO WHAT THE FUCK YOU WANT TO. - - -> MPL 2.0 - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\github.com\go-sql-driver\mysql\infile.go - -Go MySQL Driver - A MySQL-Driver for Go's database/sql package - -Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved. - -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/. - - -> BSD-2 - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\github.com\magiconair\properties\LICENSE - -goproperties - properties file decoder for Go - -Copyright (c) 2013-2014 - Frank Schroeder - -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -> BSD-3 with Google Patent grant - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\golang.org\x\crypto\LICENSE - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Additional IP Rights Grant (Patents) - -"This implementation" means the copyrightable works distributed by -Google as part of the Go project. - -Google 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, -transfer and otherwise run, modify and propagate the contents of this -implementation of Go, where such license applies only to those patent -claims, both currently owned or controlled by Google and acquired in -the future, licensable by Google that are necessarily infringed by this -implementation of Go. This grant does not include claims that would be -infringed only as a consequence of further modification of this -implementation. If you or your agent or exclusive licensee institute or -order or agree to the institution of patent litigation against any -entity (including a cross-claim or counterclaim in a lawsuit) alleging -that this implementation of Go or any code incorporated within this -implementation of Go constitutes direct or contributory patent -infringement, or inducement of patent infringement, then any patent -rights granted to you under this License for this implementation of Go -shall terminate as of the date such litigation is filed. - - -> LGPL 3.0 - -*****VMware does not distribute the sub-components licensed under LGPL 3.0***** - -notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar.gz\notary-c04e3e6d05881045def11167c51d4a8baa34899a.tar\notary-c04e3e6d05881045def11167c51d4a8baa34899a\vendor\gopkg.in\yaml.v2\LICENSE - -Copyright (c) 2011-2014 - Canonical Inc. - -This software is licensed under the LGPLv3, included below. - -As a special exception to the GNU Lesser General Public License version 3 -("LGPL3"), the copyright holders of this Library give you permission to -convey to a third party a Combined Work that links statically or dynamically -to this Library without providing any Minimal Corresponding Source or -Minimal Application Code as set out in 4d or providing the installation -information set out in section 4e, provided that you comply with the other -provisions of LGPL3 and provided that you meet, for the Application the -terms and conditions of the license(s) which apply to the Application. - -Except as stated in this special exception, the provisions of LGPL3 will -continue to comply in full to this Library. If you modify this Library, you -may apply this exception to your version of this Library, but you are not -obliged to do so. If you do not wish to do so, delete this exception -statement from your version. This exception does not (and cannot) modify any -license terms which apply to the Application, with which you must still -comply. - ->>> gopkg.in/yaml.v2-v2.1.1 - -Copyright 2011-2016 Canonical Ltd. - -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. - -ADDITIONAL LICENSE INFORMATION: - -> MIT - -yaml-2.1.1.tar.gz\yaml-2.1.1.tar\yaml-2.1.1\LICENSE.libyaml - -Copyright (c) 2006 Kirill Simonov - -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. - ->>> helm-2.9.1 - -Copyright 2016 The Kubernetes Authors All rights reserved. - -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. - - -ADDITIONAL LICENSE INFORMATION: - -> BSD- 3 Clause - -helm-2.9.1.tar.gz\helm-2.9.1.tar\helm-2.9.1\pkg\sympath\walk.go - -Copyright (c) for portions of walk.go are held by The Go Authors, 2009 and are provided under -the BSD license. - -https://github.com/golang/go/blob/master/LICENSE - ->>> opencontainers/go-digest-1.0.0-rc0 - -Copyright 2017 Docker, Inc. - -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 - -https://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. - -ADDITIONAL LICENSE INFORMATION: - -> CC-Attribution-ShareAlike 4.0 - -go-digest-master.zip\go-digest-master\LICENSE.docs - -License: CC-Attribution-ShareAlike 4.0 - ->>> redigo-v1.6.0 - -Copyright 2012 Gary Burd - -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. - ->>> registry-2.6.2 - -The following code is derivative of https://github.com/google/gofuzz -gofuzz is licensed under the Apache License, Version 2.0, January 2004, -a copy of which can be found in the LICENSE file at the root of this -repository. - -ADDITIONAL LICENSE INFORMATION: - -> MIT - -distribution-2.6.2.tar.gz\distribution-2.6.2.tar\distribution-2.6.2\registry\storage\driver\s3-aws\s3_v2_signer.go - -Copyright (c) 2013 Damien Le Berrigaud and Nick Wade - -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, andor 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. - ->>> rxjs-6.3.1 - -License: Apache 2.0 - ->>> tslib-1.9.3 - -Copyright (c) Microsoft Corporation. All rights reserved. -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 - -THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. - ->>> web-animations-js-2.3.1 - -Copyright 2014 Google Inc. All rights reserved. - - 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. - ---------------- SECTION 2: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES ---------- - -BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES are applicable to the following component(s). - - ->>> @ngx-translate/core@10.0.2-10.0.2 - -Copyright (c) 2018 Olivier Combe - -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. - ->>> @webcomponents/custom-elements-1.2.0 - -# License - -Everything in this repo is BSD style license unless otherwise specified. - -Copyright (c) 2015 The Polymer Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -* Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ->>> Masterminds/semver-1.4.2 - -The Masterminds -Copyright (C) 2014-2015, Matt Butcher and Matt Farina - -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. - ->>> Sirupsen/logrus-1.0.5 - -The MIT License (MIT) - -Copyright (c) 2014 Simon Eskildsen - -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. - -ADDITIONAL LICENSE INFORMATION - -> BSD-STYLE - -logrus-1.0.5.tar.gz\logrus-1.0.5.tar\logrus-1.0.5\terminal_linux.go - -Copyright 2013 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. - ->>> alembic-0.8.8 - -This is the MIT license: http://www.opensource.org/licenses/mit-license.php - -Copyright (C) 2009-2016 by Michael Bayer. -Alembic is a trademark of Michael Bayer. - -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. - ->>> angular-6.1.4 - -The MIT License - -Copyright (c) 2014-2018 Google, Inc. http://angular.io - -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. - -ADDITIONAL LICENSE INFORMATION: - -> CC-Attribution 4.0 - -angular-6.1.4.tar.gz\angular-6.1.4.tar\angular-6.1.4\aio\src\app\layout\footer\footer.component.html - -License: CC-Attribution 4.0 -href="http://creativecommons.org/licenses/by/4.0/ - -> Apache 2.0 - -angular-6.1.4.tar.gz\angular-6.1.4.tar\angular-6.1.4\aio\src\assets\js\prettify.js - -Copyright (C) 2006 Google Inc. - -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. - ->>> clarity-ui-0.12.10 - -Clarity - -Copyright © 2016-2018 VMware, Inc. All rights reserved - -The MIT license (the "License") set forth below applies to all parts of the Clarity project except for the fonts which are licensed under the SIL Open Font License version 1.1. You may not use this file except in compliance with the License. - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies 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. - ->>> core-js-2.5.6 - -Copyright (c) 2014-2018 Denis Pushkarev - -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. - ->>> dgrijalva/jwt-go-d2709f9f1f31ebcda9651b03077758c1f3a0018c - -Copyright (c) 2012 Dave Grijalva - -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. - ->>> dumb-init-1.2.0 - -The MIT License (MIT) - -Copyright (c) 2015 Yelp, 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. - ->>> ghodss/yaml-1.0.0 - -Copyright (c) 2012 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -ADDITIONAL LICENSE INFORMATION: - -> MIT - -yaml-1.0.0.tar.gz\yaml-1.0.0.tar\yaml-1.0.0\fields.go - -The MIT License (MIT) - -Copyright (c) 2014 Sam Ghods - -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. - ->>> go-ldap/ldap-v2.5.0 - -The MIT License (MIT) - -Copyright (c) 2011-2015 Michael Mitton (mmitton@gmail.com) -Portions copyright (c) 2015-2016 go-ldap Authors - -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. - - -ADDITIONAL LICENSE INFORMATION: - -> BSD-Style - -ldap-2.5.0.tar.gz\ldap-2.5.0.tar\ldap-2.5.0\dn.go - -Copyright 2015 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. - ->>> gocraft/work-0.5.1 - -The MIT License (MIT) - -Copyright (c) 2016 Jonathan Novak - -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. - ->>> golang-1.9.2 - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -*Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -*Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -*Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Additional IP Rights Grant (Patents) - -"This implementation" means the copyrightable works distributed by -Google as part of the Go project. - -Google 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, -transfer and otherwise run, modify and propagate the contents of this -implementation of Go, where such license applies only to those patent -claims, both currently owned or controlled by Google and acquired in -the future, licensable by Google that are necessarily infringed by this -implementation of Go. This grant does not include claims that would be -infringed only as a consequence of further modification of this -implementation. If you or your agent or exclusive licensee institute or -order or agree to the institution of patent litigation against any -entity (including a cross-claim or counterclaim in a lawsuit) alleging -that this implementation of Go or any code incorporated within this -implementation of Go constitutes direct or contributory patent -infringement, or inducement of patent infringement, then any patent -rights granted to you under this License for this implementation of Go -shall terminate as of the date such litigation is filed. - -ADDITIONAL LICENSE INFORMATION: - -> Creative Commons 3.0 Attributions license - -go1.9.2.linux-amd64.tar.gz\go1.9.2.linux-amd64.tar\go\doc\gopher\README - -The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/) -The design is licensed under the Creative Commons 3.0 Attributions license. -Read this article for more details: https://blog.golang.org/gopher - ->MIT - -go1.9.2.linux-amd64.tar.gz\go1.9.2.linux-amd64.tar\go\misc\tour\static\lib\ angular-ui.min.js - -AngularUI - The companion suite for AngularJS -@version v0.4.0 - 2013-02-15 -@link http://angular-ui.github.com -@license MIT License, http://www.opensource.org/licenses/MIT - ->Public Domain - -go1.9.2.linux-amd64.tar.gz\go1.9.2.linux-amd64.tar\go\lib\time\ README - -The zoneinfo.zip archive contains time zone files compiled using -the code and data maintained as part of the IANA Time Zone Database. -The IANA asserts that the database is in the public domain. - ->GPL 3.0 - -go1.9.2.linux-amd64.tar.gz\go1.9.2.linux-amd64.tar\go\doc\ debugging_with_gdb.html - -GNU gdb (GDB) 7.2-gg8 -Copyright (C) 2010 Free Software Foundation, Inc. -License GPLv 3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> -Type "show copying" and "show warranty" for licensing/warranty details. -This GDB was configured as "x86_64-linux". - ->>> golang-migrate-3.3.0 - -The MIT License (MIT) - -Copyright (c) 2016 Matthias Kadenbach - -https://github.com/mattes/migrate - -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. - ->>> golang.org/x/crypto-5f961cd492ac9d43fc33a8ef646bae79d113fd97 - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Additional IP Rights Grant (Patents) - -"This implementation" means the copyrightable works distributed by -Google as part of the Go project. - -Google 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, -transfer and otherwise run, modify and propagate the contents of this -implementation of Go, where such license applies only to those patent -claims, both currently owned or controlled by Google and acquired in -the future, licensable by Google that are necessarily infringed by this -implementation of Go. This grant does not include claims that would be -infringed only as a consequence of further modification of this -implementation. If you or your agent or exclusive licensee institute or -order or agree to the institution of patent litigation against any -entity (including a cross-claim or counterclaim in a lawsuit) alleging -that this implementation of Go or any code incorporated within this -implementation of Go constitutes direct or contributory patent -infringement, or inducement of patent infringement, then any patent -rights granted to you under this License for this implementation of Go -shall terminate as of the date such litigation is filed. - - -ADDITIONAL LICENSE INFORMATION: - -> MIT - -crypto-master.zip\crypto-master\pkcs12\internal\rc2\rc2.go - -This code is licensed under the MIT license. - -> PUBLIC DOMAIN - -crypto-master.zip\crypto-master\twofish\twofish.go - -LibTomCrypt is free for all purposes under the public domain. - ->>> golang/oauth2-bb50c06 - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -* Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ->>> gorilla/context-v1.1 - -Copyright (c) 2012 Rodrigo Moraes. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -* Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ->>> gorilla/handlers-v1.3.0 - -Copyright (c) 2013 The Gorilla Handlers Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -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. - - -ADDITIONAL LICENSE INFORMATION: - -> BSD Style - -handlers-1.3.0.tar.gz\handlers-1.3.0.tar\handlers-1.3.0\handlers_test.go - -Copyright 2013 The Gorilla Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. - ->>> gorilla/mux-v1.6.0 - -Copyright (c) 2012 Rodrigo Moraes. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -* Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -ADDITIONAL LICENSE INFORMATION: - -> BSD Style - -mux-1.6.0.tar.gz\mux-1.6.0.tar\mux-1.6.0\route.go - -Copyright 2012 The Gorilla Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. - ->>> intl.js-1.2.5 - -The MIT License (MIT) - -Copyright (c) 2013 Andy Earnshaw - -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. - - ------------------------------------------------------------------------------- -Contents of the `locale-data` directory are a modified form of the Unicode CLDR -data found at http://www.unicode.org/cldr/data/. It comes with the following -license. - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1991-2013 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. in the United -States and other countries. All third party trademarks referenced herein are -the property of their respective owners. - - - -ADDITIONAL LICENSE INFORMATION: - -> BSD-3 - -Intl.js-1.2.5.tar.gz\Intl.js-1.2.5.tar\Intl.js-1.2.5\tests\test262\LICENSE - -The << Software identified by reference to the Ecma Standard* ("Software)">> is protected by copyright and is being -made available under the "BSD License", included below. This Software may be subject to third party rights (rights -from parties other than Ecma International), including patent rights, and no licenses under such third party rights -are granted under this license even if the third party concerned is a member of Ecma International. SEE THE ECMA -CODE OF CONDUCT IN PATENT MATTERS AVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR -INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO IMPLEMENT ECMA INTERNATIONAL STANDARDS*. - -Copyright (C) 2012-2013 Ecma International -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 authors nor Ecma International may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE ECMA INTERNATIONAL "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 ECMA INTERNATIONAL 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. - -* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports - ->>> jwt-go-3.0.0 - -Copyright (c) 2012 Dave Grijalva - -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. - ->>> lib/pq-b2004221932bd6b13167ef654c81cffac36f7537 - -Copyright (c) 2011-2013, 'pq' Contributors -Portions Copyright (C) 2011 Blake Mizerany - -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. - ->>> mattn/go-sqlite3-v1.6.0 - -The MIT License (MIT) - -Copyright (c) 2014 Yasuhiro Matsumoto - -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. - -ADDITIONAL LICENSE INFORMATION: - -> MIT Style -go-sqlite3-1.6.0.tar.gz\go-sqlite3-1.6.0.tar\go-sqlite3-1.6.0\sqlite3_windows.go - -Copyright (C) 2014 Yasuhiro Matsumoto . -Use of this source code is governed by an MIT-style -license that can be found in the LICENSE file. -+build vtable - -> BSD 2 Clause - -go-sqlite3-1.6.0.tar.gz\go-sqlite3-1.6.0.tar\go-sqlite3-1.6.0\_example\mod_vtable\picojson.h - -Copyright 2009-2010 Cybozu Labs, Inc. -Copyright 2011 Kazuho Oku - -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 CYBOZU LABS, INC. ``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 CYBOZU LABS, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The views and conclusions contained in the software and documentation are -those of the authors and should not be interpreted as representing official -policies, either expressed or implied, of Cybozu Labs, Inc. - ->>> mutationobserver-shim-0.3.2 - -Copyright © 2014 Graeme Yeates - -This work is free. You can redistribute it and/or modify it under the -terms of the Do What The Fuck You Want To Public License, Version 2, -as published by Sam Hocevar. See http:www.wtfpl.net/ for more details. - -This program is free software. It comes without any warranty, to -the extent permitted by applicable law. You can redistribute it -and/or modify it under the terms of the Do What The Fuck You Want -To Public License, Version 2, as published by Sam Hocevar. See -http:www.wtfpl.net/ for more details. - -ADDITIONAL LICENSE INFORMATION: - -> MIT - -MutationObserver.js-0.3.2.tar.gz\MutationObserver.js-0.3.2.tar\MutationObserver.js-0.3.2\test\vendor\jslitmus.js - -Copyright (c) 2008-2009, Robert Kieffer -All Rights Reserved - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the -Software), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -THE 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. - -> MIT - -MutationObserver.js-0.3.2.tar.gz\MutationObserver.js-0.3.2.tar\MutationObserver.js-0.3.2\test\vendor\jquery.js - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -jQuery JavaScript Library v1.7.2 -http://jquery.com/ - -Copyright 2011, John Resig -Dual licensed under the MIT or GPL Version 2 licenses. -http://jquery.org/license - -Includes Sizzle.js -http://sizzlejs.com/ -Copyright 2011, The Dojo Foundation -Released under the MIT, BSD, and GPL Licenses. - -Date: Wed Mar 21 12:46:34 2012 -0700 - ->>> ng-packagr-4.1.1 - -MIT License - -Copyright (c) 2017 David Herges - -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. - ->>> ngx-clipboard-11.1.3 - -MIT License - -Copyright (c) 2018 Sam Lin - -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. - ->>> ngx-cookie-1.0.1 - -MIT License - -Copyright (c) 2017 Samet Alemdar - -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. - ->>> ngx-markdown-6.2.0 - -MIT License - -Copyright (c) 2017 Jean-Francois Cere - -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. - ->>> ngx-translate/http-loader-3.0.1 - -Copyright (c) 2016 Olivier Combe - -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. - ->>> robfig/cron-v1 - -Copyright (C) 2012 Rob Figueiredo -All Rights Reserved. - -MIT LICENSE - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies 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. - ->>> sling-1.1.0 - -The MIT License (MIT) - -Copyright (c) 2015 Dalton Hubble - -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. - ->>> testify-v1.2.0 - -Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell - -Please consider promoting this project if you find it useful. - -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. - -ADDITIONAL LICENSE INFORMATION: - -> MIT- Style - -testify-1.2.0.tar.gz\testify-1.2.0.tar\testify-1.2.0\vendor\github.com\davecgh\go-spew\LICENSE - -ISC License - -Copyright (c) 2012-2016 Dave Collins - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -> BSD- 3 Clause - -testify-1.2.0.tar.gz\testify-1.2.0.tar\testify-1.2.0\vendor\github.com\pmezard\go-difflib\LICENSE - -Copyright (c) 2013, Patrick Mezard -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -The names of its contributors may not be used to endorse or promote -products derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -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. - ->>> ts-helpers-1.1.2 - -The MIT License (MIT) - -Copyright (c) 2016 ngParty - -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. - ->>> types-0.1.1 - -(The MIT License) - -Copyright (C) 2011 by Vitaly Puzrin - -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. - ->>> zone.js-0.8.26 - -Copyright (c) 2016-2018 Google, 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. - ---------------- SECTION 3: Mozilla Public License, V2.0 ---------- - -Mozilla Public License, V2.0 is applicable to the following component(s). - - ->>> go-sql-driver/mysql-v1.3 - -Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved. - -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/. - -====================PART 2. OPERATING SYSTEM: PHOTON ==================== - - ---------------- SECTION 1: Apache License, V2.0 ---------- - -Apache License, V2.0 is applicable to the following component(s). - - ->>> photon-release-2.0-2.ph2 - -License: Apache License - ->>> photon-repos-2.0-2.ph2 - -License: Apache License - ---------------- SECTION 2: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES ---------- - -BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES are applicable to the following component(s). - - ->>> bzip2-1.0.6-8.ph2 - -This program, "bzip2", the associated library "libbzip2", and all -documentation, are copyright (C) 1996-2010 Julian R Seward. All -rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -2. The origin of this software must not be misrepresented; you must -not claim that you wrote the original software. If you use this -software in a product, an acknowledgment in the product -documentation would be appreciated but is not required. - -3. Altered source versions must be plainly marked as such, and must -not be misrepresented as being the original software. - -4. The name of the author may not be used to endorse or promote -products derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS -OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE -GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Julian Seward, jseward@bzip.org -bzip2/libbzip2 version 1.0.6 of 6 September 2010 - -ADDITIONAL LICENSE INFORMATION : - -> GPL 3.0 - -bzip2_1.0.6-1.debian.tar.bz2\bzip2_1.0.6-1.debian.tar\debian\copyright.in - -This package (bzip2) was created by Philippe Troin . -It is currently mantained by Anibal Monsalve Salazar . -This package is Copyright (C) 1999, 2000, 2001, 2002 Philippe Troin - and Copyright (C) 2004-2007 Anibal Monsalve Salazar. -It is licensed under the GNU General Public License which can be -found in /usr/share/common-licenses/GPL. - -It was downloaded from -http://www.bzip.org/downloads.html - -For more information about bzip2, please visit: -http://www.bzip.org/ - ->>> cronie-1.5.1-1.ph2 - -Copyright (c) 2012 Copyright Red Hat Software - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -ADDITIONAL LICENSE INFORMATION: - ->GPL 2.0 - -cronie-1.5.1.tar.gz\cronie-1.5.1.tar\cronie-1.5.1\anacron\global.h - - -Anacron - run commands periodically -Copyright (C) 1998 Itai Tzur -Copyright (C) 1999 Sean 'Shaleh' Perry -Copyright (C) 2004 Pascal Hakim - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -The GNU General Public License can also be found in the file -`COPYING' that comes with the Anacron source distribution. - - ->BSD-3 - -cronie-1.5.1.tar.gz\cronie-1.5.1.tar\cronie-1.5.1\src\bitstring.h - -Copyright (c) 1989, 1993 -The Regents of the University of California. All rights reserved. - -This code is derived from software contributed to Berkeley by -Paul Vixie. - -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. - ->BSD-2 - -cronie-1.5.1.tar.gz\cronie-1.5.1.tar\cronie-1.5.1\src\ pw_dup.c - - -Copyright (c) 1988, 1993, 1994 -The Regents of the University of California. All rights reserved. - -This code is derived from software written by Ken Arnold and -published in UNIX Review, Vol. 6, No. 8. - -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 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. - ->>> curl-7.59.0-3.ph2 - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2016, Daniel Stenberg, , and many -contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright -notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS", 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 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. - -Except as contained in this notice, the name of a copyright holder shall not -be used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization of the copyright holder. - -ADDITIONAL LICENSE INFORMATION: - -> BSD-3 Clause - -curl-7.59.0-3.ph2.src-1.rpm\curl-7.59.0-3.ph2.src.cpio\curl-7.59.0.tar.gz\curl-7.59.0.tar\curl-7.59.0\lib\krb5.c - -Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan -(Royal Institute of Technology, Stockholm, Sweden). -Copyright (c) 2004 - 2016 Daniel Stenberg -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 Institute 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 INSTITUTE 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 INSTITUTE 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. - - -> Public Domain - -curl-7.59.0-3.ph2.src-1.rpm\curl-7.59.0-3.ph2.src.cpio\curl-7.59.0.tar.gz\curl-7.59.0.tar\curl-7.59.0\lib\md4.c - -Author: -Alexander Peslyak, better known as Solar Designer - -This software was written by Alexander Peslyak in 2001. No copyright is -claimed, and the software is hereby placed in the public domain. In case -this attempt to disclaim copyright and place the software in the public -domain is deemed null and void, then the software is Copyright (c) 2001 -Alexander Peslyak and it is hereby released to the general public under the -following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted. - -There's ABSOLUTELY NO WARRANTY, express or implied. - -(This is a heavily cut-down "BSD license".) - -This differs from Colin Plumb's older public domain implementation in that -no exactly 32-bit integer data type is required (any 32-bit or wider -unsigned integer data type will do), there's no compile-time endianness -configuration, and the function prototypes match OpenSSL's. No code from -Colin Plumb's implementation has been reused; this comment merely compares -the properties of the two independent implementations. - -The primary goals of this implementation are portability and ease of use. -It is meant to be fast, but not as fast as possible. Some known -optimizations are not included to reduce source code size and avoid -compile-time configuration. - -> MIT-STYLE - -curl-7.59.0-3.ph2.src-1.rpm\curl-7.59.0-3.ph2.src.cpio\curl-7.59.0.tar.gz\curl-7.59.0.tar\curl-7.59.0\src\macos\src\macos_main.cpp - -Copyright (C) 2001 Eric Lavigne - -Permission is granted to anyone to use this software for any purpose on any -computer system, and to redistribute it freely, subject to the following -restrictions: -- The author is not responsible for the consequences of use of this -software, no matter how awful, even if they arise from defects in it. -- The origin of this software must not be misrepresented, either by -explicit claim or by omission. -- You are allowed to distributed modified copies of the software, in source -and binary form, provided they are marked plainly as altered versions, and -are not misrepresented as being the original software. - -> Openssl - -curl-7.59.0-3.ph2.src-1.rpm\curl-7.59.0-3.ph2.src.cpio\curl-7.59.0.tar.gz\curl-7.59.0.tar\curl-7.59.0\docs\examples\curlx.c - -Copyright (c) 2003 The OpenEvidence 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, the following disclaimer, -and the original OpenSSL and SSLeay Licences below. - -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions, the following disclaimer -and the original OpenSSL and SSLeay Licences below 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 acknowledgments: -"This product includes software developed by the Openevidence Project -for use in the OpenEvidence Toolkit. (http://www.openevidence.org/)" -This product includes software developed by the OpenSSL Project -for use in the OpenSSL Toolkit (https://www.openssl.org/)" -This product includes cryptographic software written by Eric Young -(eay@cryptsoft.com). This product includes software written by Tim -Hudson (tjh@cryptsoft.com)." - -4. The names "OpenEvidence Toolkit" and "OpenEvidence Project" must not be -used to endorse or promote products derived from this software without -prior written permission. For written permission, please contact -openevidence-core@openevidence.org. - -5. Products derived from this software may not be called "OpenEvidence" -nor may "OpenEvidence" appear in their names without prior written -permission of the OpenEvidence Project. - -6. Redistributions of any form whatsoever must retain the following -acknowledgments: -"This product includes software developed by the OpenEvidence Project -for use in the OpenEvidence Toolkit (http://www.openevidence.org/) -This product includes software developed by the OpenSSL Project -for use in the OpenSSL Toolkit (https://www.openssl.org/)" -This product includes cryptographic software written by Eric Young -(eay@cryptsoft.com). This product includes software written by Tim -Hudson (tjh@cryptsoft.com)." - -THIS SOFTWARE IS PROVIDED BY THE OpenEvidence 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 OpenEvidence 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 software developed by the OpenSSL Project -for use in the OpenSSL Toolkit (https://www.openssl.org/) -This product includes cryptographic software written by Eric Young -(eay@cryptsoft.com). This product includes software written by Tim -Hudson (tjh@cryptsoft.com). - ->>> cyrus-sasl-2.1.26-14.ph2 - -Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in -the documentation and/or other materials provided with the -distribution. - -3. The name "Carnegie Mellon University" must not be used to -endorse or promote products derived from this software without -prior written permission. For permission or any other legal -details, please contact -Office of Technology Transfer -Carnegie Mellon University -5000 Forbes Avenue -Pittsburgh, PA 15213-3890 -(412) 268-4387, fax: (412) 268-7395 -tech-transfer@andrew.cmu.edu - -4. Redistributions of any form whatsoever must retain the following -acknowledgment: -"This product includes software developed by Computing Services -at Carnegie Mellon University (http://www.cmu.edu/computing/)." - -CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY 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. - -ADDITIONAL LICENSE INFORMATION: - -*******[VMware does not distribute the following sub-component- "dlfcn.h"]******* - -> Apple Public Source License Version 1.1 - -cyrus-sasl-2.1.26.tar.gz\cyrus-sasl-2.1.26.tar\cyrus-sasl-2.1.26\dlcompat-20010505\dlfcn.h -Copyright (c) 1999 Apple Computer, Inc. All rights reserved. - -@APPLE_LICENSE_HEADER_START@ - -Portions Copyright (c) 1999 Apple Computer, Inc. All Rights -Reserved. This file contains Original Code and/or Modifications of -Original Code as defined in and that are subject to the Apple Public -Source License Version 1.1 (the "License"). You may not use this file -except in compliance with the License. Please obtain a copy of the -License at http://www.apple.com/publicsource and read it before using -this file. - -The Original Code and all software distributed under the License are -distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER -EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, -INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the -License for the specific language governing rights and limitations -under the License. - -> RSA Data Security - -cyrus-sasl-2.1.26.tar.gz\cyrus-sasl-2.1.26.tar\cyrus-sasl-2.1.26\include\ md5.h - -Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All -rights reserved. - -License to copy and use this software is granted provided that it -is identified as the "RSA Data Security, Inc. MD5 Message-Digest -Algorithm" in all material mentioning or referencing this software -or this function. - -License is also granted to make and use derivative works provided -that such works are identified as "derived from the RSA Data -Security, Inc. MD5 Message-Digest Algorithm" in all material -mentioning or referencing the derived work. - -RSA Data Security, Inc. makes no representations concerning either -the merchantability of this software or the suitability of this -software for any particular purpose. It is provided "as is" -without express or implied warranty of any kind. -These notices must be retained in any copies of any part of this -documentation and/or software. - -> MIT - -cyrus-sasl-2.1.26.tar.gz\cyrus-sasl-2.1.26.tar\cyrus-sasl-2.1.26\java\CyrusSasl\ javasasl.c - -Copyright 1998 by Carnegie Mellon University - -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 Carnegie Mellon -University not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. - -CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY 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. - ->>> expat-2.2.4-1.ph2 - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd - Copyright (c) 2000-2017 Expat development team - Licensed under the MIT license: - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - - The above copyright notice and this permission notice shall be included - in all copies 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. - ->>> krb5-1.16-2.ph2 - -Copyright (c) 2004 Sun Microsystems, 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. - - -ADDITIONAL LICENSE INFORMATION: - - -Copyright (C) 1985-2017 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(http://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -====================================================================== - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in "kadmin/create", -"kadmin/dbutil", "kadmin/passwd", "kadmin/server", "lib/kadm5", and -portions of "lib/rpc": - -Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights -Reserved - -WARNING: Retrieving the OpenVision Kerberos Administration system -source code, as described below, indicates your acceptance of the -following terms. If you do not agree to the following terms, do -not retrieve the OpenVision Kerberos administration system. - -You may freely use and distribute the Source Code and Object Code -compiled from it, with or without modification, but this Source -Code is provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, -INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR -FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER -EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY -FOR ANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INDIRECT, OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, INCLUDING, -WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF THE SOURCE -CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY -OTHER REASON. - -OpenVision retains all copyrights in the donated Source Code. -OpenVision also retains copyright to derivative works of the Source -Code, whether created by OpenVision or by a third party. The -OpenVision copyright notice must be preserved if derivative works -are made based on the donated Source Code. - -OpenVision Technologies, Inc. has donated this Kerberos -Administration system to MIT for inclusion in the standard Kerberos -5 distribution. This donation underscores our commitment to -continuing Kerberos technology development and our gratitude for -the valuable work which has been performed by MIT and the Kerberos -community. - -====================================================================== - -Portions contributed by Matt Crawford "crawdad@fnal.gov" were work -performed at Fermi National Accelerator Laboratory, which is -operated by Universities Research Association, Inc., under contract -DE-AC02-76CHO3000 with the U.S. Department of Energy. - -====================================================================== - -Portions of "src/lib/crypto" have the following copyright: - -Copyright (C) 1998 by the FundsXpress, INC. - -All rights reserved. - -Export of this software from the United States of America may -require a specific license from the United States Government. -It is the responsibility of any person or organization -contemplating export to obtain such a license before exporting. - -WITHIN THAT CONSTRAINT, permission to use, copy, modify, and -distribute this software and its documentation for any purpose and -without fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright notice and -this permission notice appear in supporting documentation, and that -the name of FundsXpress. not be used in advertising or publicity -pertaining to distribution of the software without specific, -written prior permission. FundsXpress makes no representations -about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. - -THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementation of the AES encryption algorithm in -"src/lib/crypto/builtin/aes" has the following copyright: - -Copyright (C) 2001, Dr Brian Gladman "brg@gladman.uk.net", Worcester, UK. -All rights reserved. - -LICENSE TERMS - -The free distribution and use of this software in both source and -binary form is allowed (with or without changes) provided that: - -1. distributions of this source code include the above copyright -notice, this list of conditions and the following disclaimer; - -2. distributions in binary form include the above copyright notice, -this list of conditions and the following disclaimer in the -documentation and/or other associated materials; - -3. the copyright holder's name is not used to endorse products -built using this software without specific written permission. - -DISCLAIMER - -This software is provided 'as is' with no explcit or implied -warranties in respect of any properties, including, but not limited -to, correctness and fitness for purpose. - -====================================================================== - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - -Copyright (C) 2006 Red Hat, Inc. -Portions copyright (C) 2006 Massachusetts Institute of Technology -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 Red Hat, Inc., nor the names of its -contributors may be used to endorse or promote products derived -from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The bundled verto source code is subject to the following license: - -Copyright 2011 Red Hat, 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. - -====================================================================== - -The MS-KKDCP client implementation has the following copyright: - -Copyright 2013,2014 Red Hat, Inc. - -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 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -"src/lib/gssapi", including the following files: - -lib/gssapi/generic/gssapi_err_generic.et -lib/gssapi/mechglue/g_accept_sec_context.c -lib/gssapi/mechglue/g_acquire_cred.c -lib/gssapi/mechglue/g_canon_name.c -lib/gssapi/mechglue/g_compare_name.c -lib/gssapi/mechglue/g_context_time.c -lib/gssapi/mechglue/g_delete_sec_context.c -lib/gssapi/mechglue/g_dsp_name.c -lib/gssapi/mechglue/g_dsp_status.c -lib/gssapi/mechglue/g_dup_name.c -lib/gssapi/mechglue/g_exp_sec_context.c -lib/gssapi/mechglue/g_export_name.c -lib/gssapi/mechglue/g_glue.c -lib/gssapi/mechglue/g_imp_name.c -lib/gssapi/mechglue/g_imp_sec_context.c -lib/gssapi/mechglue/g_init_sec_context.c -lib/gssapi/mechglue/g_initialize.c -lib/gssapi/mechglue/g_inquire_context.c -lib/gssapi/mechglue/g_inquire_cred.c -lib/gssapi/mechglue/g_inquire_names.c -lib/gssapi/mechglue/g_process_context.c -lib/gssapi/mechglue/g_rel_buffer.c -lib/gssapi/mechglue/g_rel_cred.c -lib/gssapi/mechglue/g_rel_name.c -lib/gssapi/mechglue/g_rel_oid_set.c -lib/gssapi/mechglue/g_seal.c -lib/gssapi/mechglue/g_sign.c -lib/gssapi/mechglue/g_store_cred.c -lib/gssapi/mechglue/g_unseal.c -lib/gssapi/mechglue/g_userok.c -lib/gssapi/mechglue/g_utils.c -lib/gssapi/mechglue/g_verify.c -lib/gssapi/mechglue/gssd_pname_to_uid.c -lib/gssapi/mechglue/mglueP.h -lib/gssapi/mechglue/oid_ops.c -lib/gssapi/spnego/gssapiP_spnego.h -lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -include/iprop_hdr.h -kadmin/server/ipropd_svc.c -lib/kdb/iprop.x -lib/kdb/kdb_convert.c -lib/kdb/kdb_log.c -lib/kdb/kdb_log.h -lib/krb5/error_tables/kdb5_err.et -slave/kpropd_rpc.c -slave/kproplog.c - -are subject to the following license: - -Copyright (C) 2004 Sun Microsystems, 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. - -====================================================================== - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - -Copyright (C) 1983 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -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. - -====================================================================== - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - -Copyright (C) 2004-2005, Novell, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in -the documentation and/or other materials provided with the -distribution. - -The copyright holder's name is not used to endorse or promote -products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -Portions funded by Sandia National Laboratory and developed by the -University of Michigan's Center for Information Technology -Integration, including the PKINIT implementation, are subject to the -following license: - -COPYRIGHT (C) 2006-2007 -THE REGENTS OF THE UNIVERSITY OF MICHIGAN -ALL RIGHTS RESERVED - -Permission is granted to use, copy, create derivative works and -redistribute this software and such derivative works for any -purpose, so long as the name of The University of Michigan is not -used in any advertising or publicity pertaining to the use of -distribution of this software without specific, written prior -authorization. If the above copyright notice or any other -identification of the University of Michigan is included in any -copy of any portion of this software, then the disclaimer below -must also be included. - -THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE -UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND -WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER -EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR -ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR -CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR -IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR -IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -====================================================================== - -The pkcs11.h file included in the PKINIT code has the following -license: - -Copyright 2006 g10 Code GmbH -Copyright 2006 Andreas Jellinghaus - -This file is free software; as a special exception the author gives -unlimited permission to copy and/or distribute it, with or without -modifications, as long as this notice is preserved. - -This file is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY, to the extent permitted by law; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. - -====================================================================== - -Portions contributed by Apple Inc. are subject to the following -license: - -Copyright 2004-2008 Apple Inc. All Rights Reserved. - -Export of this software from the United States of America may -require a specific license from the United States Government. -It is the responsibility of any person or organization -contemplating export to obtain such a license before exporting. - -WITHIN THAT CONSTRAINT, permission to use, copy, modify, and -distribute this software and its documentation for any purpose and -without fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright notice and -this permission notice appear in supporting documentation, and that -the name of Apple Inc. not be used in advertising or publicity -pertaining to distribution of the software without specific, -written prior permission. Apple Inc. makes no representations -about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. - -THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -====================================================================== - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - -The OpenLDAP Public License -Version 2.8, 17 August 2003 - -Redistribution and use of this software and associated -documentation ("Software"), with or without modification, are -permitted provided that the following conditions are met: - -1. Redistributions in source form must retain copyright statements -and notices, - -2. Redistributions in binary form must reproduce applicable -copyright statements and notices, this list of conditions, and -the following disclaimer in the documentation and/or other -materials provided with the distribution, and - -3. Redistributions must contain a verbatim copy of this document. - -The OpenLDAP Foundation may revise this license from time to time. -Each revision is distinguished by a version number. You may use -this Software under terms of this license revision or under the -terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS -CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS -CONTRIBUTORS, OR THE AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE -USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -The names of the authors and copyright holders must not be used in -advertising or otherwise to promote the sale, use or other dealing -in this Software without specific, written prior permission. Title -to copyright in this Software shall at all times remain with -copyright holders. - -OpenLDAP is a registered trademark of the OpenLDAP Foundation. - -Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. - -====================================================================== - -Marked test programs in src/lib/krb5/krb have the following copyright: - -Copyright (C) 2006 Kungliga Tekniska Högskola -(Royal Institute of Technology, Stockholm, Sweden). -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 KTH 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 KTH 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 KTH 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. - -====================================================================== - -The KCM Mach RPC definition file used on macOS has the following -copyright: - -Copyright (C) 2009 Kungliga Tekniska Högskola -(Royal Institute of Technology, Stockholm, Sweden). -All rights reserved. - -Portions Copyright (C) 2009 Apple Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above -copyright notice, this list of conditions and the following -disclaimer. - -2. Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Neither the name of the Institute 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 INSTITUTE 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 INSTITUTE -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 RPC implementation in src/lib/rpc and -src/include/gssrpc have the following copyright and permission notice: - -Copyright (C) 2010, Oracle America, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Neither the name of the "Oracle America, Inc." nor the names of -its contributors may be used to endorse or promote products -derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -Copyright (C) 2006,2007,2009 NTT (Nippon Telegraph and Telephone -Corporation). All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer as -the first lines of this file unmodified. - -2. Redistributions in 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 NTT "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 NTT 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 2000 by Carnegie Mellon University - -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 -Carnegie Mellon University not be used in advertising or publicity -pertaining to distribution of the software without specific, -written prior permission. - -CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO -THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY 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. - -====================================================================== - -Copyright (C) 2002 Naval Research Laboratory (NRL/CCS) - -Permission to use, copy, modify and distribute this software and -its documentation is hereby granted, provided that both the -copyright notice and this permission notice appear in all copies of -the software, derivative works or modified versions, and any -portions thereof. - -NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND -DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER -RESULTING FROM THE USE OF THIS SOFTWARE. - -====================================================================== - -Portions extracted from Internet RFCs have the following copyright -notice: - -Copyright (C) The Internet Society (2006). - -This document is subject to the rights, licenses and restrictions -contained in BCP 78, and except as set forth therein, the authors -retain all their rights. - -This document and the information contained herein are provided on -an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE -REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND -THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT -THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR -ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A -PARTICULAR PURPOSE. - -====================================================================== - -Copyright (C) 1991, 1992, 1994 by Cygnus Support. - -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. Cygnus Support makes no -representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied -warranty. - -====================================================================== - -Copyright (C) 2006 Secure Endpoints 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. - -====================================================================== - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - -Copyright (C) 2005 Marko Kreen -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 AUTHOR 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 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. - -Copyright (C) 1994 by the University of Southern California - -EXPORT OF THIS SOFTWARE from the United States of America may -require a specific license from the United States Government. It -is the responsibility of any person or organization -contemplating export to obtain such a license before exporting. - -WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute -this software and its documentation in source and binary forms is -hereby granted, provided that any documentation or other materials -related to such distribution or use acknowledge that the software -was developed by the University of Southern California. - -DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The -University of Southern California MAKES NO REPRESENTATIONS OR -WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not -limitation, the University of Southern California MAKES NO -REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY -PARTICULAR PURPOSE. The University of Southern California shall not -be held liable for any liability nor for any direct, indirect, or -consequential damages with respect to any claim by the user or -distributor of the ksu software. - -====================================================================== - -Copyright (C) 1995 -The President and Fellows of Harvard University - -This code is derived from software contributed to Harvard by Jeremy -Rassen. - -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 acknowledgement: - -This product includes software developed by the University of -California, Berkeley and its contributors. - -4. 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) 2008 by the Massachusetts Institute of Technology. -Copyright 1995 by Richard P. Basch. All Rights Reserved. -Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - -Export of this software from the United States of America may -require a specific license from the United States Government. It -is the responsibility of any person or organization -contemplating export to obtain such a license before exporting. - -WITHIN THAT CONSTRAINT, permission to use, copy, modify, and -distribute this software and its documentation for any purpose and -without fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright notice and -this permission notice appear in supporting documentation, and that -the name of Richard P. Basch, Lehman Brothers and M.I.T. not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. Richard P. -Basch, Lehman Brothers and M.I.T. make no representations about the -suitability of this software for any purpose. It is provided "as -is" without express or implied warranty. - -====================================================================== - -The following notice applies to "src/lib/krb5/krb/strptime.c" and -"src/include/k5-queue.h". - -Copyright (C) 1997, 1998 The NetBSD Foundation, Inc. -All rights reserved. - -This code was contributed to The NetBSD Foundation by Klaus Klein. - -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 acknowledgement: - -This product includes software developed by the NetBSD -Foundation, Inc. and its contributors. - -4. Neither the name of The NetBSD Foundation 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 NETBSD FOUNDATION, INC. AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE -USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -====================================================================== - -The following notice applies to Unicode library files in -"src/lib/krb5/unicode": - -Copyright 1997, 1998, 1999 Computing Research Labs, -New Mexico State University - -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 COMPUTING RESEARCH LAB OR -NEW MEXICO STATE UNIVERSITY 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 following notice applies to "src/util/support/strlcpy.c": - -Copyright (C) 1998 Todd C. Miller "Todd.Miller@courtesan.com" - -Permission to use, copy, modify, and distribute this software for -any purpose with or without fee is hereby granted, provided that -the above copyright notice and this permission notice appear in all -copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE -AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR -CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -====================================================================== - -The following notice applies to "src/util/profile/argv_parse.c" and -"src/util/profile/argv_parse.h": - -Copyright 1999 by Theodore Ts'o. - -Permission to use, copy, modify, and distribute this software for -any purpose with or without fee is hereby granted, provided that -the above copyright notice and this permission notice appear in all -copies. THE SOFTWARE IS PROVIDED "AS IS" AND THEODORE TS'O (THE -AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN -NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. (Isn't -it sick that the U.S. culture of lawsuit-happy lawyers requires -this kind of disclaimer?) - -====================================================================== - -The following notice applies to SWIG-generated code in -"src/util/profile/profile_tcl.c": - -Copyright (C) 1999-2000, The University of Chicago - -This file may be freely redistributed without license or fee -provided this copyright message remains intact. - -====================================================================== - -The following notice applies to portiions of "src/lib/rpc" and -"src/include/gssrpc": - -Copyright (C) 2000 The Regents of the University of Michigan. All -rights reserved. - -Copyright (C) 2000 Dug Song "dugsong@UMICH.EDU". All rights -reserved, all wrongs reversed. - -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 "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. - -====================================================================== - -Implementations of the MD4 algorithm are subject to the following -notice: - -Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - -License to copy and use this software is granted provided that it -is identified as the "RSA Data Security, Inc. MD4 Message Digest -Algorithm" in all material mentioning or referencing this software -or this function. - -License is also granted to make and use derivative works provided -that such works are identified as "derived from the RSA Data -Security, Inc. MD4 Message Digest Algorithm" in all material -mentioning or referencing the derived work. - -RSA Data Security, Inc. makes no representations concerning either -the merchantability of this software or the suitability of this -software for any particular purpose. It is provided "as is" -without express or implied warranty of any kind. - -These notices must be retained in any copies of any part of this -documentation and/or software. - -====================================================================== - -Implementations of the MD5 algorithm are subject to the following -notice: - -Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. - -License to copy and use this software is granted provided that it -is identified as the "RSA Data Security, Inc. MD5 Message- Digest -Algorithm" in all material mentioning or referencing this software -or this function. - -License is also granted to make and use derivative works provided -that such works are identified as "derived from the RSA Data -Security, Inc. MD5 Message-Digest Algorithm" in all material -mentioning or referencing the derived work. - -RSA Data Security, Inc. makes no representations concerning either -the merchantability of this software or the suitability of this -software for any particular purpose. It is provided "as is" -without express or implied warranty of any kind. - -These notices must be retained in any copies of any part of this -documentation and/or software. - -====================================================================== - -The following notice applies to -"src/lib/crypto/crypto_tests/t_mddriver.c": - -Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All -rights reserved. - -RSA Data Security, Inc. makes no representations concerning either -the merchantability of this software or the suitability of this -software for any particular purpose. It is provided "as is" without -express or implied warranty of any kind. - -These notices must be retained in any copies of any part of this -documentation and/or software. - -====================================================================== - -Portions of "src/lib/krb5" are subject to the following notice: - -Copyright (C) 1994 CyberSAFE Corporation. -Copyright 1990,1991,2007,2008 by the Massachusetts Institute of Technology. -All Rights Reserved. - -Export of this software from the United States of America may -require a specific license from the United States Government. It -is the responsibility of any person or organization -contemplating export to obtain such a license before exporting. - -WITHIN THAT CONSTRAINT, permission to use, copy, modify, and -distribute this software and its documentation for any purpose and -without fee is hereby granted, provided that the above copyright -notice appear in all copies and that both that copyright notice and -this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity -pertaining to distribution of the software without specific, -written prior permission. Furthermore if you modify this software -you must label your software as modified software and not -distribute it in such a fashion that it might be confused with the -original M.I.T. software. Neither M.I.T., the Open Computing -Security Group, nor CyberSAFE Corporation make any representations -about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. - -====================================================================== - -Portions contributed by PADL Software are subject to the following -license: - -Copyright (c) 2011, PADL Software Pty Ltd. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -3. Neither the name of PADL Software 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 PADL SOFTWARE 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 PADL SOFTWARE -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 bundled libev source code is subject to the following license: - -All files in libev are Copyright (C)2007,2008,2009 Marc Alexander -Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in -the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the -terms of the GNU General Public License ("GPL") version 2 or any -later version, in which case the provisions of the GPL are -applicable instead of the above. If you wish to allow the use of -your version of this package only under the terms of the GPL and -not to allow others to use your version of this file under the BSD -license, indicate your decision by deleting the provisions above -and replace them with the notice and other provisions required by -the GPL in this and the other files of this package. If you do not -delete the provisions above, a recipient may use your version of -this file under either the BSD or the GPL. - -====================================================================== - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - -Copyright (C) 2010, Intel Corporation -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials -provided with the distribution. - -Neither the name of Intel Corporation nor the names of its -contributors may be used to endorse or promote products -derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -====================================================================== - -The following notice applies to -"src/ccapi/common/win/OldCC/autolock.hxx": - -Copyright (C) 1998 by Danilo Almeida. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -ADDITIONAL LICENSE INFORMATION: - -> LPPL 1.3c - -krb5-1.16-2.ph2.src.rpm\krb5-1.16-2.ph2.src.cpio\krb5-1.16.tar.gz\krb5-1.16.tar\krb5-1.16\doc\pdf\tabulary.sty - - -Copyright (C) 1995 1996 2003 2008 David Carlisle -This file may be distributed under the terms of the LPPL. -See 00readme.txt for details. - - -> BSD- 4 Clause - - -krb5-1.16-2.ph2.src.rpm\krb5-1.16-2.ph2.src.cpio\krb5-1.16.tar.gz\krb5-1.16.tar\krb5-1.16\src\lib\apputils\daemon.c - - -Copyright (c) 1990 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. All advertising materials mentioning features or use of this software -must display the following acknowledgement: -This product includes software developed by the University of -California, Berkeley and its contributors. -4. 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. - -> Public Domain - -krb5-1.16-2.ph2.src.rpm\krb5-1.16-2.ph2.src.cpio\krb5-1.16.tar.gz\krb5-1.16.tar\krb5-1.16\src\lib\krb5\rcache\rc_base.c - -This file of the Kerberos V5 software is derived from public-domain code -contributed by Daniel J. Bernstein, . - ->>> libarchive-3.3.1-2.ph2 - -Copyright (c) 2003-2009 -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 -in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``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(S) 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. - -ADDITIONAL LICENSE INFORMATION: - ->MIT Style - -libarchive-3.3.1.tar.gz\libarchive-3.3.1.tar\libarchive-3.3.1\build\autoconf\ax_require_defined.m4 - -Copyright (c) 2014 Mike Frysinger - -Copying and distribution of this file, with or without modification, are -permitted in any medium without royalty provided the copyright notice -and this notice are preserved. This file is offered as-is, without any -warranty. - ->Apache 2.0 - -libarchive-3.3.1.tar.gz\libarchive-3.3.1.tar\libarchive-3.3.1\contrib\android\Android.mk - -Copyright (C) 2014 Trevor Drake - -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. - ->BSD – 4Clause - -libarchive-3.3.1.tar.gz\libarchive-3.3.1.tar\libarchive-3.3.1\contrib\shar\shar.1 - -Copyright (c) 1990, 1993 -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. All advertising materials mentioning features or use of this software -must display the following acknowledgement: -This product includes software developed by the University of -California, Berkeley and its contributors. -4. 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. - ->MIT - -libarchive-3.3.1.tar.gz\libarchive-3.3.1.tar\libarchive-3.3.1\doc\mdoc2man.awk - -Copyright (c) 2003 Peter Stuge - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ->Public Domain - -libarchive-3.3.1.tar.gz\libarchive-3.3.1.tar\libarchive-3.3.1\libarchive\archive_getdate.c - -This code is in the public domain and has no copyright. - -This is a plain C recursive-descent translation of an old -public-domain YACC grammar that has been used for parsing dates in -very many open-source projects. - -Since the original authors were generous enough to donate their -work to the public domain, I feel compelled to match their -generosity. - -Tim Kientzle, February 2009. - ->BSD – 3Clause - -libarchive-3.3.1.tar.gz\libarchive-3.3.1.tar\libarchive-3.3.1\libarchive\mtree.5 - -Copyright (c) 1989, 1990, 1993 -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. -4. 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. - ->>> libcap-2.25-7.ph2 - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Unless otherwise *explicitly* stated the following text describes the -licensed conditions under which the contents of this module release -may be distributed: - -------------------------------------------------------------------------- -Redistribution and use in source and binary forms of this module, with -or without modification, are permitted provided that the following -conditions are met: - -1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - -2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - -ALTERNATIVELY, this product may be distributed under the terms of the -GNU Library General Public License, in which case the provisions of -the GNU LGPL are required INSTEAD OF the above restrictions. (This -clause is necessary due to a potential conflict between the GNU LGPL -and the restrictions contained in a BSD-style copyright.) - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) 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. - ->>> libdb-5.3.28-1.ph2 - -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 Oracle at berkeleydb-info_us@oracle.com. - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= - -Copyright (c) 1990, 2013 Oracle and/or its affiliates. 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 ORACLE ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR -NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN -IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -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. - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= - -ASM: a very small and fast Java bytecode manipulation framework -Copyright (c) 2000-2005 INRIA, France Telecom -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holders nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - - -ADDITIONAL LICENSE INFORMATION: - ->BSD-4 - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\src\clib\atol.c - -Copyright (c) 1988, 1993 -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. All advertising materials mentioning features or use of this software -must display the following acknowledgement: -This product includes software developed by the University of -California, Berkeley and its contributors. -4. 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. - ->ARTISTIC 2.0 - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\src\crypto\mersenne\mt19937db.c - -This library is free software under the Artistic license: -see the file COPYING distributed together with this code. -For the verification of the code, its output sequence file -mt19937int.out is attached (2001/4/2) - ->PUBLIC DOMAIN - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\src\crypto\rijndael\rijndael-alg-fst.c - - -rijndael-alg-fst.c - -@version 3.0 (December 2000) - -Optimised ANSI C code for the Rijndael cipher (now AES) - -@author Vincent Rijmen -@author Antoon Bosselaers -@author Paulo Barreto - -This code is hereby placed in the public domain. - -THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS -OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ->PUBLIC DOMAIN - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\src\hmac\sha1.c - -SHA-1 in C -By Steve Reid -100% Public Domain ->MS-PL - - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\docs\csharp\TOC.js - - -Note : Copyright 2006-2009, Eric Woodruff, All rights reserved -Compiler: JavaScript - -This file contains the methods necessary to implement a simple tree view -for the table of content with a resizable splitter and Ajax support to -load tree nodes on demand. It also contains the script necessary to do -full-text searches. - -This code is published under the Microsoft Public License (Ms-PL). A copy -of the license should be distributed with the code. It can also be found -at the project website: http://SHFB.CodePlex.com. This notice, the -author's name, and all copyright notices must remain intact in all -applications, documentation, and source files. - ->MIT - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\dist\aclocal\ltoptions.m4 - -Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, -Inc. -Written by Gary V. Vaughan, 2004 - -This file is free software; the Free Software Foundation gives -unlimited permission to copy and/or distribute it, with or without -modifications, as long as this notice is preserved. - ->GPL 2.0 - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\lang\perl\BerkeleyDB\BerkeleyDB.pm - -[VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS SUBCOMPONENT UNDER THE TERMS OF THE GPL v2 LICENSE THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright (c) 1997-2011 Paul Marquess. All rights reserved. -This program is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. - - ->APACHE 2.0 - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\lang\php_db4\db4.cpp - -Copyright (c) 2004, 2013 Oracle and/or its affiliates. All rights reserved. - -http://www.apache.org/licenses/LICENSE-2.0.txt - -authors: George Schlossnagle george@omniti.com - ->MIT STYLE - -libdb-5.3.28-1.ph2.src.rpm\libdb-5.3.28-1.ph2.src.cpio\db-5.3.28.tar.gz\db-5.3.28.tar\db-5.3.28\lang\sql\jdbc\license.terms - -This software is copyrighted by Christian Werner and others. -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. - ->>> libfastjson-0.99.4-1.ph2 - -Copyright (c) 2015 Rainer Gerhards - -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) 2009-2012 Eric Haszlakiewicz - -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, 2005 Metaparadigm Pte Ltd - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The 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. - - -ADDITIONAL LICENSE INFORMATION: - -> Apache 2.0 - - -libfastjson-0.99.4.tar.gz\libfastjson-0.99.4.tar\libfastjson-0.99.4\atomic.h - - -Copyright 2008-2015 Rainer Gerhards and Adiscon GmbH. - -This file is part of the rsyslog runtime library. - -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 --or- -see COPYING.ASL20 in the source distribution - -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. - ->>> libffi-3.2.1-5.ph2 - -libffi - Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others. -See source files for details. - -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. - - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -libffi-3.2.1.tar.gz\libffi-3.2.1.tar\libffi-3.2.1\libtool-ldflags - -Copyright (C) 2005 Free Software Foundation, Inc. - -This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, -MA 02110-1301, USA. - - -> LGPL 2.1 - -libffi-3.2.1.tar.gz\libffi-3.2.1.tar\libffi-3.2.1\msvcc.sh - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE LGPL 2.1 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -***** BEGIN LICENSE BLOCK ***** -Version: MPL 1.1/GPL 2.0/LGPL 2.1 - -The contents of this file are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL/ - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the -License. - -The Original Code is the MSVC wrappificator. - -The Initial Developer of the Original Code is -Timothy Wall . -Portions created by the Initial Developer are Copyright (C) 2009 -the Initial Developer. All Rights Reserved. - -Contributor(s): -Daniel Witte - -Alternatively, the contents of this file may be used under the terms of -either the GNU General Public License Version 2 or later (the "GPL"), or -the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -in which case the provisions of the GPL or the LGPL are applicable instead -of those above. If you wish to allow use of your version of this file only -under the terms of either the GPL or the LGPL, and not to allow others to -use your version of this file under the terms of the MPL, indicate your -decision by deleting the provisions above and replace them with the notice -and other provisions required by the GPL or the LGPL. If you do not delete -the provisions above, a recipient may use your version of this file under -the terms of any one of the MPL, the GPL or the LGPL. - -***** END LICENSE BLOCK ***** - - -> Public Domain - -libffi-3.2.1.tar.gz\libffi-3.2.1.tar\libffi-3.2.1\src\dlmalloc.c - -This is a version (aka dlmalloc) of malloc/free/realloc written by -Doug Lea and released to the public domain, as explained at -http://creativecommons.org/licenses/publicdomain. Send questions, -comments, complaints, performance data, etc to dl@cs.oswego.edu - ->>> liblogging-1.0.6-1.ph2 - -Copyright 2002-2014 - Rainer Gerhards and Adiscon GmbH. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ->>> libselinux-2.6-4.ph2 - -This library (libselinux) is public domain software, i.e. not copyrighted. - -Warranty Exclusion ------------------- -You agree that this software is a -non-commercially developed program that may contain "bugs" (as that -term is used in the industry) and that it may not function as intended. -The software is licensed "as is". NSA makes no, and hereby expressly -disclaims all, warranties, express, implied, statutory, or otherwise -with respect to the software, including noninfringement and the implied -warranties of merchantability and fitness for a particular purpose. - -Limitation of Liability ------------------------ -In no event will NSA be liable for any damages, including loss of data, -lost profits, cost of cover, or other special, incidental, -consequential, direct or indirect damages arising from the software or -the use thereof, however caused and on any theory of liability. This -limitation will apply even if NSA has been advised of the possibility -of such damage. You acknowledge that this is a reasonable allocation of -risk. - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -libselinux-2.6.tar.gz\libselinux-2.6.tar\libselinux-2.6\utils\avcstat.c - -Copyright (C) 2004 Red Hat, Inc., James Morris - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2, -as published by the Free Software Foundation. - ->>> libsolv-0.6.26-3.ph2 - -Copyright (c) 2000-2001, Aaron D. Gifford -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of contributors -may be used to endorse or promote products derived from this software -without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``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 CONTRIBUTOR(S) 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. - -ADDITIONAL LICENSE INFORMATION: - -> Public Domain - -libsolv-0.6.26.tar.gz\libsolv-0.6.26.tar\libsolv-0.6.26\src\sha1.h - -this file is in the public domain - ->>> libssh2-1.8.0-1.ph2 - -Copyright (c) 2004-2007 Sara Golemon - Copyright (c) 2005,2006 Mikhail Gusarov - Copyright (c) 2006-2007 The Written Word, Inc. - Copyright (c) 2007 Eli Fant - Copyright (c) 2009-2014 Daniel Stenberg - Copyright (C) 2008, 2009 Simon Josefsson - 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 any other contributors may be used to endorse or - promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY - OF SUCH DAMAGE. - ->>> libxml2-2.9.7-2.ph2 - -Except where otherwise noted in the source code (e.g. the files hash.c, -list.c and the trio files, which are covered by a similar licence but -with different Copyright notices) all the files are: - - Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is fur- -nished 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, FIT- -NESS 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. - ->>> linux-pam-1.3.0-1.ph2 - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Unless otherwise *explicitly* stated the following text describes the -licensed conditions under which the contents of this Linux-PAM release -may be distributed: - -------------------------------------------------------------------------- -Redistribution and use in source and binary forms of Linux-PAM, with -or without modification, are permitted provided that the following -conditions are met: - -1. Redistributions of source code must retain any existing copyright - notice, and this entire permission notice in its entirety, - including the disclaimer of warranties. - -2. Redistributions in binary form must reproduce all prior and current - copyright notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -3. The name of any author may not be used to endorse or promote - products derived from this software without their specific prior - written permission. - -ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License, in which case the provisions of the GNU -GPL are required INSTEAD OF the above restrictions. (This clause is -necessary due to a potential conflict between the GNU GPL and the -restrictions contained in a BSD-style copyright.) - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) 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. -------------------------------------------------------------------------- - - -ADDITIONAL LICENSE INFORMATION: - -> GPL 3.0 with Bison Parser Exception - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\conf\pam_conv1\pam_conv_y.c - -Bison implementation for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - - -> BSD - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\modules\pam_access\pam_access.c - -Copyright 1995 by Wietse Venema. All rights reserved. Individual files -may be covered by other copyrights (as noted in the file itself.) - -This material was originally written and compiled by Wietse Venema at -Eindhoven University of Technology, The Netherlands, in 1990, 1991, -1992, 1993, 1994 and 1995. - -Redistribution and use in source and binary forms are permitted -provided that this entire copyright notice is duplicated in all such -copies. - -This software is provided "as is" and without any expressed or implied -warranties, including, without limitation, the implied warranties of -merchantibility and fitness for any particular purpose. - - -> LGPL 2.0 - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\modules\pam_issue\pam_issue.c - -Copyright 1999 by Ben Collins -Released under the GNU LGPL version 2 or later - - -> GPL 2.0 - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\modules\pam_loginuid\pam_loginuid.c - -Copyright 2005 Red Hat Inc., Durham, North Carolina. -All Rights Reserved. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Suite 500 -Boston, MA 02110-1335 USA - - -> Public Domain - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\modules\pam_namespace\md5.c - -This code implements the MD5 message-digest algorithm. -The algorithm is due to Ron Rivest. This code was -written by Colin Plumb in 1993, no copyright is claimed. -This code is in the public domain; do with it what you wish. - - -> MIT - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\modules\pam_namespace\argv_parse.c - -Copyright 1999 by Theodore Ts'o. - -Permission to use, copy, modify, and distribute this software for -any purpose with or without fee is hereby granted, provided that -the above copyright notice and this permission notice appear in all -copies. THE SOFTWARE IS PROVIDED "AS IS" AND THEODORE TS'O (THE -AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -> BSD-3 - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\modules\pam_tally2\pam_tally2.c - -Portions Copyright 2006, Red Hat, Inc. -Portions Copyright 1989 - 1993, Julianne Frances Haugh -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 Julianne F. Haugh 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 JULIE HAUGH 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 JULIE HAUGH 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. - - -> Beer-Ware License (MIT-Style) - -Linux-PAM-1.3.0.tar.bz2\Linux-PAM-1.3.0.tar\Linux-PAM-1.3.0\modules\pam_unix\md5_crypt.c - -"THE BEER-WARE LICENSE" (Revision 42): - wrote this file. As long as you retain this notice you -can do whatever you want with this stuff. If we meet some day, and you think -this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp - ->>> ncurses-6.0-14.ph2 - -Upstream source http://invisible-island.net/ncurses/ncurses-examples.html - -Current ncurses maintainer: Thomas Dickey - -------------------------------------------------------------------------------- -Files: * -Copyright: 1998-2016,2017 Free Software Foundation, Inc. -Licence: X11 - -Files: aclocal.m4 package -Copyright: 2010-2016,2017 by Thomas E. Dickey -Licence: X11 - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, distribute with modifications, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - Except as contained in this notice, the name(s) of the above copyright - holders shall not be used in advertising or otherwise to promote the - sale, use or other dealings in this Software without prior written - authorization. - -------------------------------------------------------------------------------- -Files: install-sh -Copyright: 1994 X Consortium -Licence: X11 - - 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 - X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN - AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- - TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - Except as contained in this notice, the name of the X Consortium shall not - be used in advertising or otherwise to promote the sale, use or other deal- - ings in this Software without prior written authorization from the X Consor- - tium. - - FSF changes to this file are in the public domain. - - Calling this script install-sh is preferred over install.sh, to prevent - `make' implicit rules from creating a file called install from it - when there is no Makefile. - - This script is compatible with the BSD install script, but was written - from scratch. It can only install one file at a time, a restriction - shared with many OS's install programs. - -On Debian systems, the complete text of the GNU General -Public License can be found in '/usr/share/common-licenses/GPL-2' - --- vile: txtmode file-encoding=utf-8 - ->>> nginx-1.13.8-5.ph2 - -Copyright (C) 2002-2017 Igor Sysoev - Copyright (C) 2011-2017 Nginx, Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 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. - ->>> openldap-2.4.44-3.ph2 - -The OpenLDAP Public License -Version 2.8, 17 August 2003 - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions in source form must retain copyright statements -and notices, - -2. Redistributions in binary form must reproduce applicable copyright -statements and notices, this list of conditions, and the following -disclaimer in the documentation and/or other materials provided -with the distribution, and - -3. Redistributions must contain a verbatim copy of this document. - -The OpenLDAP Foundation may revise this license from time to time. -Each revision is distinguished by a version number. You may use -this Software under terms of this license revision or under the -terms of any subsequent revision of the license. - -THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS -CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT -SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) -OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -The names of the authors and copyright holders must not be used in -advertising or otherwise to promote the sale, use or other dealing -in this Software without specific, written prior permission. Title -to copyright in this Software shall at all times remain with copyright -holders. - -OpenLDAP is a registered trademark of the OpenLDAP Foundation. - -Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, -California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -openldap-2.4.44.tgz\openldap-2.4.44.tar\openldap-2.4.44\build\shtool - -GNU shtool -- The GNU Portable Shell Tool -Copyright (c) 1994-2006 Ralf S. Engelschall - -See http://www.gnu.org/software/shtool/ for more information. -See ftp://ftp.gnu.org/gnu/shtool/ for latest version. - -Version: 2.0.5 (07-Feb-2006) -Contents: 6/19 available modules - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, -USA, or contact Ralf S. Engelschall . - -NOTICE: Given that you include this file verbatim into your own -source tree, you are justified in saying that it remains separate -from your package, and that this way you are simply just using GNU -shtool. So, in this situation, there is no requirement that your -package itself is licensed under the GNU General Public License in -order to take advantage of GNU shtool. - -> MIT-Style - -openldap-2.4.44.tgz\openldap-2.4.44.tar\openldap-2.4.44\contrib\ldaptcl\tkAppInit.c - -Copyright 1991-1996 Karl Lehenbauer and Mark Diekhans. - -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. Karl Lehenbauer and -Mark Diekhans make no representations about the suitability of this -software for any purpose. It is provided "as is" without express or -implied warranty. - -> LGPL 2.1 - -openldap-2.4.44.tgz\openldap-2.4.44.tar\openldap-2.4.44\contrib\slapd-modules\nssov\nss-pam-ldapd\attrs.h - -Copyright (C) 2007, 2008, 2012 Arthur de Jong - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301 USA. - -> BSD-3 Clause - -openldap-2.4.44.tgz\openldap-2.4.44.tar\openldap-2.4.44\contrib\slapd-modules\passwd\sha2\sha2.c - -Copyright (c) 2000-2001, Aaron D. Gifford -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of contributors -may be used to endorse or promote products derived from this software -without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``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 CONTRIBUTOR(S) 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. - -> Beer-Ware License (MIT-Style) - -openldap-2.4.44.tgz\openldap-2.4.44.tar\openldap-2.4.44\contrib\slapd-modules\passwd\apr1.c - -The algorithm implemented in this function was created by Poul-Henning -Kamp and released under the following license: - -"THE BEER-WARE LICENSE" (Revision 42): - wrote this file. As long as you retain this notice you -can do whatever you want with this stuff. If we meet some day, and you think -this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp - -> Public Domain - -openldap-2.4.44.tgz\openldap-2.4.44.tar\openldap-2.4.44\libraries\liblutil\md5.c - -This code implements the MD5 message-digest algorithm. -The algorithm is due to Ron Rivest. This code was -written by Colin Plumb in 1993, no copyright is claimed. -This code is in the public domain; do with it what you wish. - -Equivalent code is available from RSA Data Security, Inc. -This code has been tested against that, and is equivalent, -except that you don't need to include two pages of legalese -with every copy. - -To compute the message digest of a chunk of bytes, declare an -MD5Context structure, pass it to MD5Init, call MD5Update as -needed on buffers full of bytes, and then call MD5Final, which -will fill a supplied 16-byte array with the digest. - -> MIT - -openldap-2.4.44.tgz\openldap-2.4.44.tar\openldap-2.4.44\libraries\liblunicode\ucdata\ucgendat.c - -Copyright 2001 Computing Research Labs, New Mexico State University - -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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. - ->>> openssl-1.0.2p-1.ph2 - -LICENSE ISSUES -============== -The OpenSSL toolkit stays under a double 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-2017 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.] - -ADDITIONAL LICENSE INFORMATION: - ->Public Domain - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\crypto\aes\asm\vpaes-x86.pl - -By Mike Hamburg (Stanford University), 2009 -Public domain. - -For details see http://shiftleft.org/papers/vector_aes/ and -http://crypto.stanford.edu/vpaes/. - ->OpenSSL - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\crypto\aes\asm\bsaes-armv7.pl - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS SUBCOMPONENT UNDER THE TERMS OF THE OPENSSL LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Written by Andy Polyakov for the OpenSSL -project. The module is, however, dual licensed under OpenSSL and -CRYPTOGAMS licenses depending on where you obtain it. For further -details see http://www.openssl.org/~appro/cryptogams/. - -Specific modes and adaptation for Linux kernel by Ard Biesheuvel -. Permission to use under GPL terms is -granted. - ->BSD - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\crypto\camellia\asm\cmll-x86_64.pl - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS SUBCOMPONENT UNDER THE TERMS OF THE BSD LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE] - -Copyright (c) 2008 Andy Polyakov - -This module may be used under the terms of either the GNU General -Public License version 2 or later, the GNU Lesser General Public -License version 2.1 or later, the Mozilla Public License version -1.1 or the BSD License. The exact terms of either license are -distributed along with this module. For further details see -http://www.openssl.org/~appro/camellia/. - ->Apache 2.0 - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\crypto\ec\ecp_nistputil.c - -Copyright 2011 Google Inc. - -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. - ->MIT - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\crypto\md5\asm\md5-ia64.S - -Copyright (c) 2005 Hewlett-Packard Development Company, L.P. - -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. - ->BSD-3 Clause - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\crypto\x509v3\v3_pci.c - -Copyright (c) 2004 Kungliga Tekniska Högskolan -(Royal Institute of Technology, Stockholm, Sweden). -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 Institute 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 INSTITUTE 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 INSTITUTE 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. - -> BSD-4 Clause - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\demos\easy_tls\easy-tls.c - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-4 CLAUSE LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright 1999 Bodo Moeller. All rights reserved. - -This is free software; you can redistributed and/or modify it -unter the terms of either -- the GNU General Public License as published by the -Free Software Foundation, version 1, or (at your option) -any later version, -or -- the following license: -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that each of the following -conditions is met: - -1. Redistributions qualify as "freeware" or "Open Source Software" under -one of the following terms: - -(a) Redistributions are made at no charge beyond the reasonable cost of -materials and delivery. - -(b) Redistributions are accompanied by a copy of the Source Code -or by an irrevocable offer to provide a copy of the Source Code -for up to three years at the cost of materials and delivery. -Such redistributions must allow further use, modification, and -redistribution of the Source Code under substantially the same -terms as this license. - -2. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -3. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in -the documentation and/or other materials provided with the -distribution. - -4. All advertising materials mentioning features or use of this -software must display the following acknowledgment: -"This product includes software developed by Bodo Moeller." -(If available, substitute umlauted o for oe.) - -5. Redistributions of any form whatsoever must retain the following -acknowledgment: -"This product includes software developed by Bodo Moeller." - -THIS SOFTWARE IS PROVIDED BY BODO MOELLER ``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 BODO MOELLER OR -HIS 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. - -> BSD- 2 Clause - -openssl-1.0.2p-1.ph2.src.rpm\openssl-1.0.2p-1.ph2.src.cpio\openssl-1.0.2p.tar.gz\openssl-1.0.2p.tar\openssl-1.0.2p\crypto\seed\seed.c - -Copyright (c) 2007 KISA(Korea Information Security Agency). 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. Neither the name of author 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 AUTHOR 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 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. - ->>> pcre-8.41-1.ph2 - -PCRE LICENCE ------------- - -PCRE is a library of functions to support regular expressions whose syntax -and semantics are as close as possible to those of the Perl 5 language. - -Release 8 of PCRE is distributed under the terms of the "BSD" licence, as -specified below. The documentation for PCRE, supplied in the "doc" -directory, is distributed under the same terms as the software itself. The data -in the testdata directory is not copyrighted and is in the public domain. - -The basic library functions are written in C and are freestanding. Also -included in the distribution is a set of C++ wrapper functions, and a -just-in-time compiler that can be used to optimize pattern matching. These -are both optional features that can be omitted when the library is built. - - -THE BASIC LIBRARY FUNCTIONS ---------------------------- - -Written by: Philip Hazel -Email local part: ph10 -Email domain: cam.ac.uk - -University of Cambridge Computing Service, -Cambridge, England. - -Copyright (c) 1997-2017 University of Cambridge -All rights reserved. - - -PCRE JUST-IN-TIME COMPILATION SUPPORT -------------------------------------- - -Written by: Zoltan Herczeg -Email local part: hzmester -Emain domain: freemail.hu - -Copyright(c) 2010-2017 Zoltan Herczeg -All rights reserved. - - -STACK-LESS JUST-IN-TIME COMPILER --------------------------------- - -Written by: Zoltan Herczeg -Email local part: hzmester -Emain domain: freemail.hu - -Copyright(c) 2009-2017 Zoltan Herczeg -All rights reserved. - - -THE C++ WRAPPER FUNCTIONS -------------------------- - -Contributed by: Google Inc. - -Copyright (c) 2007-2012, Google Inc. -All rights reserved. - - -THE "BSD" LICENCE ------------------ - -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 University of Cambridge nor the name of Google -Inc. nor the names of their contributors may be used to endorse or -promote products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -End - -ADDITIONAL LICENSE INFORMATION: - -> BSD 2 clause - -pcre-8.41.tar.bz2\pcre-8.41.tar\pcre-8.41\sljit\sljitConfigInternal.h - -Copyright Zoltan Herczeg (hzmester@freemail.hu). 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 HOLDER(S) 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(S) 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. - ->MIT STYLE - -pcre-8.41.tar.bz2\pcre-8.41.tar\pcre-8.41\aclocal.m4 - -Copyright (C) 1996-2014 Free Software Foundation, Inc. - -Copyright (C) 1996-2014 Free Software Foundation, Inc. - -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY, to the extent permitted by law; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. - ->>> popt-1.16-5.ph2 - -Copyright (c) 1998 Red Hat Software - -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 -X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of the X Consortium shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from the X Consortium. - ->>> postgresql-9.6.10-1.ph2 - -PostgreSQL Database Management System -(formerly known as Postgres, then as Postgres95) - -Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group - -Portions Copyright (c) 1994, The Regents of the University of California - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose, without fee, and without a written agreement -is hereby granted, provided that the above copyright notice and this -paragraph and the following two paragraphs appear in all copies. - -IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING -LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS -DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -ADDITIONAL LICENSE INFORMATION: - -> GPL 3.0 with Bison Parser Exception - -postgresql-9.6.10.tar.gz\postgresql-9.6.10.tar\postgresql-9.6.10\contrib\cube\cubeparse.c - -A Bison parser, made by GNU Bison 3.0.4. - -Bison implementation for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - -C LALR(1) parser skeleton written by Richard Stallman, by -simplifying the original so-called "semantic" parser. - -All symbols defined below should begin with yy or YY, to avoid -infringing on user name space. This should be done even for local -variables, as they might otherwise be expanded by user macros. -There are some unavoidable exceptions within include files to -define necessary library symbols; they are noted "INFRINGES ON -USER NAME SPACE" below. - -> GPL 2.0 - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -postgresql-9.6.10.tar.gz\postgresql-9.6.10.tar\postgresql-9.6.10\contrib\fuzzystrmatch\dmetaphone.c - -Copyright 2000, Maurice Aubrey . -All rights reserved. - -This code is based heavily on the C++ implementation by -Lawrence Philips and incorporates several bug fixes courtesy -of Kevin Atkinson . - -This module is free software; you may redistribute it and/or -modify it under the same terms as Perl itself. - -> BSD 3 CLAUSE - -postgresql-9.6.10.tar.gz\postgresql-9.6.10.tar\postgresql-9.6.10\contrib\pgcrypto\crypt-des.c - -Copyright (c) 1994 David Burren -All rights reserved. - -Adapted for FreeBSD-2.0 by Geoffrey M. Rehmet -this file should now only export crypt(), in order to make -binaries of libcrypt exportable from the USA - -Adapted for FreeBSD-4.0 by Mark R V Murray -this file should now only export crypt_des(), in order to make -a module that can be optionally included in libcrypt. - -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 author nor the names of other contributors -may be used to endorse or promote products derived from this software -without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 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. - -> Public Domain - -postgresql-9.6.10.tar.gz\postgresql-9.6.10.tar\postgresql-9.6.10\contrib\pgcrypto\crypt-blowfish.c - -Written by Solar Designer in 1998-2002 and -placed in the public domain. - -> BSD 2 CLAUSE - -postgresql-9.6.10.tar.gz\postgresql-9.6.10.tar\postgresql-9.6.10\contrib\pgcrypto\fortuna.c - -Copyright (c) 2005 Marko Kreen -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 AUTHOR 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 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. - -> MIT STYLE - -postgresql-9.6.10.tar.gz\postgresql-9.6.10.tar\postgresql-9.6.10\contrib\pgcrypto\rijndael.c - -Copyright in this implementation is held by Dr B R Gladman but I -hereby give permission for its free direct or derivative use subject -to acknowledgment of its origin and compliance with any conditions -that the originators of the algorithm place on its exploitation. - -> BSD-style - -postgresql-9.6.10.tar.gz\postgresql-9.6.10.tar\postgresql-9.6.10\contrib\sslinfo\sslinfo.c - -Written by Victor B. Wagner , Cryptocom LTD -This file is distributed under BSD-style license. - ->BSD STYLE - -postgresql-9.6.9.tar.gz\postgresql-9.6.9.tar\postgresql-9.6.9\src\backend\regex\COPYRIGHT - -This regular expression package was originally developed by Henry Spencer. -It bears the following copyright notice: - - -Copyright (c) 1998, 1999 Henry Spencer. All rights reserved. - -Development of this software was funded, in part, by Cray Research Inc., -UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics -Corporation, none of whom are responsible for the results. The author -thanks all of them. - -Redistribution and use in source and binary forms -- with or without -modification -- are permitted for any purpose, provided that -redistributions in source form retain this entire copyright notice and -indicate the origin and nature of any modifications. - -I'd appreciate being given credit for this package in the documentation -of software which uses it, but that is not a requirement. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -PostgreSQL adopted the code out of Tcl 8.4.1. Portions of regc_locale.c -and re_syntax.n were developed by Tcl developers other than Henry; these -files bear the Tcl copyright and license notice: - - - -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. - - - -Subsequent modifications to the code by the PostgreSQL project follow -the same license terms as the rest of PostgreSQL. - ->>> python2-2.7.15-2.ph2 - -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, which became -Zope Corporation. In 2001, the Python Software Foundation (PSF, see -https://www.python.org/psf/) was formed, a non-profit organization -created specifically to own Python-related Intellectual Property. -Zope Corporation was 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.1.2 2.1.1 2002 PSF yes -2.1.3 2.1.2 2002 PSF yes -2.2 and above 2.1.1 2001-now 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, 2009, 2010, -2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 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. - -ADDITIONAL LICENSE INFORMATION: - -> LGPL 2.1 - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Modules\_ctypes\libffi\msvcc.sh - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1 LICENSE. PLEASE SEE THE APPENDIX FOR FULL TEXT OF THE LGPL 2.1 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - - -BEGIN LICENSE BLOCK -Version: MPL 1.1/GPL 2.0/LGPL 2.1 - -The contents of this file are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL/ - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the -License. - -The Original Code is the MSVC wrappificator. - -The Initial Developer of the Original Code is -Timothy Wall . -Portions created by the Initial Developer are Copyright (C) 2009 -the Initial Developer. All Rights Reserved. - -Contributor(s): -Daniel Witte - -Alternatively, the contents of this file may be used under the terms of -either the GNU General Public License Version 2 or later (the "GPL"), or -the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -in which case the provisions of the GPL or the LGPL are applicable instead -of those above. If you wish to allow use of your version of this file only -under the terms of either the GPL or the LGPL, and not to allow others to -use your version of this file under the terms of the MPL, indicate your -decision by deleting the provisions above and replace them with the notice -and other provisions required by the GPL or the LGPL. If you do not delete -the provisions above, a recipient may use your version of this file under -the terms of any one of the MPL, the GPL or the LGPL. - -END LICENSE BLOCK - -> GPL 2.0 - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Modules\_ctypes\libffi\libtool-ldflags - -Script to translate LDFLAGS into a form suitable for use with libtool. - -Copyright (C) 2005 Free Software Foundation, Inc. - -This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, -MA 02110-1301, USA. - -> BSD-3 - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Lib\multiprocessing\forking.py - -Copyright (c) 2006-2008, R Oudkerk -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 author nor the names of any contributors may be -used to endorse or promote products derived from this software -without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 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. - -> Public Domain - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Lib\plat-mac\icopen.py - -OVERVIEW - -icopen patches MacOS Python to use the Internet Config file mappings to select -the type and creator for a file. - -Version 1 released to the public domain 3 November 1999 -by Oliver Steele (steele@cs.brandeis.edu). - -> GPL 3.0 - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Modules\_ctypes\libffi\texinfo.tex - - -Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, -1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, -2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. - -This texinfo.tex file is free software: you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation, either version 3 of the -License, or (at your option) any later version. - -This texinfo.tex file is distributed in the hope that it will be -useful, but WITHOUT ANY WARRANTY; without even the implied warranty -of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -As a special exception, when this file is read by TeX when processing -a Texinfo source document, you may use the result without -restriction. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). - - -> MIT - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Lib\wsgiref\validate.py - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -(c) 2005 Ian Bicking and contributors; written for Paste (http:pythonpaste.org) -Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php -Also licenced under the Apache License, 2.0: http:opensource.org/licenses/apache2.0.php -Licensed to PSF under a Contributor Agreement - -> MIT - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Modules\_ctypes\darwin\dlfcn.h - -Copyright (c) 2002 Jorge Acereda & -Peter O'Gorman - -Portions may be copyright others, see the AUTHORS file included with this -distribution. - -Maintained by Peter O'Gorman - -Bug Reports and other queries should go to - -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. - -> Python - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Lib\robotparser.py - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE PYTHON LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright (C) 2000 Bastian Kleineidam - -You can choose between two licenses when using this package: -1) GNU GPLv2 -2) PSF license for Python 2.2 - -The robots.txt Exclusion Protocol is implemented as specified in -http://www.robotstxt.org/norobots-rfc.txt - -> Apache 2.0 - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Lib\pstats.py - -Written by James Roskind -Based on prior profile module by Sjoerd Mullender... -which was hacked somewhat by: Guido van Rossum - -Copyright Disney Enterprises, Inc. All Rights Reserved. -Licensed to PSF under a Contributor Agreement - -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. - -> CRT License - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Tools\msi\crtlicense.txt - -Additional Conditions for this Windows binary build ---------------------------------------------------- -This program is linked with and uses Microsoft Distributable Code, -copyrighted by Microsoft Corporation. The Microsoft Distributable Code -includes the following files: - -msvcr90.dll -msvcp90.dll -msvcm90.dll - -If you further distribute programs that include the Microsoft -Distributable Code, you must comply with the restrictions on -distribution specified by Microsoft. In particular, you must require -distributors and external end users to agree to terms that protect the -Microsoft Distributable Code at least as much as Microsoft's own -requirements for the Distributable Code. See Microsoft's documentation -(included in its developer tools and on its website at microsoft.com) -for specific details. - -Redistribution of the Windows binary build of the Python interpreter -complies with this agreement, provided that you do not: - -- alter any copyright, trademark or patent notice in Microsoft's -Distributable Code; - -- use Microsoft's trademarks in your programs' names or in a way that -suggests your programs come from or are endorsed by Microsoft; - -- distribute Microsoft's Distributable Code to run on a platform other -than Microsoft operating systems, run-time technologies or application -platforms; or - -- include Microsoft Distributable Code in malicious, deceptive or -unlawful programs. - -These restrictions apply only to the Microsoft Distributable Code as -defined above, not to Python itself or any programs running on the -Python interpreter. The redistribution of the Python interpreter and -libraries is governed by the Python Software License included with this -file, or by other licenses as marked. - ->MIT-Style - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Modules\md5.c - -Copyright (C) 1999, 2000, 2002 Aladdin Enterprises. All rights reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -L. Peter Deutsch -ghost@aladdin.com - ->MIT-Style - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Include\pyfpe.h - -Copyright (c) 1996. -The Regents of the University of California. -All rights reserved. - -Permission to use, copy, modify, and distribute this software for -any purpose without fee is hereby granted, provided that this en- -tire notice is included in all copies of any software which is or -includes a copy or modification of this software and in all -copies of the supporting documentation for such software. - -This work was produced at the University of California, Lawrence -Livermore National Laboratory under contract no. W-7405-ENG-48 -between the U.S. Department of Energy and The Regents of the -University of California for the operation of UC LLNL. - -DISCLAIMER - -This software was prepared as an account of work sponsored by an -agency of the United States Government. Neither the United States -Government nor the University of California nor any of their em- -ployees, makes any warranty, express or implied, or assumes any -liability or responsibility for the accuracy, completeness, or -usefulness of any information, apparatus, product, or process -disclosed, or represents that its use would not infringe -privately-owned rights. Reference herein to any specific commer- -cial products, process, or service by trade name, trademark, -manufacturer, or otherwise, does not necessarily constitute or -imply its endorsement, recommendation, or favoring by the United -States Government or the University of California. The views and -opinions of authors expressed herein do not necessarily state or -reflect those of the United States Government or the University -of California, and shall not be used for advertising or product -endorsement purposes. - ->BSD-2 - -python2-2.7.15-2.ph2.src.rpm\python2-2.7.15-2.ph2.src.cpio\Python-2.7.15.tar.xz\Python-2.7.15.tar\Python-2.7.15\Modules\selectmodule.c - -Copyright (c) 2000 Doug White, 2006 James Knight, 2007 Christian Heimes -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 AUTHOR 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 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. - ->>> redis-4.0.10-1.ph2 - -Copyright (c) 2016, Salvatore Sanfilippo -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 Redis nor the names of its contributors may be used -to endorse or promote products derived from this software without -specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -ADDITIONAL LICENSE INFORMATION: - -> BSD - -redis-4.0.10.tar.gz\redis-4.0.10.tar\redis-4.0.10\utils\speed-regression.tcl - -Copyright (C) 2011 Salvatore Sanfilippo -Released under the BSD license like Redis itself - -> CC-ATTRIBUTION 3.0 - -redis-4.0.10.tar.gz\redis-4.0.10.tar\redis-4.0.10\src\zmalloc.c - -Returns the size of physical memory (RAM) in bytes. -It looks ugly, but this is the cleanest way to achive cross platform results. -Cleaned up from: - -http://nadeausoftware.com/articles/2012/09/c_c_tip_how_get_physical_memory_size_system - -Note that this function: -1) Was released under the following CC attribution license: -http://creativecommons.org/licenses/by/3.0/deed.en_US. -2) Was originally implemented by David Robert Nadeau. -3) Was modified for Redis by Matt Stancliff. -4) This note exists in order to comply with the original license. - -> BSD-2 - -redis-4.0.10.tar.gz\redis-4.0.10.tar\redis-4.0.10\src\sparkline.c - -Copyright(C) 2011-2014 Salvatore Sanfilippo -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -> PUBLIC DOMAIN - -redis-4.0.10.tar.gz\redis-4.0.10.tar\redis-4.0.10\src\siphash.c - -Copyright (c) 2012-2016 Jean-Philippe Aumasson - -Copyright (c) 2012-2014 Daniel J. Bernstein -Copyright (c) 2017 Salvatore Sanfilippo - -To the extent possible under law, the author(s) have dedicated all copyright -and related and neighboring rights to this software to the public domain -worldwide. This software is distributed without any warranty. - -You should have received a copy of the CC0 Public Domain Dedication along -with this software. If not, see -. - -> MIT - -redis-4.0.10.tar.gz\redis-4.0.10.tar\redis-4.0.10\src\setproctitle.c - -Copyright (C) 2010 William Ahern -Copyright (C) 2013 Salvatore Sanfilippo -Copyright (C) 2013 Stam He - -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. - -> BSD-2 - -redis-4.0.10.tar.gz\redis-4.0.10.tar\redis-4.0.10\src\lzf_d.c - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-2 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright (c) 2000-2010 Marc Alexander Lehmann - -Redistribution and use in source and binary forms, with or without modifica- -tion, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- -CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- -CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH- -ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this file may be used under the terms of -the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of -the above. If you wish to allow the use of your version of this file -only under the terms of the GPL and not to allow others to use your -version of this file under the BSD license, indicate your decision -by deleting the provisions above and replace them with the notice -and other provisions required by the GPL. If you do not delete the -provisions above, a recipient may use your version of this file under -either the BSD or the GPL. - ->>> shadow-4.2.1-16.ph2 - -Copyright (c) 1991 - 1994, Julianne Frances Haugh -Copyright (c) 1996 - 2000, Marek Michalkiewicz -Copyright (c) 2000 - 2006, Tomasz Kloczko -Copyright (c) 2007 - 2011, Nicolas François -All rights reserved - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1 Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer -2 Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution -3 The name of the copyright holders or contributors may not be used to -endorse or promote products derived from this software without -specific prior written permission - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED IN NO EVENT SHALL THE COPYRIGHT -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 - - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -shadow-421tarxz\shadow-421tar\shadow-421\src\vipwc - -Copyright (c) 1997 , Guy Maor -Copyright (c) 1999 - 2000, Marek Michalkiewicz -Copyright (c) 2002 - 2006, Tomasz Kloczko -Copyright (c) 2007 - 2013, Nicolas François -All rights reserved - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version - -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the GNU -General Public License for more details - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc, 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA - - -udbachktgz - - -> BSD Style - -shadow-421tarxz\shadow-421tar\shadow-421\src\login_nopamc - -Copyright 1995 by Wietse Venema All rights reserved Individual files -may be covered by other copyrights (as noted in the file itself) - -This material was originally written and compiled by Wietse Venema at -Eindhoven University of Technology, The Netherlands, in 1990, 1991, -1992, 1993, 1994 and 1995 - -Redistribution and use in source and binary forms are permitted -provided that this entire copyright notice is duplicated in all such -copies - -This software is provided "as is" and without any expressed or implied -warranties, including, without limitation, the implied warranties of -merchantibility and fitness for any particular purpose - - -> Public Domain - -shadow-421tarxz\shadow-421tar\shadow-421\man\zh_TW\man1\newgrp1 - -Original author unknown This man page is in the public domain -Modified Sat Oct 9 17:46:48 1993 by faith@csuncedu -TH NEWGRP 1 "9 October 1993" "Linux 12" "Linux Programmer's Manual" - - -> GPL 3.0 - -shadow-421tarxz\shadow-421tar\shadow-421\man\tr\man1\chfn.1 - -chfn.1 -- change your finger information -(c) 1994 by salvatore valente -this program is free software. you can redistribute it and -modify it under the terms of the gnu general public license. -there is no warranty. - -> MIT-Style - -shadow-421tarxz\shadow-421tar\shadow-421\aclocalm4 - -Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, -Inc -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY, to the extent permitted by law; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE - - -> BSD - -[PLEASE NOTE: VMWARE, INC ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE] - -shadow-421tarxz\shadow-421tar\shadow-421\man\tr\man1\passwd1 - -Copyright Red Hat, Inc, 1998, 1999, 2002 - -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, and the entire permission notice in its entirety, -including the disclaimer of warranties -2 Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution -3 The name of the author may not be used to endorse or promote -products derived from this software without specific prior -written permission - -ALTERNATIVELY, this product may be distributed under the terms of -the GNU Public License, in which case the provisions of the GPL are -required INSTEAD OF the above restrictions (This clause is -necessary due to a potential bad interaction between the GPL and -the restrictions contained in a BSD-style copyright) - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED IN NO EVENT SHALL THE 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 - -Copyright (c) Cristian Gafton, 1998, - - - -> LDP General Public License 1.0 - -shadow-421tarxz\shadow-421tar\shadow-421\man\hu\man1\su1 - -You may copy, distribute and modify under the terms of the LDP General -Public License as specified in the LICENSE file that comes with the -gnumaniak distribution - -The author kindly requests that no comments regarding the "better" -suitability or up\-to\-date notices of any info documentation alternative -is added without contacting him first - -(C) 1999 Ragnar Hojland Espinosa - -GNU su man page -man pages are NOT obsolete! - -TH su 1 "18 August 1999" "GNU Shell Utilities 20" - ->>> sqlite-3.22.0-3.ph2 - -The author disclaims copyright to this source code. In place of -a legal notice, here is a blessing: - -May you do good and not evil. -May you find forgiveness for yourself and forgive others. -May you share freely, never taking more than you give. - -ADDITIONAL LICENSE INFORMATION: - -> MIT-Style - -sqlite-autoconf-3220000.tar.gz\sqlite-autoconf-3220000.tar\sqlite-autoconf-3220000\aclocal.m4 - -Copyright (C) 1996-2014 Free Software Foundation, Inc. - -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY, to the extent permitted by law; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. - ->>> sudo-1.8.20p2-5.ph2 - -Sudo is distributed under the following license: - -Copyright (c) 1994-1996, 1998-2017 -Todd C. Miller - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Sponsored in part by the Defense Advanced Research Projects -Agency (DARPA) and Air Force Research Laboratory, Air Force -Materiel Command, USAF, under agreement number F39502-99-1-0512. - -The file redblack.c bears the following license: - -Copyright (c) 2001 Emin Martinian - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that neither the name of Emin -Martinian nor the names of any contributors are be used to endorse or -promote products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The file reallocarray.c bears the following license: - -Copyright (c) 2008 Otto Moerbeek - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -The files getcwd.c, glob.c, glob.h, snprintf.c and sudo_queue.h bear the -following license: - -Copyright (c) 1989, 1990, 1991, 1993 -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. - -The file fnmatch.c bears the following license: - -Copyright (c) 2011, VMware, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -Neither the name of the VMware, Inc. nor the names of its contributors -may be used to endorse or promote products derived from this software -without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. 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 file getopt_long.c bears the following license: - - -Copyright (c) 2000 The NetBSD Foundation, Inc. -All rights reserved. - -This code is derived from software contributed to The NetBSD Foundation -by Dieter Baron and Thomas Klausner. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS -``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - - -The file inet_pton.c bears the following license: - -Copyright (c) 1996 by Internet Software Consortium. - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS -ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE -CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - -The embedded copy of zlib bears the following license: - -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Jean-loup Gailly Mark Adler -jloup@gzip.org madler@alumni.caltech.edu - -> PUBLIC DOMAIN - -sudo-1.8.20p2.tar.gz\sudo-1.8.20p2.tar\sudo-1.8.20p2\lib\util\regress\glob\globtest.c - -Public domain, 2008, Todd C. Miller Todd.Miller@courtesan.com - ->>> toybox-0.7.3-6.ph2 - -Copyright (C) 2006, 2013 by Rob Landley - -Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -(Note: some build infrastructure in the kconfig directory is still GPLv2, cleaning that out is a TODO item, but it doesn't affect the resulting binary.) - -ADDITIONAL LICENSE INFORMATION: - ->GPL v2 - -toybox-0.7.3\kconfig\ - -Copyright (C) 2002 Roman Zippel -Released under the terms of the GNU GPL v2.0. - ->>> tzdata-2017b-3.ph2 - -With a few exceptions, all files in the tz code and data (including -this one) are in the public domain. The exceptions are date.c, -newstrftime.3, and strftime.c, which contain material derived from BSD -and which use the BSD 3-clause license. - ->>> xz-5.2.3-2.ph2 - -Author: Lasse Collin -This file has been put into the public domain. -You can do whatever you want with this file. - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -xz-5.2.3.tar.xz\xz-5.2.3.tar\xz-5.2.3\src\scripts\xzmore.in - -Copyright (C) 2001, 2002, 2007 Free Software Foundation -Copyright (C) 1992, 1993 Jean-loup Gailly - -Modified for XZ Utils by Andrew Dudman and Lasse Collin. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -> MIT-Style - -xz-5.2.3.tar.xz\xz-5.2.3.tar\xz-5.2.3\m4\visibility.m4 - -Copyright (C) 2005, 2008-2010 Free Software Foundation, Inc. -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -> LGPL 2.1 - -xz-5.2.3.tar.xz\xz-5.2.3.tar\xz-5.2.3\lib\ getopt1.c - -Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98,2004,2006 -Free Software Foundation, Inc. -This file is part of the GNU C Library. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by -the Free Software Foundation; either version 2.1, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public License along -with this program; if not, write to the Free Software Foundation, -Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -> GPL 3.0 - -xz-5.2.3.tar.xz\xz-5.2.3.tar\xz-5.2.3\COPYING.GPLv3 - -License: GPL 3.0 - ->>> zlib-1.2.11-1.ph2 - -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Jean-loup Gailly Mark Adler -jloup@gzip.org madler@alumni.caltech.edu - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -zlib-1.2.11.tar.gz\zlib-1.2.11.tar\zlib-1.2.11\contrib\ada\zlib.ads - -Copyright (C) 20022004 Dmitriy Anisimkov - -This library is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or (at -your option) any later version. - -This 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 -General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this library; if not, write to the Free Software Foundation, -Inc., 59 Temple Place Suite 330, Boston, MA 021111307, USA. - -As a special exception, if other files instantiate generics from this -unit, or you link this unit with other files to produce an executable, -this unit does not by itself cause the resulting executable to be -covered by the GNU General Public License. This exception does not -however invalidate any other reasons why the executable file might be -covered by the GNU Public License. - -> BSD-Style - -zlib-1.2.11.tar.gz\zlib-1.2.11.tar\zlib-1.2.11\contrib\amd64\ amd64-match.S - -This is free software; you can redistribute it and/or modify it -under the terms of the BSD License. Use by owners of Che Guevarra -parafernalia is prohibited, where possible, and highly discouraged -elsewhere. - -> MIT-Style (Boost Software License) - -zlib-1.2.11.tar.gz\zlib-1.2.11.tar\zlib-1.2.11\contrib\dotzlib\LICENSE_1_0.txt - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - -> Public Domain - -zlib-1.2.11.tar.gz\zlib-1.2.11.tar\zlib-1.2.11\examples\ fitblk.c - -fitblk.c: example of fitting compressed output to a specified size -Not copyrighted -- provided to the public domain -Version 1.1 25 November 2004 Mark Adler - ---------------- SECTION 3: GNU General Public License, V1.0 ---------- - -GNU General Public License, V1.0 is applicable to the following component(s). - - ->>> perl-5.24.1-6.ph2 - -[VMWARE ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL v1.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others - -You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the README file. - -ADDITIONAL LICENSE INFORMATION: - ->MIT - -perl-5.24.1\TIME64.C - -Copyright (c) 2007-2008 Michael G Schwern - -This software originally derived from Paul Sheer's pivotal_gmtime_r.c. - -The MIT License: - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies 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. - ->BSD-Style - -perl-5.24.1\cpan\Compress-Raw-Bzip2\bzip2-src\ - -This program, "bzip2", the associated library "libbzip2", and all documentation, are copyright (C) 1996-2010 Julian R Seward. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - -3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - -4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Julian Seward, jseward@bzip.org -bzip2/libbzip2 version 1.0.6 of 6 September 2010 - ->MIT-Style - -perl-5.24.1\cpan\Compress-Raw-Zlib\zlib-src\ - -Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Jean-loup Gailly Mark Adler - jloup@gzip.org madler@alumni.caltech.edu - ->RSA Data Security - -perl-5.24.1\cpan\Digest-MD5\MD5.xs - -This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. - -Copyright 1998-2000 Gisle Aas. -Copyright 1995-1996 Neil Winton. -Copyright 1991-1992 RSA Data Security, Inc. - -This code is derived from Neil Winton's MD5-1.7 Perl module, which in turn is derived from the reference implementation in RFC 1321 which comes with this message: -Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. -All rights reserved. - -License to copy and use this software is granted provided that it is identified as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm" in all material mentioning or referencing this software or this function. - -License is also granted to make and use derivative works provided that such works are identified as "derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm" in all material mentioning or referencing the derived work. - -RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. - -These notices must be retained in any copies of any part of this documentation and/or software. - ->Unicode License (MIT-Style) - -perl-5.24.1\cpan\Encode\ucm\koi8-r.ucm - -Copyright (c) 1991-1999 Unicode, Inc. All Rights reserved. - -This file is provided as-is by Unicode, Inc. (The Unicode Consortium). No claims are made as to fitness for any particular purpose. No warranties of any kind are expressed or implied. The recipient agrees to determine applicability of information provided. If this file has been provided on optical media by Unicode, Inc., the sole remedy for any claim will be exchange of defective media within 90 days of receipt. - -Unicode, Inc. hereby grants the right to freely use the information supplied in this file in the creation of products supporting the Unicode Standard, and to make copies of this file in any form for internal or external distribution as long as this notice remains attached. - ->Public Domain - -perl-5.24.1\ext\SDBM_File\sdbm.c - -sdbm - ndbm work-alike hashed database library - * based on Per-Aake Larson's Dynamic Hashing algorithms. BIT 18 (1978). -author: oz@nexus.yorku.ca -status: public domain. - ->>> perl-dbi-1.636-1.ph2 - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 1.0 LICENSE. PLEASE SEE THE APPENDIX FOR THE FULL TEXT OF THE GPL 1.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -DBI is Copyright (c) 1994-2015 by Tim Bunce and others. -See LICENSE included with this distribution. All rights reserved. - -This is free software; you can redistribute it and/or modify it under the -same terms as the Perl5 (v5.0.0 ~ v5.20.0) programming language system -itself: under the terms of either: - -a) the "Artistic License 1.0" as published by The Perl Foundation - http://www.perlfoundation.org/artistic_license_1_0 - -b) the GNU General Public License as published by the Free Software Foundation; - either version 1 http://www.gnu.org/licenses/gpl-1.0.html - or (at your option) any later version - -PLEASE NOTE: It is the current maintainers intention to keep the dual -licensing intact. Until this notice is removed, releases will continue to -be available under both the standard GPL and the less restrictive Artistic -licenses. - ---------------- SECTION 4: GNU General Public License, V2.0 ---------- - -GNU General Public License, V2.0 is applicable to the following component(s). - - ->>> e2fsprogs-1.43.4-2.ph2 - -Written by Theodore Ts'o, Copyright 2007, 2008, 2009. - -This file may be redistributed under the terms of the GNU Public License, version 2. - -ADDITIONAL LICENSE INFORMATION : - -> GPL 3.0 - -e2fsprogs-1.43.4.tar.gz\e2fsprogs-1.43.4.tar\e2fsprogs-1.43.4\contrib\fallocate.c - -Copyright (C) 2008 Red Hat, Inc. All rights reserved. -Written by Eric Sandeen - -cvtnum routine taken from xfsprogs, -Copyright (c) 2003-2005 Silicon Graphics, Inc. - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation. - -This program is distributed in the hope that it would be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software Foundation, -Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. - -> Public Domain - -e2fsprogs-1.43.4.tar.gz\e2fsprogs-1.43.4.tar\e2fsprogs-1.43.4\config\mkinstalldirs - -mkinstalldirs --- make directory hierarchy -Author: Noah Friedman -Created: 1993-05-16 -Public domain. - -> LGPL 2.0 - -e2fsprogs-1.43.4.tar.gz\e2fsprogs-1.43.4.tar\e2fsprogs-1.43.4\e2fsck\mtrace.c - -Copyright (C) 1991, 1992 Free Software Foundation, Inc. -Written April 2, 1991 by John Gilmore of Cygnus Support. -Based on mcheck.c by Mike Haertel. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this library; see the file COPYING.LIB. If -not, write to the Free Software Foundation, Inc., 675 Mass Ave, -Cambridge, MA 02139, USA. - -> MIT-Style - -e2fsprogs-1.43.4.tar.gz\e2fsprogs-1.43.4.tar\e2fsprogs-1.43.4\aclocal.m4 - -Copyright (C) 1996-2013 Free Software Foundation, Inc. - -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY, to the extent permitted by law; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. - -> BSD-3 Clause - -e2fsprogs-1.43.4.tar.gz\e2fsprogs-1.43.4.tar\e2fsprogs-1.43.4\lib\uuid\COPYING - -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, and the entire permission notice in its entirety, - including the disclaimer of warranties. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF -WHICH ARE HEREBY 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 NOT ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -> LGPL 3.0 - -e2fsprogs-1.43.4.tar.gz\e2fsprogs-1.43.4.tar\e2fsprogs-1.43.4\lib\blkid\blkid.h.in - -Copyright (C) 2001 Andreas Dilger -Copyright (C) 2003 Theodore Ts'o - -This file may be redistributed under the terms of the GNU Lesser General Public License. - ->>> gcc-6.3.0-7.ph2 - -Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc. - -This file is part of GCC. - -GCC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -GCC is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GCC; see the file COPYING. If not, write to -the Free Software Foundation, 51 Franklin Street, Fifth Floor, -Boston MA 02110-1301, USA. - -ADDITIONAL LICENSE INFORMATION: - -> MIT-Style - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\boehm-gc\cord\cordbscs.c - -Copyright (c) 1993-1994 by Xerox Corporation. All rights reserved. - -THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED -OR IMPLIED. ANY USE IS AT YOUR OWN RISK. - -Permission is hereby granted to use or copy this program -for any purpose, provided the above notices are retained on all copies. -Permission to modify the code and to distribute modified code is granted, -provided the above notices are retained, and a notice that the code was -modified is included with the above copyright notice. - -> GPL 3.0 - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\boehm-gc\testsuite\boehm-gc.c\c.exp - -Copyright (C) 2011 Free Software Foundation, Inc. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; see the file COPYING3. If not see -. - -> GFDL 1.3 - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\gcc\doc\gcov.texi - -Copyright (C) 1996-2013 Free Software Foundation, Inc. -This is part of the GCC manual. -For copying conditions, see the file gcc.texi. - -Copyright @copyright{} 1996-2013 Free Software Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 or -any later version published by the Free Software Foundation; with the -Invariant Sections being ``GNU General Public License'' and ``Funding -Free Software'', the Front-Cover texts being (a) (see below), and with -the Back-Cover Texts being (b) (see below). A copy of the license is -included in the gfdl(7) man page. - -> BSD with Patent grant - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\gcc\go\gofrontend\LICENSE - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -Additional IP Rights Grant (Patents) - -"This implementation" means the copyrightable works distributed by -Google as part of the Go project. - -Google 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, -transfer and otherwise run, modify and propagate the contents of this -implementation of Go, where such license applies only to those patent -claims, both currently owned or controlled by Google and acquired in -the future, licensable by Google that are necessarily infringed by this -implementation of Go. This grant does not include claims that would be -infringed only as a consequence of further modification of this -implementation. If you or your agent or exclusive licensee institute or -order or agree to the institution of patent litigation against any -entity (including a cross-claim or counterclaim in a lawsuit) alleging -that this implementation of Go or any code incorporated within this -implementation of Go constitutes direct or contributory patent -infringement, or inducement of patent infringement, then any patent -rights granted to you under this License for this implementation of Go -shall terminate as of the date such litigation is filed. - -> LGPL 2.1 - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\gcc\testsuite\gcc.dg\compat\generate-random.h - -Copyright (C) 2004 Free Software Foundation - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to the Free -Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301 USA. - -> LGPL 3.0 - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\gcc\stab.def - -Table of DBX symbol codes for the GNU system. -Copyright (C) 1988-2013 Free Software Foundation, Inc. -This file is part of the GNU C Library. - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING3. If -not see . - -> LGPL 2.0 - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\include\demangle.h - -Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, -2003, 2004, 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License -as published by the Free Software Foundation; either version 2, or -(at your option) any later version. - -In addition to the permissions in the GNU Library General Public -License, the Free Software Foundation gives you unlimited -permission to link the compiled version of this file into -combinations with other programs, and to distribute those -combinations without any restriction coming from the use of this -file. (The Library Public License restrictions do apply in other -respects; for example, they cover modification of the file, and -distribution when not linked into a combined executable.) - -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -02110-1301, USA. - -> Public Domain - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libffi\src\dlmalloc.c - -This is a version (aka dlmalloc) of malloc/free/realloc written by -Doug Lea and released to the public domain, as explained at -http://creativecommons.org/licenses/publicdomain. Send questions, -comments, complaints, performance data, etc to dl@cs.oswego.edu. - -> MIT - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libffi\LICENSE - -Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others. -See source files for details. - -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. - -> LGPL 2.1 - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libffi\msvcc.sh - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1 LICENSE THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -BEGIN LICENSE BLOCK -Version: MPL 1.1/GPL 2.0/LGPL 2.1 - -The contents of this file are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL/ - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the -License. - -The Original Code is the MSVC wrappificator. - -The Initial Developer of the Original Code is -Timothy Wall . -Portions created by the Initial Developer are Copyright (C) 2009 -the Initial Developer. All Rights Reserved. - -Contributor(s): -Daniel Witte - -Alternatively, the contents of this file may be used under the terms of -either the GNU General Public License Version 2 or later (the "GPL"), or -the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -in which case the provisions of the GPL or the LGPL are applicable instead -of those above. If you wish to allow use of your version of this file only -under the terms of either the GPL or the LGPL, and not to allow others to -use your version of this file under the terms of the MPL, indicate your -decision by deleting the provisions above and replace them with the notice -and other provisions required by the GPL or the LGPL. If you do not delete -the provisions above, a recipient may use your version of this file under -the terms of any one of the MPL, the GPL or the LGPL. - -END LICENSE BLOCK - -> GPL 3.0 (with runtime library exception) - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libgcc\config\aarch64\crti.S - -Machine description for AArch64 architecture. -Copyright (C) 2009-2013 Free Software Foundation, Inc. -Contributed by ARM Ltd. - -This file is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 3, or (at your option) any -later version. - -This file is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -Under Section 7 of GPL version 3, you are granted additional -permissions described in the GCC Runtime Library Exception, version -3.1, as published by the Free Software Foundation. - -You should have received a copy of the GNU General Public License and -a copy of the GCC Runtime Library Exception along with this program; -see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. - -> LGPL 2.1(with linking exception) - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libgcc\config\c6x\sfp-machine.h - -Copyright (C) 2010-2013 Free Software Foundation, Inc. - -This files 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. - -In addition to the permissions in the GNU Lesser General Public -License, the Free Software Foundation gives you unlimited -permission to link the compiled version of this file into -combinations with other programs, and to distribute those -combinations without any restriction coming from the use of this -file. (The Lesser General Public License restrictions do apply in -other respects; for example, they cover modification of the file, -and distribution when not linked into a combine executable.) - -This file 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 GCC; see the file COPYING.LIB. If not see -. - -> GPL 2.0 (with linking exception) - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libiberty\testsuite\test-expandargv.c - -Copyright (C) 2006 Free Software Foundation, Inc. -Written by Carlos O'Donell - -This file is part of the libiberty library, which is part of GCC. - -This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -In addition to the permissions in the GNU General Public License, the -Free Software Foundation gives you unlimited permission to link the -compiled version of this file into combinations with other programs, -and to distribute those combinations without any restriction coming -from the use of this file. (The General Public License restrictions -do apply in other respects; for example, they cover modification of -the file, and distribution when not linked into a combined -executable.) - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. - -> MIT-Style - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libjava\classpath\external\jsr166\readme - -Copyright 2002-2004 Sun Microsystems, Inc. All rights reserved. Use is -subject to the following license terms. - -"Sun hereby grants you a non-exclusive, worldwide, non-transferrable -license to use and distribute the Java Software technologies as part -of a larger work in source and binary forms, with or without -modification, provided that the following conditions are met: - --Neither the name of or trademarks of Sun may be used to endorse or -promote products derived from the Java Software technology without -specific prior written permission. - --Redistributions of source or binary code must be accompanied by the -following notice and disclaimers: - -Portions copyright Sun Microsystems, Inc. Used with kind permission. - -This software is provided AS IS, without a warranty of any kind. ALL -EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND -WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PUPOSE OR -NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN -MICROSYSTEMS, INC. AND ITS LICENSORS SHALL NOT BE LIABLE -FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF -USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS -DERIVATIVES. IN NO EVENT WILL SUN MICROSYSTEMS, INC. OR -ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR -DATA, OR FOR DIRECT, INDIRECT,CONSQUENTIAL, INCIDENTAL -OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF -THE THEORY OR LIABILITY, ARISING OUT OF THE USE OF OR -INABILITY TO USE SOFTWARE, EVEN IF SUN MICROSYSTEMS, INC. -HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -You acknowledge that Software is not designed, licensed or intended for -use in the design, construction, operation or maintenance of any nuclear -facility." - -> MIT - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libsanitizer\LICENSE.TXT - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -============================================================================== -compiler_rt License -============================================================================== -The compiler_rt library is dual licensed under both the University of Illinois -"BSD-Like" license and the MIT license. As a user of this code you may choose -to use it under either license. As a contributor, you agree to allow your code -to be used under both. - -Full text of the relevant licenses is included below. -============================================================================== -University of Illinois/NCSA -Open Source License - -Copyright (c) 2009-2012 by the contributors listed in CREDITS.TXT - -All rights reserved. - -Developed by: - -LLVM Team - -University of Illinois at Urbana-Champaign - -http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -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: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimers. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimers in the -documentation and/or other materials provided with the distribution. - -Neither the names of the LLVM Team, University of Illinois at -Urbana-Champaign, nor the names of its contributors may be used to -endorse or promote products derived from this Software without specific -prior written permission. - -THE SOFTWARE 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 -CONTRIBUTORS 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 WITH THE -SOFTWARE. -============================================================================== -Copyright (c) 2009-2012 by the contributors listed in CREDITS.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. -============================================================================== -Copyrights and Licenses for Third Party Software Distributed with LLVM: -============================================================================== -The LLVM software contains code written by third parties. Such software will -have its own individual LICENSE.TXT file in the directory in which it appears. -This file will describe the copyrights, license, and restrictions which apply -to that code. - -The disclaimer of warranty in the University of Illinois Open Source License -applies to all code in the LLVM Distribution, and nothing in any of the -other licenses gives permission to use the names of the LLVM Team or the -University of Illinois to endorse or promote products derived from this -Software. - -The following pieces of software have additional or alternate copyrights, -licenses, and/or restrictions: - -Program Directory -------- --------- -mach_override lib/interception/mach_override - -> GFDL 1.2 - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libstdc++-v3\doc\html\index.html - -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation -License, Version 1.2 or any later version published by the -Free Software Foundation; with no Invariant Sections, with no -Front-Cover Texts, and with no Back-Cover Texts. - -> Project Gutenberg license - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\libgo\go\compress\testdata\Mark.Twain- -Tom.Sawyer.txt - -The Project Gutenberg EBook of The Adventures of Tom Sawyer, Complete -by Mark Twain (Samuel Clemens) - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -> BSD - -gcc-6.3.0.tar.bz2\gcc-6.3.0.tar\gcc-6.3.0\mkdep - -Copyright (c) 1987 Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -advertising materials, and other materials related to such -distribution and use acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - ->>> git-2.17.1-2.ph2 - -Emulation for poll(2) -Contributed by Paolo Bonzini. - -Copyright 2001-2003, 2006-2011 Free Software Foundation, Inc. - -This file is part of gnulib. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along -with this program; if not, see . - -ADDITIONAL LICENSE INFORMATION: - -> BOOST SOFTWARE LICENSE 1.0 (MIT STYLE) - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\compat\nedmalloc\License.txt - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - -> MIT - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\compat\nedmalloc\malloc.c.h - -Copyright (c) 2006 KJK::Hyperion - -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. - -> PUBLIC DOMAIN - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\compat\nedmalloc\malloc.c.h - -This is a version (aka dlmalloc) of malloc/free/realloc written by -Doug Lea and released to the public domain, as explained at -http:creativecommons.org/licenses/publicdomain. Send questions, -comments, complaints, performance data, etc to dl@cs.oswego.edu - -> LGPL 2.1 - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\compat\regex\regcomp.c - -Extended regular expression matching and search library. -Copyright (C) 2002-2007,2009,2010 Free Software Foundation, Inc. -This file is part of the GNU C Library. -Contributed by Isamu Hasegawa . - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, see -. - -> ISC (MIT STYLE) - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\compat\inet_ntop.c - -Copyright (c) 1996-1999 by Internet Software Consortium. - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS -ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE -CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - -> BSD - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\contrib\credential\netrc\git-credential-netrc - -License: BSD - -> GPL 3.0 - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\contrib\fast-import\import-directories.perl - -Copyright 2008-2009 Peter Krefting - ------------------------------------------------------------------------- - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, see . - -> APACHE 2.0 - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\contrib\persistent-https\client.go - -Copyright 2012 Google Inc. All Rights Reserved. - -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. - -> MIT - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\gitweb\static\js\lib\cookies.js - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Based on subsection "Cookies in JavaScript" of "Professional -JavaScript for Web Developers" by Nicholas C. Zakas and cookie -plugin from jQuery (dual licensed under the MIT and GPL licenses) - -> GPL 2.0 - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\perl\FromCPAN\Error.pm - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright (c) 1997-8 Graham Barr. All rights reserved. -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -> BSD-2 - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\vcs-svn\LICENSE - -Copyright (C) 2010 David Barr . -All rights reserved. - -Copyright (C) 2010 Jonathan Nieder . - -Copyright (C) 2005 Stefan Hegny, hydrografix Consulting GmbH, -Frankfurt/Main, Germany -and others, see http:svn2cc.sarovar.org - -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(s), this list of conditions and the following disclaimer -unmodified other than the allowable addition of one or more -copyright notices. -2. Redistributions in binary form must reproduce the above copyright -notice(s), 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 HOLDER(S) ``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(S) 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. - -> EDL 1.0 - -git-2.17.1.tar.xz\git-2.17.1.tar\git-2.17.1\xdiff\xhistogram.c - -Copyright (C) 2010, Google Inc. -and other copyright owners as documented in JGit's IP log. - -This program and the accompanying materials are made available -under the terms of the Eclipse Distribution License v1.0 which -accompanies this distribution, is reproduced below, and is -available at http:www.eclipse.org/org/documents/edl-v10.php - -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 Eclipse Foundation, Inc. nor the -names of its contributors may be used to endorse or promote -products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ->>> logrotate-3.11.0-3.ph2 - -Copyright (c) 2006-2012 Novell, Inc. All Rights Reserved. - - -This program is free software; you can redistribute it and/or modify it under -the terms of version 2 of the GNU General Public License as published by the -Free Software Foundation. - -This program is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along with -this program; if not, contact Novell, Inc. - -To contact Novell about this file by physical or electronic mail, you may find -current contact information at www.novell.com. - -ADDITIONAL LICENSE INFORMATION: - -> BSD-3 - -logrotate-3.11.0-3.ph2.src-1.rpm\logrotate-3.11.0-3.ph2.src.cpio\logrotate-3.11.0.tar.gz\logrotate-3.11.0.tar\logrotate-3.11.0\queue.h - - -Copyright (c) 1991, 1993 -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. - -> GPL 3.0 - -logrotate-3.11.0-3.ph2.src-1.rpm\logrotate-3.11.0-3.ph2.src.cpio\logrotate-3.11.0.tar.gz\logrotate-3.11.0.tar\logrotate-3.11.0\logrotate.c - - -Copyright (C) 1995-2001 Red Hat, Inc.\n"); -fprintf(stderr, -"This may be freely redistributed under the terms of " -"the GNU Public License - ->>> perl-yaml-1.23-1.ph2 - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright 2001-2017. Ingy döt Net. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See http://www.perl.com/perl/misc/Artistic.html - ->>> pkg-config-0.29.2-1.ph2 - -Copyright (C) 1998, 1999 Tom Tromey -Copyright (C) 2001 Red Hat Software - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. - -ADDITIONAL LICENSE INFORMATION: - -> LGPL 2.0 - -pkg-config-0.29.2\glib\glib\deprecated\gcache.h - -Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - -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 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the -Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. - -> LGPL 2.1 - -pkg-config-0.29.2\glib\glib\glib-mirroring-tab\gen-mirroring-tab.c - -Copyright (C) 2004 Sharif FarsiWeb, Inc -Copyright (C) 2001,2002,2004 Behdad Esfahbod - -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, in a file named COPYING; if not, write to the -Free Software Foundation, Inc., 59 Temple Place, Suite 330, -Boston, MA 02111-1307, USA - -> MIT-Style - -pkg-config-0.29.2\glib\glib\gbsearcharray.h - - Copyright (C) 2000-2003 Tim Janik - -This software is provided "as is"; redistribution and modification -is permitted, provided that the following disclaimer is retained. - -This software is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -In no event shall the authors or contributors be liable for any -direct, indirect, incidental, special, exemplary, or consequential -damages (including, but not limited to, procurement of substitute -goods or services; loss of use, data, or profits; or business -interruption) however caused and on any theory of liability, whether -in contract, strict liability, or tort (including negligence or -otherwise) arising in any way out of the use of this software, even -if advised of the possibility of such damage. - -> BSD-4 Clause - -pkg-config-0.29.2\glib\glib\valgrind.h - - Notice that the following BSD-style license applies to this one - file (valgrind.h) only. The rest of Valgrind is licensed under the - terms of the GNU General Public License, version 2, unless - otherwise indicated. See the COPYING file in the source - distribution for details. ---------------------------------------------------------------- - This file is part of Valgrind, a dynamic binary instrumentation - framework. - - Copyright (C) 2000-2012 Julian Seward. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 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. ----------------------------------------------------------------- - Notice that the above BSD-style license applies to this one file - (valgrind.h) only. The entire rest of Valgrind is licensed under - the terms of the GNU General Public License, version 2. See the - COPYING file in the source distribution for details. ----------------------------------------------------------------- ->Public Domain - -pkg-config-0.29.2\glib\glib\win_iconv.c - -This file is placed in the public domain. - ->GPL 3.0 - -pkg-config-0.29.2\rpmvercmp.h - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 3.0 LICENSE THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -This code is taken from the RPM package manager. - -RPM is Copyright (c) 1998 by Red Hat Software, Inc., -and may be distributed under the terms of the GPL and LGPL. -See http://rpm.org/gitweb?p=rpm.git;a=blob_plain;f=COPYING;hb=HEAD - -The code should follow upstream as closely as possible. -See http://rpm.org/gitweb?p=rpm.git;a=blob_plain;f=lib/rpmlib.h;hb=HEAD - ->>> rpm-4.13.0.2-1.ph2 - -Copyright (C) 1993, 1995, 1996, 1997 Free Software Foundation, Inc. - -NOTE: The canonical source of this file is maintained with the GNU C Library. -Bugs can be reported to bug-glibc@prep.ai.mit.edu. - -This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, -USA. - -ADDITIONAL LICENSE INFORMATION: - -> BSD-3 - -rpm-4.13.0.2-1.ph2.src.rpm\rpm-4.13.0.2-1.ph2.src.cpio\rpm-4.13.0.2-release.tar.gz\rpm-4.13.0.2-release.tar\rpm-rpm-4.13.0.2-release\misc\fts.h - -Copyright (c) 1989, 1993 -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. -4. 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. - -> LGPL 2.1 - -rpm-4.13.0.2-1.ph2.src.rpm\rpm-4.13.0.2-1.ph2.src.cpio\rpm-4.13.0.2-release.tar.gz\rpm-4.13.0.2-release.tar\rpm-rpm-4.13.0.2-release\misc\fnmatch.h - -Copyright (C) 1991,92,93,96,97,98,99,2001 Free Software Foundation, Inc. -This file is part of the GNU C Library. - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to the Free -Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -02111-1307 USA. - -> LGPL 2.0 - -rpm-4.13.0.2-1.ph2.src.rpm\rpm-4.13.0.2-1.ph2.src.cpio\rpm-4.13.0.2-release.tar.gz\rpm-4.13.0.2-release.tar\rpm-rpm-4.13.0.2-release\misc\fnmatch.c - -Copyright (C) 1991-1993, 1996-1999, 2000 Free Software Foundation, Inc. -This file is part of the GNU C Library. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this library; see the file COPYING.LIB. If not, -write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. - -> GPL 3.0 - -rpm-4.13.0.2-1.ph2.src.rpm\rpm-4.13.0.2-1.ph2.src.cpio\rpm-4.13.0.2-release.tar.gz\rpm-4.13.0.2-release.tar\rpm-rpm-4.13.0.2-release\tools\sepdebugcrcfix.c - -Copyright (C) 2013 Free Software Foundation, Inc. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -> Public Domain - -rpm-4.13.0.2-1.ph2.src.rpm\rpm-4.13.0.2-1.ph2.src.cpio\rpm-4.13.0.2-release.tar.gz\rpm-4.13.0.2-release.tar\rpm-rpm-4.13.0.2-release\tools\mkinstalldirs - -Original author: Noah Friedman -Created: 1993-05-16 -Public domain. - ->>> tdnf-1.2.3-4.ph2 - -Copyright (C) 2015 VMware, Inc. All Rights Reserved. - -Licensed under the GNU General Public License v2 (the "License"); -you may not use this file except in compliance with the License. The terms -of the License are located in the COPYING file of this distribution. - -ADDITIONAL LICENSE INFORMATION: - -> LGPL2.1 - -tdnf-1.2.3.tar.gz\tdnf-1.2.3.tar\tdnf-1.2.3\tools\cli\lib\api.c - -Copyright (C) 2017 VMware, Inc. All Rights Reserved. - -Licensed under the GNU Lesser General Public License v2.1 (the "License"); -you may not use this file except in compliance with the License. The terms -of the License are located in the COPYING file of this distribution. - ->>> util-linux-2.32-1.ph2 - -Copyright (C) 2008, Karel Zak -Copyright (C) 2008, James Youngman - -This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This file is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - - -Based on scriptreplay.pl by Joey Hess - - -ADDITIONAL LICENSE INFORMATION: - -> GPL 3.0 - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\tools\git-version-gen - -Copyright (C) 2007-2011 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -> BSD 4 - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\text-utils\ul.c - -Copyright (c) 1980, 1993 -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. All advertising materials mentioning features or use of this software -must display the following acknowledgement: -This product includes software developed by the University of -California, Berkeley and its contributors. -4. 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. - -> PUBLIC DOMAIN - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\text-utils\line.c - -line - read one line - -Gunnar Ritter, Freiburg i. Br., Germany, December 2000. - -Public Domain. - - -> BSD - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\text-utils\more.c - -Copyright (C) 1980 The Regents of the University of California. -All rights reserved. - -Redistribution and use in source and binary forms are permitted -provided that the above copyright notice and this paragraph are -duplicated in all such forms and that any documentation, -advertising materials, and other materials related to such -distribution and use acknowledge that the software was developed -by the University of California, Berkeley. The name of the -University may not be used to endorse or promote products derived -from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -> MIT - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\sys-utils\flock.1 - -Copyright 2003-2006 H. Peter Anvin - All Rights Reserved - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom -the Software is furnished to do so, subject to the following -conditions: - -The above copyright notice 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. - -> BSD 3 - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\misc-utils\uuidparse.c - -uuidparse.c --- Interpret uuid encoded information. This program -violates the UUID abstraction barrier by reaching into the -guts of a UUID. - -Based on libuuid/src/uuid_time.c -Copyright (C) 1998, 1999 Theodore Ts'o. - -All alterations (C) 2017 Sami Kerola -The 3-Clause BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, and the entire permission notice in its entirety, -including the disclaimer of warranties. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote -products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF -WHICH ARE HEREBY 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 NOT ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -> MIT STYLE - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\m4\compiler.m4 - -Copyright (C) 2008-2011 Free Software Foundation, Inc. -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -From Simon Josefsson --- derivated from coreutils m4/warnings.m4 - -> LGPL 2.0 - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\login-utils\setpwnam.c -setpwnam.c -- edit an entry in a password database. - -(c) 1994 Salvatore Valente -This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -Edited 11/10/96 (DD/MM/YY ;-) by Nicolai Langfeldt (janl@math.uio.no) -to read /etc/passwd directly so that passwd, chsh and chfn can work on -machines that run NIS (previously YP). Changes will not be made to -usernames starting with +. - -This file is distributed with no warranty. - -Usage: -1) get a struct passwd from getpwnam(). -You should assume a struct passwd has an infinite number of fields, so -you should not try to create one from scratch. -2) edit the fields you want to edit. -3) call setpwnam() with the edited struct passwd. - -A _normal user_ program should never directly manipulate etc/passwd but -/use getpwnam() and (family, as well as) setpwnam(). - -But, setpwnam was made to _edit_ the password file. For use by chfn, -chsh and passwd. _I_ _HAVE_ to read and write /etc/passwd directly. Let -those who say nay be forever silent and think about how getpwnam (and -family) works on a machine running YP. - -Added checks for failure of malloc() and removed error reporting to -stderr, this is a library function and should not print on the screen, -but return appropriate error codes. -27-Jan-97 - poe@daimi.aau.dk - -Thanks to "two guys named Ian". - -$Author: poer $ -$Revision: 1.13 $ -$Date: 1997/06/23 08:26:29 $ - -> LGPL 2.1 - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\libsmartcols\COPYING - -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. - -The complete text of the license is available in the -../Documentation/licenses/COPYING.LGPLv2.1 file. - -> LGPL 3.0 - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\libmount\python\pylibmount.c - -Python bindings for the libmount library. - -Copyright (C) 2013, Red Hat, Inc. All rights reserved. -Written by Ondrej Oprala and Karel Zak - -This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. - -This file 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 file; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -> GPL 3.0 WITH BISON PARSER EXCEPTION - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\lib\parse-date.c - -Bison implementation for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - -> GPL 1.0 - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\disk-utils\fdisk.c - -Copyright (C) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) -Copyright (C) 2012 Davidlohr Bueso - -Copyright (C) 2007-2013 Karel Zak - -This program is free software. You can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation: either version 1 or -(at your option) any later version. - -> MIT STYLE - -util-linux-2.32-1.ph2.src.rpm\util-linux-2.32-1.ph2.src.cpio\util-linux-2.32.tar.xz\util-linux-2.32.tar\util-linux-2.32\disk-utils\cfdisk.8 - -Copyright 1994 Kevin E. Martin (martin@cs.unc.edu) -Copyright (C) 2014 Karel Zak - -Permission is granted to make and distribute verbatim copies of this -manual provided the copyright notice and this permission notice are -preserved on all copies. - -Permission is granted to copy and distribute modified versions of this -manual under the conditions for verbatim copying, provided that the -entire resulting derived work is distributed under the terms of a -permission notice identical to this one. - ---------------- SECTION 5: GNU General Public License, V3.0 ---------- - -GNU General Public License, V3.0 is applicable to the following component(s). - - ->>> autogen-5.18.12-2.ph2 - -AutoGen Copyright (C) 1992-2015 by Bruce Korb - all rights reserved - -AutoGen is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -AutoGen is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along -with this program. If not, see . - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\compat\strftime.c - -This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -> BSD-3 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\getdefs\test\defs - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -This file is part of AutoOpts, a companion to AutoGen. -AutoOpts is free software. -AutoOpts is Copyright (C) 1992-2016 by Bruce Korb - all rights reserved - -AutoOpts is available under any one of two licenses. The license -in use must be one of these two and the choice is under the control -of the user of the license. - -The GNU Lesser General Public License, version 3 or later -See the files "COPYING.lgplv3" and "COPYING.gplv3" - -The Modified Berkeley Software Distribution License -See the file "COPYING.mbsd" - -> GFDL 1.1 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\pkg\gnudir.tpl - -Copyright (C) 2001-2015 by Bruce Korb - all rights reserved - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.1 or -any later version published by the Free Software Foundation; with no -Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. -A copy of the license is included in the file COPYING. - -> GFDL 1.3 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\doc\fdl.texi - -LICENSE: GFDL 1.3 - -> GFDL 1.2 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\doc\autogen.info-3 - -Copyright (C) 1992-2015 by Bruce Korb. - -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.2 or any later version published by the Free Software -Foundation; with no Invariant Sections, no Front-Cover Texts, and -no Back-Cover Texts. - -> BSD-3 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\autoopts\tpl\strings.tpl - -Copyright (C) 2011-2015 Bruce Korb, all rights reserved. -This is free software. It is licensed for use, modification and -redistribution under the terms of the -Modified (3 clause) Berkeley Software Distribution License - - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -3. Neither the name ``Bruce Korb'' nor the name of any other -contributor may be used to endorse or promote products derived -from this software without specific prior written permission. - -strings IS PROVIDED BY Bruce Korb ``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 Bruce Korb OR ANY OTHER 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. - -> LGPL 2.0 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\autoopts\tpl\lgplv2.lic - -This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later - -The library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this library; if not, see - - -> BSD-2 - -autogen-5.18.12.tar.xz\autogen-5.18.12.tar\autogen-5.18.12\agen5\fmemopen.c - -Copyright (C) 2004-2014, 2016 by Bruce Korb. All rights reserved. - -This code was inspired from software written by -Hanno Mueller, kontakt@hanno.de -and completely rewritten by Bruce Korb, bkorb@gnu.org - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 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. - ->>> bash-4.4.12-3.ph2 - -error.c -- Functions for handling errors. - -Copyright (C) 1993-2009 Free Software Foundation, Inc. - -This file is part of GNU Bash, the Bourne Again SHell. - -Bash is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Bash is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with Bash. If not, see . - - - -ADDITIONAL LICENSE INFORMATION: - - ->GPL 3.0 WITH BISON PARSER EXCEPTION - - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\parser-built - - -A Bison parser, made by GNU Bison 3.0.4. - -Bison interface for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - - ->MIT STYLE - - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\README - - -Copying and distribution of this file, with or without modification, -are permitted in any medium without royalty provided the copyright -notice and this notice are preserved. This file is offered as-is, -without any warranty. - - ->GFDL 1.3 - - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\doc\bashref.texi - - -Copyright @copyright{} 1988--2016 Free Software Foundation, Inc. - -@quotation -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 or -any later version published by the Free Software Foundation; with no -Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. -A copy of the license is included in the section entitled -``GNU Free Documentation License''. -@end quotation - - ->SIL OPEN FONT LICENSE 1.1 - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\doc\bashref.ps - -Copyright: Copyright (c) 1997, 2009 American Mathematical Society -Copyright: (), with Reserved Font Name CMR9. -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is in the accompanying file OFL.txt, and is also -available with a FAQ at: http://scripts.sil.org/OFL. - - ->GPL 2.0 - - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\examples\complete\complete-examples - - - -Copyright 2002 Chester Ramey - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -TThis program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software Foundation, -Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - ->PUBLIC DOMAIN - - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\support\mkinstalldirs - - -Author: Noah Friedman -Created: 1993-05-16 -Public domain - - ->BSD-4 - - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\lib\sh\inet_aton.c - - -Copyright (c) 1983, 1990, 1993 -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. All advertising materials mentioning features or use of this software -must display the following acknowledgement: -This product includes software developed by the University of -California, Berkeley and its contributors. -4. 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. -- - - - ->BSD - - -bash-4.4.tar.gz\bash-4.4.tar\bash-4.4\lib\sh\inet_aton. - - -Portions Copyright (c) 1993 by Digital Equipment Corporation. - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies, and that -the name of Digital Equipment Corporation not be used in advertising or -publicity pertaining to distribution of the document or software without -specific, written prior permission. - -THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT -CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. -- - ->>> coreutils-8.27-3.ph2 - -Copyright (C) 2003-2017 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -ADDITIONAL LICENSE INFORMATION: - ->GFDL 1.3 - -coreutils-8.27.tar.xz\coreutils-8.27.tar\coreutils-8.27\README - - -Copyright (C) 1998-2017 Free Software Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 or -any later version published by the Free Software Foundation; with no -Invariant Sections, with no Front-Cover Texts, and with no Back-Cover -Texts. A copy of the license is included in the "GNU Free -Documentation License" file as part of this distribution. - ->MIT - -coreutils-8.27.tar.xz\coreutils-8.27.tar\coreutils-8.27\gnulib-tests\inet_pton.c - - -Copyright (c) 1996,1999 by Internet Software Consortium. - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS -ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE -CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - - ->BSD-3 - -coreutils-8.27.tar.xz\coreutils-8.27.tar\coreutils-8.27\lib\fts.c - -Copyright (c) 1990, 1993, 1994 -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. -4. 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. - - ->GPL 3.0 WITH BISON PARSER EXCEPTION - - -coreutils-8.27.tar.xz\coreutils-8.27.tar\coreutils-8.27\lib\parse-datetime.c - -/ Bison implementation for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . / - -/ As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. / - ->PUBLIC DOMAIN - -coreutils-8.27.tar.xz\coreutils-8.27.tar\coreutils-8.27\lib\alloca.c - -(Mostly) portable public-domain implementation -- D A Gwyn - -This implementation of the PWB library alloca function, -which is used to allocate space off the run-time stack so -that it is automatically reclaimed upon procedure exit, -was inspired by discussions with J. Q. Johnson of Cornell. -J.Otto Tennant contributed the Cray support. - -There are some preprocessor constants that can -be defined when compiling for your specific system, for -improved efficiency; however, the defaults should be okay. - -The general concept of this implementation is to keep -track of all alloca-allocated blocks, and reclaim any -that are found to be deeper in the stack than the current -invocation. This heuristic does not reclaim storage as -soon as it becomes invalid, but it will do so eventually. - ->>> elfutils-0.169-3.ph2 - -Copyright (C) 2000, 2002, 2005 Red Hat, Inc. -This file is part of elfutils. -Written by Ulrich Drepper , 2000. - -This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -elfutils is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -ADDITIONAL LICENSE INFORMATION - -> LGPL 3.0 - -elfutils-0.169.tar.bz2\elfutils-0.169.tar\elfutils-0.169\lib\color.c - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 3.0 LICENSE. PLEASE SEE THE APPENDIX FOR THE FULL TEXT OF THE LGPL 3.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -Copyright (C) 2008 Red Hat, Inc. - -This file is part of elfutils. - -This file is free software; you can redistribute it and/or modify -it under the terms of either - -the GNU Lesser General Public License as published by the Free -Software Foundation; either version 3 of the License, or (at -your option) any later version - -or - -the GNU General Public License as published by the Free -Software Foundation; either version 2 of the License, or (at -your option) any later version - -or both in parallel, as here. - -elfutils is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -You should have received copies of the GNU General Public License and -the GNU Lesser General Public License along with this program. If -not, see . - -> MIT-Style - -elfutils-0.169.tar.bz2\elfutils-0.169.tar\elfutils-0.169\aclocal.m4 - -Copyright (C) 1996-2013 Free Software Foundation, Inc. - -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY, to the extent permitted by law; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. - - -> LGPL 2.1 - -elfutils-0.169.tar.bz2\elfutils-0.169.tar\elfutils-0.169\libelf\elf.h - -Copyright (C) 1995-2014 Free Software Foundation, Inc. -This file is part of the GNU C Library. - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, see -. - ->>> gawk-4.1.4-1.ph2 - -Copyright (C) 1996, 2012 Specialized System Consultants Inc (SSC) - -These macros are free software; you can redistribute them and/or modify -them under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3 of the License, or -(at your option) any later version - -These macros are distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - - -ADDITIONAL LICENSE INFORMATION: - -> MIT-Style - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\README - -Copyright (C) 2005, 2006, 2007, 2009, 2010, 2011, 2012, 2013, 2014, 2015, -2016, Free Software Foundation, Inc. - -Copying and distribution of this file, with or without modification, -are permitted in any medium without royalty provided the copyright -notice and this notice are preserved. - - -> Public Domain - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\awklib\eg\lib\round.awk - -Arnold Robbins, arnold@skeeve.com, Public Domain -August, 1996 - - -> GFDL 1.3 - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\doc\gawk.info - -Copyright (C) 1989, 1991, 1992, 1993, 1996-2005, 2007, 2009-2016 -Free Software Foundation, Inc. - - -This is Edition 4.1 of 'GAWK: Effective AWK Programming: A User's -Guide for GNU Awk', for the 4.1.4 (or later) version of the GNU -implementation of AWK. - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 or -any later version published by the Free Software Foundation; with the -Invariant Sections being "GNU General Public License", with the -Front-Cover Texts being "A GNU Manual", and with the Back-Cover Texts as -in (a) below. A copy of the license is included in the section entitled -"GNU Free Documentation License". - -a. The FSF's Back-Cover Text is: "You have the freedom to copy and -modify this GNU manual." - - -> GPL 2.0 - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\missing_d\strerror.c - -Copyright (C) 1986, 1988, 1989, 1991 the Free Software Foundation, Inc. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software Foundation, -Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - -> BSD-3 - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\extension\fts.3 - -Copyright (c) 1989, 1991, 1993, 1994 -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. - - -> LGPL 2.0 - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\missing_d\fnmatch.c - -Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999 Free Software -Foundation, Inc. -This file is part of the GNU C Library. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public License -along with this library; see the file COPYING.LIB. If not, write to the Free -Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 -USA. - -> LGPL 2.1 - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\missing_d\memmove.c - -Copyright (C) 1991, 1995, 1996, 1997, 2003 Free Software Foundation, Inc. -This file is part of the GNU C Library. -Contributed by Torbjorn Granlund (tege@sics.se). - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to the Free -Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301 USA - - -> LGPL 3.0 - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\missing_d\mktime.c - -Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. -This file is part of the GNU C Library. -Contributed by Paul Eggert (eggert@twinsun.com). - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If not, -write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA. - - -> BSD-4 - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\missing_d\setenv.c - -Copyright (c) 1987, 1993 -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. All advertising materials mentioning features or use of this software -must display the following acknowledgement: -This product includes software developed by the University of -California, Berkeley and its contributors. -4. 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. - - -> GPL 3.0 with Bison Parser Exception - -gawk-4.1.4.tar.xz\gawk-4.1.4.tar\gawk-4.1.4\command.c - -Bison implementation for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . */ - -/* As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - ->>> gdbm-1.13-3.ph2 - -Copyright (C) 1993, 2007, 2011, 2017 Free Software Foundation, Inc. - -GDBM is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3, or (at your option) -any later version. - -GDBM is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GDBM. If not, see . - -ADDITIONAL LICENSE INFORMATION: - -> GPL 2.0 - -gdbm-1.13.tar.gz\gdbm-1.13.tar\gdbm-1.13\compat\dbm.h - -Copyright (C) 1990-2011, 2017 Free Software Foundation, Inc. - -GDBM is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -GDBM is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GDBM. If not, see . - -You may contact the author by: -e-mail: phil@cs.wwu.edu -us-mail: Philip A. Nelson -Computer Science Department -Western Washington University -Bellingham, WA 98226 - -> GFDL 1.3 - -gdbm-1.13.tar.gz\gdbm-1.13.tar\gdbm-1.13\doc\gdbm.info - -Copyright (C) 1989-1999, 2007-2017 Free Software Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 or -any later version published by the Free Software Foundation; with no -Invariant Sections, no Front-Cover, and no Back-Cover texts. A copy of -the license is included in the section entitled "GNU Free Documentation -License. - -> MIT-Style - -gdbm-1.13.tar.gz\gdbm-1.13.tar\gdbm-1.13\m4\iconv.m4 - -Copyright (C) 2000-2002, 2007-2010 Free Software Foundation, Inc. -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -> GPL 3.0 with Bison Parser Exception - -gdbm-1.13.tar.gz\gdbm-1.13.tar\gdbm-1.13\src\gram.h - -/* A Bison parser, made by GNU Bison 2.7. */ - -/* Bison interface for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . */ - -/* As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. */ - ->>> grep-3.0-4.ph2 - -Copyright (C) 2002-2017 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -ADDITIONAL LICENSE INFORMATION: - -> MIT- Style - -grep-3.0.tar.xz\grep-3.0.tar\grep-3.0\aclocal.m4 - -Copyright (C) 1996-2015 Free Software Foundation, Inc. - -This file is free software; the Free Software Foundation -gives unlimited permission to copy and/or distribute it, -with or without modifications, as long as this notice is preserved. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY, to the extent permitted by law; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. - -> GFDL 1.3 - -grep-3.0.tar.xz\grep-3.0.tar\grep-3.0\doc\grep.info - -Copyright © 1999-2002, 2005, 2008-2017 Free Software Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.3 or any later version published by the Free Software -Foundation; with no Invariant Sections, with no Front-Cover Texts, -and with no Back-Cover Texts. A copy of the license is included in -the section entitled “GNU Free Documentation License”. - -> Public Domain - -grep-3.0.tar.xz\grep-3.0.tar\grep-3.0\lib\alloca.c - -alloca.c -- allocate automatically reclaimed memory -(Mostly) portable public-domain implementation -- D A Gwyn - -This implementation of the PWB library alloca function, -which is used to allocate space off the run-time stack so -that it is automatically reclaimed upon procedure exit, -was inspired by discussions with J. Q. Johnson of Cornell. -J.Otto Tennant contributed the Cray support. - -There are some preprocessor constants that can -be defined when compiling for your specific system, for -improved efficiency; however, the defaults should be okay. - -The general concept of this implementation is to keep -track of all alloca-allocated blocks, and reclaim any -that are found to be deeper in the stack than the current -invocation. This heuristic does not reclaim storage as -soon as it becomes invalid, but it will do so eventually. - -As a special case, alloca(0) reclaims storage without -allocating any. It is a good idea to use alloca(0) in -your main control loop, etc. to force garbage collection. - -> BSD- 3 Clause - -grep-3.0.tar.xz\grep-3.0.tar\grep-3.0\lib\fts.c - - -Copyright (c) 1990, 1993, 1994 -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. -4. 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. - ->>> gzip-1.8-1.ph2 - -Copyright (C) 2010-2016 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published -by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -ADDITIONAL LICENSE INFORMATION: - -> GFDL 1.3 - -gzip-1.8.tar.xz\gzip-1.8.tar\gzip-1.8\doc\gzip.info - -Copyright © 1992, 1993 Jean-loup Gailly - -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.3 or any later version published by the Free Software -Foundation; with no Invariant Sections, with no Front-Cover Texts, -and with no Back-Cover Texts. A copy of the license is included in -the section entitled “GNU Free Documentation License”. - -> MIT-Style - -gzip-1.8.tar.xz\gzip-1.8.tar\gzip-1.8\zless.1 - -Copyright \(co 2006-2007, 2015-2016 Free Software Foundation, Inc. - -Copyright \(co 1992, 1993 Jean-loup Gailly - -Permission is granted to make and distribute verbatim copies of -this manual provided the copyright notice and this permission notice -are preserved on all copies. - -Permission is granted to process this file through troff and print the -results, provided the printed document carries copying permission -notice identical to this one except for the removal of this paragraph -(this paragraph not being relevant to the printed manual). - -Permission is granted to copy and distribute modified versions of this -manual under the conditions for verbatim copying, provided that the entire -resulting derived work is distributed under the terms of a permission -notice identical to this one. - -Permission is granted to copy and distribute translations of this manual -into another language, under the above conditions for modified versions, -except that this permission notice may be stated in a translation approved -by the Foundation. - -> Public Domain - -gzip-1.8.tar.xz\gzip-1.8.tar\gzip-1.8\unlzh.c - -The code in this file is directly derived from the public domain 'ar002' -written by Haruhiko Okumura. - ->>> librelp-1.2.13-2.ph2 - -Copyright 2008 by Rainer Gerhards and Adiscon GmbH. - -This file is part of librelp. - -Librelp is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Librelp is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with Librelp. If not, see . - -A copy of the GPL can be found in the file "COPYING" in this distribution. - -If the terms of the GPL are unsuitable for your needs, you may obtain -a commercial license from Adiscon. Contact sales@adiscon.com for further -details. - -ALL CONTRIBUTORS PLEASE NOTE that by sending contributions, you assign -your copyright to Adiscon GmbH, Germany. This is necessary to permit the -dual-licensing set forth here. Our apologies for this inconvenience, but -we sincerely believe that the dual-licensing model helps us provide great -free software while at the same time obtaining some development funding. - -ADDITIONAL LICENSE INFORMATION - -> GFDL1.3 - -librelp-1.2.13.tar.gz\librelp-1.2.13.tar\librelp-1.2.13\doc\relp.html - - -Copyright (C) 2008, 2009 Rainer Gerhards and Adiscon. -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 -or any later version published by the Free Software Foundation; -with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. -A copy of the license can be obtained from http://www.gnu.org/copyleft/fdl.html and is also included in the license file (if there is any difference in those two, the one contained in the license file is the one that this work is licensed - -> MIT Style - -librelp-1.2.13.tar.gz\librelp-1.2.13.tar\librelp-1.2.13\m4\ltversion.m4 - - -Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. - Written by Scott James Remnant, 2004 - -This file is free software; the Free Software Foundation gives -unlimited permission to copy and/or distribute it, with or without -modifications, as long as this notice is preserved. - ->>> perl-cgi-4.35-1.ph2 - -[PLEASE NOTE: VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 3.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 3.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] - -The CGI.pm distribution is copyright 1995-2007, Lincoln D. Stein. It is -distributed under GPL and the Artistic License 2.0. It is currently maintained -by Lee Johnson (LEEJO) with help from many contributors. - ->>> readline-7.0-2.ph2 - -Copyright (C) 1987-2015 Free Software Foundation, Inc. - -This file is part of the GNU Readline Library (Readline), a library -for reading lines of text with interactive input and history editing. - -Readline is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Readline is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with Readline. If not, see . - -ADDITIONAL LICENSE INFORMATION: - -> GFDL 1.3 - -readline-7.0.tar.gz\readline-7.0.tar\readline-7.0\doc\history.info - -Copyright (C) 1988-2016 Free Software Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.3 or any later version published by the Free Software -Foundation; with no Invariant Sections, no Front-Cover Texts, and -no Back-Cover Texts. A copy of the license is included in the -section entitled "GNU Free Documentation License". - - -> GPL 2.0 - -readline-7.0.tar.gz\readline-7.0.tar\readline-7.0\examples\rlfe\extern.h - -Copyright (c) 1993-2002 -Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de) -Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de) -Copyright (c) 1987 Oliver Laumann - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program (see the file COPYING); if not, write to the -Free Software Foundation, Inc., -59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - -rlwrap-0.30.tar.gz - -> LGPL 2.1 - -readline-7.0.tar.gz\readline-7.0.tar\readline-7.0\examples\rlwrap-0.30.tar.gz\rlwrap-0.30.tar\rlwrap-0.30\src\redblack.h - -Copyright (C) Damian Ivereigh 2000 - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by -the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. See the file COPYING for details. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU Lesser General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - -> Public Domain - -readline-7.0.tar.gz\readline-7.0.tar\readline-7.0\support\mkinstalldirs - -Author: Noah Friedman -Created: 1993-05-16 -Public domain - -readline-7.0.tar.gz - -> MIT - -readline-7.0.tar.gz\readline-7.0.tar\readline-7.0\support\wcwidth.c - -Markus Kuhn -- 2007-05-26 (Unicode 5.0) - -Permission to use, copy, modify, and distribute this software -for any purpose and without fee is hereby granted. The author -disclaims all warranties with regard to this software. - -Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c - ->>> rsyslog-8.26.0-6.ph2 - -Copyright 2007-2016 Rainer Gerhards and Adiscon GmbH. - -This file is part of rsyslog. - -Rsyslog is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Rsyslog is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with Rsyslog. If not, see . - -ADDITIONAL LICENSE INFORMATION: - -> CDDL 1.1 - -rsyslog-8.26.0.tar.gz\rsyslog-8.26.0.tar\rsyslog-8.26.0\compat\ifaddrs.h - -CDDL HEADER START - -The contents of this file are subject to the terms of the -Common Development and Distribution License (the "License"). -You may not use this file except in compliance with the License. - -You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE -or http://www.opensolaris.org/os/licensing. -See the License for the specific language governing permissions -and limitations under the License. - -When distributing Covered Code, include this CDDL HEADER in each -file and include the License file at usr/src/OPENSOLARIS.LICENSE. -If applicable, add the following below this CDDL HEADER, with the -fields enclosed by brackets "[]" replaced with your own identifying -information: Portions Copyright [yyyy] [name of copyright owner] - -CDDL HEADER END -Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. - -> Apache 2.0 - -rsyslog-8.26.0.tar.gz\rsyslog-8.26.0.tar\rsyslog-8.26.0\compat\strndup.c - -Copyright 2015 Rainer Gerhards and Adiscon - -This file is part of rsyslog. - -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 --or- -see COPYING.ASL20 in the source distribution - -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. - -> LGPL 3.0 - -rsyslog-8.26.0.tar.gz\rsyslog-8.26.0.tar\rsyslog-8.26.0\contrib\imzmq3\imzmq3.c - -Copyright 2012 Talksum, Inc. - -This program is free software: you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License -as published by the Free Software Foundation, either version 3 of -the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this program. If not, see -. - -Authors: -David Kelly -Hongfei Cheng hongfeic@talksum.com - -> GPL 3.0 (WITH BISON PARSER EXCEPTION) - -rsyslog-8.26.0.tar.gz\rsyslog-8.26.0.tar\rsyslog-8.26.0\grammar\grammar.c - -Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - -> MIT - -rsyslog-8.26.0.tar.gz\rsyslog-8.26.0.tar\rsyslog-8.26.0\plugins\omelasticsearch\cJSON\cjson.h - -Copyright (c) 2009 Dave Gamble - -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. - -> GPL 2.0 - -rsyslog-8.26.0.tar.gz\rsyslog-8.26.0.tar\rsyslog-8.26.0\tools\rsyslog.conf.5 - -Copyright 2003-2008 Rainer Gerhards and Adiscon GmbH. - -This file is part of the rsyslog package, an enhanced system log daemon. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. - ->>> tar-1.29-1.ph2 - -Copyright (C) 2010-2015 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published -by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -ADDITIONAL LICENSE INFORMATION: - -> GFDL 1.3 - -tar-1.29.tar.xz\tar-1.29.tar\tar-1.29\doc\tar.info-2 - -Copyright (C) 1992, 1994-1997, 1999-2001, 2003-2016 Free Software -Foundation, Inc. - -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.3 or any later version published by the Free Software -Foundation; with the Invariant Sections being "GNU General Public -License", with the Front-Cover Texts being "A GNU Manual", and with -the Back-Cover Texts as in (a) below. A copy of the license is -included in the section entitled "GNU Free Documentation License". - -> GFDL 1.1 - -tar-1.29.tar.xz\tar-1.29.tar\tar-1.29\doc\sparse.texi - -Copyright (C) 2006, 2014, 2016 Free Software Foundation, Inc. -This file is distributed under GFDL 1.1 or any later version -published by the Free Software Foundation. - -> GPL 3.0 (WITH BISON PARSER EXCEPTION) - -tar-1.29.tar.xz\tar-1.29.tar\tar-1.29\gnu\parse-datetime.c - -Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - -> Public Domain - -tar-1.29.tar.xz\tar-1.29.tar\tar-1.29\gnu\alloca.c - -alloca.c -- allocate automatically reclaimed memory -(Mostly) portable public-domain implementation -- D A Gwyn - -This implementation of the PWB library alloca function, -which is used to allocate space off the run-time stack so -that it is automatically reclaimed upon procedure exit, -was inspired by discussions with J. Q. Johnson of Cornell. -J.Otto Tennant contributed the Cray support. - -There are some preprocessor constants that can -be defined when compiling for your specific system, for -improved efficiency; however, the defaults should be okay. - -The general concept of this implementation is to keep -track of all alloca-allocated blocks, and reclaim any -that are found to be deeper in the stack than the current -invocation. This heuristic does not reclaim storage as -soon as it becomes invalid, but it will do so eventually. - -As a special case, alloca(0) reclaims storage without -allocating any. It is a good idea to use alloca(0) in -your main control loop, etc. to force garbage collection. - -> LGPL 3.0 - -tar-1.29.tar.xz\tar-1.29.tar\tar-1.29\tests\argcv.c - -Copyright (C) 1999, 2000, 2001, 2007, 2009, 2010 Free Software -Foundation, Inc. - -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 3 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - ---------------- SECTION 6: GNU Lesser General Public License, V2.1 ---------- - -GNU Lesser General Public License, V2.1 is applicable to the following component(s). - - ->>> cracklib-2.9.6-8.ph2 - -A Python binding for cracklib. - -Parts of this code are based on work Copyright (c) 2003 by Domenico -Andreoli. - -Copyright (c) 2008, 2009, 2012 Jan Dittberner - -This file is part of cracklib. - -This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free -Software Foundation; either version 2.1 of the License, or (at your option) -any later version. - -This library is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more -details. - -You should have received a copy of the GNU Lesser General Public License -along with this library; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -ADDITIONAL LICENSE INFORMATION: - -> Public Domain - -cracklib-2.9.6.tar.gz\cracklib-2.9.6.tar\cracklib-2.9.6\po\es.po - -translation of cracklib.po to -This file is put in the public domain. -, 2003 - ->>> glibc-2.26-13.ph2 - -Copyright (C) 1991-2017 Free Software Foundation, Inc. -This file is part of the GNU C Library. - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, see -. - - -ADDITIONAL LICENSE INFORMATION: - -> - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\LICENSES - -This file contains the copying permission notices for various files in the -GNU C Library distribution that have copyright owners other than the Free -Software Foundation. These notices all require that a copy of the notice -be included in the accompanying documentation and be distributed with -binary distributions of the code, so be sure to include this file along -with any binary distributions derived from the GNU C Library. -All code incorporated from 4.4 BSD is distributed under the following -license: - -Copyright (C) 1991 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. [This condition was removed.] -4. 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. -The DNS resolver code, taken from BIND 4.9.5, is copyrighted by UC -Berkeley, by Digital Equipment Corporation and by Internet Software -Consortium. The DEC portions are under the following license: - -Portions Copyright (C) 1993 by Digital Equipment Corporation. - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies, and -that the name of Digital Equipment Corporation not be used in -advertising or publicity pertaining to distribution of the document or -software without specific, written prior permission. - -THE SOFTWARE IS PROVIDED ``AS IS'' AND DIGITAL EQUIPMENT CORP. -DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL -DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING -FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION -WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -The ISC portions are under the following license: - -Portions Copyright (c) 1996-1999 by Internet Software Consortium. - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS -ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE -CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. -The Sun RPC support (from rpcsrc-4.0) is covered by the following -license: - -Copyright (c) 2010, Oracle America, Inc. - -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 "Oracle America, Inc." nor the names of its -contributors may be used to endorse or promote products derived -from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE -GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -The following CMU license covers some of the support code for Mach, -derived from Mach 3.0: - -Mach Operating System -Copyright (C) 1991,1990,1989 Carnegie Mellon University -All Rights Reserved. - -Permission to use, copy, modify and distribute this software and its -documentation is hereby granted, provided that both the copyright -notice and this permission notice appear in all copies of the -software, derivative works or modified versions, and any portions -thereof, and that both notices appear in supporting documentation. - -CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS ``AS IS'' -CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR -ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - -Carnegie Mellon requests users of this software to return to - -Software Distribution Coordinator -School of Computer Science -Carnegie Mellon University -Pittsburgh PA 15213-3890 - -or Software.Distribution@CS.CMU.EDU any improvements or -extensions that they make and grant Carnegie Mellon the rights to -redistribute these changes. -The file if_ppp.h is under the following CMU license: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -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 CARNEGIE MELLON UNIVERSITY 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 UNIVERSITY 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 following license covers the files from Intel's "Highly Optimized -Mathematical Functions for Itanium" collection: - -Intel License Agreement - -Copyright (c) 2000, Intel Corporation - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -The name of Intel Corporation may not be used to endorse or promote -products derived from this software without specific prior written -permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -The files inet/getnameinfo.c and sysdeps/posix/getaddrinfo.c are copyright -(C) by Craig Metz and are distributed under the following license: - -/ The Inner Net License, Version 2.00 - -The author(s) grant permission for redistribution and use in source and -binary forms, with or without modification, of the software and documentation -provided that the following conditions are met: - -0. If you receive a version of the software that is specifically labelled -as not being for redistribution (check the version message and/or README), -you are not permitted to redistribute that version of the software in any -way or form. -1. All terms of the all other applicable copyrights and licenses must be -followed. -2. Redistributions of source code must retain the authors' copyright -notice(s), this list of conditions, and the following disclaimer. - -3. Redistributions in binary form must reproduce the authors' copyright -notice(s), this list of conditions, and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -4. [The copyright holder has authorized the removal of this clause.] - -5. Neither the name(s) of the author(s) nor the names of its contributors -may be used to endorse or promote products derived from this software -without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -If these license terms cause you a real problem, contact the author. / -The file sunrpc/des_impl.c is copyright Eric Young: - -Copyright (C) 1992 Eric Young - -Collected from libdes and modified for SECURE RPC by Martin Kuck 1994 -This file is distributed under the terms of the GNU Lesser General -Public License, version 2.1 or later - see the file COPYING.LIB for details. -If you did not receive a copy of the license with this program, please -see to obtain a copy. - -The libidn code is copyright Simon Josefsson, with portions copyright -The Internet Society, Tom Tromey and Red Hat, Inc.: - -Copyright (C) 2002, 2003, 2004, 2011 Simon Josefsson - -This file is part of GNU Libidn. - -GNU Libidn 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. - -GNU Libidn 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 GNU Libidn; if not, see . - -The following notice applies to portions of libidn/nfkc.c: - -This file contains functions from GLIB, including gutf8.c and -gunidecomp.c, all licensed under LGPL and copyright hold by: - -Copyright (C) 1999, 2000 Tom Tromey -Copyright 2000 Red Hat, Inc. - -The following applies to portions of libidn/punycode.c and -libidn/punycode.h: - -This file is derived from RFC 3492bis written by Adam M. Costello. - -Disclaimer and license: Regarding this entire document or any -portion of it (including the pseudocode and C code), the author -makes no guarantees and is not responsible for any damage resulting -from its use. The author grants irrevocable permission to anyone -to use, modify, and distribute it in any way that does not diminish -the rights of anyone else to use, modify, and distribute it, -provided that redistributed derivative works do not contain -misleading author or version information. Derivative works need -not be licensed under similar terms. -Copyright (C) The Internet Society (2003). All Rights Reserved. - -This document and translations of it may be copied and furnished to -others, and derivative works that comment on or otherwise explain it -or assist in its implementation may be prepared, copied, published -and distributed, in whole or in part, without restriction of any -kind, provided that the above copyright notice and this paragraph are -included on all such copies and derivative works. However, this -document itself may not be modified in any way, such as by removing -the copyright notice or references to the Internet Society or other -Internet organizations, except as needed for the purpose of -developing Internet standards in which case the procedures for -copyrights defined in the Internet Standards process must be -followed, or as required to translate it into languages other than -English. - -The limited permissions granted above are perpetual and will not be -revoked by the Internet Society or its successors or assigns. - -This document and the information contained herein is provided on an -"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF -MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. -The file inet/rcmd.c is under a UCB copyright and the following: - -Copyright (C) 1998 WIDE 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. Neither the name of the project nor the names of its contributors -may be used to endorse or promote products derived from this software -without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The file posix/runtests.c is copyright Tom Lord: - -Copyright 1995 by Tom Lord - -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 the copyright holder not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -Tom Lord DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL TOM LORD 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. - -The posix/rxspencer tests are copyright Henry Spencer: - -Copyright 1992, 1993, 1994, 1997 Henry Spencer. All rights reserved. -This software is not subject to any license of the American Telephone -and Telegraph Company or of the Regents of the University of California. - -Permission is granted to anyone to use this software for any purpose on -any computer system, and to alter it and redistribute it, subject -to the following restrictions: - -1. The author is not responsible for the consequences of use of this -software, no matter how awful, even if they arise from flaws in it. - -2. The origin of this software must not be misrepresented, either by -explicit claim or by omission. Since few users ever read sources, -credits must appear in the documentation. - -3. Altered versions must be plainly marked as such, and must not be -misrepresented as being the original software. Since few users -ever read sources, credits must appear in the documentation. - -4. This notice may not be removed or altered. - -The file posix/PCRE.tests is copyright University of Cambridge: - -Copyright (c) 1997-2003 University of Cambridge - -Permission is granted to anyone to use this software for any purpose on any -computer system, and to redistribute it freely, subject to the following -restrictions: - -1. This software is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -2. The origin of this software must not be misrepresented, either by -explicit claim or by omission. In practice, this means that if you use -PCRE in software that you distribute to others, commercially or -otherwise, you must put a sentence like this - -Regular expression support is provided by the PCRE library package, -which is open source software, written by Philip Hazel, and copyright -by the University of Cambridge, England. - -somewhere reasonably visible in your documentation and in any relevant -files or online help data or similar. A reference to the ftp site for -the source, that is, to - -ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ - -should also be given in the documentation. However, this condition is not -intended to apply to whole chains of software. If package A includes PCRE, -it must acknowledge it, but if package B is software that includes package -A, the condition is not imposed on package B (unless it uses PCRE -independently). - -3. Altered versions must be plainly marked as such, and must not be -misrepresented as being the original software. - -4. If PCRE is embedded in any software that is released under the GNU -General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL), -then the terms of that licence shall supersede any condition above with -which it is incompatible. - -Files from Sun fdlibm are copyright Sun Microsystems, Inc.: - -Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - -Developed at SunPro, a Sun Microsystems, Inc. business. -Permission to use, copy, modify, and distribute this -software is freely granted, provided that this notice -is preserved. - -Part of stdio-common/tst-printf.c is copyright C E Chew: - -(C) Copyright C E Chew - -Feel free to copy, use and distribute this software provided: - -1. you do not pretend that you wrote it -2. you leave this copyright notice intact. - -Various long double libm functions are copyright Stephen L. Moshier: - -Copyright 2001 by Stephen L. Moshier - -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, see -. / - ->LGPL 2.1 WITH SPECIAL EXCEPTION - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\wcsmbs\isoc99_vswscanf.c - -/ Copyright (C) 1993-2017 Free Software Foundation, Inc. -This file is part of the GNU C Library. - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, see -. - -As a special exception, if you link the code in this file with -files compiled with a GNU compiler to produce an executable, -that does not cause the resulting executable to be covered by -the GNU Lesser General Public License. This exception does not -however invalidate any other reasons why the executable file -might be covered by the GNU Lesser General Public License. -This exception applies to code released by its copyright holders -in files containing the exception. - ->BSD-3 - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\termios\sys\ttychars.h - -Copyright (c) 1982, 1986, 1990, 1993 -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. -4. 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. - - ->GPL 2.0 - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\catgets\xopen-msg.awk - -Copyright (C) 2012-2017 Free Software Foundation, Inc. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, see . - ->GPL 3.0 WITH BISON PARSER EXCEPTION - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\intl\plural.c - -/ A Bison parser, made by GNU Bison 2.7. / - -/ Bison implementation for Yacc-like parsers in C - -Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . / - -/ As a special exception, you may create a larger work that contains -part or all of the Bison parser skeleton and distribute that work -under terms of your choice, so long as that work isn't itself a -parser generator using the skeleton or a modified version thereof -as a parser skeleton. Alternatively, if you modify or redistribute -the parser skeleton itself, you may (at your option) remove this -special exception, which will cause the skeleton and the resulting -Bison output files to be licensed under the GNU General Public -License without this special exception. - -This special exception was added by the Free Software Foundation in -version 2.2 of Bison. / - ->GFDL 1.3 - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\manual\fdl-1.3.texi - -LICENSE: GFDL 1.3 - - ->LGPL 2.0 - - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\sysdeps\powerpc\power5+\fpu\s_modf.c - - -Copyright (C) 2013-2017 Free Software Foundation, Inc. -This file is part of the GNU C Library - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If -not, see . - - -> PUBLIC DOMAIN - -glibc-2.26.tar.xz\glibc-2.26.tar\glibc-2.26\timezone\zone.tab - -
-@(#)zone.tab	8.28
-This file is in the public domain, so clarified as of
-2009-05-17 by Arthur David Olson.
-
->>> gnutls-3.5.15-3.ph2
-
-Copyright (C) 2010-2012 Free Software Foundation, Inc.
-
-Author: Nikos Mavrogiannopoulos
-
-This file is part of GnuTLS.
-
-The GnuTLS 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 program.  If not, see 
-
-
-ADDITIONAL LICENSE INFORMATION:
-
->GPL 3.0
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\build-aux\snippet\arg-nonnull.h
-
-Copyright (C) 2009-2016 Free Software Foundation, Inc.
-
-This program is free software: you can redistribute it and/or modify it
-under the terms of the GNU General Public License as published
-by the Free Software Foundation; either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see PUBLIC DOMAIN
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\doc\examples\ex-crq.c
-
-This example code is placed in the public domain.
-
-> BSD-3
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\lib\accelerated\x86\coff\e_padlock-x86.s
-
-Copyright (c) 2011-2013, Andy Polyakov 
-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 copyright notices,
-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 Andy Polyakov nor the names of its
-copyright holder and contributors may be used to endorse or
-promote products derived from this software without specific
-prior written permission.
-
-ALTERNATIVELY, provided that this notice is retained in full, this
-product may be distributed under the terms of the GNU General Public
-License (GPL), in which case the provisions of the GPL apply INSTEAD OF
-those given above.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
->OPENSSL
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE OPENSSL LICENSE, THE TEXT OF WHICH IS SET FORTH BELOW.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\lib\accelerated\x86\license.txt
-
-====================================================================
-Written by Andy Polyakov  for the OpenSSL
-project. The module is, however, dual licensed under OpenSSL and
-CRYPTOGAMS licenses depending on where you obtain it. For further
-details see http://www.openssl.org/~appro/cryptogams/.
-
->BSD-2
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\lib\extras\randomart.c
-
-Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
-Copyright (c) 2008 Alexander von Gernler.  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 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.
-
->MIT
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\src\gl\inet_pton.c
-
-Copyright (c) 1996,1999 by Internet Software Consortium.
-
-Permission to use, copy, modify, and distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
-ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
-CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
-DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
-PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
-ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
-SOFTWARE.
-
->BSD-3
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\src\libopts\autoopts\options.h
-
-Automated Options Copyright (C) 1992-2015 by Bruce Korb
-
-This file is part of AutoOpts, a companion to AutoGen.
-AutoOpts is free software.
-AutoOpts is Copyright (C) 1992-2015 by Bruce Korb - all rights reserved
-
-AutoOpts is available under any one of two licenses.  The license
-in use must be one of these two and the choice is under the control
-of the user of the license.
-
-The GNU Lesser General Public License, version 3 or later
-See the files "COPYING.lgplv3" and "COPYING.gplv3"
-
-The Modified Berkeley Software Distribution License
-See the file "COPYING.mbsd"
-
->LGPL 2.0
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\src\libopts\genshell.c
-
-
-The genshellopt program is copyrighted and licensed
-under the following terms:
-
-Copyright (C) 1999-2014 Bruce Korb, all rights reserved.
-This is free software. It is licensed for use, modification and
-redistribution under the terms of the GNU Lesser General Public License,
-version 2 or later 
-
-The genshellopt library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Library General Public License as
-published by the Free Software Foundation; either version 2 of the
-License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public
-License along with this library; if not, see
-http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html
-
->BSD
-
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\src\cli-debug-args.h.bak
-
-Generated from AutoOpts 41:1:16 templates.
-
-AutoOpts is a copyrighted work.  This header file is not encumbered
-by AutoOpts licensing, but is provided under the licensing terms chosen
-by the gnutls-cli-debug author or copyright holder.  AutoOpts is
-licensed under the terms of the LGPL.  The redistributable library
-(``libopts'') is licensed under the terms of either the LGPL or, at the
-users discretion, the BSD license.  See the AutoOpts and/or libopts sources
-for details.
-
->GFDL 1.3
-
-gnutls-3.5.15.tar.xz\gnutls-3.5.15.tar\gnutls-3.5.15\doc\gnutls-guile.info
-
-Copyright (C) 2001-2012, 2014, 2016 Free Software Foundation, Inc.
-
-Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License,
-Version 1.3 or any later version published by the Free Software
-Foundation; with no Invariant Sections, no Front-Cover Texts, and
-no Back-Cover Texts.  A copy of the license is included in the
-section entitled "GNU Free Documentation License".
-
->>> hawkey-2017.1-6.ph2
-
-Copyright (C) 2014 Red Hat, Inc.
-
-Licensed under the GNU Lesser General Public License Version 2.1
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-ADDITIONAL LICENSE INFORMATION:
-
-> GPL 2.0
-
-hawkey-2017.1.tar.gz\hawkey-2017.1.tar\hawkey-hawkey-0.6.4-1\doc\changes.rst
-
-Copyright (C) 2014-2015  Red Hat, Inc.
-
-This copyrighted material is made available to anyone wishing to use,
-modify, copy, or redistribute it subject to the terms and conditions of
-the GNU General Public License v.2, or (at your option) any later version.
-This program is distributed in the hope that it will be useful, but WITHOUT
-ANY WARRANTY expressed or implied, including the implied warranties of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
-Public License for more details.  You should have received a copy of the
-GNU General Public License along with this program; if not, write to the
-Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
-source code or documentation are not subject to the GNU General Public
-License and may only be used or replicated with the express permission of
-Red Hat, Inc.
-
->>> kmod-24-3.ph2
-
-Copyright (C) 2012-2013  ProFUSION embedded systems
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, see .
-
-
-ADDITIONAL LICENSE INFORMATION:
-
-> GPL 2.0
-
-kmod-24.tar.xz\kmod-24.tar\kmod-24\tools\rmmod.c
-
-kmod-insert - insert a module into the kernel.
-
-Copyright (C) 2015 Intel Corporation. All rights reserved.
-Copyright (C) 2011-2013  ProFUSION embedded systems
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see .
-
->>> libestr-0.1.10-2.ph2
-
-Copyright 2010 by Rainer Gerhards and Adiscon GmbH.
-
-This file is part of libestr.
-
-This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-A copy of the LGPL v2.1 can be found in the file "COPYING" in this distribution.
-
-ADDITIONAL LICENSE INFORMATION:
-> MIT-Style
-libestr-0.1.10\m4\ltsugar.m4
-
-Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
-Written by Gary V. Vaughan, 2004
-
-This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved.
-
->>> libgcrypt-1.8.1-2.ph2
-
-Copyright (C) 2013 g10 Code GmbH
-
-This file is part of Libgcrypt.
-
-Libgcrypt 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.
-
-Libgcrypt is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
-
-ADDITIONAL LICENSE INFORMATION:
-
->
-
-libgcrypt-1.8.1.tar.bz2\libgcrypt-1.8.1.tar\libgcrypt-1.8.1\LICENSES
-
-Additional license notices for Libgcrypt.                    -- org --
-
-This file contains the copying permission notices for various files in
-the Libgcrypt distribution which are not covered by the GNU Lesser
-General Public License (LGPL) or the GNU General Public License (GPL).
-
-These notices all require that a copy of the notice be included
-in the accompanying documentation and be distributed with binary
-distributions of the code, so be sure to include this file along
-with any binary distributions derived from the GNU C Library.
-
-BSD_3Clause
-
-For files:
-- cipher/sha256-avx-amd64.S
-- cipher/sha256-avx2-bmi2-amd64.S
-- cipher/sha256-ssse3-amd64.S
-- cipher/sha512-avx-amd64.S
-- cipher/sha512-avx2-bmi2-amd64.S
-- cipher/sha512-ssse3-amd64.S
-
-+begin_quote
-Copyright (c) 2012, Intel Corporation
-
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
-
-Redistributions in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the
-distribution.
-
-Neither the name of the Intel Corporation nor the names of its
-contributors may be used to endorse or promote products derived from
-this software without specific prior written permission.
-
-
-THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "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 INTEL CORPORATION 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.
-+end_quote
-
-
-For files:
-- random/jitterentropy-base.c
-- random/jitterentropy.h
-- random/rndjent.c (plus common Libgcrypt copyright holders)
-
-+begin_quote
-Copyright Stephan Mueller , 2013
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-License
-=======
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-notice, and the entire permission notice in its entirety,
-including the disclaimer of warranties.
-2. Redistributions in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-3. The name of the author may not be used to endorse or promote
-products derived from this software without specific prior
-written permission.
-
-ALTERNATIVELY, this product may be distributed under the terms of
-the GNU General Public License, in which case the provisions of the GPL are
-required INSTEAD OF the above restrictions.  (This clause is
-necessary due to a potential bad interaction between the GPL and
-the restrictions contained in a BSD-style copyright.)
-
-THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
-WHICH ARE HEREBY 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 NOT ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
-+end_quote
-
-X License
-
-For files:
-- install.sh
-
-+begin_quote
-Copyright (C) 1994 X Consortium
-
-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
-X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
-TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name of the X Consortium shall not
-be used in advertising or otherwise to promote the sale, use or other deal-
-ings in this Software without prior written authorization from the X Consor-
-tium.
-+end_quote
-
-Public domain
-
-For files:
-- cipher/arcfour-amd64.S
-
-+begin_quote
-Author: Marc Bevand 
-Licence: I hereby disclaim the copyright on this code and place it
-in the public domain.
-+end_quote
-
-OCB license 1
-
-For files:
-- cipher/cipher-ocb.c
-
-+begin_quote
-OCB is covered by several patents but may be used freely by most
-software.  See http://web.cs.ucdavis.edu/~rogaway/ocb/license.htm .
-In particular license 1 is suitable for Libgcrypt: See
-http://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf for the full
-license document; it basically says:
-
-License 1 — License for Open-Source Software Implementations of OCB
-(Jan 9, 2013)
-
-Under this license, you are authorized to make, use, and
-distribute open-source software implementations of OCB. This
-license terminates for you if you sue someone over their
-open-source software implementation of OCB claiming that you have
-a patent covering their implementation.
-
-
-
-License for Open Source Software Implementations of OCB
-January 9, 2013
-
-1 Definitions
-
-1.1 “Licensor” means Phillip Rogaway.
-
-1.2 “Licensed Patents” means any patent that claims priority to United
-States Patent Application No. 09/918,615 entitled “Method and Apparatus
-for Facilitating Efficient Authenticated Encryption,” and any utility,
-divisional, provisional, continuation, continuations-in-part, reexamination,
-reissue, or foreign counterpart patents that may issue with respect to the
-aforesaid patent application. This includes, but is not limited to, United
-States Patent No. 7,046,802; United States Patent No. 7,200,227; United
-States Patent No. 7,949,129; United States Patent No. 8,321,675 ; and any
-patent that issues out of United States Patent Application No. 13/669,114.
-
-1.3 “Use” means any practice of any invention claimed in the Licensed Patents.
-
-1.4 “Software Implementation” means any practice of any invention
-claimed in the Licensed Patents that takes the form of software executing on
-a user-programmable, general-purpose computer or that takes the form of a
-computer-readable medium storing such software. Software Implementation does
-not include, for example, application-specific integrated circuits (ASICs),
-field-programmable gate arrays (FPGAs), embedded systems, or IP cores.
-
-1.5 “Open Source Software” means software whose source code is published
-and made available for inspection and use by anyone because either (a) the
-source code is subject to a license that permits recipients to copy, modify,
-and distribute the source code without payment of fees or royalties, or
-(b) the source code is in the public domain, including code released for
-public use through a CC0 waiver. All licenses certified by the Open Source
-Initiative at opensource.org as of January 9, 2013 and all Creative Commons
-licenses identified on the creativecommons.org website as of January 9,
-2013, including the Public License Fallback of the CC0 waiver, satisfy these
-requirements for the purposes of this license.
-
-1.6 “Open Source Software Implementation” means a Software
-Implementation in which the software implicating the Licensed Patents is
-Open Source Software. Open Source Software Implementation does not include
-any Software Implementation in which the software implicating the Licensed
-Patents is combined, so as to form a larger program, with software that is
-not Open Source Software.
-
-2 License Grant
-
-2.1 License. Subject to your compliance with the term s of this license,
-including the restriction set forth in Section 2.2, Licensor hereby
-grants to you a perpetual, worldwide, non-exclusive, non-transferable,
-non-sublicenseable, no-charge, royalty-free, irrevocable license to practice
-any invention claimed in the Licensed Patents in any Open Source Software
-Implementation.
-
-2.2 Restriction. If you or your affiliates institute patent litigation
-(including, but not limited to, a cross-claim or counterclaim in a lawsuit)
-against any entity alleging that any Use authorized by this license
-infringes another patent, then any rights granted to you under this license
-automatically terminate as of the date such litigation is filed.
-
-3 Disclaimer
-YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED
-BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
-KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED
-PATENT, EXPRESS OR IMPLIED, STATUT ORY OR OTHERWISE, INCLUDING, WITHOUT
-LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR
-PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
-ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING,
-WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE
-OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.
-+end_quote
-
-
->MIT
-
-
-Copyright 1997, 1998, 1999, 2001 Werner Koch (dd9jn)
-Copyright 2013 g10 Code GmbH
-
-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
-WERNER KOCH 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.
-
->GPL 2.0
-
-libgcrypt-1.8.1.tar.bz2\libgcrypt-1.8.1.tar\libgcrypt-1.8.1\doc\gpl.texi
-
-LICENSE: GPL 2.0
-
-
->GPL 3.0
-
-libgcrypt-1.8.1.tar.bz2\libgcrypt-1.8.1.tar\libgcrypt-1.8.1\doc\yat2m.c
-
-Copyright (C) 2005, 2013, 2015, 2016 g10 Code GmbH
-Copyright (C) 2006, 2008, 2011 Free Software Foundation, Inc.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, see .
-
->BSD-3
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-libgcrypt-1.8.1.tar.bz2\libgcrypt-1.8.1.tar\libgcrypt-1.8.1\random\jitterentropy-base.c
-
-Copyright Peter Gutmann, Paul Kendall, and Chris Wedgwood 1996-1999.
-Heavily modified for GnuPG by Werner Koch
-
-
-/
-
-/ This module is part of the cryptlib continuously seeded pseudorandom
-number generator.  For usage conditions, see lib_rand.c
-
-[Here is the notice from lib_rand.c:]
-
-This module and the misc/rnd.c modules represent the cryptlib
-continuously seeded pseudorandom number generator (CSPRNG) as described in
-my 1998 Usenix Security Symposium paper "The generation of random numbers
-for cryptographic purposes".
-
-The CSPRNG code is copyright Peter Gutmann (and various others) 1996,
-1997, 1998, 1999, all rights reserved.  Redistribution of the CSPRNG
-modules 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
-and this permission notice in its entirety.
-
-2. Redistributions in binary form must reproduce the copyright notice in
-the documentation and/or other materials provided with the distribution.
-
-3. A copy of any bugfixes or enhancements made must be provided to the
-author,  to allow them to be added to the
-baseline version of the code.
-
-ALTERNATIVELY, the code may be distributed under the terms of the
-GNU Lesser General Public License, version 2.1 or any later version
-published by the Free Software Foundation, in which case the
-provisions of the GNU LGPL are required INSTEAD OF the above
-restrictions.
-
-Although not required under the terms of the LGPL, it would still be
-nice if you could make any changes available to the author to allow
-a consistent code base to be maintained.  /
-
->BSD-3
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-libgcrypt-1.8.1.tar.bz2\libgcrypt-1.8.1.tar\libgcrypt-1.8.1\random\random-drbg.c
-
-Copyright 2014 Stephan Mueller 
-
-DRBG: Deterministic Random Bits Generator
-Based on NIST Recommended DRBG from NIST SP800-90A with the following
-properties:
-CTR DRBG with DF with AES-128, AES-192, AES-256 cores
-Hash DRBG with DF with SHA-1, SHA-256, SHA-384, SHA-512 cores
-HMAC DRBG with DF with SHA-1, SHA-256, SHA-384, SHA-512 cores
-with and without prediction resistance
-
-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, and the entire permission notice in its entirety,
-including the disclaimer of warranties.
-2. Redistributions in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-3. The name of the author may not be used to endorse or promote
-products derived from this software without specific prior
-written permission.
-
-ALTERNATIVELY, this product may be distributed under the terms of
-LGPLv2+, in which case the provisions of the LGPL are
-required INSTEAD OF the above restrictions.  (This clause is
-necessary due to a potential bad interaction between the LGPL and
-the restrictions contained in a BSD-style copyright.)
-
-THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
-WHICH ARE HEREBY 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 NOT ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
-
->>> libgpg-error-1.27-1.ph2
-
-Copyright (C) 2003-2004, 2010, 2013-2016 g10 Code GmbH
-
-This file is part of libgpg-error.
-
-libgpg-error 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.
-
-libgpg-error is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this program; if not, see .
-
-ADDITIONAL LICENSE INFORMATION:
-
->GPL 2.0
-
-libgpg-error-1.27.tar.bz2\libgpg-error-1.27.tar\libgpg-error-1.27\doc\gpgrt.info
-
-Copyright (C) 2014 g10 Code GmbH
-
-Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU General Public License as
-published by the Free Software Foundation; either version 2 of the
-License, or (at your option) any later version.  The text of the
-license can be found in the section entitled "GNU General Public
-License".
-
->GPL 3.0
-
-libgpg-error-1.27.tar.bz2\libgpg-error-1.27.tar\libgpg-error-1.27\doc\yat2m.c
-
-Copyright (C) 2005, 2013, 2015, 2016 g10 Code GmbH
-Copyright (C) 2006, 2008, 2011 Free Software Foundation, Inc.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, see .
-
->MIT STYLE
-
-libgpg-error-1.27.tar.bz2\libgpg-error-1.27.tar\libgpg-error-1.27\src\mkheader.c
-
-Copyright (C) 2010 Free Software Foundation, Inc.
-Copyright (C) 2014 g10 Code GmbH
-
-This file is free software; as a special exception the author gives
-unlimited permission to copy and/or distribute it, with or without
-modifications, as long as this notice is preserved.
-
-This file is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
-implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
->BSD-3 Clause
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-libgpg-error-1.27.tar.bz2\libgpg-error-1.27.tar\libgpg-error-1.27\src\mkheader.c
-
-estream.c - Extended Stream I/O Library
-Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011,
-2014, 2015, 2016, 2017 g10 Code GmbH
-
-This file is part of Libestream.
-
-Libestream 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.
-
-Libestream 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 Libestream; if not, see .
-
-ALTERNATIVELY, Libestream may be distributed under the terms of the
-following license, in which case the provisions of this license are
-required INSTEAD OF the GNU General Public License. If you wish to
-allow use of your version of this file only under the terms of the
-GNU General Public License, and not to allow others to use your
-version of this file under the terms of the following license,
-indicate your decision by deleting this paragraph and the license
-below.
-
-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, and the entire permission notice in its entirety,
-including the disclaimer of warranties.
-2. Redistributions in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-3. The name of the author may not be used to endorse or promote
-products derived from this software without specific prior
-written permission.
-
-THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED.  IN NO EVENT SHALL THE 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.
-
->LGPL 2.0
-
-libgpg-error-1.27.tar.bz2\libgpg-error-1.27.tar\libgpg-error-1.27\src\gettext.h
-
-Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc.
-
-This program is free software; you can redistribute it and/or modify it
-under the terms of the GNU Library General Public License as published
-by the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public
-License along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
-USA.
-
->>> libsepol-2.6-1.ph2
-
-Copyright (C) 2005 Tresys Technology, LLC
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
-ADDITIONAL LICENSE INFORMATION:
-
-> BSD-2 Clause
-
-libsepol-2.6.tar.gz\libsepol-2.6.tar\libsepol-2.6\cil\include\cil\cil.h
-
-Copyright 2011 Tresys Technology, LLC. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions of source code must retain the above copyright notice,
-this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright notice,
-this list of conditions and the following disclaimer in the documentation
-and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY TRESYS TECHNOLOGY, LLC ``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 TRESYS TECHNOLOGY, LLC 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.
-
-> MIT-Style
-
-libsepol-2.6.tar.gz\libsepol-2.6.tar\libsepol-2.6\cil\test\unit\CuTest.h
-
-Copyright (c) 2003 Asim Jalis
-
-This software is provided 'as-is', without any express or implied
-warranty. In no event will the authors be held liable for any damages
-arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-1. The origin of this software must not be misrepresented; you must not
-claim that you wrote the original software. If you use this software in
-a product, an acknowledgment in the product documentation would be
-appreciated but is not required.
-
-2. Altered source versions must be plainly marked as such, and must not
-be misrepresented as being the original software.
-
-3. This notice may not be removed or altered from any source
-distribution.
-
-> GPL 2.0
-
-libsepol-2.6.tar.gz\libsepol-2.6.tar\libsepol-2.6\man\man8\genpolusers.8
-
-Copyright (c) 1997 Manoj Srivastava 
-
-This is free documentation; you can redistribute it and/or
-modify it under the terms of the GNU General Public License as
-published by the Free Software Foundation; either version 2 of
-the License, or (at your option) any later version.
-
-The GNU General Public License's references to "object code"
-and "executables" are to be interpreted as the output of any
-document formatting or typesetting system, including
-intermediate and printed output.
-
-This manual is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public
-License along with this manual; if not, write to the Free
-Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
-USA.
-
->>> libtasn1-4.13-1.ph2
-
-Copyright (C) 1995-1996, 2001-2017 Free Software Foundation, Inc.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU Lesser General Public License as published by
-the Free Software Foundation; either version 2.1, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public License
-along with this program; if not, see .  /
-
-ADDITIONAL LICENSE INFORMATION:
-
-> GPL 3.0
-
-libtasn1-4.13-1.ph2.src.rpm\libtasn1-4.13-1.ph2.src.cpio\libtasn1-4.13.tar.gz\libtasn1-4.13.tar\libtasn1-4.13\build-aux\snippet\arg-nonnull.h
-
-Copyright (C) 2010-2017 Free Software Foundation, Inc.
-
-This program is free software: you can redistribute it and/or modify it
-under the terms of the GNU General Public License as published
-by the Free Software Foundation; either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see  GFDL 1.3
-
-libtasn1-4.13-1.ph2.src.rpm\libtasn1-4.13-1.ph2.src.cpio\libtasn1-4.13.tar.gz\libtasn1-4.13.tar\libtasn1-4.13\doc\libtasn1.html
-
-Copyright (C) 2001-2015 Free Software Foundation, Inc.
-
-Permission is granted to copy, distribute and/or modify this document
-under the terms of the GNU Free Documentation License, Version 1.3 or
-any later version published by the Free Software Foundation; with no
-Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.  A
-copy of the license is included in the section entitled "GNU Free
-Documentation License".
-
-> GPL 3.0 with Bison Parser exception
-
-libtasn1-4.13-1.ph2.src.rpm\libtasn1-4.13-1.ph2.src.cpio\libtasn1-4.13.tar.gz\libtasn1-4.13.tar\libtasn1-4.13\lib\ASN1.c
-
-A Bison parser, made by GNU Bison 3.0.4.
-
-Bison implementation for Yacc-like parsers in C
-
-Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see .
-
-As a special exception, you may create a larger work that contains
-part or all of the Bison parser skeleton and distribute that work
-under terms of your choice, so long as that work isn't itself a
-parser generator using the skeleton or a modified version thereof
-as a parser skeleton.  Alternatively, if you modify or redistribute
-the parser skeleton itself, you may (at your option) remove this
-special exception, which will cause the skeleton and the resulting
-Bison output files to be licensed under the GNU General Public
-License without this special exception.
-
-This special exception was added by the Free Software Foundation in
-version 2.2 of Bison.
-
-C LALR(1) parser skeleton written by Richard Stallman, by
-simplifying the original so-called "semantic" parser.
-
-All symbols defined below should begin with yy or YY, to avoid
-infringing on user name space.  This should be done even for local
-variables, as they might otherwise be expanded by user macros.
-There are some unavoidable exceptions within include files to
-define necessary library symbols; they are noted "INFRINGES ON
-USER NAME SPACE" below.
-
-> MIT- Style
-
-libtasn1-4.13-1.ph2.src.rpm\libtasn1-4.13-1.ph2.src.cpio\libtasn1-4.13.tar.gz\libtasn1-4.13.tar\libtasn1-4.13\doc\man\asn1_delete_element.3
-
-Copyright \(co 2006-2015 Free Software Foundation, Inc…br
-
-Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.
-
->>> systemd-233-16.ph2
-
-This file is part of systemd.
-
-Copyright 2008-2011 Kay Sievers
-Copyright 2012 Lennart Poettering
-
-systemd 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.
-
-systemd 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 systemd; If not, see .
-
-ADDITIONAL LICENSE INFORMATION:
-
-> GPL 2.0
-
-systemd-233.tar.gz\systemd-233.tar\systemd-233\LICENSE.GPL2
-
-License: GPL 2.0
-
-> MIT
-
-systemd-233.tar.gz\systemd-233.tar\systemd-233\man\glib-event-glue.c
-
-Copyright 2014 Tom Gundersen
-
-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.
-
-> Public Domain
-
-systemd-233.tar.gz\systemd-233.tar\systemd-233\src\basic\MurmurHash2.c
-
-MurmurHash2 was written by Austin Appleby, and is placed in the public
-domain. The author hereby disclaims copyright to this source code.
-
-> LGPL 2.0
-
-systemd-233.tar.gz\systemd-233.tar\systemd-233\src\basic\utf8.c
-
-Copyright (C) 1999 Tom Tromey
-Copyright (C) 2000 Red Hat, Inc.
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Library General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
---------------- SECTION 7: GNU Lesser General Public License, V3.0 ----------
-
-GNU Lesser General Public License, V3.0 is applicable to the following component(s).
-
-
->>> gmp-6.1.2-2.ph2
-
-'[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 3.0.  PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE LGPL3.0.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-Copyright 2000-2002, 2004 Free Software Foundation, Inc.
-
-This file is part of the GNU MP Library.
-
-The GNU MP Library is free software; you can redistribute it and/or modify
-it under the terms of either:
-
-* the GNU Lesser General Public License as published by the Free
-Software Foundation; either version 3 of the License, or (at your
-option) any later version.
-
-or
-
-* the GNU General Public License as published by the Free Software
-Foundation; either version 2 of the License, or (at your option) any
-later version.
-
-or both in parallel, as here.
-
-The GNU MP 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 General Public License
-for more details.
-
-You should have received copies of the GNU General Public License and the
-GNU Lesser General Public License along with the GNU MP Library.  If not,
-see https://www.gnu.org/licenses/.
-
-ADDITIONAL LICENSE INFORMATION:
-
-> GPL3.0
-
-gmp-6.1.2.tar.xz\gmp-6.1.2.tar\gmp-6.1.2\demos\factorize.c
-
-Factoring with Pollard's rho method.
-
-Copyright 1995, 1997-2003, 2005, 2009, 2012, 2015 Free Software
-Foundation, Inc.
-
-This program is free software; you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free Software
-Foundation; either version 3 of the License, or (at your option) any later
-version.
-
-This program is distributed in the hope that it will be useful, but WITHOUT ANY
-WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-PARTICULAR PURPOSE.  See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along with
-this program.  If not, see https://www.gnu.org/licenses/.
-
-> GPL3.0 with Bison Parser Exception
-
-gmp-6.1.2.tar.xz\gmp-6.1.2.tar\gmp-6.1.2\demos\calc\calc.c
-
-Bison implementation for Yacc-like parsers in C
-
-Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see .  */
-
-/* As a special exception, you may create a larger work that contains
-part or all of the Bison parser skeleton and distribute that work
-under terms of your choice, so long as that work isn't itself a
-parser generator using the skeleton or a modified version thereof
-as a parser skeleton.  Alternatively, if you modify or redistribute
-the parser skeleton itself, you may (at your option) remove this
-special exception, which will cause the skeleton and the resulting
-Bison output files to be licensed under the GNU General Public
-License without this special exception.
-
-This special exception was added by the Free Software Foundation in
-version 2.2 of Bison.
-
-> GFDL 1.3
-
-gmp-6.1.2.tar.xz\gmp-6.1.2.tar\gmp-6.1.2\doc\gmp.info
-
-Copyright 1991, 1993-2016 Free Software Foundation, Inc.
-
-Permission is granted to copy, distribute and/or modify this document
-under the terms of the GNU Free Documentation License, Version 1.3 or
-any later version published by the Free Software Foundation; with no
-Invariant Sections, with the Front-Cover Texts being "A GNU Manual", and
-with the Back-Cover Texts being "You have freedom to copy and modify
-this GNU Manual, like GNU software".  A copy of the license is included
-in *note GNU Free Documentation License::.
-
-> GPL2.0
-
-gmp-6.1.2.tar.xz\gmp-6.1.2.tar\gmp-6.1.2\mini-gmp\tests\run-tests
-
-Copyright (C) 2000-2002, 2004, 2005, 2011, 2012, 2016  Niels Möller
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along
-with this program; if not, write to the Free Software Foundation, Inc.,
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-> MIT Style
-
-gmp-6.1.2.tar.xz\gmp-6.1.2.tar\gmp-6.1.2\aclocal.m4
-
-Copyright (C) 1996-2014 Free Software Foundation, Inc.
-
-This file is free software; the Free Software Foundation
-gives unlimited permission to copy and/or distribute it,
-with or without modifications, as long as this notice is preserved.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-PARTICULAR PURPOSE.
-
->>> mpfr-3.1.5-1.ph2
-
-Copyright 2000-2016 Free Software Foundation, Inc.
-Contributed by the AriC and Caramba projects, INRIA.
-
-This file is part of the GNU MPFR Library.
-
-The GNU MPFR 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 3 of the License, or (at your
-option) any later version.
-
-The GNU MPFR 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 the GNU MPFR Library; see the file COPYING.LESSER.  If not, see
-http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
-51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
-
-ADDITIONAL LICENSE INFORMATION:
-
-> GFDL 1.2
-
-mpfr-3.1.5.tar.xz\mpfr-3.1.5.tar\mpfr-3.1.5\doc\mpfr.info
-
-Copyright 1991, 1993-2016 Free Software Foundation, Inc.
-
-Permission is granted to copy, distribute and/or modify this document
-under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no
-Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
-Texts.  A copy of the license is included in *note GNU Free
-Documentation License.
-
-
-> GPL 3.0
-
-mpfr-3.1.5.tar.xz\mpfr-3.1.5.tar\mpfr-3.1.5\COPYING
-
-LICENSE: GPL 3.0
-
->>> nettle-3.3-1.ph2
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 3.0 LICENSE.  PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE LGPL 3.0 LICENSE.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-Copyright (C) 2014 Niels Möller
-
-This file is part of GNU Nettle.
-
-GNU Nettle is free software: you can redistribute it and/or
-modify it under the terms of either:
-
-* the GNU Lesser General Public License as published by the Free
-Software Foundation; either version 3 of the License, or (at your
-option) any later version.
-
-or
-
-* the GNU General Public License as published by the Free
-Software Foundation; either version 2 of the License, or (at your
-option) any later version.
-
-or both in parallel, as here.
-
-GNU Nettle is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-General Public License for more details.
-
-You should have received copies of the GNU General Public License and
-the GNU Lesser General Public License along with this program.  If
-not, see http://www.gnu.org/licenses/.
-
-ADDITIONAL LICENSE INFORMATION:
-
-> Public Domain
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\cast128_sboxes.h
-
-CAST-128 in C
-Written by Steve Reid 
-100% Public Domain - no warranty
-Released 1997.10.11
-
-> LGPL 2.0
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\descore.README
-
-Copyright (C) 1992  Dana L. How
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU Library General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301  USA.
-
-> GPL 2.0
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\twofishdata.c
-
-Copyright (C) 1999 Ruud de Rooij 
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-02111-1301  USA.
-
-> LGPL 2.1
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\getopt.c
-
-Getopt for GNU.
-NOTE: getopt is part of the C library, so if you don't know what
-"Keep this file name-space clean" means, talk to drepper@gnu.org
-before changing it!
-Copyright (C) 1987-2014 Free Software Foundation, Inc.
-This file is part of the GNU C Library.
-
-The GNU C Library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-The GNU C Library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with the GNU C Library; if not, see
-.
-
-> MIT
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\gosthash94.c
-
-Copyright: 2009-2012 Aleksey Kravchenko 
-
-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.
-
-> MIT-Style
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\md2.c
-
-This code originates from the Python Cryptography Toolkit, version 1.0.1.
-Further hacked by Andreas Sigfridsson and Niels Möller. Original license:
-
-Distribute and use freely; there are no restrictions on further
-dissemination and usage except those imposed by the laws of your
-country of residence.  This software is provided "as is" without
-warranty of fitness for use or suitability for any purpose, express
-or implied. Use at your own risk or not at all.
-
-Incorporating the code into commercial products is permitted; you do
-not have to make source available or contribute your changes back
-(though that would be nice).
-
-> GPL 3.0 with Special Exception
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\texinfo.tex
-
-Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
-1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-2007, 2008, 2009 Free Software Foundation, Inc.
-
-This texinfo.tex file is free software: you can redistribute it and/or
-modify it under the terms of the GNU General Public License as
-published by the Free Software Foundation, either version 3 of the
-License, or (at your option) any later version.
-
-This texinfo.tex file is distributed in the hope that it will be
-useful, but WITHOUT ANY WARRANTY; without even the implied warranty
-of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see .
-
-As a special exception, when this file is read by TeX when processing
-a Texinfo source document, you may use the result without
-restriction.  (This has been our intent since Texinfo was invented.)
-
-Please try the latest version of texinfo.tex before submitting bug
-reports; you can get the latest version from:
-http://www.gnu.org/software/texinfo/ (the Texinfo home page), or
-ftp://tug.org/tex/texinfo.tex
-(and all CTAN mirrors, see http://www.ctan.org).
-The texinfo.tex in any given distribution could well be out
-of date, so if that's what you're using, please check.
-
-Send bug reports to bug-texinfo@gnu.org.  Please include including a
-complete document in each bug report with which we can reproduce the
-problem.  Patches are, of course, greatly appreciated.
-
-To process a Texinfo manual with TeX, it's most reliable to use the
-texi2dvi shell script that comes with the distribution.  For a simple
-manual foo.texi, however, you can get away with this:
-tex foo.texi
-texindex foo.??
-tex foo.texi
-tex foo.texi
-dvips foo.dvi -o  # or whatever; this makes foo.ps.
-The extra TeX runs get the cross-reference information correct.
-Sometimes one run after texindex suffices, and sometimes you need more
-than two; texi2dvi does it as many times as necessary.
-
-It is possible to adapt texinfo.tex for other languages, to some
-extent.  You can get the existing language-specific files from the
-full Texinfo distribution.
-
-The GNU Texinfo home page is http://www.gnu.org/software/texinfo.
-
-> GPL 3.0
-
-nettle-3.3.tar.gz\nettle-3.3.tar\nettle-3.3\COPYINGv3
-
-LICENSE: GPL 3.0
-
---------------- SECTION 8: GNU Library General Public License, V2.0 ----------
-
-GNU Library General Public License, V2.0 is applicable to the following component(s).
-
-
->>> glib-2.52.1-3.ph2
-
-Copyright © 2015 Canonical Limited
-
-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 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, see .
-
-ADDITIONAL LICENSE INFORMATION:
-
-> Public Domain
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\build\win32\dirent\dirent.h
-
-This file has no copyright assigned and is placed in the Public Domain.
-This file is a part of the mingw-runtime package.
-No warranty is given; refer to the file DISCLAIMER within the package.
-
-> LGPL 3.0
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\docs\reference\glib\html\glib-resources.html
-
-If you develop a bugfix or enhancement for GLib, please file that in Bugzilla as well. Bugzilla allows you to attach files; please attach a patch generated by the utility, using the option to make the patch more readable. All patches must be offered under the terms of the GNU LGPL license, so be sure you are authorized to give us the patch under those terms.
-
-> MIT
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\gio\kqueue\kqueue-sub.h
-
-Copyright (c) 2011, 2012 Dmitry Matveev 
-
-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.
-
-> LGPL 2.0
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\gio\xdgmime\xdgmimeparent.c
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.0.  PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE LGPL 2.0.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-Copyright (C) 2004  Red Hat, Inc.
-Copyright (C) 2004  Matthias Clasen 
-
-Licensed under the Academic Free License version 2.0
-Or under the following terms:
-
-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 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, see .
-
-> GPL 2.0
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\glib\gen-unicode-tables.pl
-
-Copyright (C) 1998, 1999 Tom Tromey
-Copyright (C) 2001 Red Hat Software
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, see .
-
-> LGPL 2.1
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\gio\win32\winhttp.h
-
-Copyright (C) 2007 Francois Gouget
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
-
-> BSD-3 CLAUSE
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\glib\pcre\pcre.h
-
-Copyright (c) 1997-2012 University of Cambridge
------------------------------------------------------------------------------
-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 University of Cambridge nor the names of its
-contributors may be used to endorse or promote products derived from
-this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-> BSD-4
-
-glib-2.52.1.tar.xz\glib-2.52.1.tar\glib-2.52.1\glib\valgrind.h
-
-   Notice that the following BSD-style license applies to this one
-   file (valgrind.h) only.  The rest of Valgrind is licensed under the
-   terms of the GNU General Public License, version 2, unless
-   otherwise indicated.  See the COPYING file in the source
-   distribution for details.
----------------------------------------------------------------
-   This file is part of Valgrind, a dynamic binary instrumentation
-   framework.
-
-   Copyright (C) 2000-2013 Julian Seward.  All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions
-   are met:
-
-   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.
-----------------------------------------------------------------
-   Notice that the above BSD-style license applies to this one file
-   (valgrind.h) only.  The entire rest of Valgrind is licensed under
-   the terms of the GNU General Public License, version 2.  See the
-   COPYING file in the source distribution for details.
-
---------------- SECTION 9: Mozilla Public License, V2.0 ----------
-
-Mozilla Public License, V2.0 is applicable to the following component(s).
-
-
->>> ca-certificates-20180919-1.ph2
-
-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/.
-
->>> nspr-4.15-1.ph2
-
-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/.
-
-ADDITIONAL LICENSE INFORMATION:
-
-> MPL 2.0
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MPL 2.0.  PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE MPL 2.0.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-
-nspr-4.15.tar.gz\..\stage\v4.15\src\nspr-4.15.tar\nspr-4.15\nspr\pkg\linux\sun-nspr.spec
-
-Under "MPL/GPL" license.
-
->BEER-WARE LICENSE
-
-nspr-4.15.tar.gz\..\stage\v4.15\src\nspr-4.15.tar\nspr-4.15\nspr\pr\src\malloc\prmalloc.c
-
-"THE BEER-WARE LICENSE" (Revision 42):
- wrote this file.  As long as you retain this notice you
-can do whatever you want with this stuff. If we meet some day, and you think
-this stuff is worth it, you can buy me a beer in return.   Poul-Henning
-
->BSD-3
-
-nspr-4.15.tar.gz\..\stage\v4.15\src\nspr-4.15.tar\nspr-4.15\nspr\pr\src\misc\prcountr.c
-
-Copyright (c) 1983, 1990, 1993
-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.
-4. 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.
-
-
->MIT
-
-
-nspr-4.15.tar.gz\..\stage\v4.15\src\nspr-4.15.tar\nspr-4.15\nspr\pr\src\misc\prcountr.c
-
-Portions Copyright (c) 1993 by Digital Equipment Corporation.
-
-Permission to use, copy, modify, and distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies, and that
-the name of Digital Equipment Corporation not be used in advertising or
-publicity pertaining to distribution of the document or software without
-specific, written prior permission.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
-WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
-CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
-DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
-PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
-ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
-SOFTWARE.
-
->>> nss-3.31.1-1.ph2
-
-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/.
-
-ADDITIONAL LICENSE INFORMATION:
-
-> BSD-2
-
-nss-3.31.1.tar.gz\..\stage\NSS_3_31_1_RTM\src\nss-3.31.1.tar\nss-3.31.1\nss\cmd\libpkix\pkix_pl\module\test_socket.c
-
-Test Socket Type
-
-Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistribution of source code must retain the above copyright notice,
-this list of conditions and the following disclaimer.
-
-2. Redistribution in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-
-Neither the name of Sun Microsystems, Inc. or the names of contributors may
-be used to endorse or promote products derived from this software without
-specific prior written permission.
-
-This software is provided "AS IS," without a warranty of any kind. ALL
-EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
-ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
-OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN")
-AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
-AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
-DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
-REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
-INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
-OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
-EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-You acknowledge that this software is not designed or intended for use in
-the design, construction, operation or maintenance of any nuclear facility.
-
-
-> MIT
-
-nss-3.31.1.tar.gz\..\stage\NSS_3_31_1_RTM\src\nss-3.31.1.tar\nss-3.31.1\nss\coreconf\mkdepend\def.h
-
-Copyright (c) 1993, 1994, 1998 The Open Group.
-
-Permission to use, copy, modify, distribute, and sell this software and its
-documentation for any purpose is hereby granted without fee, provided that
-the above copyright notice appear in all copies and that both that
-copyright notice and this permission notice appear in supporting
-documentation.
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
-OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-> BSD-3
-
-nss-3.31.1.tar.gz\..\stage\NSS_3_31_1_RTM\src\nss-3.31.1.tar\nss-3.31.1\nss\gtests\google_test\gtest\include\gtest\internal\gtest-death-test-internal.h
-
-Copyright 2005, Google Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
-Redistributions in binary form must reproduce the above
-copyright notice, this list of conditions and the following disclaimer
-in the documentation and/or other materials provided with the
-distribution.
-Neither the name of Google Inc. nor the names of its
-contributors may be used to endorse or promote products derived from
-this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
->Public Domain
-
-nss-3.31.1.tar.gz\..\stage\NSS_3_31_1_RTM\src\nss-3.31.1.tar\nss-3.31.1\nss\lib\dbm\src\dirent.h
-
-A public domain implementation of BSD directory routines for
-MS-DOS.  Written by Michael Rendell ({uunet,utai}michael@garfield),
-August 1897
-
-
-> MIT- Style
-
-nss-3.31.1.tar.gz\..\stage\NSS_3_31_1_RTM\src\nss-3.31.1.tar\nss-3.31.1\nss\lib\jar\jzlib.h
-
-Copyright (C) 1995-1996 Jean-loup Gailly and Mark Adler
-
-This software is provided 'as-is', without any express or implied
-warranty.  In no event will the authors be held liable for any damages
-arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-1. The origin of this software must not be misrepresented; you must not
-claim that you wrote the original software. If you use this software
-in a product, an acknowledgment in the product documentation would be
-appreciated but is not required.
-2. Altered source versions must be plainly marked as such, and must not be
-misrepresented as being the original software.
-3. This notice may not be removed or altered from any source distribution.
-
-Jean-loup Gailly        Mark Adler
-gzip@prep.ai.mit.edu    madler@alumni.caltech.edu
-
-
->MPL 2.0
-
-[PLEASE NOTE:  VMWARE, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MPL 2.0.  PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE MPL 2.0.  THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
-
-
-nss-3.31.1.tar.gz\..\stage\NSS_3_31_1_RTM\src\nss-3.31.1.tar\nss-3.31.1\nss\pkg\linux\sun-nss.spec
-
-Under "MPL/GPL" license.
-
-=============== APPENDIX. Standard License Files ============== 
-
-
-
---------------- SECTION 1: Apache License, V2.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 
-
-
-
---------------- SECTION 2: GNU General Public License, V1.0 -----------
-
-		    GNU GENERAL PUBLIC LICENSE
-		     Version 1, February 1989
-
- Copyright (C) 1989 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-			    Preamble
-
-  The license agreements of most software companies try to keep users
-at the mercy of those companies.  By contrast, our General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  The
-General Public License applies to the Free Software Foundation's
-software and to any other program whose authors commit to using it.
-You can use it for your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Specifically, the General Public License is designed to make
-sure that you have the freedom to give away or sell copies of free
-software, that you receive source code or can get it if you want it,
-that you can change the software or use pieces of it in new free
-programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of a such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must tell them their rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-		    GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License Agreement applies to any program or other work which
-contains a notice placed by the copyright holder saying it may be
-distributed under the terms of this General Public License.  The
-"Program", below, refers to any such program or work, and a "work based
-on the Program" means either the Program or any work containing the
-Program or a portion of it, either verbatim or with modifications.  Each
-licensee is addressed as "you".
-
-  1. You may copy and distribute verbatim copies of the Program's source
-code as you receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice and
-disclaimer of warranty; keep intact all the notices that refer to this
-General Public License and to the absence of any warranty; and give any
-other recipients of the Program a copy of this General Public License
-along with the Program.  You may charge a fee for the physical act of
-transferring a copy.
-
-  2. You may modify your copy or copies of the Program or any portion of
-it, and copy and distribute such modifications under the terms of Paragraph
-1 above, provided that you also do the following:
-
-    a) cause the modified files to carry prominent notices stating that
-    you changed the files and the date of any change; and
-
-    b) cause the whole of any work that you distribute or publish, that
-    in whole or in part contains the Program or any part thereof, either
-    with or without modifications, to be licensed at no charge to all
-    third parties under the terms of this General Public License (except
-    that you may choose to grant warranty protection to some or all
-    third parties, at your option).
-
-    c) If the modified program normally reads commands interactively when
-    run, you must cause it, when started running for such interactive use
-    in the simplest and most usual way, to print or display an
-    announcement including an appropriate copyright notice and a notice
-    that there is no warranty (or else, saying that you provide a
-    warranty) and that users may redistribute the program under these
-    conditions, and telling the user how to view a copy of this General
-    Public License.
-
-    d) You may charge a fee for the physical act of transferring a
-    copy, and you may at your option offer warranty protection in
-    exchange for a fee.
-
-Mere aggregation of another independent work with the Program (or its
-derivative) on a volume of a storage or distribution medium does not bring
-the other work under the scope of these terms.
-
-  3. You may copy and distribute the Program (or a portion or derivative of
-it, under Paragraph 2) in object code or executable form under the terms of
-Paragraphs 1 and 2 above provided that you also do one of the following:
-
-    a) accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of
-    Paragraphs 1 and 2 above; or,
-
-    b) accompany it with a written offer, valid for at least three
-    years, to give any third party free (except for a nominal charge
-    for the cost of distribution) a complete machine-readable copy of the
-    corresponding source code, to be distributed under the terms of
-    Paragraphs 1 and 2 above; or,
-
-    c) accompany it with the information you received as to where the
-    corresponding source code may be obtained.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form alone.)
-
-Source code for a work means the preferred form of the work for making
-modifications to it.  For an executable file, complete source code means
-all the source code for all modules it contains; but, as a special
-exception, it need not include source code for modules which are standard
-libraries that accompany the operating system on which the executable
-file runs, or for standard header files or definitions files that
-accompany that operating system.
-
-  4. You may not copy, modify, sublicense, distribute or transfer the
-Program except as expressly provided under this General Public License.
-Any attempt otherwise to copy, modify, sublicense, distribute or transfer
-the Program is void, and will automatically terminate your rights to use
-the Program under this License.  However, parties who have received
-copies, or rights to use copies, from you under this General Public
-License will not have their licenses terminated so long as such parties
-remain in full compliance.
-
-  5. By copying, distributing or modifying the Program (or any work based
-on the Program) you indicate your acceptance of this license to do so,
-and all its terms and conditions.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the original
-licensor to copy, distribute or modify the Program subject to these
-terms and conditions.  You may not impose any further restrictions on the
-recipients' exercise of the rights granted herein.
-
-  7. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of the license which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-the license, you may choose any version ever published by the Free Software
-Foundation.
-
-  8. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-			    NO WARRANTY
-
-  9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-	Appendix: How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to humanity, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these
-terms.
-
-  To do so, attach the following notices to the program.  It is safest to
-attach them to the start of each source file to most effectively convey
-the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    
-    Copyright (C) 19yy  
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 1, or (at your option)
-    any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) 19xx name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the
-appropriate parts of the General Public License.  Of course, the
-commands you use may be called something other than `show w' and `show
-c'; they could even be mouse-clicks or menu items--whatever suits your
-program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary.  Here a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the
-  program `Gnomovision' (a program to direct compilers to make passes
-  at assemblers) written by James Hacker.
-
-  , 1 April 1989
-  Ty Coon, President of Vice
-
-That's all there is to it!
-
-
---------------- SECTION 3: GNU General Public License, V2.0 -----------
-
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-		    GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-  2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections
-    1 and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable.  However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-  5. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded.  In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-			    NO WARRANTY
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-	    How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    
-    Copyright (C)   
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License along
-    with this program; if not, write to the Free Software Foundation, Inc.,
-    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) year name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
-  `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
-  , 1 April 1989
-  Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs.  If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.
-
-
---------------- SECTION 4: GNU General Public License, V3.0 -----------
-
-                    GNU GENERAL PUBLIC LICENSE
-                       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. 
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-                            Preamble
-
-  The GNU General Public License is a free, copyleft license for
-software and other kinds of works.
-
-  The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works.  By contrast,
-the GNU General Public License is intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.  We, the Free Software Foundation, use the
-GNU General Public License for most of our software; it applies also to
-any other work released this way by its authors.  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
-  To protect your rights, we need to prevent others from denying you
-these rights or asking you to surrender the rights.  Therefore, you have
-certain responsibilities if you distribute copies of the software, or if
-you modify it: responsibilities to respect the freedom of others.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must pass on to the recipients the same
-freedoms that you received.  You must make sure that they, too, receive
-or can get the source code.  And you must show them these terms so they
-know their rights.
-
-  Developers that use the GNU GPL protect your rights with two steps:
-(1) assert copyright on the software, and (2) offer you this License
-giving you legal permission to copy, distribute and/or modify it.
-
-  For the developers' and authors' protection, the GPL clearly explains
-that there is no warranty for this free software.  For both users' and
-authors' sake, the GPL requires that modified versions be marked as
-changed, so that their problems will not be attributed erroneously to
-authors of previous versions.
-
-  Some devices are designed to deny users access to install or run
-modified versions of the software inside them, although the manufacturer
-can do so.  This is fundamentally incompatible with the aim of
-protecting users' freedom to change the software.  The systematic
-pattern of such abuse occurs in the area of products for individuals to
-use, which is precisely where it is most unacceptable.  Therefore, we
-have designed this version of the GPL to prohibit the practice for those
-products.  If such problems arise substantially in other domains, we
-stand ready to extend this provision to those domains in future versions
-of the GPL, as needed to protect the freedom of users.
-
-  Finally, every program is threatened constantly by software patents.
-States should not allow patents to restrict development and use of
-software on general-purpose computers, but in those that do, we wish to
-avoid the special danger that patents applied to a free program could
-make it effectively proprietary.  To prevent this, the GPL assures that
-patents cannot be used to render the program non-free.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-                       TERMS AND CONDITIONS
-
-  0. Definitions.
-
-  "This License" refers to version 3 of the GNU General Public License.
-
-  "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
-  "The Program" refers to any copyrightable work licensed under this
-License.  Each licensee is addressed as "you".  "Licensees" and
-"recipients" may be individuals or organizations.
-
-  To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy.  The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
-  A "covered work" means either the unmodified Program or a work based
-on the Program.
-
-  To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy.  Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
-  To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies.  Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
-  An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License.  If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
-  1. Source Code.
-
-  The "source code" for a work means the preferred form of the work
-for making modifications to it.  "Object code" means any non-source
-form of a work.
-
-  A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
-  The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form.  A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
-  The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities.  However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work.  For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
-  The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
-  The Corresponding Source for a work in source code form is that
-same work.
-
-  2. Basic Permissions.
-
-  All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met.  This License explicitly affirms your unlimited
-permission to run the unmodified Program.  The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work.  This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
-  You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force.  You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright.  Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
-  Conveying under any other circumstances is permitted solely under
-the conditions stated below.  Sublicensing is not allowed; section 10
-makes it unnecessary.
-
-  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
-  No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
-  When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
-  4. Conveying Verbatim Copies.
-
-  You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
-  You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
-  5. Conveying Modified Source Versions.
-
-  You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
-    a) The work must carry prominent notices stating that you modified
-    it, and giving a relevant date.
-
-    b) The work must carry prominent notices stating that it is
-    released under this License and any conditions added under section
-    7.  This requirement modifies the requirement in section 4 to
-    "keep intact all notices".
-
-    c) You must license the entire work, as a whole, under this
-    License to anyone who comes into possession of a copy.  This
-    License will therefore apply, along with any applicable section 7
-    additional terms, to the whole of the work, and all its parts,
-    regardless of how they are packaged.  This License gives no
-    permission to license the work in any other way, but it does not
-    invalidate such permission if you have separately received it.
-
-    d) If the work has interactive user interfaces, each must display
-    Appropriate Legal Notices; however, if the Program has interactive
-    interfaces that do not display Appropriate Legal Notices, your
-    work need not make them do so.
-
-  A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit.  Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
-  6. Conveying Non-Source Forms.
-
-  You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
-    a) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by the
-    Corresponding Source fixed on a durable physical medium
-    customarily used for software interchange.
-
-    b) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by a
-    written offer, valid for at least three years and valid for as
-    long as you offer spare parts or customer support for that product
-    model, to give anyone who possesses the object code either (1) a
-    copy of the Corresponding Source for all the software in the
-    product that is covered by this License, on a durable physical
-    medium customarily used for software interchange, for a price no
-    more than your reasonable cost of physically performing this
-    conveying of source, or (2) access to copy the
-    Corresponding Source from a network server at no charge.
-
-    c) Convey individual copies of the object code with a copy of the
-    written offer to provide the Corresponding Source.  This
-    alternative is allowed only occasionally and noncommercially, and
-    only if you received the object code with such an offer, in accord
-    with subsection 6b.
-
-    d) Convey the object code by offering access from a designated
-    place (gratis or for a charge), and offer equivalent access to the
-    Corresponding Source in the same way through the same place at no
-    further charge.  You need not require recipients to copy the
-    Corresponding Source along with the object code.  If the place to
-    copy the object code is a network server, the Corresponding Source
-    may be on a different server (operated by you or a third party)
-    that supports equivalent copying facilities, provided you maintain
-    clear directions next to the object code saying where to find the
-    Corresponding Source.  Regardless of what server hosts the
-    Corresponding Source, you remain obligated to ensure that it is
-    available for as long as needed to satisfy these requirements.
-
-    e) Convey the object code using peer-to-peer transmission, provided
-    you inform other peers where the object code and Corresponding
-    Source of the work are being offered to the general public at no
-    charge under subsection 6d.
-
-  A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
-  A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling.  In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage.  For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product.  A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
-  "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source.  The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
-  If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information.  But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
-  The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed.  Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
-  Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
-  7. Additional Terms.
-
-  "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law.  If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
-  When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it.  (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.)  You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
-  Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
-    a) Disclaiming warranty or limiting liability differently from the
-    terms of sections 15 and 16 of this License; or
-
-    b) Requiring preservation of specified reasonable legal notices or
-    author attributions in that material or in the Appropriate Legal
-    Notices displayed by works containing it; or
-
-    c) Prohibiting misrepresentation of the origin of that material, or
-    requiring that modified versions of such material be marked in
-    reasonable ways as different from the original version; or
-
-    d) Limiting the use for publicity purposes of names of licensors or
-    authors of the material; or
-
-    e) Declining to grant rights under trademark law for use of some
-    trade names, trademarks, or service marks; or
-
-    f) Requiring indemnification of licensors and authors of that
-    material by anyone who conveys the material (or modified versions of
-    it) with contractual assumptions of liability to the recipient, for
-    any liability that these contractual assumptions directly impose on
-    those licensors and authors.
-
-  All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10.  If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term.  If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
-  If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
-  Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
-  8. Termination.
-
-  You may not propagate or modify a covered work except as expressly
-provided under this License.  Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
-  However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
-  Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
-  Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License.  If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
-  9. Acceptance Not Required for Having Copies.
-
-  You are not required to accept this License in order to receive or
-run a copy of the Program.  Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance.  However,
-nothing other than this License grants you permission to propagate or
-modify any covered work.  These actions infringe copyright if you do
-not accept this License.  Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
-  10. Automatic Licensing of Downstream Recipients.
-
-  Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License.  You are not responsible
-for enforcing compliance by third parties with this License.
-
-  An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations.  If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
-  You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License.  For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
-  11. Patents.
-
-  A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based.  The
-work thus licensed is called the contributor's "contributor version".
-
-  A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version.  For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
-  Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
-  In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement).  To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
-  If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients.  "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
-  If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
-  A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License.  You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
-  Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
-  12. No Surrender of Others' Freedom.
-
-  If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all.  For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
-  13. Use with the GNU Affero General Public License.
-
-  Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU Affero General Public License into a single
-combined work, and to convey the resulting work.  The terms of this
-License will continue to apply to the part which is the covered work,
-but the special requirements of the GNU Affero General Public License,
-section 13, concerning interaction through a network will apply to the
-combination as such.
-
-  14. Revised Versions of this License.
-
-  The Free Software Foundation may publish revised and/or new versions of
-the GNU General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-  Each version is given a distinguishing version number.  If the
-Program specifies that a certain numbered version of the GNU General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation.  If the Program does not specify a version number of the
-GNU General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
-  If the Program specifies that a proxy can decide which future
-versions of the GNU General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
-  Later license versions may give you additional or different
-permissions.  However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
-  15. Disclaimer of Warranty.
-
-  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. Limitation of Liability.
-
-  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
-  17. Interpretation of Sections 15 and 16.
-
-  If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
-                     END OF TERMS AND CONDITIONS
-
-            How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    
-    Copyright (C)   
-
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
-  If the program does terminal interaction, make it output a short
-notice like this when it starts in an interactive mode:
-
-      Copyright (C)   
-    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, your program's commands
-might be different; for a GUI interface, you would use an "about box".
-
-  You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU GPL, see
-.
-
-  The GNU General Public License does not permit incorporating your program
-into proprietary programs.  If your program is a subroutine library, you
-may consider it more useful to permit linking proprietary applications with
-the library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.  But first, please read
-.
-
-
---------------- SECTION 5: GNU Library General Public License, V2.0 -----------
-
-		  GNU LIBRARY GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1991 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the library GPL.  It is
- numbered 2 because it goes with version 2 of the ordinary GPL.]
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Library General Public License, applies to some
-specially designated Free Software Foundation software, and to any
-other libraries whose authors decide to use it.  You can use it for
-your libraries, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if
-you distribute copies of the library, or if you modify it.
-
-  For example, if you distribute copies of the library, whether gratis
-or for a fee, you must give the recipients all the rights that we gave
-you.  You must make sure that they, too, receive or can get the source
-code.  If you link a program with the library, you must provide
-complete object files to the recipients so that they can relink them
-with the library, after making changes to the library and recompiling
-it.  And you must show them these terms so they know their rights.
-
-  Our method of protecting your rights has two steps: (1) copyright
-the library, and (2) offer you this license which gives you legal
-permission to copy, distribute and/or modify the library.
-
-  Also, for each distributor's protection, we want to make certain
-that everyone understands that there is no warranty for this free
-library.  If the library is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original
-version, so that any problems introduced by others will not reflect on
-the original authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that companies distributing free
-software will individually obtain patent licenses, thus in effect
-transforming the program into proprietary software.  To prevent this,
-we have made it clear that any patent must be licensed for everyone's
-free use or not licensed at all.
-
-  Most GNU software, including some libraries, is covered by the ordinary
-GNU General Public License, which was designed for utility programs.  This
-license, the GNU Library General Public License, applies to certain
-designated libraries.  This license is quite different from the ordinary
-one; be sure to read it in full, and don't assume that anything in it is
-the same as in the ordinary license.
-
-  The reason we have a separate public license for some libraries is that
-they blur the distinction we usually make between modifying or adding to a
-program and simply using it.  Linking a program with a library, without
-changing the library, is in some sense simply using the library, and is
-analogous to running a utility program or application program.  However, in
-a textual and legal sense, the linked executable is a combined work, a
-derivative of the original library, and the ordinary General Public License
-treats it as such.
-
-  Because of this blurred distinction, using the ordinary General
-Public License for libraries did not effectively promote software
-sharing, because most developers did not use the libraries.  We
-concluded that weaker conditions might promote sharing better.
-
-  However, unrestricted linking of non-free programs would deprive the
-users of those programs of all benefit from the free status of the
-libraries themselves.  This Library General Public License is intended to
-permit developers of non-free programs to use free libraries, while
-preserving your freedom as a user of such programs to change the free
-libraries that are incorporated in them.  (We have not seen how to achieve
-this as regards changes in header files, but we have achieved it as regards
-changes in the actual functions of the Library.)  The hope is that this
-will lead to faster development of free libraries.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.  Pay close attention to the difference between a
-"work based on the library" and a "work that uses the library".  The
-former contains code derived from the library, while the latter only
-works together with the library.
-
-  Note that it is possible for a library to be covered by the ordinary
-General Public License rather than by this special one.
-
-		  GNU LIBRARY GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License Agreement applies to any software library which
-contains a notice placed by the copyright holder or other authorized
-party saying it may be distributed under the terms of this Library
-General Public License (also called "this License").  Each licensee is
-addressed as "you".
-
-  A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application programs
-(which use some of those functions and data) to form executables.
-
-  The "Library", below, refers to any such software library or work
-which has been distributed under these terms.  A "work based on the
-Library" means either the Library or any derivative work under
-copyright law: that is to say, a work containing the Library or a
-portion of it, either verbatim or with modifications and/or translated
-straightforwardly into another language.  (Hereinafter, translation is
-included without limitation in the term "modification".)
-
-  "Source code" for a work means the preferred form of the work for
-making modifications to it.  For a library, complete source code means
-all the source code for all modules it contains, plus any associated
-interface definition files, plus the scripts used to control compilation
-and installation of the library.
-
-  Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running a program using the Library is not restricted, and output from
-such a program is covered only if its contents constitute a work based
-on the Library (independent of the use of the Library in a tool for
-writing it).  Whether that is true depends on what the Library does
-and what the program that uses the Library does.
-  
-  1. You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided that
-you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep intact
-all the notices that refer to this License and to the absence of any
-warranty; and distribute a copy of this License along with the
-Library.
-
-  You may charge a fee for the physical act of transferring a copy,
-and you may at your option offer warranty protection in exchange for a
-fee.
-
-  2. You may modify your copy or copies of the Library or any portion
-of it, thus forming a work based on the Library, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) The modified work must itself be a software library.
-
-    b) You must cause the files modified to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    c) You must cause the whole of the work to be licensed at no
-    charge to all third parties under the terms of this License.
-
-    d) If a facility in the modified Library refers to a function or a
-    table of data to be supplied by an application program that uses
-    the facility, other than as an argument passed when the facility
-    is invoked, then you must make a good faith effort to ensure that,
-    in the event an application does not supply such function or
-    table, the facility still operates, and performs whatever part of
-    its purpose remains meaningful.
-
-    (For example, a function in a library to compute square roots has
-    a purpose that is entirely well-defined independent of the
-    application.  Therefore, Subsection 2d requires that any
-    application-supplied function or table used by this function must
-    be optional: if the application does not supply it, the square
-    root function must still compute square roots.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Library,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote
-it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Library.
-
-In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may opt to apply the terms of the ordinary GNU General Public
-License instead of this License to a given copy of the Library.  To do
-this, you must alter all the notices that refer to this License, so
-that they refer to the ordinary GNU General Public License, version 2,
-instead of to this License.  (If a newer version than version 2 of the
-ordinary GNU General Public License has appeared, then you can specify
-that version instead if you wish.)  Do not make any other change in
-these notices.
-
-  Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to all
-subsequent copies and derivative works made from that copy.
-
-  This option is useful when you wish to copy part of the code of
-the Library into a program that is not a library.
-
-  4. You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable form
-under the terms of Sections 1 and 2 above provided that you accompany
-it with the complete corresponding machine-readable source code, which
-must be distributed under the terms of Sections 1 and 2 above on a
-medium customarily used for software interchange.
-
-  If distribution of object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the
-source code from the same place satisfies the requirement to
-distribute the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  5. A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being compiled or
-linked with it, is called a "work that uses the Library".  Such a
-work, in isolation, is not a derivative work of the Library, and
-therefore falls outside the scope of this License.
-
-  However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library (because it
-contains portions of the Library), rather than a "work that uses the
-library".  The executable is therefore covered by this License.
-Section 6 states terms for distribution of such executables.
-
-  When a "work that uses the Library" uses material from a header file
-that is part of the Library, the object code for the work may be a
-derivative work of the Library even though the source code is not.
-Whether this is true is especially significant if the work can be
-linked without the Library, or if the work is itself a library.  The
-threshold for this to be true is not precisely defined by law.
-
-  If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small inline
-functions (ten lines or less in length), then the use of the object
-file is unrestricted, regardless of whether it is legally a derivative
-work.  (Executables containing this object code plus portions of the
-Library will still fall under Section 6.)
-
-  Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of Section 6.
-Any executables containing that work also fall under Section 6,
-whether or not they are linked directly with the Library itself.
-
-  6. As an exception to the Sections above, you may also compile or
-link a "work that uses the Library" with the Library to produce a
-work containing portions of the Library, and distribute that work
-under terms of your choice, provided that the terms permit
-modification of the work for the customer's own use and reverse
-engineering for debugging such modifications.
-
-  You must give prominent notice with each copy of the work that the
-Library is used in it and that the Library and its use are covered by
-this License.  You must supply a copy of this License.  If the work
-during execution displays copyright notices, you must include the
-copyright notice for the Library among them, as well as a reference
-directing the user to the copy of this License.  Also, you must do one
-of these things:
-
-    a) Accompany the work with the complete corresponding
-    machine-readable source code for the Library including whatever
-    changes were used in the work (which must be distributed under
-    Sections 1 and 2 above); and, if the work is an executable linked
-    with the Library, with the complete machine-readable "work that
-    uses the Library", as object code and/or source code, so that the
-    user can modify the Library and then relink to produce a modified
-    executable containing the modified Library.  (It is understood
-    that the user who changes the contents of definitions files in the
-    Library will not necessarily be able to recompile the application
-    to use the modified definitions.)
-
-    b) Accompany the work with a written offer, valid for at
-    least three years, to give the same user the materials
-    specified in Subsection 6a, above, for a charge no more
-    than the cost of performing this distribution.
-
-    c) If distribution of the work is made by offering access to copy
-    from a designated place, offer equivalent access to copy the above
-    specified materials from the same place.
-
-    d) Verify that the user has already received a copy of these
-    materials or that you have already sent this user a copy.
-
-  For an executable, the required form of the "work that uses the
-Library" must include any data and utility programs needed for
-reproducing the executable from it.  However, as a special exception,
-the source code distributed need not include anything that is normally
-distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies
-the executable.
-
-  It may happen that this requirement contradicts the license
-restrictions of other proprietary libraries that do not normally
-accompany the operating system.  Such a contradiction means you cannot
-use both them and the Library together in an executable that you
-distribute.
-
-  7. You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other library
-facilities not covered by this License, and distribute such a combined
-library, provided that the separate distribution of the work based on
-the Library and of the other library facilities is otherwise
-permitted, and provided that you do these two things:
-
-    a) Accompany the combined library with a copy of the same work
-    based on the Library, uncombined with any other library
-    facilities.  This must be distributed under the terms of the
-    Sections above.
-
-    b) Give prominent notice with the combined library of the fact
-    that part of it is a work based on the Library, and explaining
-    where to find the accompanying uncombined form of the same work.
-
-  8. You may not copy, modify, sublicense, link with, or distribute
-the Library except as expressly provided under this License.  Any
-attempt otherwise to copy, modify, sublicense, link with, or
-distribute the Library is void, and will automatically terminate your
-rights under this License.  However, parties who have received copies,
-or rights, from you under this License will not have their licenses
-terminated so long as such parties remain in full compliance.
-
-  9. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Library or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Library (or any work based on the
-Library), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Library or works based on it.
-
-  10. Each time you redistribute the Library (or any work based on the
-Library), the recipient automatically receives a license from the
-original licensor to copy, distribute, link with or modify the Library
-subject to these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  11. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Library at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Library.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply,
-and the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  12. If the distribution and/or use of the Library is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Library under this License may add
-an explicit geographical distribution limitation excluding those countries,
-so that distribution is permitted only in or among countries not thus
-excluded.  In such case, this License incorporates the limitation as if
-written in the body of this License.
-
-  13. The Free Software Foundation may publish revised and/or new
-versions of the Library General Public License from time to time.
-Such new versions will be similar in spirit to the present version,
-but may differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Library
-specifies a version number of this License which applies to it and
-"any later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation.  If the Library does not specify a
-license version number, you may choose any version ever published by
-the Free Software Foundation.
-
-  14. If you wish to incorporate parts of the Library into other free
-programs whose distribution conditions are incompatible with these,
-write to the author to ask for permission.  For software which is
-copyrighted by the Free Software Foundation, write to the Free
-Software Foundation; we sometimes make exceptions for this.  Our
-decision will be guided by the two goals of preserving the free status
-of all derivatives of our free software and of promoting the sharing
-and reuse of software generally.
-
-			    NO WARRANTY
-
-  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-           How to Apply These Terms to Your New Libraries
-
-  If you develop a new library, and you want it to be of the greatest
-possible use to the public, we recommend making it free software that
-everyone can redistribute and change.  You can do so by permitting
-redistribution under these terms (or, alternatively, under the terms of the
-ordinary General Public License).
-
-  To apply these terms, attach the following notices to the library.  It is
-safest to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    
-    Copyright (C)   
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Library General Public
-    License as published by the Free Software Foundation; either
-    version 2 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Library General Public License for more details.
-
-    You should have received a copy of the GNU Library General Public
-    License along with this library; if not, write to the Free
-    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the library, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the
-  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
-
-  , 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
-
-
-
---------------- SECTION 6: GNU Lesser General Public License, V2.1 -----------
-
-		  GNU LESSER GENERAL PUBLIC LICENSE
-		       Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the Lesser GPL.  It also counts
- as the successor of the GNU Library Public License, version 2, hence
- the version number 2.1.]
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Lesser General Public License, applies to some
-specially designated software packages--typically libraries--of the
-Free Software Foundation and other authors who decide to use it.  You
-can use it too, but we suggest you first think carefully about whether
-this license or the ordinary General Public License is the better
-strategy to use in any particular case, based on the explanations below.
-
-  When we speak of free software, we are referring to freedom of use,
-not price.  Our General Public Licenses are designed to make sure that
-you have the freedom to distribute copies of free software (and charge
-for this service if you wish); that you receive source code or can get
-it if you want it; that you can change the software and use pieces of
-it in new free programs; and that you are informed that you can do
-these things.
-
-  To protect your rights, we need to make restrictions that forbid
-distributors to deny you these rights or to ask you to surrender these
-rights.  These restrictions translate to certain responsibilities for
-you if you distribute copies of the library or if you modify it.
-
-  For example, if you distribute copies of the library, whether gratis
-or for a fee, you must give the recipients all the rights that we gave
-you.  You must make sure that they, too, receive or can get the source
-code.  If you link other code with the library, you must provide
-complete object files to the recipients, so that they can relink them
-with the library after making changes to the library and recompiling
-it.  And you must show them these terms so they know their rights.
-
-  We protect your rights with a two-step method: (1) we copyright the
-library, and (2) we offer you this license, which gives you legal
-permission to copy, distribute and/or modify the library.
-
-  To protect each distributor, we want to make it very clear that
-there is no warranty for the free library.  Also, if the library is
-modified by someone else and passed on, the recipients should know
-that what they have is not the original version, so that the original
-author's reputation will not be affected by problems that might be
-introduced by others.
-
-  Finally, software patents pose a constant threat to the existence of
-any free program.  We wish to make sure that a company cannot
-effectively restrict the users of a free program by obtaining a
-restrictive license from a patent holder.  Therefore, we insist that
-any patent license obtained for a version of the library must be
-consistent with the full freedom of use specified in this license.
-
-  Most GNU software, including some libraries, is covered by the
-ordinary GNU General Public License.  This license, the GNU Lesser
-General Public License, applies to certain designated libraries, and
-is quite different from the ordinary General Public License.  We use
-this license for certain libraries in order to permit linking those
-libraries into non-free programs.
-
-  When a program is linked with a library, whether statically or using
-a shared library, the combination of the two is legally speaking a
-combined work, a derivative of the original library.  The ordinary
-General Public License therefore permits such linking only if the
-entire combination fits its criteria of freedom.  The Lesser General
-Public License permits more lax criteria for linking other code with
-the library.
-
-  We call this license the "Lesser" General Public License because it
-does Less to protect the user's freedom than the ordinary General
-Public License.  It also provides other free software developers Less
-of an advantage over competing non-free programs.  These disadvantages
-are the reason we use the ordinary General Public License for many
-libraries.  However, the Lesser license provides advantages in certain
-special circumstances.
-
-  For example, on rare occasions, there may be a special need to
-encourage the widest possible use of a certain library, so that it becomes
-a de-facto standard.  To achieve this, non-free programs must be
-allowed to use the library.  A more frequent case is that a free
-library does the same job as widely used non-free libraries.  In this
-case, there is little to gain by limiting the free library to free
-software only, so we use the Lesser General Public License.
-
-  In other cases, permission to use a particular library in non-free
-programs enables a greater number of people to use a large body of
-free software.  For example, permission to use the GNU C Library in
-non-free programs enables many more people to use the whole GNU
-operating system, as well as its variant, the GNU/Linux operating
-system.
-
-  Although the Lesser General Public License is Less protective of the
-users' freedom, it does ensure that the user of a program that is
-linked with the Library has the freedom and the wherewithal to run
-that program using a modified version of the Library.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.  Pay close attention to the difference between a
-"work based on the library" and a "work that uses the library".  The
-former contains code derived from the library, whereas the latter must
-be combined with the library in order to run.
-
-		  GNU LESSER GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License Agreement applies to any software library or other
-program which contains a notice placed by the copyright holder or
-other authorized party saying it may be distributed under the terms of
-this Lesser General Public License (also called "this License").
-Each licensee is addressed as "you".
-
-  A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application programs
-(which use some of those functions and data) to form executables.
-
-  The "Library", below, refers to any such software library or work
-which has been distributed under these terms.  A "work based on the
-Library" means either the Library or any derivative work under
-copyright law: that is to say, a work containing the Library or a
-portion of it, either verbatim or with modifications and/or translated
-straightforwardly into another language.  (Hereinafter, translation is
-included without limitation in the term "modification".)
-
-  "Source code" for a work means the preferred form of the work for
-making modifications to it.  For a library, complete source code means
-all the source code for all modules it contains, plus any associated
-interface definition files, plus the scripts used to control compilation
-and installation of the library.
-
-  Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running a program using the Library is not restricted, and output from
-such a program is covered only if its contents constitute a work based
-on the Library (independent of the use of the Library in a tool for
-writing it).  Whether that is true depends on what the Library does
-and what the program that uses the Library does.
-
-  1. You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided that
-you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep intact
-all the notices that refer to this License and to the absence of any
-warranty; and distribute a copy of this License along with the
-Library.
-
-  You may charge a fee for the physical act of transferring a copy,
-and you may at your option offer warranty protection in exchange for a
-fee.
-
-  2. You may modify your copy or copies of the Library or any portion
-of it, thus forming a work based on the Library, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) The modified work must itself be a software library.
-
-    b) You must cause the files modified to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    c) You must cause the whole of the work to be licensed at no
-    charge to all third parties under the terms of this License.
-
-    d) If a facility in the modified Library refers to a function or a
-    table of data to be supplied by an application program that uses
-    the facility, other than as an argument passed when the facility
-    is invoked, then you must make a good faith effort to ensure that,
-    in the event an application does not supply such function or
-    table, the facility still operates, and performs whatever part of
-    its purpose remains meaningful.
-
-    (For example, a function in a library to compute square roots has
-    a purpose that is entirely well-defined independent of the
-    application.  Therefore, Subsection 2d requires that any
-    application-supplied function or table used by this function must
-    be optional: if the application does not supply it, the square
-    root function must still compute square roots.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Library,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote
-it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Library.
-
-In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may opt to apply the terms of the ordinary GNU General Public
-License instead of this License to a given copy of the Library.  To do
-this, you must alter all the notices that refer to this License, so
-that they refer to the ordinary GNU General Public License, version 2,
-instead of to this License.  (If a newer version than version 2 of the
-ordinary GNU General Public License has appeared, then you can specify
-that version instead if you wish.)  Do not make any other change in
-these notices.
-
-  Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to all
-subsequent copies and derivative works made from that copy.
-
-  This option is useful when you wish to copy part of the code of
-the Library into a program that is not a library.
-
-  4. You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable form
-under the terms of Sections 1 and 2 above provided that you accompany
-it with the complete corresponding machine-readable source code, which
-must be distributed under the terms of Sections 1 and 2 above on a
-medium customarily used for software interchange.
-
-  If distribution of object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the
-source code from the same place satisfies the requirement to
-distribute the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  5. A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being compiled or
-linked with it, is called a "work that uses the Library".  Such a
-work, in isolation, is not a derivative work of the Library, and
-therefore falls outside the scope of this License.
-
-  However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library (because it
-contains portions of the Library), rather than a "work that uses the
-library".  The executable is therefore covered by this License.
-Section 6 states terms for distribution of such executables.
-
-  When a "work that uses the Library" uses material from a header file
-that is part of the Library, the object code for the work may be a
-derivative work of the Library even though the source code is not.
-Whether this is true is especially significant if the work can be
-linked without the Library, or if the work is itself a library.  The
-threshold for this to be true is not precisely defined by law.
-
-  If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small inline
-functions (ten lines or less in length), then the use of the object
-file is unrestricted, regardless of whether it is legally a derivative
-work.  (Executables containing this object code plus portions of the
-Library will still fall under Section 6.)
-
-  Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of Section 6.
-Any executables containing that work also fall under Section 6,
-whether or not they are linked directly with the Library itself.
-
-  6. As an exception to the Sections above, you may also combine or
-link a "work that uses the Library" with the Library to produce a
-work containing portions of the Library, and distribute that work
-under terms of your choice, provided that the terms permit
-modification of the work for the customer's own use and reverse
-engineering for debugging such modifications.
-
-  You must give prominent notice with each copy of the work that the
-Library is used in it and that the Library and its use are covered by
-this License.  You must supply a copy of this License.  If the work
-during execution displays copyright notices, you must include the
-copyright notice for the Library among them, as well as a reference
-directing the user to the copy of this License.  Also, you must do one
-of these things:
-
-    a) Accompany the work with the complete corresponding
-    machine-readable source code for the Library including whatever
-    changes were used in the work (which must be distributed under
-    Sections 1 and 2 above); and, if the work is an executable linked
-    with the Library, with the complete machine-readable "work that
-    uses the Library", as object code and/or source code, so that the
-    user can modify the Library and then relink to produce a modified
-    executable containing the modified Library.  (It is understood
-    that the user who changes the contents of definitions files in the
-    Library will not necessarily be able to recompile the application
-    to use the modified definitions.)
-
-    b) Use a suitable shared library mechanism for linking with the
-    Library.  A suitable mechanism is one that (1) uses at run time a
-    copy of the library already present on the user's computer system,
-    rather than copying library functions into the executable, and (2)
-    will operate properly with a modified version of the library, if
-    the user installs one, as long as the modified version is
-    interface-compatible with the version that the work was made with.
-
-    c) Accompany the work with a written offer, valid for at
-    least three years, to give the same user the materials
-    specified in Subsection 6a, above, for a charge no more
-    than the cost of performing this distribution.
-
-    d) If distribution of the work is made by offering access to copy
-    from a designated place, offer equivalent access to copy the above
-    specified materials from the same place.
-
-    e) Verify that the user has already received a copy of these
-    materials or that you have already sent this user a copy.
-
-  For an executable, the required form of the "work that uses the
-Library" must include any data and utility programs needed for
-reproducing the executable from it.  However, as a special exception,
-the materials to be distributed need not include anything that is
-normally distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies
-the executable.
-
-  It may happen that this requirement contradicts the license
-restrictions of other proprietary libraries that do not normally
-accompany the operating system.  Such a contradiction means you cannot
-use both them and the Library together in an executable that you
-distribute.
-
-  7. You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other library
-facilities not covered by this License, and distribute such a combined
-library, provided that the separate distribution of the work based on
-the Library and of the other library facilities is otherwise
-permitted, and provided that you do these two things:
-
-    a) Accompany the combined library with a copy of the same work
-    based on the Library, uncombined with any other library
-    facilities.  This must be distributed under the terms of the
-    Sections above.
-
-    b) Give prominent notice with the combined library of the fact
-    that part of it is a work based on the Library, and explaining
-    where to find the accompanying uncombined form of the same work.
-
-  8. You may not copy, modify, sublicense, link with, or distribute
-the Library except as expressly provided under this License.  Any
-attempt otherwise to copy, modify, sublicense, link with, or
-distribute the Library is void, and will automatically terminate your
-rights under this License.  However, parties who have received copies,
-or rights, from you under this License will not have their licenses
-terminated so long as such parties remain in full compliance.
-
-  9. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Library or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Library (or any work based on the
-Library), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Library or works based on it.
-
-  10. Each time you redistribute the Library (or any work based on the
-Library), the recipient automatically receives a license from the
-original licensor to copy, distribute, link with or modify the Library
-subject to these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties with
-this License.
-
-  11. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Library at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Library.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply,
-and the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  12. If the distribution and/or use of the Library is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Library under this License may add
-an explicit geographical distribution limitation excluding those countries,
-so that distribution is permitted only in or among countries not thus
-excluded.  In such case, this License incorporates the limitation as if
-written in the body of this License.
-
-  13. The Free Software Foundation may publish revised and/or new
-versions of the Lesser General Public License from time to time.
-Such new versions will be similar in spirit to the present version,
-but may differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Library
-specifies a version number of this License which applies to it and
-"any later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation.  If the Library does not specify a
-license version number, you may choose any version ever published by
-the Free Software Foundation.
-
-  14. If you wish to incorporate parts of the Library into other free
-programs whose distribution conditions are incompatible with these,
-write to the author to ask for permission.  For software which is
-copyrighted by the Free Software Foundation, write to the Free
-Software Foundation; we sometimes make exceptions for this.  Our
-decision will be guided by the two goals of preserving the free status
-of all derivatives of our free software and of promoting the sharing
-and reuse of software generally.
-
-			    NO WARRANTY
-
-  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-           How to Apply These Terms to Your New Libraries
-
-  If you develop a new library, and you want it to be of the greatest
-possible use to the public, we recommend making it free software that
-everyone can redistribute and change.  You can do so by permitting
-redistribution under these terms (or, alternatively, under the terms of the
-ordinary General Public License).
-
-  To apply these terms, attach the following notices to the library.  It is
-safest to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    
-    Copyright (C)   
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Lesser General Public
-    License as published by the Free Software Foundation; either
-    version 2.1 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this library; if not, write to the Free Software
-    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the library, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the
-  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
-
-  , 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
-
-
-
-
---------------- SECTION 7: GNU Lesser General Public License, V3.0 -----------
-
-		   GNU LESSER GENERAL PUBLIC LICENSE
-                       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. 
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-
-  This version of the GNU Lesser General Public License incorporates
-the terms and conditions of version 3 of the GNU General Public
-License, supplemented by the additional permissions listed below.
-
-  0. Additional Definitions.
-
-  As used herein, "this License" refers to version 3 of the GNU Lesser
-General Public License, and the "GNU GPL" refers to version 3 of the GNU
-General Public License.
-
-  "The Library" refers to a covered work governed by this License,
-other than an Application or a Combined Work as defined below.
-
-  An "Application" is any work that makes use of an interface provided
-by the Library, but which is not otherwise based on the Library.
-Defining a subclass of a class defined by the Library is deemed a mode
-of using an interface provided by the Library.
-
-  A "Combined Work" is a work produced by combining or linking an
-Application with the Library.  The particular version of the Library
-with which the Combined Work was made is also called the "Linked
-Version".
-
-  The "Minimal Corresponding Source" for a Combined Work means the
-Corresponding Source for the Combined Work, excluding any source code
-for portions of the Combined Work that, considered in isolation, are
-based on the Application, and not on the Linked Version.
-
-  The "Corresponding Application Code" for a Combined Work means the
-object code and/or source code for the Application, including any data
-and utility programs needed for reproducing the Combined Work from the
-Application, but excluding the System Libraries of the Combined Work.
-
-  1. Exception to Section 3 of the GNU GPL.
-
-  You may convey a covered work under sections 3 and 4 of this License
-without being bound by section 3 of the GNU GPL.
-
-  2. Conveying Modified Versions.
-
-  If you modify a copy of the Library, and, in your modifications, a
-facility refers to a function or data to be supplied by an Application
-that uses the facility (other than as an argument passed when the
-facility is invoked), then you may convey a copy of the modified
-version:
-
-   a) under this License, provided that you make a good faith effort to
-   ensure that, in the event an Application does not supply the
-   function or data, the facility still operates, and performs
-   whatever part of its purpose remains meaningful, or
-
-   b) under the GNU GPL, with none of the additional permissions of
-   this License applicable to that copy.
-
-  3. Object Code Incorporating Material from Library Header Files.
-
-  The object code form of an Application may incorporate material from
-a header file that is part of the Library.  You may convey such object
-code under terms of your choice, provided that, if the incorporated
-material is not limited to numerical parameters, data structure
-layouts and accessors, or small macros, inline functions and templates
-(ten or fewer lines in length), you do both of the following:
-
-   a) Give prominent notice with each copy of the object code that the
-   Library is used in it and that the Library and its use are
-   covered by this License.
-
-   b) Accompany the object code with a copy of the GNU GPL and this license
-   document.
-
-  4. Combined Works.
-
-  You may convey a Combined Work under terms of your choice that,
-taken together, effectively do not restrict modification of the
-portions of the Library contained in the Combined Work and reverse
-engineering for debugging such modifications, if you also do each of
-the following:
-
-   a) Give prominent notice with each copy of the Combined Work that
-   the Library is used in it and that the Library and its use are
-   covered by this License.
-
-   b) Accompany the Combined Work with a copy of the GNU GPL and this license
-   document.
-
-   c) For a Combined Work that displays copyright notices during
-   execution, include the copyright notice for the Library among
-   these notices, as well as a reference directing the user to the
-   copies of the GNU GPL and this license document.
-
-   d) Do one of the following:
-
-       0) Convey the Minimal Corresponding Source under the terms of this
-       License, and the Corresponding Application Code in a form
-       suitable for, and under terms that permit, the user to
-       recombine or relink the Application with a modified version of
-       the Linked Version to produce a modified Combined Work, in the
-       manner specified by section 6 of the GNU GPL for conveying
-       Corresponding Source.
-
-       1) Use a suitable shared library mechanism for linking with the
-       Library.  A suitable mechanism is one that (a) uses at run time
-       a copy of the Library already present on the user's computer
-       system, and (b) will operate properly with a modified version
-       of the Library that is interface-compatible with the Linked
-       Version.
-
-   e) Provide Installation Information, but only if you would otherwise
-   be required to provide such information under section 6 of the
-   GNU GPL, and only to the extent that such information is
-   necessary to install and execute a modified version of the
-   Combined Work produced by recombining or relinking the
-   Application with a modified version of the Linked Version. (If
-   you use option 4d0, the Installation Information must accompany
-   the Minimal Corresponding Source and Corresponding Application
-   Code. If you use option 4d1, you must provide the Installation
-   Information in the manner specified by section 6 of the GNU GPL
-   for conveying Corresponding Source.)
-
-  5. Combined Libraries.
-
-  You may place library facilities that are a work based on the
-Library side by side in a single library together with other library
-facilities that are not Applications and are not covered by this
-License, and convey such a combined library under terms of your
-choice, if you do both of the following:
-
-   a) Accompany the combined library with a copy of the same work based
-   on the Library, uncombined with any other library facilities,
-   conveyed under the terms of this License.
-
-   b) Give prominent notice with the combined library that part of it
-   is a work based on the Library, and explaining where to find the
-   accompanying uncombined form of the same work.
-
-  6. Revised Versions of the GNU Lesser General Public License.
-
-  The Free Software Foundation may publish revised and/or new versions
-of the GNU Lesser General Public License from time to time. Such new
-versions will be similar in spirit to the present version, but may
-differ in detail to address new problems or concerns.
-
-  Each version is given a distinguishing version number. If the
-Library as you received it specifies that a certain numbered version
-of the GNU Lesser General Public License "or any later version"
-applies to it, you have the option of following the terms and
-conditions either of that published version or of any later version
-published by the Free Software Foundation. If the Library as you
-received it does not specify a version number of the GNU Lesser
-General Public License, you may choose any version of the GNU Lesser
-General Public License ever published by the Free Software Foundation.
-
-  If the Library as you received it specifies that a proxy can decide
-whether future versions of the GNU Lesser General Public License shall
-apply, that proxy's public statement of acceptance of any version is
-permanent authorization for you to choose that version for the
-Library.
-
-
---------------- SECTION 8: Mozilla Public License, V2.0 -----------
-
-Mozilla Public License
-Version 2.0
-
-1. Definitions
-
-1.1. “Contributor”
-means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software.
-
-1.2. “Contributor Version”
-means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution.
-
-1.3. “Contribution”
-means Covered Software of a particular Contributor.
-
-1.4. “Covered Software”
-means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof.
-
-1.5. “Incompatible With Secondary Licenses”
-means
-
-that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or
-
-that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License.
-
-1.6. “Executable Form”
-means any form of the work other than Source Code Form.
-
-1.7. “Larger Work”
-means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software.
-
-1.8. “License”
-means this document.
-
-1.9. “Licensable”
-means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License.
-
-1.10. “Modifications”
-means any of the following:
-
-any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or
-
-any new file in Source Code Form that contains any Covered Software.
-
-1.11. “Patent Claims” of a Contributor
-means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version.
-
-1.12. “Secondary License”
-means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses.
-
-1.13. “Source Code Form”
-means the form of the work preferred for making modifications.
-
-1.14. “You” (or “Your”)
-means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.
-
-2. License Grants and Conditions
-
-2.1. Grants
-
-Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:
-
-under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and
-
-under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.
-
-2.2. Effective Date
-
-The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.
-
-2.3. Limitations on Grant Scope
-
-The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:
-
-for any code that a Contributor has removed from Covered Software; or
-
-for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or
-
-under Patent Claims infringed by Covered Software in the absence of its Contributions.
-
-This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).
-
-2.4. Subsequent Licenses
-
-No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).
-
-2.5. Representation
-
-Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.
-
-2.6. Fair Use
-
-This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.
-
-2.7. Conditions
-
-Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.
-
-3. Responsibilities
-
-3.1. Distribution of Source Form
-
-All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form.
-
-3.2. Distribution of Executable Form
-
-If You distribute Covered Software in Executable Form then:
-
-such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and
-
-You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License.
-
-3.3. Distribution of a Larger Work
-
-You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).
-
-3.4. Notices
-
-You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.
-
-3.5. Application of Additional Terms
-
-You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction.
-
-4. Inability to Comply Due to Statute or Regulation
-
-If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.
-
-5. Termination
-
-5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice.
-
-5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.
-
-5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.
-
-6. Disclaimer of Warranty
-
-Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.
-
-7. Limitation of Liability
-
-Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.
-
-8. Litigation
-
-Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims.
-
-9. Miscellaneous
-
-This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor.
-
-10. Versions of the License
-
-10.1. New Versions
-
-Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.
-
-10.2. Effect of New Versions
-
-You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.
-
-10.3. Modified Versions
-
-If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).
-
-10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses
-
-If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.
-
-Exhibit A - Source Code Form License Notice
-
-This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.
-
-You may add additional accurate notices of copyright ownership.
-
-Exhibit B - “Incompatible With Secondary Licenses” Notice
-
-This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0.
-======================================================================
-
diff --git a/src/adminserver/api/base.go b/src/adminserver/api/base.go
deleted file mode 100644
index 94722a701..000000000
--- a/src/adminserver/api/base.go
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package api
-
-import (
-	"encoding/json"
-	"net/http"
-)
-
-func handleInternalServerError(w http.ResponseWriter) {
-	http.Error(w, http.StatusText(http.StatusInternalServerError),
-		http.StatusInternalServerError)
-}
-
-func handleBadRequestError(w http.ResponseWriter, error string) {
-	http.Error(w, error, http.StatusBadRequest)
-}
-
-func handleUnauthorized(w http.ResponseWriter) {
-	http.Error(w, http.StatusText(http.StatusUnauthorized),
-		http.StatusUnauthorized)
-}
-
-// response status code will be written automatically if there is an error
-func writeJSON(w http.ResponseWriter, v interface{}) error {
-	b, err := json.Marshal(v)
-	if err != nil {
-		handleInternalServerError(w)
-		return err
-	}
-
-	if _, err = w.Write(b); err != nil {
-		return err
-	}
-	return nil
-}
diff --git a/src/adminserver/api/base_test.go b/src/adminserver/api/base_test.go
deleted file mode 100644
index 626684d97..000000000
--- a/src/adminserver/api/base_test.go
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package api
-
-import (
-	"net/http"
-	"net/http/httptest"
-	"testing"
-)
-
-func TestHandleInternalServerError(t *testing.T) {
-	w := httptest.NewRecorder()
-	handleInternalServerError(w)
-
-	if w.Code != http.StatusInternalServerError {
-		t.Errorf("unexpected status code: %d != %d", w.Code, http.StatusInternalServerError)
-	}
-}
-
-func TestHandleBadRequestError(t *testing.T) {
-	w := httptest.NewRecorder()
-	err := "error message"
-	handleBadRequestError(w, err)
-
-	if w.Code != http.StatusBadRequest {
-		t.Errorf("unexpected status code: %d != %d", w.Code, http.StatusBadRequest)
-	}
-}
-
-func TestHandleUnauthorized(t *testing.T) {
-	w := httptest.NewRecorder()
-	handleUnauthorized(w)
-
-	if w.Code != http.StatusUnauthorized {
-		t.Errorf("unexpected status code: %d != %d", w.Code, http.StatusUnauthorized)
-	}
-}
-
-func TestWriteJSONNilInterface(t *testing.T) {
-	w := httptest.NewRecorder()
-
-	if err := writeJSON(w, nil); err != nil {
-		t.Errorf("Expected nil error, received: %v", err)
-	}
-}
-
-func TestWriteJSONMarshallErr(t *testing.T) {
-	// Tests capture json.Marshall error
-	x := map[string]interface{}{
-		"foo": make(chan int),
-	}
-
-	w := httptest.NewRecorder()
-
-	if err := writeJSON(w, x); err == nil {
-		t.Errorf("Expected %v error received: no no error", err)
-	}
-}
-
-func TestWriteJSON(t *testing.T) {
-	w := httptest.NewRecorder()
-
-	if err := writeJSON(w, "Pong"); err != nil {
-		t.Errorf("Expected nil error, received: %v", err)
-	}
-}
diff --git a/src/adminserver/api/cfg.go b/src/adminserver/api/cfg.go
deleted file mode 100644
index b267c1ff4..000000000
--- a/src/adminserver/api/cfg.go
+++ /dev/null
@@ -1,75 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package api
-
-import (
-	"encoding/json"
-	"io/ioutil"
-	"net/http"
-
-	"github.com/goharbor/harbor/src/adminserver/systemcfg"
-	"github.com/goharbor/harbor/src/common/utils/log"
-)
-
-// ListCfgs lists configurations
-func ListCfgs(w http.ResponseWriter, r *http.Request) {
-	cfg, err := systemcfg.CfgStore.Read()
-	if err != nil {
-		log.Errorf("failed to get system configurations: %v", err)
-		handleInternalServerError(w)
-		return
-	}
-	systemcfg.AddMissedKey(cfg)
-	if err = writeJSON(w, cfg); err != nil {
-		log.Errorf("failed to write response: %v", err)
-		return
-	}
-}
-
-// UpdateCfgs updates configurations
-func UpdateCfgs(w http.ResponseWriter, r *http.Request) {
-	b, err := ioutil.ReadAll(r.Body)
-	if err != nil {
-		log.Errorf("failed to read request body: %v", err)
-		handleInternalServerError(w)
-		return
-	}
-
-	m := map[string]interface{}{}
-	if err = json.Unmarshal(b, &m); err != nil {
-		handleBadRequestError(w, err.Error())
-		return
-	}
-	if err = systemcfg.CfgStore.Write(m); err != nil {
-		log.Errorf("failed to update system configurations: %v", err)
-		handleInternalServerError(w)
-		return
-	}
-}
-
-// ResetCfgs resets configurations from environment variables
-func ResetCfgs(w http.ResponseWriter, r *http.Request) {
-	cfgs := map[string]interface{}{}
-	if err := systemcfg.LoadFromEnv(cfgs, true); err != nil {
-		log.Errorf("failed to reset system configurations: %v", err)
-		handleInternalServerError(w)
-		return
-	}
-	if err := systemcfg.CfgStore.Write(cfgs); err != nil {
-		log.Errorf("failed to write system configurations to storage: %v", err)
-		handleInternalServerError(w)
-		return
-	}
-}
diff --git a/src/adminserver/api/cfg_test.go b/src/adminserver/api/cfg_test.go
deleted file mode 100644
index 7ad70a7aa..000000000
--- a/src/adminserver/api/cfg_test.go
+++ /dev/null
@@ -1,168 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package api
-
-import (
-	"bytes"
-	"encoding/json"
-	"errors"
-	"fmt"
-	"io"
-	"io/ioutil"
-	"net/http"
-	"net/http/httptest"
-	"os"
-	"testing"
-
-	"github.com/goharbor/harbor/src/adminserver/systemcfg"
-	"github.com/goharbor/harbor/src/common"
-	"github.com/stretchr/testify/assert"
-)
-
-type fakeCfgStore struct {
-	cfgs map[string]interface{}
-	err  error
-}
-
-func (f *fakeCfgStore) Name() string {
-	return "fake"
-}
-
-func (f *fakeCfgStore) Read() (map[string]interface{}, error) {
-	return f.cfgs, f.err
-}
-
-func (f *fakeCfgStore) Write(cfgs map[string]interface{}) error {
-	f.cfgs = cfgs
-	return f.err
-}
-
-func TestListCfgs(t *testing.T) {
-	// 500
-	systemcfg.CfgStore = &fakeCfgStore{
-		cfgs: nil,
-		err:  errors.New("error"),
-	}
-
-	w := httptest.NewRecorder()
-	ListCfgs(w, nil)
-	assert.Equal(t, http.StatusInternalServerError, w.Code)
-
-	// 200
-	key := "key"
-	value := "value"
-	cfgs := map[string]interface{}{
-		key: value,
-	}
-	systemcfg.CfgStore = &fakeCfgStore{
-		cfgs: cfgs,
-		err:  nil,
-	}
-	w = httptest.NewRecorder()
-	ListCfgs(w, nil)
-	assert.Equal(t, http.StatusOK, w.Code)
-	result, err := parse(w.Body)
-	if err != nil {
-		t.Fatalf("failed to parse response body: %v", err)
-	}
-	assert.Equal(t, value, result[key])
-}
-
-func TestUpdateCfgs(t *testing.T) {
-	// 400
-	w := httptest.NewRecorder()
-	r, err := http.NewRequest("", "", bytes.NewReader([]byte{'a'}))
-	if err != nil {
-		t.Fatalf("failed to create request: %v", err)
-	}
-
-	UpdateCfgs(w, r)
-	assert.Equal(t, http.StatusBadRequest, w.Code)
-
-	// 500
-	systemcfg.CfgStore = &fakeCfgStore{
-		cfgs: nil,
-		err:  errors.New("error"),
-	}
-	w = httptest.NewRecorder()
-	r, err = http.NewRequest("", "", bytes.NewBufferString("{}"))
-	if err != nil {
-		t.Fatalf("failed to create request: %v", err)
-	}
-
-	UpdateCfgs(w, r)
-	assert.Equal(t, http.StatusInternalServerError, w.Code)
-
-	// 200
-	key := "key"
-	value := "value"
-	systemcfg.CfgStore = &fakeCfgStore{
-		cfgs: nil,
-		err:  nil,
-	}
-	w = httptest.NewRecorder()
-	r, err = http.NewRequest("", "",
-		bytes.NewBufferString(fmt.Sprintf(`{"%s":"%s"}`, key, value)))
-	if err != nil {
-		t.Fatalf("failed to create request: %v", err)
-	}
-
-	UpdateCfgs(w, r)
-	assert.Equal(t, http.StatusOK, w.Code)
-
-}
-
-func TestResetCfgs(t *testing.T) {
-	// 500
-	systemcfg.CfgStore = &fakeCfgStore{
-		cfgs: nil,
-		err:  errors.New("error"),
-	}
-	w := httptest.NewRecorder()
-
-	ResetCfgs(w, nil)
-	assert.Equal(t, http.StatusInternalServerError, w.Code)
-
-	// 200
-	os.Clearenv()
-	key := "LDAP_URL"
-	value := "ldap://ldap.com"
-	if err := os.Setenv(key, value); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	store := &fakeCfgStore{
-		cfgs: nil,
-		err:  nil,
-	}
-	systemcfg.CfgStore = store
-	w = httptest.NewRecorder()
-
-	ResetCfgs(w, nil)
-	assert.Equal(t, http.StatusOK, w.Code)
-	assert.Equal(t, value, store.cfgs[common.LDAPURL])
-}
-
-func parse(reader io.Reader) (map[string]interface{}, error) {
-	b, err := ioutil.ReadAll(reader)
-	if err != nil {
-		return nil, err
-	}
-
-	m := map[string]interface{}{}
-	if err := json.Unmarshal(b, &m); err != nil {
-		return nil, err
-	}
-	return m, nil
-}
diff --git a/src/adminserver/api/monitor.go b/src/adminserver/api/monitor.go
deleted file mode 100644
index 1555c2964..000000000
--- a/src/adminserver/api/monitor.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package api
-
-import (
-	"github.com/goharbor/harbor/src/common/utils/log"
-	"net/http"
-)
-
-// Ping monitor the server status
-func Ping(w http.ResponseWriter, r *http.Request) {
-	if err := writeJSON(w, "Pong"); err != nil {
-		log.Errorf("Failed to write response: %v", err)
-		return
-	}
-}
diff --git a/src/adminserver/api/monitor_test.go b/src/adminserver/api/monitor_test.go
deleted file mode 100644
index 578fab9f5..000000000
--- a/src/adminserver/api/monitor_test.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package api
-
-import (
-	"github.com/stretchr/testify/assert"
-	"io/ioutil"
-	"net/http"
-	"net/http/httptest"
-	"testing"
-)
-
-func TestPing(t *testing.T) {
-	w := httptest.NewRecorder()
-	Ping(w, nil)
-	assert.Equal(t, http.StatusOK, w.Code)
-	result, _ := ioutil.ReadAll(w.Body)
-	assert.Equal(t, "\"Pong\"", string(result))
-}
diff --git a/src/adminserver/auth/auth.go b/src/adminserver/auth/auth.go
deleted file mode 100644
index 11beb9b2d..000000000
--- a/src/adminserver/auth/auth.go
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package auth
-
-import (
-	"github.com/goharbor/harbor/src/common/secret"
-	"net/http"
-)
-
-// Authenticator defines Authenticate function to authenticate requests
-type Authenticator interface {
-	// Authenticate the request, if there is no error, the bool value
-	// determines whether the request is authenticated or not
-	Authenticate(req *http.Request) (bool, error)
-}
-
-type secretAuthenticator struct {
-	secrets map[string]string
-}
-
-// NewSecretAuthenticator returns an instance of secretAuthenticator
-func NewSecretAuthenticator(secrets map[string]string) Authenticator {
-	return &secretAuthenticator{
-		secrets: secrets,
-	}
-}
-
-// Authenticate the request according the secret
-func (s *secretAuthenticator) Authenticate(req *http.Request) (bool, error) {
-	if len(s.secrets) == 0 {
-		return true, nil
-	}
-	reqSecret := secret.FromRequest(req)
-
-	for _, v := range s.secrets {
-		if reqSecret == v {
-			return true, nil
-		}
-	}
-
-	return false, nil
-}
diff --git a/src/adminserver/auth/auth_test.go b/src/adminserver/auth/auth_test.go
deleted file mode 100644
index bbbc8cf3d..000000000
--- a/src/adminserver/auth/auth_test.go
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package auth
-
-import (
-	"net/http"
-	"testing"
-
-	commonsecret "github.com/goharbor/harbor/src/common/secret"
-	"github.com/stretchr/testify/assert"
-)
-
-func TestAuthenticate(t *testing.T) {
-	secret := "correct"
-	req1, err := http.NewRequest("", "", nil)
-	if err != nil {
-		t.Fatalf("failed to create request: %v", err)
-	}
-
-	req2, err := http.NewRequest("", "", nil)
-	if err != nil {
-		t.Fatalf("failed to create request: %v", err)
-	}
-	_ = commonsecret.AddToRequest(req2, secret)
-	cases := []struct {
-		secrets map[string]string
-		req     *http.Request
-		result  bool
-	}{
-		{nil, req1, true},
-		{map[string]string{"secret1": "incorrect"}, req2, false},
-		{map[string]string{"secret1": "incorrect", "secret2": secret}, req2, true},
-	}
-
-	for _, c := range cases {
-		authenticator := NewSecretAuthenticator(c.secrets)
-		authenticated, err := authenticator.Authenticate(c.req)
-		assert.Nil(t, err, "unexpected error")
-		assert.Equal(t, c.result, authenticated, "unexpected result")
-	}
-}
diff --git a/src/adminserver/client/client.go b/src/adminserver/client/client.go
deleted file mode 100644
index 0f486e693..000000000
--- a/src/adminserver/client/client.go
+++ /dev/null
@@ -1,105 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package client
-
-import (
-	"strings"
-
-	"github.com/goharbor/harbor/src/common/http"
-	"github.com/goharbor/harbor/src/common/http/modifier/auth"
-	"github.com/goharbor/harbor/src/common/utils"
-	"github.com/goharbor/harbor/src/core/systeminfo/imagestorage"
-)
-
-// Client defines methods that an Adminserver client should implement
-type Client interface {
-	// Ping tests the connection with server
-	Ping() error
-	// GetCfgs returns system configurations
-	GetCfgs() (map[string]interface{}, error)
-	// UpdateCfgs updates system configurations
-	UpdateCfgs(map[string]interface{}) error
-	// ResetCfgs resets system configuratoins form environment variables
-	ResetCfgs() error
-	// Capacity returns the capacity of image storage
-	Capacity() (*imagestorage.Capacity, error)
-}
-
-// NewClient return an instance of Adminserver client
-func NewClient(baseURL string, cfg *Config) Client {
-	baseURL = strings.TrimRight(baseURL, "/")
-	if !strings.Contains(baseURL, "://") {
-		baseURL = "http://" + baseURL
-	}
-	client := &client{
-		baseURL: baseURL,
-	}
-	if cfg != nil {
-		authorizer := auth.NewSecretAuthorizer(cfg.Secret)
-		client.client = http.NewClient(nil, authorizer)
-	}
-	return client
-}
-
-type client struct {
-	baseURL string
-	client  *http.Client
-}
-
-// Config contains configurations needed for client
-type Config struct {
-	Secret string
-}
-
-func (c *client) Ping() error {
-	addr := strings.Split(c.baseURL, "://")[1]
-	if !strings.Contains(addr, ":") {
-		addr = addr + ":80"
-	}
-
-	return utils.TestTCPConn(addr, 60, 2)
-}
-
-// GetCfgs ...
-func (c *client) GetCfgs() (map[string]interface{}, error) {
-	url := c.baseURL + "/api/configs"
-	cfgs := map[string]interface{}{}
-	if err := c.client.Get(url, &cfgs); err != nil {
-		return nil, err
-	}
-	return cfgs, nil
-}
-
-// UpdateCfgs ...
-func (c *client) UpdateCfgs(cfgs map[string]interface{}) error {
-	url := c.baseURL + "/api/configurations"
-	return c.client.Put(url, cfgs)
-}
-
-// ResetCfgs ...
-func (c *client) ResetCfgs() error {
-	url := c.baseURL + "/api/configurations/reset"
-	return c.client.Post(url)
-}
-
-// Capacity ...
-func (c *client) Capacity() (*imagestorage.Capacity, error) {
-	url := c.baseURL + "/api/systeminfo/capacity"
-	capacity := &imagestorage.Capacity{}
-	if err := c.client.Get(url, capacity); err != nil {
-		return nil, err
-	}
-	return capacity, nil
-}
diff --git a/src/adminserver/client/client_test.go b/src/adminserver/client/client_test.go
deleted file mode 100644
index c11aaf312..000000000
--- a/src/adminserver/client/client_test.go
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package client
-
-import (
-	"fmt"
-	"os"
-	"testing"
-
-	"github.com/goharbor/harbor/src/common"
-	"github.com/goharbor/harbor/src/common/utils/test"
-	"github.com/stretchr/testify/assert"
-)
-
-var c Client
-
-func TestMain(m *testing.M) {
-
-	server, err := test.NewAdminserver(nil)
-	if err != nil {
-		fmt.Printf("failed to create adminserver: %v", err)
-		os.Exit(1)
-	}
-
-	c = NewClient(server.URL, &Config{})
-
-	os.Exit(m.Run())
-}
-
-func TestPing(t *testing.T) {
-	err := c.Ping()
-	assert.Nil(t, err, "unexpected error")
-}
-
-func TestGetCfgs(t *testing.T) {
-	cfgs, err := c.GetCfgs()
-	if !assert.Nil(t, err, "unexpected error") {
-		return
-	}
-
-	assert.Equal(t, common.DBAuth, cfgs[common.AUTHMode], "unexpected configuration")
-}
-
-func TestUpdateCfgs(t *testing.T) {
-	cfgs := map[string]interface{}{
-		common.AUTHMode: common.LDAPAuth,
-	}
-	err := c.UpdateCfgs(cfgs)
-	if !assert.Nil(t, err, "unexpected error") {
-		return
-	}
-}
-
-func TestResetCfgs(t *testing.T) {
-	err := c.ResetCfgs()
-	if !assert.Nil(t, err, "unexpected error") {
-		return
-	}
-}
diff --git a/src/adminserver/handlers/handler.go b/src/adminserver/handlers/handler.go
deleted file mode 100644
index 55bf6157a..000000000
--- a/src/adminserver/handlers/handler.go
+++ /dev/null
@@ -1,88 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package handlers
-
-import (
-	"net/http"
-	"os"
-
-	"github.com/goharbor/harbor/src/adminserver/auth"
-	"github.com/goharbor/harbor/src/common/utils/log"
-	gorilla_handlers "github.com/gorilla/handlers"
-)
-
-// NewHandler returns a gorilla router which is wrapped by  authenticate handler
-// and logging handler
-func NewHandler() http.Handler {
-	h := newRouter()
-	secrets := map[string]string{
-		"uiSecret":         os.Getenv("CORE_SECRET"),
-		"jobserviceSecret": os.Getenv("JOBSERVICE_SECRET"),
-	}
-	insecureAPIs := map[string]bool{
-		"/api/ping": true,
-	}
-	h = newAuthHandler(auth.NewSecretAuthenticator(secrets), h, insecureAPIs)
-	h = gorilla_handlers.LoggingHandler(os.Stdout, h)
-	return h
-}
-
-type authHandler struct {
-	authenticator auth.Authenticator
-	handler       http.Handler
-	insecureAPIs  map[string]bool
-}
-
-func newAuthHandler(authenticator auth.Authenticator, handler http.Handler, insecureAPIs map[string]bool) http.Handler {
-	return &authHandler{
-		authenticator: authenticator,
-		handler:       handler,
-		insecureAPIs:  insecureAPIs,
-	}
-}
-
-func (a *authHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
-	if a.authenticator == nil {
-		if a.handler != nil {
-			a.handler.ServeHTTP(w, r)
-		}
-		return
-	}
-
-	if a.insecureAPIs != nil && a.insecureAPIs[r.URL.Path] {
-		if a.handler != nil {
-			a.handler.ServeHTTP(w, r)
-		}
-		return
-	}
-	valid, err := a.authenticator.Authenticate(r)
-	if err != nil {
-		log.Errorf("failed to authenticate request: %v", err)
-		http.Error(w, http.StatusText(http.StatusInternalServerError),
-			http.StatusInternalServerError)
-		return
-	}
-
-	if !valid {
-		http.Error(w, http.StatusText(http.StatusUnauthorized),
-			http.StatusUnauthorized)
-		return
-	}
-
-	if a.handler != nil {
-		a.handler.ServeHTTP(w, r)
-	}
-	return
-}
diff --git a/src/adminserver/handlers/handlers_test.go b/src/adminserver/handlers/handlers_test.go
deleted file mode 100644
index 97bfa9edc..000000000
--- a/src/adminserver/handlers/handlers_test.go
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package handlers
-
-import (
-	"errors"
-	"net/http"
-	"net/http/httptest"
-	"testing"
-
-	"github.com/goharbor/harbor/src/adminserver/auth"
-	"github.com/stretchr/testify/assert"
-)
-
-type fakeAuthenticator struct {
-	authenticated bool
-	err           error
-}
-
-func (f *fakeAuthenticator) Authenticate(req *http.Request) (bool, error) {
-	return f.authenticated, f.err
-}
-
-type fakeHandler struct {
-	responseCode int
-}
-
-func (f *fakeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
-	w.WriteHeader(f.responseCode)
-}
-
-func TestNewAuthHandler(t *testing.T) {
-	cases := []struct {
-		authenticator auth.Authenticator
-		handler       http.Handler
-		insecureAPIs  map[string]bool
-		responseCode  int
-		requestURL    string
-	}{
-
-		{nil, nil, nil, http.StatusOK, "http://localhost/good"},
-		{&fakeAuthenticator{
-			authenticated: false,
-			err:           nil,
-		}, nil, nil, http.StatusUnauthorized, "http://localhost/hello"},
-		{&fakeAuthenticator{
-			authenticated: false,
-			err:           errors.New("error"),
-		}, nil, nil, http.StatusInternalServerError, "http://localhost/hello"},
-		{&fakeAuthenticator{
-			authenticated: true,
-			err:           nil,
-		}, &fakeHandler{http.StatusNotFound}, nil, http.StatusNotFound, "http://localhost/notexsit"},
-		{&fakeAuthenticator{
-			authenticated: false,
-			err:           nil,
-		}, &fakeHandler{http.StatusOK}, map[string]bool{"/api/ping": true}, http.StatusOK, "http://localhost/api/ping"},
-	}
-
-	for _, c := range cases {
-		handler := newAuthHandler(c.authenticator, c.handler, c.insecureAPIs)
-		w := httptest.NewRecorder()
-		r := httptest.NewRequest("GET", c.requestURL, nil)
-		handler.ServeHTTP(w, r)
-		assert.Equal(t, c.responseCode, w.Code, "unexpected response code")
-	}
-	handler := NewHandler()
-	w := httptest.NewRecorder()
-	r := httptest.NewRequest("GET", "http://localhost/api/ping", nil)
-	handler.ServeHTTP(w, r)
-
-}
diff --git a/src/adminserver/handlers/router.go b/src/adminserver/handlers/router.go
deleted file mode 100644
index 24ad5dd93..000000000
--- a/src/adminserver/handlers/router.go
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package handlers
-
-import (
-	"net/http"
-
-	"github.com/goharbor/harbor/src/adminserver/api"
-	"github.com/gorilla/mux"
-)
-
-func newRouter() http.Handler {
-	r := mux.NewRouter()
-	r.HandleFunc("/api/configurations", api.UpdateCfgs).Methods("PUT")
-	r.HandleFunc("/api/configs", api.ListCfgs).Methods("GET")
-	r.HandleFunc("/api/configurations/reset", api.ResetCfgs).Methods("POST")
-	r.HandleFunc("/api/ping", api.Ping).Methods("GET")
-	return r
-}
diff --git a/src/adminserver/main.go b/src/adminserver/main.go
deleted file mode 100644
index 93b47b5b5..000000000
--- a/src/adminserver/main.go
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package main
-
-import (
-	"net/http"
-	"os"
-
-	"github.com/goharbor/harbor/src/adminserver/handlers"
-	syscfg "github.com/goharbor/harbor/src/adminserver/systemcfg"
-	"github.com/goharbor/harbor/src/common/utils/log"
-)
-
-// Server for admin component
-type Server struct {
-	Port    string
-	Handler http.Handler
-}
-
-// Serve the API
-func (s *Server) Serve() error {
-	server := &http.Server{
-		Addr:    ":" + s.Port,
-		Handler: s.Handler,
-	}
-
-	return server.ListenAndServe()
-}
-
-func main() {
-	log.Info("initializing system configurations...")
-	if err := syscfg.Init(); err != nil {
-		log.Fatalf("failed to initialize the system: %v", err)
-	}
-	log.Info("system initialization completed")
-
-	port := os.Getenv("PORT")
-	if len(port) == 0 {
-		port = "80"
-	}
-	server := &Server{
-		Port:    port,
-		Handler: handlers.NewHandler(),
-	}
-	if err := server.Serve(); err != nil {
-		log.Fatal(err)
-	}
-}
diff --git a/src/adminserver/systemcfg/encrypt/encrypt.go b/src/adminserver/systemcfg/encrypt/encrypt.go
deleted file mode 100644
index 8861e7862..000000000
--- a/src/adminserver/systemcfg/encrypt/encrypt.go
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package encrypt
-
-import (
-	comcfg "github.com/goharbor/harbor/src/common/config"
-	"github.com/goharbor/harbor/src/common/utils"
-)
-
-// Encryptor encrypts or decrypts a strings
-type Encryptor interface {
-	// Encrypt encrypts plaintext
-	Encrypt(string) (string, error)
-	// Decrypt decrypts ciphertext
-	Decrypt(string) (string, error)
-}
-
-// AESEncryptor uses AES to encrypt or decrypt string
-type AESEncryptor struct {
-	keyProvider comcfg.KeyProvider
-	keyParams   map[string]interface{}
-}
-
-// NewAESEncryptor returns an instance of an AESEncryptor
-func NewAESEncryptor(keyProvider comcfg.KeyProvider,
-	keyParams map[string]interface{}) Encryptor {
-	return &AESEncryptor{
-		keyProvider: keyProvider,
-	}
-}
-
-// Encrypt ...
-func (a *AESEncryptor) Encrypt(plaintext string) (string, error) {
-	key, err := a.keyProvider.Get(a.keyParams)
-	if err != nil {
-		return "", err
-	}
-	return utils.ReversibleEncrypt(plaintext, key)
-}
-
-// Decrypt ...
-func (a *AESEncryptor) Decrypt(ciphertext string) (string, error) {
-	key, err := a.keyProvider.Get(a.keyParams)
-	if err != nil {
-		return "", err
-	}
-	return utils.ReversibleDecrypt(ciphertext, key)
-}
diff --git a/src/adminserver/systemcfg/encrypt/encrypt_test.go b/src/adminserver/systemcfg/encrypt/encrypt_test.go
deleted file mode 100644
index 01f67d183..000000000
--- a/src/adminserver/systemcfg/encrypt/encrypt_test.go
+++ /dev/null
@@ -1,92 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package encrypt
-
-import (
-	"errors"
-	"testing"
-
-	comcfg "github.com/goharbor/harbor/src/common/config"
-	"github.com/stretchr/testify/assert"
-)
-
-type fakeKeyProvider struct {
-	key string
-	err error
-}
-
-func (f *fakeKeyProvider) Get(params map[string]interface{}) (
-	string, error) {
-	return f.key, f.err
-}
-
-func TestEncrypt(t *testing.T) {
-	cases := []struct {
-		plaintext   string
-		keyProvider comcfg.KeyProvider
-		err         bool
-	}{
-		{"", &fakeKeyProvider{"", errors.New("error")}, true},
-		{"text", &fakeKeyProvider{"1234567890123456", nil}, false},
-	}
-
-	for _, c := range cases {
-		encrptor := NewAESEncryptor(c.keyProvider, nil)
-		ciphertext, err := encrptor.Encrypt(c.plaintext)
-		if c.err {
-			assert.NotNil(t, err)
-		} else {
-			assert.Nil(t, err)
-			str, err := encrptor.Decrypt(ciphertext)
-			assert.Nil(t, err)
-			assert.Equal(t, c.plaintext, str)
-		}
-	}
-}
-
-func TestDecrypt(t *testing.T) {
-	plaintext := "text"
-	key := "1234567890123456"
-
-	encrptor := NewAESEncryptor(&fakeKeyProvider{
-		key: key,
-		err: nil,
-	}, nil)
-
-	ciphertext, err := encrptor.Encrypt(plaintext)
-	if err != nil {
-		t.Fatalf("failed to encrpt %s: %v", plaintext, err)
-	}
-
-	cases := []struct {
-		ciphertext  string
-		keyProvider comcfg.KeyProvider
-		err         bool
-	}{
-		{"", &fakeKeyProvider{"", errors.New("error")}, true},
-		{ciphertext, &fakeKeyProvider{key, nil}, false},
-	}
-
-	for _, c := range cases {
-		encrptor := NewAESEncryptor(c.keyProvider, nil)
-		str, err := encrptor.Decrypt(c.ciphertext)
-		if c.err {
-			assert.NotNil(t, err)
-		} else {
-			assert.Nil(t, err)
-			assert.Equal(t, plaintext, str)
-		}
-	}
-}
diff --git a/src/adminserver/systemcfg/store/database/driver_db.go b/src/adminserver/systemcfg/store/database/driver_db.go
deleted file mode 100644
index fb3a79ee0..000000000
--- a/src/adminserver/systemcfg/store/database/driver_db.go
+++ /dev/null
@@ -1,151 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package database
-
-import (
-	"encoding/json"
-	"fmt"
-	"strconv"
-
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/store"
-	"github.com/goharbor/harbor/src/common"
-	"github.com/goharbor/harbor/src/common/dao"
-	"github.com/goharbor/harbor/src/common/models"
-)
-
-const (
-	name = "database"
-)
-
-var (
-	numKeys = map[string]bool{
-		common.EmailPort:            true,
-		common.LDAPScope:            true,
-		common.LDAPGroupSearchScope: true,
-		common.LDAPTimeout:          true,
-		common.TokenExpiration:      true,
-		common.MaxJobWorkers:        true,
-		common.CfgExpiration:        true,
-		common.ClairDBPort:          true,
-		common.PostGreSQLPort:       true,
-	}
-	boolKeys = map[string]bool{
-		common.WithClair:        true,
-		common.WithNotary:       true,
-		common.SelfRegistration: true,
-		common.EmailSSL:         true,
-		common.EmailInsecure:    true,
-		common.LDAPVerifyCert:   true,
-		common.UAAVerifyCert:    true,
-		common.ReadOnly:         true,
-		common.WithChartMuseum:  true,
-	}
-	mapKeys = map[string]bool{
-		common.ScanAllPolicy: true,
-	}
-)
-
-type cfgStore struct {
-	name string
-}
-
-// Name The name of the driver
-func (c *cfgStore) Name() string {
-	return name
-}
-
-// NewCfgStore New a cfg store for database driver
-func NewCfgStore() (store.Driver, error) {
-	return &cfgStore{
-		name: name,
-	}, nil
-}
-
-// Read configuration from database
-func (c *cfgStore) Read() (map[string]interface{}, error) {
-	configEntries, err := dao.GetConfigEntries()
-	if err != nil {
-		return nil, err
-	}
-	return WrapperConfig(configEntries)
-}
-
-// WrapperConfig Wrapper the configuration
-func WrapperConfig(configEntries []*models.ConfigEntry) (map[string]interface{}, error) {
-	config := make(map[string]interface{})
-	for _, entry := range configEntries {
-		if numKeys[entry.Key] {
-			strvalue, err := strconv.Atoi(entry.Value)
-			if err != nil {
-				return nil, err
-			}
-			config[entry.Key] = float64(strvalue)
-		} else if boolKeys[entry.Key] {
-			strvalue, err := strconv.ParseBool(entry.Value)
-			if err != nil {
-				return nil, err
-			}
-			config[entry.Key] = strvalue
-		} else if mapKeys[entry.Key] {
-			m := map[string]interface{}{}
-			if err := json.Unmarshal([]byte(entry.Value), &m); err != nil {
-				return nil, err
-			}
-			config[entry.Key] = m
-		} else {
-			config[entry.Key] = entry.Value
-		}
-
-	}
-	return config, nil
-}
-
-// Write save configuration to database
-func (c *cfgStore) Write(config map[string]interface{}) error {
-	configEntries, err := TranslateConfig(config)
-	if err != nil {
-		return err
-	}
-	return dao.SaveConfigEntries(configEntries)
-}
-
-// TranslateConfig Translate configuration from int, bool, float64 to string
-func TranslateConfig(config map[string]interface{}) ([]models.ConfigEntry, error) {
-	var configEntries []models.ConfigEntry
-	for k, v := range config {
-		var entry = new(models.ConfigEntry)
-		entry.Key = k
-		switch v.(type) {
-		case string:
-			entry.Value = v.(string)
-		case int:
-			entry.Value = strconv.Itoa(v.(int))
-		case bool:
-			entry.Value = strconv.FormatBool(v.(bool))
-		case float64:
-			entry.Value = strconv.Itoa(int(v.(float64)))
-		case map[string]interface{}:
-			data, err := json.Marshal(v)
-			if err != nil {
-				return nil, err
-			}
-			entry.Value = string(data)
-		default:
-			return nil, fmt.Errorf("unknown type %v", v)
-		}
-		configEntries = append(configEntries, *entry)
-	}
-	return configEntries, nil
-}
diff --git a/src/adminserver/systemcfg/store/database/driver_db_test.go b/src/adminserver/systemcfg/store/database/driver_db_test.go
deleted file mode 100644
index 00970e5ac..000000000
--- a/src/adminserver/systemcfg/store/database/driver_db_test.go
+++ /dev/null
@@ -1,75 +0,0 @@
-package database
-
-import (
-	"testing"
-
-	"github.com/goharbor/harbor/src/common"
-	"github.com/goharbor/harbor/src/common/models"
-	"github.com/stretchr/testify/assert"
-)
-
-func TestCfgStore_Name(t *testing.T) {
-	driver, err := NewCfgStore()
-	if err != nil {
-		t.Fatalf("Failed to create db configuration store %v", err)
-	}
-	assert.Equal(t, name, driver.Name())
-}
-
-func TestWrapperConfig(t *testing.T) {
-	cfg := []*models.ConfigEntry{
-		{
-			Key:   common.CfgExpiration,
-			Value: "500",
-		},
-		{
-			Key:   common.WithNotary,
-			Value: "true",
-		},
-		{
-			Key:   common.PostGreSQLHOST,
-			Value: "192.168.1.210",
-		},
-	}
-	result, err := WrapperConfig(cfg)
-	if err != nil {
-		t.Fatalf("Failed to wrapper config %v", err)
-	}
-	withNotary, _ := result[common.WithNotary].(bool)
-	assert.Equal(t, true, withNotary)
-
-	postgresqlhost, ok := result[common.PostGreSQLHOST].(string)
-	assert.True(t, ok)
-	assert.Equal(t, "192.168.1.210", postgresqlhost)
-
-	expiration, ok := result[common.CfgExpiration].(float64)
-
-	assert.True(t, ok)
-	assert.Equal(t, float64(500), expiration)
-}
-
-func TestTranslateConfig(t *testing.T) {
-	config := map[string]interface{}{}
-	config[common.PostGreSQLHOST] = "192.168.1.210"
-
-	entries, err := TranslateConfig(config)
-	if err != nil {
-		t.Fatalf("Failed to translate configuration %v", err)
-	}
-	assert.Equal(t, "192.168.1.210", entries[0].Value)
-	config = make(map[string]interface{})
-	config[common.WithNotary] = true
-	entries, err = TranslateConfig(config)
-	if err != nil {
-		t.Fatalf("Failed to translate configuration %v", err)
-	}
-	assert.Equal(t, "true", entries[0].Value)
-
-	config = make(map[string]interface{})
-	config[common.CfgExpiration] = float64(500)
-	entries, err = TranslateConfig(config)
-	if err != nil {
-		t.Fatalf("Failed to translate configuration %v", err)
-	}
-	assert.Equal(t, "500", entries[0].Value)
-}
diff --git a/src/adminserver/systemcfg/store/driver.go b/src/adminserver/systemcfg/store/driver.go
deleted file mode 100644
index 6241effd7..000000000
--- a/src/adminserver/systemcfg/store/driver.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package store
-
-// Driver defines methods that a configuration store driver must implement
-type Driver interface {
-	// Name returns a human-readable name of the driver
-	Name() string
-	// Read reads all the configurations from store
-	Read() (map[string]interface{}, error)
-	// Write writes the configurations to store, the configurations can be
-	// part of all
-	Write(map[string]interface{}) error
-}
diff --git a/src/adminserver/systemcfg/store/encrypt/driver.go b/src/adminserver/systemcfg/store/encrypt/driver.go
deleted file mode 100644
index 67262a383..000000000
--- a/src/adminserver/systemcfg/store/encrypt/driver.go
+++ /dev/null
@@ -1,97 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package encrypt
-
-import (
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/encrypt"
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/store"
-	"github.com/goharbor/harbor/src/common/utils/log"
-)
-
-const (
-	name = "encrypt"
-)
-
-// cfgStore wraps a store.Driver with an encryptor
-type cfgStore struct {
-	// attrs need to be encrypted and decrypted
-	keys      []string
-	encryptor encrypt.Encryptor
-	store     store.Driver
-}
-
-// NewCfgStore returns an instance of cfgStore
-// keys are the attrs need to be encrypted or decrypted
-func NewCfgStore(encryptor encrypt.Encryptor,
-	keys []string, store store.Driver) store.Driver {
-	return &cfgStore{
-		keys:      keys,
-		encryptor: encryptor,
-		store:     store,
-	}
-}
-
-func (c *cfgStore) Name() string {
-	return name
-}
-
-func (c *cfgStore) Read() (map[string]interface{}, error) {
-	m, err := c.store.Read()
-	if err != nil {
-		return nil, err
-	}
-
-	for _, key := range c.keys {
-		v, ok := m[key]
-		if !ok {
-			continue
-		}
-
-		str, ok := v.(string)
-		if !ok {
-			log.Warningf("the value of %s is not string, skip decrypt", key)
-			continue
-		}
-
-		text, err := c.encryptor.Decrypt(str)
-		if err != nil {
-			return nil, err
-		}
-		m[key] = text
-	}
-	return m, nil
-}
-
-func (c *cfgStore) Write(m map[string]interface{}) error {
-	for _, key := range c.keys {
-		v, ok := m[key]
-		if !ok {
-			continue
-		}
-
-		str, ok := v.(string)
-		if !ok {
-			log.Warningf("%v is not string, skip encrypt", v)
-			continue
-		}
-
-		ciphertext, err := c.encryptor.Encrypt(str)
-		if err != nil {
-			return err
-		}
-		m[key] = ciphertext
-	}
-	return c.store.Write(m)
-}
diff --git a/src/adminserver/systemcfg/store/encrypt/driver_test.go b/src/adminserver/systemcfg/store/encrypt/driver_test.go
deleted file mode 100644
index e06749332..000000000
--- a/src/adminserver/systemcfg/store/encrypt/driver_test.go
+++ /dev/null
@@ -1,81 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package encrypt
-
-import (
-	"testing"
-
-	"github.com/stretchr/testify/assert"
-)
-
-type fakeCfgStore struct {
-	cfgs map[string]interface{}
-}
-
-func (f *fakeCfgStore) Name() string {
-	return "fake"
-}
-
-func (f *fakeCfgStore) Read() (map[string]interface{}, error) {
-	return f.cfgs, nil
-}
-
-func (f *fakeCfgStore) Write(cfgs map[string]interface{}) error {
-	f.cfgs = cfgs
-	return nil
-}
-
-type fakeEncryptor struct {
-}
-
-func (f *fakeEncryptor) Encrypt(plaintext string) (string, error) {
-	return "encrypted" + plaintext, nil
-}
-
-func (f *fakeEncryptor) Decrypt(ciphertext string) (string, error) {
-	return "decrypted" + ciphertext, nil
-}
-
-func TestName(t *testing.T) {
-	driver := NewCfgStore(nil, nil, nil)
-	assert.Equal(t, name, driver.Name())
-}
-
-func TestRead(t *testing.T) {
-	keys := []string{"key"}
-	driver := NewCfgStore(&fakeEncryptor{}, keys, &fakeCfgStore{
-		cfgs: map[string]interface{}{"key": "value"},
-	})
-
-	cfgs, err := driver.Read()
-	assert.Nil(t, err)
-	assert.Equal(t, "decryptedvalue", cfgs["key"])
-}
-
-func TestWrite(t *testing.T) {
-	keys := []string{"key"}
-	store := &fakeCfgStore{
-		cfgs: map[string]interface{}{},
-	}
-	driver := NewCfgStore(&fakeEncryptor{}, keys, store)
-
-	cfgs := map[string]interface{}{
-		"key": "value",
-	}
-
-	err := driver.Write(cfgs)
-	assert.Nil(t, err)
-	assert.Equal(t, "encryptedvalue", store.cfgs["key"])
-}
diff --git a/src/adminserver/systemcfg/store/json/driver_json.go b/src/adminserver/systemcfg/store/json/driver_json.go
deleted file mode 100644
index 36689d184..000000000
--- a/src/adminserver/systemcfg/store/json/driver_json.go
+++ /dev/null
@@ -1,119 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package json
-
-import (
-	"encoding/json"
-	"io/ioutil"
-	"os"
-	"path/filepath"
-	"sync"
-
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/store"
-	"github.com/goharbor/harbor/src/common/utils/log"
-)
-
-const (
-	// the default path of configuration file
-	defaultPath = "/etc/harbor/config.json"
-)
-
-type cfgStore struct {
-	path string // the path of cfg file
-	sync.RWMutex
-}
-
-// NewCfgStore returns an instance of cfgStore that stores the configurations
-// in a json file. The file will be created if it does not exist.
-func NewCfgStore(path ...string) (store.Driver, error) {
-	p := defaultPath
-	if len(path) > 0 && len(path[0]) > 0 {
-		p = path[0]
-	}
-
-	log.Debugf("path of configuration file: %s", p)
-
-	if _, err := os.Stat(p); os.IsNotExist(err) {
-		log.Infof("the configuration file %s does not exist, creating it...", p)
-		if err = os.MkdirAll(filepath.Dir(p), 0600); err != nil {
-			return nil, err
-		}
-		if err = ioutil.WriteFile(p, []byte{}, 0600); err != nil {
-			return nil, err
-		}
-	}
-
-	return &cfgStore{
-		path: p,
-	}, nil
-}
-
-// Name ...
-func (c *cfgStore) Name() string {
-	return "JSON"
-}
-
-// Read ...
-func (c *cfgStore) Read() (map[string]interface{}, error) {
-	c.RLock()
-	defer c.RUnlock()
-
-	return read(c.path)
-}
-
-func read(path string) (map[string]interface{}, error) {
-	b, err := ioutil.ReadFile(path)
-	if err != nil {
-		return nil, err
-	}
-
-	// empty file
-	if len(b) == 0 {
-		return nil, nil
-	}
-
-	config := map[string]interface{}{}
-	if err = json.Unmarshal(b, &config); err != nil {
-		return nil, err
-	}
-
-	return config, nil
-}
-
-// Write ...
-func (c *cfgStore) Write(config map[string]interface{}) error {
-	c.Lock()
-	defer c.Unlock()
-
-	cfg, err := read(c.path)
-	if err != nil {
-		return err
-	}
-
-	if cfg == nil {
-		cfg = config
-	} else {
-		for k, v := range config {
-			cfg[k] = v
-		}
-	}
-
-	b, err := json.MarshalIndent(cfg, "", "  ")
-	if err != nil {
-		return err
-	}
-
-	return ioutil.WriteFile(c.path, b, 0600)
-}
diff --git a/src/adminserver/systemcfg/store/json/driver_json_test.go b/src/adminserver/systemcfg/store/json/driver_json_test.go
deleted file mode 100644
index cedd188a3..000000000
--- a/src/adminserver/systemcfg/store/json/driver_json_test.go
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package json
-
-import (
-	"os"
-	"testing"
-)
-
-func TestReadWrite(t *testing.T) {
-	path := "/tmp/config.json"
-	store, err := NewCfgStore(path)
-	if err != nil {
-		t.Fatalf("failed to create json cfg store: %v", err)
-	}
-	defer func() {
-		if err := os.Remove(path); err != nil {
-			t.Fatalf("failed to remove the json file %s: %v", path, err)
-		}
-	}()
-
-	if store.Name() != "JSON" {
-		t.Errorf("unexpected name: %s != %s", store.Name(), "JSON")
-		return
-	}
-
-	config := map[string]interface{}{
-		"key": "value",
-	}
-	if err := store.Write(config); err != nil {
-		t.Errorf("failed to write configurations to json file: %v", err)
-		return
-	}
-
-	if _, err = store.Read(); err != nil {
-		t.Errorf("failed to read configurations from json file: %v", err)
-		return
-	}
-}
diff --git a/src/adminserver/systemcfg/systemcfg.go b/src/adminserver/systemcfg/systemcfg.go
deleted file mode 100644
index 88be64f71..000000000
--- a/src/adminserver/systemcfg/systemcfg.go
+++ /dev/null
@@ -1,483 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package systemcfg
-
-import (
-	"fmt"
-	"os"
-	"regexp"
-	"strconv"
-	"strings"
-
-	enpt "github.com/goharbor/harbor/src/adminserver/systemcfg/encrypt"
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/store"
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/store/database"
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/store/encrypt"
-	"github.com/goharbor/harbor/src/adminserver/systemcfg/store/json"
-	"github.com/goharbor/harbor/src/common"
-	comcfg "github.com/goharbor/harbor/src/common/config"
-	"github.com/goharbor/harbor/src/common/dao"
-	"github.com/goharbor/harbor/src/common/models"
-	"github.com/goharbor/harbor/src/common/utils"
-	"github.com/goharbor/harbor/src/common/utils/log"
-)
-
-const (
-	defaultJSONCfgStorePath string = "/etc/adminserver/config/config.json"
-	defaultKeyPath          string = "/etc/adminserver/key"
-	ldapScopeKey            string = "ldap_scope"
-)
-
-var (
-	// CfgStore is a storage driver that configurations
-	// can be read from and wrote to
-	CfgStore store.Driver
-
-	// attrs need to be encrypted or decrypted
-	attrs = []string{
-		common.EmailPassword,
-		common.LDAPSearchPwd,
-		common.PostGreSQLPassword,
-		common.AdminInitialPassword,
-		common.ClairDBPassword,
-		common.UAAClientSecret,
-	}
-
-	// all configurations need read from environment variables
-	allEnvs = map[string]interface{}{
-		common.ExtEndpoint: "EXT_ENDPOINT",
-		common.AUTHMode:    "AUTH_MODE",
-		common.SelfRegistration: &parser{
-			env:   "SELF_REGISTRATION",
-			parse: parseStringToBool,
-		},
-		common.DatabaseType:   "DATABASE_TYPE",
-		common.PostGreSQLHOST: "POSTGRESQL_HOST",
-		common.PostGreSQLPort: &parser{
-			env:   "POSTGRESQL_PORT",
-			parse: parseStringToInt,
-		},
-		common.PostGreSQLUsername: "POSTGRESQL_USERNAME",
-		common.PostGreSQLPassword: "POSTGRESQL_PASSWORD",
-		common.PostGreSQLDatabase: "POSTGRESQL_DATABASE",
-		common.PostGreSQLSSLMode:  "POSTGRESQL_SSLMODE",
-		common.LDAPURL:            "LDAP_URL",
-		common.LDAPSearchDN:       "LDAP_SEARCH_DN",
-		common.LDAPSearchPwd:      "LDAP_SEARCH_PWD",
-		common.LDAPBaseDN:         "LDAP_BASE_DN",
-		common.LDAPFilter:         "LDAP_FILTER",
-		common.LDAPUID:            "LDAP_UID",
-		common.LDAPScope: &parser{
-			env:   "LDAP_SCOPE",
-			parse: parseStringToInt,
-		},
-		common.LDAPTimeout: &parser{
-			env:   "LDAP_TIMEOUT",
-			parse: parseStringToInt,
-		},
-		common.LDAPVerifyCert: &parser{
-			env:   "LDAP_VERIFY_CERT",
-			parse: parseStringToBool,
-		},
-		common.LDAPGroupBaseDN:        "LDAP_GROUP_BASEDN",
-		common.LDAPGroupSearchFilter:  "LDAP_GROUP_FILTER",
-		common.LDAPGroupAttributeName: "LDAP_GROUP_GID",
-		common.LDAPGroupSearchScope: &parser{
-			env:   "LDAP_GROUP_SCOPE",
-			parse: parseStringToInt,
-		},
-		common.EmailHost: "EMAIL_HOST",
-		common.EmailPort: &parser{
-			env:   "EMAIL_PORT",
-			parse: parseStringToInt,
-		},
-		common.EmailUsername: "EMAIL_USR",
-		common.EmailPassword: "EMAIL_PWD",
-		common.EmailSSL: &parser{
-			env:   "EMAIL_SSL",
-			parse: parseStringToBool,
-		},
-		common.EmailInsecure: &parser{
-			env:   "EMAIL_INSECURE",
-			parse: parseStringToBool,
-		},
-		common.EmailFrom:     "EMAIL_FROM",
-		common.EmailIdentity: "EMAIL_IDENTITY",
-		common.RegistryURL:   "REGISTRY_URL",
-		common.TokenExpiration: &parser{
-			env:   "TOKEN_EXPIRATION",
-			parse: parseStringToInt,
-		},
-		common.CfgExpiration: &parser{
-			env:   "CFG_EXPIRATION",
-			parse: parseStringToInt,
-		},
-		common.MaxJobWorkers: &parser{
-			env:   "MAX_JOB_WORKERS",
-			parse: parseStringToInt,
-		},
-		common.ProjectCreationRestriction: "PROJECT_CREATION_RESTRICTION",
-		common.AdminInitialPassword:       "HARBOR_ADMIN_PASSWORD",
-		common.AdmiralEndpoint:            "ADMIRAL_URL",
-		common.WithNotary: &parser{
-			env:   "WITH_NOTARY",
-			parse: parseStringToBool,
-		},
-		common.WithClair: &parser{
-			env:   "WITH_CLAIR",
-			parse: parseStringToBool,
-		},
-		common.ClairDBPassword: "CLAIR_DB_PASSWORD",
-		common.ClairDB:         "CLAIR_DB",
-		common.ClairDBUsername: "CLAIR_DB_USERNAME",
-		common.ClairDBHost:     "CLAIR_DB_HOST",
-		common.ClairDBPort: &parser{
-			env:   "CLAIR_DB_PORT",
-			parse: parseStringToInt,
-		},
-		common.ClairDBSSLMode:  "CLAIR_DB_SSLMODE",
-		common.UAAEndpoint:     "UAA_ENDPOINT",
-		common.UAAClientID:     "UAA_CLIENTID",
-		common.UAAClientSecret: "UAA_CLIENTSECRET",
-		common.UAAVerifyCert: &parser{
-			env:   "UAA_VERIFY_CERT",
-			parse: parseStringToBool,
-		},
-		common.CoreURL:                     "CORE_URL",
-		common.JobServiceURL:               "JOBSERVICE_URL",
-		common.TokenServiceURL:             "TOKEN_SERVICE_URL",
-		common.ClairURL:                    "CLAIR_URL",
-		common.NotaryURL:                   "NOTARY_URL",
-		common.RegistryStorageProviderName: "REGISTRY_STORAGE_PROVIDER_NAME",
-		common.ReadOnly: &parser{
-			env:   "READ_ONLY",
-			parse: parseStringToBool,
-		},
-		common.ReloadKey:        "RELOAD_KEY",
-		common.LdapGroupAdminDn: "LDAP_GROUP_ADMIN_DN",
-		common.ChartRepoURL:     "CHART_REPOSITORY_URL",
-		common.WithChartMuseum: &parser{
-			env:   "WITH_CHARTMUSEUM",
-			parse: parseStringToBool,
-		},
-	}
-
-	// configurations need read from environment variables
-	// every time the system startup
-	repeatLoadEnvs = map[string]interface{}{
-		common.ExtEndpoint:    "EXT_ENDPOINT",
-		common.PostGreSQLHOST: "POSTGRESQL_HOST",
-		common.PostGreSQLPort: &parser{
-			env:   "POSTGRESQL_PORT",
-			parse: parseStringToInt,
-		},
-		common.PostGreSQLUsername: "POSTGRESQL_USERNAME",
-		common.PostGreSQLPassword: "POSTGRESQL_PASSWORD",
-		common.PostGreSQLDatabase: "POSTGRESQL_DATABASE",
-		common.PostGreSQLSSLMode:  "POSTGRESQL_SSLMODE",
-		common.MaxJobWorkers: &parser{
-			env:   "MAX_JOB_WORKERS",
-			parse: parseStringToInt,
-		},
-		common.CfgExpiration: &parser{
-			env:   "CFG_EXPIRATION",
-			parse: parseStringToInt,
-		},
-		common.AdmiralEndpoint: "ADMIRAL_URL",
-		common.WithNotary: &parser{
-			env:   "WITH_NOTARY",
-			parse: parseStringToBool,
-		},
-		common.WithClair: &parser{
-			env:   "WITH_CLAIR",
-			parse: parseStringToBool,
-		},
-		common.ClairDBPassword: "CLAIR_DB_PASSWORD",
-		common.ClairDBHost:     "CLAIR_DB_HOST",
-		common.ClairDBUsername: "CLAIR_DB_USERNAME",
-		common.ClairDBPort: &parser{
-			env:   "CLAIR_DB_PORT",
-			parse: parseStringToInt,
-		},
-		common.ClairDBSSLMode:  "CLAIR_DB_SSLMODE",
-		common.UAAEndpoint:     "UAA_ENDPOINT",
-		common.UAAClientID:     "UAA_CLIENTID",
-		common.UAAClientSecret: "UAA_CLIENTSECRET",
-		common.UAAVerifyCert: &parser{
-			env:   "UAA_VERIFY_CERT",
-			parse: parseStringToBool,
-		},
-		common.RegistryStorageProviderName: "REGISTRY_STORAGE_PROVIDER_NAME",
-		common.CoreURL:                     "CORE_URL",
-		common.JobServiceURL:               "JOBSERVICE_URL",
-		common.RegistryURL:                 "REGISTRY_URL",
-		common.TokenServiceURL:             "TOKEN_SERVICE_URL",
-		common.ClairURL:                    "CLAIR_URL",
-		common.NotaryURL:                   "NOTARY_URL",
-		common.DatabaseType:                "DATABASE_TYPE",
-		common.ChartRepoURL:                "CHART_REPOSITORY_URL",
-		common.WithChartMuseum: &parser{
-			env:   "WITH_CHARTMUSEUM",
-			parse: parseStringToBool,
-		},
-	}
-)
-
-type parser struct {
-	// the name of env
-	env string
-	// parse the value of env, e.g. parse string to int or
-	// parse string to bool
-	parse func(string) (interface{}, error)
-}
-
-func parseStringToInt(str string) (interface{}, error) {
-	if len(str) == 0 {
-		return 0, nil
-	}
-	return strconv.Atoi(str)
-}
-
-func parseStringToBool(str string) (interface{}, error) {
-	return strings.ToLower(str) == "true" ||
-		strings.ToLower(str) == "on", nil
-}
-
-// Init system configurations. If env RESET is set or configurations
-// read from storage driver is null, load all configurations from env
-func Init() (err error) {
-	// init database
-	envCfgs := map[string]interface{}{}
-	if err := LoadFromEnv(envCfgs, true); err != nil {
-		return err
-	}
-	db := GetDatabaseFromCfg(envCfgs)
-	if err := dao.InitDatabase(db); err != nil {
-		return err
-	}
-	if err := dao.UpgradeSchema(db); err != nil {
-		return err
-	}
-	if err := dao.CheckSchemaVersion(); err != nil {
-		return err
-	}
-
-	if err := initCfgStore(); err != nil {
-		return err
-	}
-
-	// Use reload key to avoid reset customed setting after restart
-	curCfgs, err := CfgStore.Read()
-	if err != nil {
-		return err
-	}
-	loadAll := isLoadAll(curCfgs)
-	if curCfgs == nil {
-		curCfgs = map[string]interface{}{}
-	}
-	// restart: only repeatload envs will be load
-	// reload_config: all envs will be reload except the skiped envs
-	if err = LoadFromEnv(curCfgs, loadAll); err != nil {
-		return err
-	}
-	AddMissedKey(curCfgs)
-	return CfgStore.Write(curCfgs)
-}
-
-func isLoadAll(cfg map[string]interface{}) bool {
-	return cfg == nil || strings.EqualFold(os.Getenv("RESET"), "true") && os.Getenv("RELOAD_KEY") != cfg[common.ReloadKey]
-}
-
-func initCfgStore() (err error) {
-
-	drivertype := os.Getenv("CFG_DRIVER")
-	if len(drivertype) == 0 {
-		drivertype = common.CfgDriverDB
-	}
-	path := os.Getenv("JSON_CFG_STORE_PATH")
-	if len(path) == 0 {
-		path = defaultJSONCfgStorePath
-	}
-	log.Infof("the path of json configuration storage: %s", path)
-
-	if drivertype == common.CfgDriverDB {
-		CfgStore, err = database.NewCfgStore()
-		if err != nil {
-			return err
-		}
-		// migration check: if no data in the db , then will try to load from path
-		m, err := CfgStore.Read()
-		if err != nil {
-			return err
-		}
-		if m == nil || len(m) == 0 {
-			if _, err := os.Stat(path); err == nil {
-				jsondriver, err := json.NewCfgStore(path)
-				if err != nil {
-					log.Errorf("Failed to migrate configuration from %s", path)
-					return err
-				}
-				jsonconfig, err := jsondriver.Read()
-				if err != nil {
-					log.Errorf("Failed to read old configuration from %s", path)
-					return err
-				}
-				// Update LDAP Scope for migration
-				// only used when migrating harbor release before v1.3
-				// after v1.3 there is always a db configuration before migrate.
-				validLdapScope(jsonconfig, true)
-				err = CfgStore.Write(jsonconfig)
-				if err != nil {
-					log.Error("Failed to update old configuration to database")
-					return err
-				}
-			}
-		}
-	} else {
-		CfgStore, err = json.NewCfgStore(path)
-		if err != nil {
-			return err
-		}
-	}
-	kp := os.Getenv("KEY_PATH")
-	if len(kp) == 0 {
-		kp = defaultKeyPath
-	}
-	log.Infof("the path of key used by key provider: %s", kp)
-
-	encryptor := enpt.NewAESEncryptor(
-		comcfg.NewFileKeyProvider(kp), nil)
-
-	CfgStore = encrypt.NewCfgStore(encryptor, attrs, CfgStore)
-	return nil
-}
-
-// LoadFromEnv loads the configurations from allEnvs, if all is false, it just loads
-// the repeatLoadEnvs and the env which is absent in cfgs
-func LoadFromEnv(cfgs map[string]interface{}, all bool) error {
-	var envs map[string]interface{}
-
-	if all {
-		envs = allEnvs
-	} else {
-		envs = make(map[string]interface{})
-		for k, v := range repeatLoadEnvs {
-			envs[k] = v
-		}
-		for k, v := range allEnvs {
-			if _, exist := cfgs[k]; !exist {
-				envs[k] = v
-			}
-		}
-	}
-
-	reloadCfg := os.Getenv("RESET")
-	skipPattern := os.Getenv("SKIP_RELOAD_ENV_PATTERN")
-	skipPattern = strings.TrimSpace(skipPattern)
-	if len(skipPattern) == 0 {
-		skipPattern = "$^" // doesn't match any string by default
-	}
-	skipMatcher, err := regexp.Compile(skipPattern)
-	if err != nil {
-		log.Errorf("Regular express parse error, skipPattern:%v", skipPattern)
-		skipMatcher = regexp.MustCompile("$^")
-	}
-
-	for k, v := range envs {
-		if str, ok := v.(string); ok {
-			if skipMatcher.MatchString(str) && strings.EqualFold(reloadCfg, "true") {
-				continue
-			}
-			cfgs[k] = os.Getenv(str)
-			continue
-		}
-
-		if parser, ok := v.(*parser); ok {
-			if skipMatcher.MatchString(parser.env) && strings.EqualFold(reloadCfg, "true") {
-				continue
-			}
-			i, err := parser.parse(os.Getenv(parser.env))
-			if err != nil {
-				return err
-			}
-			cfgs[k] = i
-			continue
-		}
-
-		return fmt.Errorf("%v is not string or parse type", v)
-	}
-	validLdapScope(cfgs, false)
-	return nil
-}
-
-// GetDatabaseFromCfg Create database object from config
-func GetDatabaseFromCfg(cfg map[string]interface{}) *models.Database {
-	database := &models.Database{}
-	database.Type = cfg[common.DatabaseType].(string)
-	postgresql := &models.PostGreSQL{}
-	postgresql.Host = utils.SafeCastString(cfg[common.PostGreSQLHOST])
-	postgresql.Port = int(utils.SafeCastInt(cfg[common.PostGreSQLPort]))
-	postgresql.Username = utils.SafeCastString(cfg[common.PostGreSQLUsername])
-	postgresql.Password = utils.SafeCastString(cfg[common.PostGreSQLPassword])
-	postgresql.Database = utils.SafeCastString(cfg[common.PostGreSQLDatabase])
-	postgresql.SSLMode = utils.SafeCastString(cfg[common.PostGreSQLSSLMode])
-	database.PostGreSQL = postgresql
-	return database
-}
-
-// Valid LDAP Scope
-func validLdapScope(cfg map[string]interface{}, isMigrate bool) {
-	ldapScope, ok := cfg[ldapScopeKey].(int)
-	if !ok {
-		ldapScopeFloat, ok := cfg[ldapScopeKey].(float64)
-		if ok {
-			ldapScope = int(ldapScopeFloat)
-		}
-	}
-	if isMigrate && ldapScope > 0 && ldapScope < 3 {
-		ldapScope = ldapScope - 1
-	}
-	if ldapScope >= 3 {
-		ldapScope = 2
-	}
-	if ldapScope < 0 {
-		ldapScope = 0
-	}
-	cfg[ldapScopeKey] = ldapScope
-
-}
-
-// AddMissedKey ... If the configure key is missing in the cfg map, add default value to it
-func AddMissedKey(cfg map[string]interface{}) {
-
-	for k, v := range common.HarborStringKeysMap {
-		if _, exist := cfg[k]; !exist {
-			cfg[k] = v
-		}
-	}
-
-	for k, v := range common.HarborNumKeysMap {
-		if _, exist := cfg[k]; !exist {
-			cfg[k] = v
-		}
-	}
-
-	for k, v := range common.HarborBoolKeysMap {
-		if _, exist := cfg[k]; !exist {
-			cfg[k] = v
-		}
-	}
-
-}
diff --git a/src/adminserver/systemcfg/systemcfg_test.go b/src/adminserver/systemcfg/systemcfg_test.go
deleted file mode 100644
index 60a3333f7..000000000
--- a/src/adminserver/systemcfg/systemcfg_test.go
+++ /dev/null
@@ -1,290 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-package systemcfg
-
-import (
-	"os"
-	"testing"
-
-	"github.com/goharbor/harbor/src/common"
-	"github.com/stretchr/testify/assert"
-)
-
-func TestParseStringToInt(t *testing.T) {
-	cases := []struct {
-		input  string
-		result int
-	}{
-		{"1", 1},
-		{"-1", -1},
-		{"0", 0},
-		{"", 0},
-	}
-
-	for _, c := range cases {
-		i, err := parseStringToInt(c.input)
-		assert.Nil(t, err)
-		assert.Equal(t, c.result, i)
-	}
-}
-
-func TestParseStringToBool(t *testing.T) {
-	cases := []struct {
-		input  string
-		result bool
-	}{
-		{"true", true},
-		{"on", true},
-		{"TRUE", true},
-		{"ON", true},
-		{"other", false},
-		{"", false},
-	}
-
-	for _, c := range cases {
-		b, _ := parseStringToBool(c.input)
-		assert.Equal(t, c.result, b)
-	}
-}
-
-func TestInitCfgStore(t *testing.T) {
-	os.Clearenv()
-	path := "/tmp/config.json"
-	if err := os.Setenv("CFG_DRIVER", "json"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("JSON_CFG_STORE_PATH", path); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	defer os.RemoveAll(path)
-	err := initCfgStore()
-	assert.Nil(t, err)
-}
-
-func TestLoadFromEnv(t *testing.T) {
-	os.Clearenv()
-	ldapURL := "ldap://ldap.com"
-	extEndpoint := "http://harbor.com"
-	if err := os.Setenv("LDAP_URL", ldapURL); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	cfgs := map[string]interface{}{}
-	err := LoadFromEnv(cfgs, true)
-	assert.Nil(t, err)
-	assert.Equal(t, ldapURL, cfgs[common.LDAPURL])
-
-	os.Clearenv()
-	if err := os.Setenv("LDAP_URL", ldapURL); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("EXT_ENDPOINT", extEndpoint); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-
-	if err := os.Setenv("LDAP_VERIFY_CERT", "false"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-
-	cfgs = map[string]interface{}{}
-	err = LoadFromEnv(cfgs, false)
-	assert.Nil(t, err)
-	assert.Equal(t, extEndpoint, cfgs[common.ExtEndpoint])
-	assert.Equal(t, ldapURL, cfgs[common.LDAPURL])
-	assert.Equal(t, false, cfgs[common.LDAPVerifyCert])
-
-	os.Clearenv()
-	if err := os.Setenv("LDAP_URL", ldapURL); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("EXT_ENDPOINT", extEndpoint); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-
-	if err := os.Setenv("LDAP_VERIFY_CERT", "true"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-
-	cfgs = map[string]interface{}{
-		common.LDAPURL: "ldap_url",
-	}
-	err = LoadFromEnv(cfgs, false)
-	assert.Nil(t, err)
-	assert.Equal(t, extEndpoint, cfgs[common.ExtEndpoint])
-	assert.Equal(t, "ldap_url", cfgs[common.LDAPURL])
-	assert.Equal(t, true, cfgs[common.LDAPVerifyCert])
-
-}
-
-func TestIsLoadAll(t *testing.T) {
-	os.Clearenv()
-	if err := os.Setenv("RELOAD_KEY", "123456"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("RESET", "True"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	cfg1 := map[string]interface{}{common.ReloadKey: "123456"}
-	cfg2 := map[string]interface{}{common.ReloadKey: "654321"}
-	assert.False(t, isLoadAll(cfg1))
-	assert.True(t, isLoadAll(cfg2))
-}
-
-func TestLoadFromEnvWithReloadConfigInvalidSkipPattern(t *testing.T) {
-	os.Clearenv()
-	ldapURL := "ldap://ldap.com"
-	extEndpoint := "http://harbor.com"
-	cfgsReload := map[string]interface{}{
-		common.LDAPURL: "ldap_url",
-	}
-	if err := os.Setenv("LDAP_URL", ldapURL); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("EXT_ENDPOINT", extEndpoint); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-
-	if err := os.Setenv("LDAP_VERIFY_CERT", "false"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-
-	if err := os.Setenv("SKIP_RELOAD_ENV_PATTERN", "a(b"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	err := LoadFromEnv(cfgsReload, true)
-	if err != nil {
-		t.Fatalf("failed to load From env: %v", err)
-	}
-	assert.Equal(t, ldapURL, cfgsReload[common.LDAPURL])
-
-	os.Clearenv()
-
-}
-
-func TestLoadFromEnvWithReloadConfigSkipPattern(t *testing.T) {
-	os.Clearenv()
-	ldapURL := "ldap://ldap.com"
-	extEndpoint := "http://harbor.com"
-	cfgsReload := map[string]interface{}{
-		common.LDAPURL: "ldap_url",
-	}
-	if err := os.Setenv("LDAP_URL", ldapURL); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("EXT_ENDPOINT", extEndpoint); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-
-	if err := os.Setenv("LDAP_VERIFY_CERT", "false"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("SKIP_RELOAD_ENV_PATTERN", "^LDAP.*"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	if err := os.Setenv("RESET", "true"); err != nil {
-		t.Fatalf("failed to set env: %v", err)
-	}
-	err := LoadFromEnv(cfgsReload, false)
-	if err != nil {
-		t.Fatalf("failed to load From env: %v", err)
-	}
-	assert.Equal(t, "ldap_url", cfgsReload[common.LDAPURL]) // env value ignored
-
-	os.Clearenv()
-
-}
-func TestGetDatabaseFromCfg(t *testing.T) {
-	cfg := map[string]interface{}{
-		common.DatabaseType:       "postgresql",
-		common.PostGreSQLDatabase: "registry",
-		common.PostGreSQLHOST:     "127.0.0.1",
-		common.PostGreSQLPort:     5432,
-		common.PostGreSQLPassword: "root123",
-		common.PostGreSQLUsername: "postgres",
-	}
-
-	database := GetDatabaseFromCfg(cfg)
-
-	assert.Equal(t, "postgresql", database.Type)
-}
-
-func TestValidLdapScope(t *testing.T) {
-	var dbValue float64
-	dbValue = 2
-	ldapScopeKey := "ldap_scope"
-	testCfgs := []struct {
-		config          map[string]interface{}
-		migrate         bool
-		ldapScopeResult int
-	}{
-		{map[string]interface{}{
-			ldapScopeKey: 1,
-		}, true, 0},
-		{map[string]interface{}{
-			ldapScopeKey: 2,
-		}, true, 1},
-		{map[string]interface{}{
-			ldapScopeKey: 3,
-		}, true, 2},
-		{map[string]interface{}{
-			ldapScopeKey: -1,
-		}, true, 0},
-		{map[string]interface{}{
-			ldapScopeKey: 100,
-		}, false, 2},
-		{map[string]interface{}{
-			ldapScopeKey: -100,
-		}, false, 0},
-		{map[string]interface{}{
-			ldapScopeKey: dbValue,
-		}, false, 2},
-	}
-
-	for i, item := range testCfgs {
-		validLdapScope(item.config, item.migrate)
-		if item.config[ldapScopeKey].(int) != item.ldapScopeResult {
-			t.Fatalf("Failed to update ldapScope expected %v, actual %v at index %v", item.ldapScopeResult, item.config[ldapScopeKey], i)
-		}
-
-	}
-
-}
-func Test_AddMissingKey(t *testing.T) {
-
-	cfg := map[string]interface{}{
-		common.LDAPURL:        "sampleurl",
-		common.EmailPort:      555,
-		common.LDAPVerifyCert: true,
-	}
-
-	type args struct {
-		cfg map[string]interface{}
-	}
-	tests := []struct {
-		name string
-		args args
-	}{
-		{"Add default value", args{cfg}},
-	}
-	for _, tt := range tests {
-		t.Run(tt.name, func(t *testing.T) {
-			AddMissedKey(tt.args.cfg)
-		})
-	}
-
-	if _, ok := cfg[common.LDAPBaseDN]; !ok {
-		t.Errorf("Can not found default value for %v", common.LDAPBaseDN)
-	}
-
-}
diff --git a/src/cmd/migrate-patch/README.md b/src/cmd/migrate-patch/README.md
new file mode 100644
index 000000000..9c9b70568
--- /dev/null
+++ b/src/cmd/migrate-patch/README.md
@@ -0,0 +1,6 @@
+# Migrate Patch
+This is a simple program to fix the breakage that was introduced by migrate in notary.
+## Usage
+```sh
+patch -database 
+```
diff --git a/src/cmd/migrate-patch/main.go b/src/cmd/migrate-patch/main.go
new file mode 100644
index 000000000..f5da0f0f7
--- /dev/null
+++ b/src/cmd/migrate-patch/main.go
@@ -0,0 +1,71 @@
+package main
+
+import (
+	"database/sql"
+	"flag"
+	_ "github.com/lib/pq"
+	"log"
+	"strings"
+	"time"
+)
+
+var dbURL string
+
+const pgSQLAlterStmt string = `ALTER TABLE schema_migrations ADD COLUMN "dirty" boolean NOT NULL DEFAULT false`
+const pgSQLCheckColStmt string = `SELECT T1.C1, T2.C2 FROM
+(SELECT COUNT(*) AS C1 FROM information_schema.tables WHERE table_name='schema_migrations') T1,
+(SELECT COUNT(*) AS C2 FROM information_schema.columns WHERE table_name='schema_migrations' and column_name='dirty') T2`
+const pgSQLDelRows string = `DELETE FROM schema_migrations t WHERE t.version < ( SELECT MAX(version) FROM schema_migrations )`
+
+func init() {
+	urlUsage := `The URL to the target database (driver://url).  Currently it only supports postgres`
+	flag.StringVar(&dbURL, "database", "", urlUsage)
+}
+
+func main() {
+	flag.Parse()
+	log.Printf("Updating database.")
+	if !strings.HasPrefix(dbURL, "postgres://") {
+		log.Fatalf("Invalid URL: '%s'\n", dbURL)
+	}
+	db, err := sql.Open("postgres", dbURL)
+	if err != nil {
+		log.Fatalf("Failed to connect to Database, error: %v\n", err)
+	}
+	defer db.Close()
+	c := make(chan int, 1)
+	go func() {
+		err := db.Ping()
+		for ; err != nil; err = db.Ping() {
+			log.Printf("Failed to Ping DB, sleep for 1 second.\n")
+			time.Sleep(1 * time.Second)
+		}
+		c <- 1
+	}()
+	select {
+	case <-c:
+	case <-time.After(30 * time.Second):
+		log.Fatal("Failed to connect DB after 30 seconds, time out. \n")
+
+	}
+	row := db.QueryRow(pgSQLCheckColStmt)
+	var tblCount, colCount int
+	if err := row.Scan(&tblCount, &colCount); err != nil {
+		log.Fatalf("Failed to check schema_migrations table, error: %v \n", err)
+	}
+	if tblCount == 0 {
+		log.Printf("schema_migrations table does not exist, skip.\n")
+		return
+	}
+	if colCount > 0 {
+		log.Printf("schema_migrations table does not require update, skip.\n")
+		return
+	}
+	if _, err := db.Exec(pgSQLDelRows); err != nil {
+		log.Fatalf("Failed to clean up table, error: %v", err)
+	}
+	if _, err := db.Exec(pgSQLAlterStmt); err != nil {
+		log.Fatalf("Failed to update database, error: %v \n", err)
+	}
+	log.Printf("Done updating database. \n")
+}
diff --git a/src/common/config/config.go b/src/common/config/config.go
deleted file mode 100644
index 90ad2c80f..000000000
--- a/src/common/config/config.go
+++ /dev/null
@@ -1,112 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-
-// Package config provide methods to get the configurations reqruied by code in src/common
-package config
-
-import (
-	"fmt"
-	"time"
-
-	"github.com/astaxie/beego/cache"
-	"github.com/goharbor/harbor/src/adminserver/client"
-	"github.com/goharbor/harbor/src/common"
-)
-
-// Manager manages configurations
-type Manager struct {
-	client client.Client
-	Cache  bool
-	cache  cache.Cache
-	key    string
-}
-
-// NewManager returns an instance of Manager
-func NewManager(client client.Client, enableCache bool) *Manager {
-	m := &Manager{
-		client: client,
-	}
-
-	if enableCache {
-		m.Cache = true
-		m.cache = cache.NewMemoryCache()
-		m.key = "cfg"
-	}
-
-	return m
-}
-
-// Load configurations, if cache is enabled, cache the configurations
-func (m *Manager) Load() (map[string]interface{}, error) {
-	c, err := m.client.GetCfgs()
-	if err != nil {
-		return nil, err
-	}
-
-	if m.Cache {
-		expi, err := getCfgExpiration(c)
-		if err != nil {
-			return nil, err
-		}
-
-		// copy the configuration map so that later modification to the
-		// map does not effect the cached value
-		cachedCfgs := map[string]interface{}{}
-		for k, v := range c {
-			cachedCfgs[k] = v
-		}
-
-		if err = m.cache.Put(m.key, cachedCfgs,
-			time.Duration(expi)*time.Second); err != nil {
-			return nil, err
-		}
-	}
-
-	return c, nil
-}
-
-// Reset configurations
-func (m *Manager) Reset() error {
-	return m.client.ResetCfgs()
-}
-
-func getCfgExpiration(m map[string]interface{}) (int, error) {
-	if m == nil {
-		return 0, fmt.Errorf("can not get cfg expiration as configurations are null")
-	}
-
-	expi, ok := m[common.CfgExpiration]
-	if !ok {
-		return 0, fmt.Errorf("cfg expiration is not set")
-	}
-
-	return int(expi.(float64)), nil
-}
-
-// Get : if cache is enabled, read configurations from cache,
-// if cache is null or cache is disabled it loads configurations directly
-func (m *Manager) Get() (map[string]interface{}, error) {
-	if m.Cache {
-		c := m.cache.Get(m.key)
-		if c != nil {
-			return c.(map[string]interface{}), nil
-		}
-	}
-	return m.Load()
-}
-
-// Upload configurations
-func (m *Manager) Upload(cfgs map[string]interface{}) error {
-	return m.client.UpdateCfgs(cfgs)
-}
diff --git a/src/common/config/config_test.go b/src/common/config/config_test.go
deleted file mode 100644
index 4fe7e29ec..000000000
--- a/src/common/config/config_test.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright Project Harbor Authors
-//
-// 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.
-package config
-
-// the functions in common/config/config.go have been tested
-// by cases in UI and Jobservice
diff --git a/src/common/config/manager.go b/src/common/config/manager.go
index 22831df25..eecd64726 100644
--- a/src/common/config/manager.go
+++ b/src/common/config/manager.go
@@ -125,8 +125,10 @@ func (c *CfgManager) GetAll() map[string]interface{} {
 	metaDataList := metadata.Instance().GetAll()
 	for _, item := range metaDataList {
 		cfgValue, err := c.store.GetAnyType(item.Name)
-		if err != metadata.ErrValueNotSet && err != nil {
-			log.Errorf("Failed to get value of key %v, error %v", item.Name, err)
+		if err != nil {
+			if err != metadata.ErrValueNotSet {
+				log.Errorf("Failed to get value of key %v, error %v", item.Name, err)
+			}
 			continue
 		}
 		resultMap[item.Name] = cfgValue
@@ -145,8 +147,10 @@ func (c *CfgManager) GetUserCfgs() map[string]interface{} {
 	for _, item := range metaDataList {
 		if item.Scope == metadata.UserScope {
 			cfgValue, err := c.store.GetAnyType(item.Name)
-			if err != metadata.ErrValueNotSet && err != nil {
-				log.Errorf("Failed to get value of key %v, error %v", item.Name, err)
+			if err != nil {
+				if err != metadata.ErrValueNotSet {
+					log.Errorf("Failed to get value of key %v, error %v", item.Name, err)
+				}
 				continue
 			}
 			resultMap[item.Name] = cfgValue
diff --git a/src/common/config/metadata/metadatalist.go b/src/common/config/metadata/metadatalist.go
index 1c54a015c..83245e3f7 100644
--- a/src/common/config/metadata/metadatalist.go
+++ b/src/common/config/metadata/metadatalist.go
@@ -30,7 +30,7 @@ type Item struct {
 	Name string `json:"name,omitempty"`
 	// It can be &IntType{}, &StringType{}, &BoolType{}, &PasswordType{}, &MapType{} etc, any type interface implementation
 	ItemType Type
-	// Is this settign can be modified after configure
+	// TODO: Clarify the usage of this attribute
 	Editable bool `json:"editable,omitempty"`
 }
 
@@ -44,6 +44,7 @@ const (
 	LdapGroupGroup = "ldapgroup"
 	EmailGroup     = "email"
 	UAAGroup       = "uaa"
+	HTTPAuthGroup  = "http_auth"
 	DatabaseGroup  = "database"
 	// Put all config items do not belong a existing group into basic
 	BasicGroup = "basic"
@@ -51,13 +52,13 @@ const (
 )
 
 var (
-
 	// ConfigList - All configure items used in harbor
 	// Steps to onboard a new setting
 	// 1. Add configure item in metadatalist.go
 	// 2. Get/Set config settings by CfgManager
 	// 3. CfgManager.Load()/CfgManager.Save() to load/save from configure storage.
 	ConfigList = []Item{
+		// TODO: All these Name should be reference to const, see #7040
 		{Name: "admin_initial_password", Scope: SystemScope, Group: BasicGroup, EnvKey: "HARBOR_ADMIN_PASSWORD", DefaultValue: "", ItemType: &PasswordType{}, Editable: true},
 		{Name: "admiral_url", Scope: SystemScope, Group: BasicGroup, EnvKey: "ADMIRAL_URL", DefaultValue: "", ItemType: &StringType{}, Editable: false},
 		{Name: "auth_mode", Scope: UserScope, Group: BasicGroup, EnvKey: "AUTH_MODE", DefaultValue: "db_auth", ItemType: &AuthModeType{}, Editable: false},
@@ -101,6 +102,7 @@ var (
 		{Name: "ldap_uid", Scope: UserScope, Group: LdapBasicGroup, EnvKey: "LDAP_UID", DefaultValue: "cn", ItemType: &NonEmptyStringType{}, Editable: false},
 		{Name: "ldap_url", Scope: UserScope, Group: LdapBasicGroup, EnvKey: "LDAP_URL", DefaultValue: "", ItemType: &NonEmptyStringType{}, Editable: false},
 		{Name: "ldap_verify_cert", Scope: UserScope, Group: LdapBasicGroup, EnvKey: "LDAP_VERIFY_CERT", DefaultValue: "true", ItemType: &BoolType{}, Editable: false},
+		{Name: common.LDAPGroupMembershipAttribute, Scope: UserScope, Group: LdapBasicGroup, EnvKey: "LDAP_GROUP_MEMBERSHIP_ATTRIBUTE", DefaultValue: "memberof", ItemType: &StringType{}, Editable: true},
 
 		{Name: "max_job_workers", Scope: SystemScope, Group: BasicGroup, EnvKey: "MAX_JOB_WORKERS", DefaultValue: "10", ItemType: &IntType{}, Editable: false},
 		{Name: "notary_url", Scope: SystemScope, Group: BasicGroup, EnvKey: "NOTARY_URL", DefaultValue: "http://notary-server:4443", ItemType: &StringType{}, Editable: false},
@@ -128,8 +130,14 @@ var (
 		{Name: "uaa_endpoint", Scope: UserScope, Group: UAAGroup, EnvKey: "UAA_ENDPOINT", DefaultValue: "", ItemType: &StringType{}, Editable: false},
 		{Name: "uaa_verify_cert", Scope: UserScope, Group: UAAGroup, EnvKey: "UAA_VERIFY_CERT", DefaultValue: "false", ItemType: &BoolType{}, Editable: false},
 
+		{Name: common.HTTPAuthProxyEndpoint, Scope: UserScope, Group: HTTPAuthGroup, EnvKey: "HTTP_AUTHPROXY_ENDPOINT", DefaultValue: "", ItemType: &StringType{}, Editable: false},
+		{Name: common.HTTPAuthProxySkipCertVerify, Scope: UserScope, Group: HTTPAuthGroup, EnvKey: "HTTP_AUTHPROXY_SKIP_CERT_VERIFY", DefaultValue: "false", ItemType: &BoolType{}, Editable: false},
+		{Name: common.HTTPAuthProxyAlwaysOnboard, Scope: UserScope, Group: HTTPAuthGroup, EnvKey: "HTTP_AUTHPROXY_ALWAYS_ONBOARD", DefaultValue: "false", ItemType: &BoolType{}, Editable: false},
+
 		{Name: "with_chartmuseum", Scope: SystemScope, Group: BasicGroup, EnvKey: "WITH_CHARTMUSEUM", DefaultValue: "false", ItemType: &BoolType{}, Editable: true},
 		{Name: "with_clair", Scope: SystemScope, Group: BasicGroup, EnvKey: "WITH_CLAIR", DefaultValue: "false", ItemType: &BoolType{}, Editable: true},
 		{Name: "with_notary", Scope: SystemScope, Group: BasicGroup, EnvKey: "WITH_NOTARY", DefaultValue: "false", ItemType: &BoolType{}, Editable: true},
+		// the unit of expiration is minute, 43200 minutes = 30 days
+		{Name: "robot_token_duration", Scope: UserScope, Group: BasicGroup, EnvKey: "ROBOT_TOKEN_DURATION", DefaultValue: "43200", ItemType: &IntType{}, Editable: true},
 	}
 )
diff --git a/src/common/config/metadata/type.go b/src/common/config/metadata/type.go
index 9da63ff74..b9fb36d3e 100644
--- a/src/common/config/metadata/type.go
+++ b/src/common/config/metadata/type.go
@@ -61,11 +61,11 @@ type AuthModeType struct {
 }
 
 func (t *AuthModeType) validate(str string) error {
-	if str == common.LDAPAuth || str == common.DBAuth || str == common.UAAAuth {
+	if str == common.LDAPAuth || str == common.DBAuth || str == common.UAAAuth || str == common.HTTPAuth {
 		return nil
 	}
-	return fmt.Errorf("invalid %s, shoud be one of %s, %s, %s",
-		common.AUTHMode, common.DBAuth, common.LDAPAuth, common.UAAAuth)
+	return fmt.Errorf("invalid %s, shoud be one of %s, %s, %s, %s",
+		common.AUTHMode, common.DBAuth, common.LDAPAuth, common.UAAAuth, common.HTTPAuth)
 }
 
 // ProjectCreationRestrictionType ...
diff --git a/src/common/const.go b/src/common/const.go
index c79c4795a..f4c8e8a8d 100644
--- a/src/common/const.go
+++ b/src/common/const.go
@@ -41,64 +41,66 @@ const (
 	ResourceTypeImage      = "i"
 	ResourceTypeChart      = "c"
 
-	ExtEndpoint                       = "ext_endpoint"
-	AUTHMode                          = "auth_mode"
-	DatabaseType                      = "database_type"
-	PostGreSQLHOST                    = "postgresql_host"
-	PostGreSQLPort                    = "postgresql_port"
-	PostGreSQLUsername                = "postgresql_username"
-	PostGreSQLPassword                = "postgresql_password"
-	PostGreSQLDatabase                = "postgresql_database"
-	PostGreSQLSSLMode                 = "postgresql_sslmode"
-	SelfRegistration                  = "self_registration"
-	CoreURL                           = "core_url"
-	JobServiceURL                     = "jobservice_url"
-	LDAPURL                           = "ldap_url"
-	LDAPSearchDN                      = "ldap_search_dn"
-	LDAPSearchPwd                     = "ldap_search_password"
-	LDAPBaseDN                        = "ldap_base_dn"
-	LDAPUID                           = "ldap_uid"
-	LDAPFilter                        = "ldap_filter"
-	LDAPScope                         = "ldap_scope"
-	LDAPTimeout                       = "ldap_timeout"
-	LDAPVerifyCert                    = "ldap_verify_cert"
-	LDAPGroupBaseDN                   = "ldap_group_base_dn"
-	LDAPGroupSearchFilter             = "ldap_group_search_filter"
-	LDAPGroupAttributeName            = "ldap_group_attribute_name"
-	LDAPGroupSearchScope              = "ldap_group_search_scope"
-	TokenServiceURL                   = "token_service_url"
-	RegistryURL                       = "registry_url"
-	EmailHost                         = "email_host"
-	EmailPort                         = "email_port"
-	EmailUsername                     = "email_username"
-	EmailPassword                     = "email_password"
-	EmailFrom                         = "email_from"
-	EmailSSL                          = "email_ssl"
-	EmailIdentity                     = "email_identity"
-	EmailInsecure                     = "email_insecure"
-	ProjectCreationRestriction        = "project_creation_restriction"
-	MaxJobWorkers                     = "max_job_workers"
-	TokenExpiration                   = "token_expiration"
-	CfgExpiration                     = "cfg_expiration"
-	JobLogDir                         = "job_log_dir"
-	AdminInitialPassword              = "admin_initial_password"
-	AdmiralEndpoint                   = "admiral_url"
-	WithNotary                        = "with_notary"
-	WithClair                         = "with_clair"
-	ScanAllPolicy                     = "scan_all_policy"
-	ClairDBPassword                   = "clair_db_password"
-	ClairDBHost                       = "clair_db_host"
-	ClairDBPort                       = "clair_db_port"
-	ClairDB                           = "clair_db"
-	ClairDBUsername                   = "clair_db_username"
-	ClairDBSSLMode                    = "clair_db_sslmode"
-	UAAEndpoint                       = "uaa_endpoint"
-	UAAClientID                       = "uaa_client_id"
-	UAAClientSecret                   = "uaa_client_secret"
-	UAAVerifyCert                     = "uaa_verify_cert"
+	ExtEndpoint                 = "ext_endpoint"
+	AUTHMode                    = "auth_mode"
+	DatabaseType                = "database_type"
+	PostGreSQLHOST              = "postgresql_host"
+	PostGreSQLPort              = "postgresql_port"
+	PostGreSQLUsername          = "postgresql_username"
+	PostGreSQLPassword          = "postgresql_password"
+	PostGreSQLDatabase          = "postgresql_database"
+	PostGreSQLSSLMode           = "postgresql_sslmode"
+	SelfRegistration            = "self_registration"
+	CoreURL                     = "core_url"
+	JobServiceURL               = "jobservice_url"
+	LDAPURL                     = "ldap_url"
+	LDAPSearchDN                = "ldap_search_dn"
+	LDAPSearchPwd               = "ldap_search_password"
+	LDAPBaseDN                  = "ldap_base_dn"
+	LDAPUID                     = "ldap_uid"
+	LDAPFilter                  = "ldap_filter"
+	LDAPScope                   = "ldap_scope"
+	LDAPTimeout                 = "ldap_timeout"
+	LDAPVerifyCert              = "ldap_verify_cert"
+	LDAPGroupBaseDN             = "ldap_group_base_dn"
+	LDAPGroupSearchFilter       = "ldap_group_search_filter"
+	LDAPGroupAttributeName      = "ldap_group_attribute_name"
+	LDAPGroupSearchScope        = "ldap_group_search_scope"
+	TokenServiceURL             = "token_service_url"
+	RegistryURL                 = "registry_url"
+	EmailHost                   = "email_host"
+	EmailPort                   = "email_port"
+	EmailUsername               = "email_username"
+	EmailPassword               = "email_password"
+	EmailFrom                   = "email_from"
+	EmailSSL                    = "email_ssl"
+	EmailIdentity               = "email_identity"
+	EmailInsecure               = "email_insecure"
+	ProjectCreationRestriction  = "project_creation_restriction"
+	MaxJobWorkers               = "max_job_workers"
+	TokenExpiration             = "token_expiration"
+	CfgExpiration               = "cfg_expiration"
+	AdminInitialPassword        = "admin_initial_password"
+	AdmiralEndpoint             = "admiral_url"
+	WithNotary                  = "with_notary"
+	WithClair                   = "with_clair"
+	ScanAllPolicy               = "scan_all_policy"
+	ClairDBPassword             = "clair_db_password"
+	ClairDBHost                 = "clair_db_host"
+	ClairDBPort                 = "clair_db_port"
+	ClairDB                     = "clair_db"
+	ClairDBUsername             = "clair_db_username"
+	ClairDBSSLMode              = "clair_db_sslmode"
+	UAAEndpoint                 = "uaa_endpoint"
+	UAAClientID                 = "uaa_client_id"
+	UAAClientSecret             = "uaa_client_secret"
+	UAAVerifyCert               = "uaa_verify_cert"
+	HTTPAuthProxyEndpoint       = "http_authproxy_endpoint"
+	HTTPAuthProxySkipCertVerify = "http_authproxy_skip_cert_verify"
+	HTTPAuthProxyAlwaysOnboard  = "http_authproxy_always_onboard"
+
 	DefaultClairEndpoint              = "http://clair:6060"
 	CfgDriverDB                       = "db"
-	CfgDriverJSON                     = "json"
 	NewHarborAdminName                = "admin@harbor.local"
 	RegistryStorageProviderName       = "registry_storage_provider_name"
 	UserMember                        = "u"
@@ -106,12 +108,11 @@ const (
 	ReadOnly                          = "read_only"
 	ClairURL                          = "clair_url"
 	NotaryURL                         = "notary_url"
-	DefaultAdminserverEndpoint        = "http://adminserver:8080"
 	DefaultCoreEndpoint               = "http://core:8080"
 	DefaultNotaryEndpoint             = "http://notary-server:4443"
 	LdapGroupType                     = 1
-	ReloadKey                         = "reload_key"
 	LdapGroupAdminDn                  = "ldap_group_admin_dn"
+	LDAPGroupMembershipAttribute      = "ldap_group_membership_attribute"
 	DefaultRegistryControllerEndpoint = "http://registryctl:8080"
 	WithChartMuseum                   = "with_chartmuseum"
 	ChartRepoURL                      = "chart_repository_url"
@@ -120,51 +121,7 @@ const (
 	DefaultRegistryCtlURL             = "http://registryctl:8080"
 	DefaultClairHealthCheckServerURL  = "http://clair:6061"
 	// Use this prefix to distinguish harbor user, the prefix contains a special character($), so it cannot be registered as a harbor user.
-	RobotPrefix    = "robot$"
-	CoreConfigPath = "/api/internal/configurations"
-)
-
-// TODO remove with adminserver
-// Shared variable, not allowed to modify
-var (
-
-	// value is default value
-	HarborStringKeysMap = map[string]string{
-		AUTHMode:                   "db_auth",
-		LDAPURL:                    "",
-		LDAPSearchDN:               "",
-		LDAPSearchPwd:              "",
-		LDAPBaseDN:                 "",
-		LDAPUID:                    "",
-		LDAPFilter:                 "",
-		LDAPGroupAttributeName:     "",
-		LDAPGroupBaseDN:            "",
-		LdapGroupAdminDn:           "",
-		LDAPGroupSearchFilter:      "",
-		EmailHost:                  "smtp.mydomain.com",
-		EmailUsername:              "sample_admin@mydomain.com",
-		EmailPassword:              "abc",
-		EmailFrom:                  "admin ",
-		EmailIdentity:              "",
-		ProjectCreationRestriction: ProCrtRestrEveryone,
-		UAAClientID:                "",
-		UAAEndpoint:                "",
-	}
-
-	HarborNumKeysMap = map[string]int{
-		EmailPort:            25,
-		LDAPScope:            2,
-		LDAPTimeout:          5,
-		LDAPGroupSearchScope: 2,
-		TokenExpiration:      30,
-	}
-
-	HarborBoolKeysMap = map[string]bool{
-		EmailSSL:         false,
-		EmailInsecure:    false,
-		SelfRegistration: true,
-		LDAPVerifyCert:   true,
-		UAAVerifyCert:    true,
-		ReadOnly:         false,
-	}
+	RobotPrefix        = "robot$"
+	CoreConfigPath     = "/api/internal/configurations"
+	RobotTokenDuration = "robot_token_duration"
 )
diff --git a/src/common/dao/dao_test.go b/src/common/dao/dao_test.go
index aa8cb1237..364801d33 100644
--- a/src/common/dao/dao_test.go
+++ b/src/common/dao/dao_test.go
@@ -952,12 +952,8 @@ func TestDeleteRepPolicy(t *testing.T) {
 	}
 	t.Logf("delete rep policy, id: %d", policyID)
 	p, err := GetRepPolicy(policyID)
-	if err != nil && err != orm.ErrNoRows {
-		t.Errorf("Error occurred in GetRepPolicy:%v", err)
-	}
-	if p != nil && !p.Deleted {
-		t.Errorf("Able to find rep policy after deletion, id: %d", policyID)
-	}
+	require.Nil(t, err)
+	assert.Nil(t, p)
 }
 
 func TestGetOrmer(t *testing.T) {
diff --git a/src/common/dao/replication_job.go b/src/common/dao/replication_job.go
index f96b98a69..06de6c34d 100644
--- a/src/common/dao/replication_job.go
+++ b/src/common/dao/replication_job.go
@@ -195,13 +195,9 @@ func UpdateRepPolicy(policy *models.RepPolicy) error {
 
 // DeleteRepPolicy ...
 func DeleteRepPolicy(id int64) error {
-	o := GetOrmer()
-	policy := &models.RepPolicy{
-		ID:         id,
-		Deleted:    true,
-		UpdateTime: time.Now(),
-	}
-	_, err := o.Update(policy, "Deleted")
+	_, err := GetOrmer().Delete(&models.RepPolicy{
+		ID: id,
+	})
 	return err
 }
 
@@ -293,6 +289,12 @@ func DeleteRepJob(id int64) error {
 	return err
 }
 
+// DeleteRepJobs deletes replication jobs by policy ID
+func DeleteRepJobs(policyID int64) error {
+	_, err := GetOrmer().QueryTable(&models.RepJob{}).Filter("PolicyID", policyID).Delete()
+	return err
+}
+
 // UpdateRepJobStatus ...
 func UpdateRepJobStatus(id int64, status string) error {
 	o := GetOrmer()
diff --git a/src/common/dao/replication_job_test.go b/src/common/dao/replication_job_test.go
new file mode 100644
index 000000000..9bfb38689
--- /dev/null
+++ b/src/common/dao/replication_job_test.go
@@ -0,0 +1,56 @@
+// Copyright Project Harbor Authors
+//
+// 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.
+
+package dao
+
+import (
+	"testing"
+
+	"github.com/goharbor/harbor/src/common/models"
+	"github.com/stretchr/testify/assert"
+	"github.com/stretchr/testify/require"
+)
+
+func TestDeleteRepJobs(t *testing.T) {
+	var policyID int64 = 999
+	_, err := AddRepJob(models.RepJob{
+		PolicyID:   policyID,
+		Repository: "library/hello-world",
+		Operation:  "delete",
+		Status:     "success",
+	})
+	require.Nil(t, err)
+	_, err = AddRepJob(models.RepJob{
+		PolicyID:   policyID,
+		Repository: "library/hello-world",
+		Operation:  "delete",
+		Status:     "success",
+	})
+	require.Nil(t, err)
+
+	jobs, err := GetRepJobs(&models.RepJobQuery{
+		PolicyID: policyID,
+	})
+	require.Nil(t, err)
+	require.Equal(t, 2, len(jobs))
+
+	err = DeleteRepJobs(policyID)
+	require.Nil(t, err)
+
+	jobs, err = GetRepJobs(&models.RepJobQuery{
+		PolicyID: policyID,
+	})
+	require.Nil(t, err)
+	assert.Equal(t, 0, len(jobs))
+}
diff --git a/src/common/dao/testutils.go b/src/common/dao/testutils.go
index 6ebc6a2c1..95d6c3ab7 100644
--- a/src/common/dao/testutils.go
+++ b/src/common/dao/testutils.go
@@ -133,3 +133,12 @@ func ArrayEqual(arrayA, arrayB []int) bool {
 	}
 	return true
 }
+
+// ClearHTTPAuthProxyUsers remove the records from harbor_users to delete all user imported via
+// HTTP Auth Proxy
+func ClearHTTPAuthProxyUsers() error {
+	o := GetOrmer()
+	sql := "DELETE FROM harbor_user WHERE comment='By Authproxy'"
+	_, err := o.Raw(sql).Exec()
+	return err
+}
diff --git a/src/common/models/config.go b/src/common/models/config.go
index 63490d190..60da3996e 100644
--- a/src/common/models/config.go
+++ b/src/common/models/config.go
@@ -65,36 +65,13 @@ type Email struct {
 	Insecure bool   `json:"insecure"`
 }
 
-/*
-// Registry ...
-type Registry struct {
-	URL string `json:"url"`
+// HTTPAuthProxy wraps the settings for HTTP auth proxy
+type HTTPAuthProxy struct {
+	Endpoint       string `json:"endpoint"`
+	SkipCertVerify bool   `json:"skip_cert_verify"`
+	AlwaysOnBoard  bool   `json:"always_onboard"`
 }
 
-// TokenService ...
-type TokenService struct {
-	URL string `json:"url"`
-}
-
-// SystemCfg holds all configurations of system
-type SystemCfg struct {
-	DomainName                 string          `json:"domain_name"` // Harbor external URL: protocol://host:port
-	Authentication             *Authentication `json:"authentication"`
-	Database                   *Database       `json:"database"`
-	TokenService               *TokenService   `json:"token_service"`
-	Registry                   *Registry       `json:"registry"`
-	Email                      *Email          `json:"email"`
-	VerifyRemoteCert           bool            `json:"verify_remote_cert"`
-	ProjectCreationRestriction string          `json:"project_creation_restriction"`
-	MaxJobWorkers              int             `json:"max_job_workers"`
-	JobLogDir                  string          `json:"job_log_dir"`
-	InitialAdminPwd            string          `json:"initial_admin_pwd,omitempty"`
-	TokenExpiration            int             `json:"token_expiration"` // in minute
-	SecretKey                  string          `json:"secret_key,omitempty"`
-	CfgExpiration              int             `json:"cfg_expiration"`
-}
-*/
-
 // ConfigEntry ...
 type ConfigEntry struct {
 	ID    int64  `orm:"pk;auto;column(id)" json:"-"`
diff --git a/src/common/models/ldap.go b/src/common/models/ldap.go
index cf96105cd..34c690738 100644
--- a/src/common/models/ldap.go
+++ b/src/common/models/ldap.go
@@ -29,11 +29,12 @@ type LdapConf struct {
 
 // LdapGroupConf holds information about ldap group
 type LdapGroupConf struct {
-	LdapGroupBaseDN        string `json:"ldap_group_base_dn,omitempty"`
-	LdapGroupFilter        string `json:"ldap_group_filter,omitempty"`
-	LdapGroupNameAttribute string `json:"ldap_group_name_attribute,omitempty"`
-	LdapGroupSearchScope   int    `json:"ldap_group_search_scope"`
-	LdapGroupAdminDN       string `json:"ldap_group_admin_dn,omitempty"`
+	LdapGroupBaseDN              string `json:"ldap_group_base_dn,omitempty"`
+	LdapGroupFilter              string `json:"ldap_group_filter,omitempty"`
+	LdapGroupNameAttribute       string `json:"ldap_group_name_attribute,omitempty"`
+	LdapGroupSearchScope         int    `json:"ldap_group_search_scope"`
+	LdapGroupAdminDN             string `json:"ldap_group_admin_dn,omitempty"`
+	LdapGroupMembershipAttribute string `json:"ldap_group_membership_attribute,omitempty"`
 }
 
 // LdapUser ...
diff --git a/src/common/models/robot.go b/src/common/models/robot.go
index 6998c4a3f..5cd63ae52 100644
--- a/src/common/models/robot.go
+++ b/src/common/models/robot.go
@@ -29,6 +29,7 @@ type Robot struct {
 	Name         string    `orm:"column(name)" json:"name"`
 	Description  string    `orm:"column(description)" json:"description"`
 	ProjectID    int64     `orm:"column(project_id)" json:"project_id"`
+	ExpiresAt    int64     `orm:"column(expiresat)" json:"expiresat"`
 	Disabled     bool      `orm:"column(disabled)" json:"disabled"`
 	CreationTime time.Time `orm:"column(creation_time);auto_now_add" json:"creation_time"`
 	UpdateTime   time.Time `orm:"column(update_time);auto_now" json:"update_time"`
diff --git a/src/common/token/claims.go b/src/common/token/claims.go
index 4739f9d21..f8cd2dc65 100644
--- a/src/common/token/claims.go
+++ b/src/common/token/claims.go
@@ -25,5 +25,9 @@ func (rc RobotClaims) Valid() error {
 	if rc.Access == nil {
 		return errors.New("The access info cannot be nil")
 	}
+	stdErr := rc.StandardClaims.Valid()
+	if stdErr != nil {
+		return stdErr
+	}
 	return nil
 }
diff --git a/src/common/token/htoken.go b/src/common/token/htoken.go
index ac9067820..897c50467 100644
--- a/src/common/token/htoken.go
+++ b/src/common/token/htoken.go
@@ -19,14 +19,15 @@ type HToken struct {
 }
 
 // New ...
-func New(tokenID, projectID int64, access []*rbac.Policy) (*HToken, error) {
+func New(tokenID, projectID, expiresAt int64, access []*rbac.Policy) (*HToken, error) {
 	rClaims := &RobotClaims{
 		TokenID:   tokenID,
 		ProjectID: projectID,
 		Access:    access,
 		StandardClaims: jwt.StandardClaims{
-			ExpiresAt: time.Now().Add(DefaultOptions.TTL).Unix(),
-			Issuer:    DefaultOptions.Issuer,
+			IssuedAt:  time.Now().UTC().Unix(),
+			ExpiresAt: expiresAt,
+			Issuer:    DefaultOptions().Issuer,
 		},
 	}
 	err := rClaims.Valid()
@@ -34,13 +35,13 @@ func New(tokenID, projectID int64, access []*rbac.Policy) (*HToken, error) {
 		return nil, err
 	}
 	return &HToken{
-		Token: *jwt.NewWithClaims(DefaultOptions.SignMethod, rClaims),
+		Token: *jwt.NewWithClaims(DefaultOptions().SignMethod, rClaims),
 	}, nil
 }
 
 // Raw get the Raw string of token
 func (htk *HToken) Raw() (string, error) {
-	key, err := DefaultOptions.GetKey()
+	key, err := DefaultOptions().GetKey()
 	if err != nil {
 		return "", nil
 	}
@@ -54,12 +55,12 @@ func (htk *HToken) Raw() (string, error) {
 
 // ParseWithClaims ...
 func ParseWithClaims(rawToken string, claims jwt.Claims) (*HToken, error) {
-	key, err := DefaultOptions.GetKey()
+	key, err := DefaultOptions().GetKey()
 	if err != nil {
 		return nil, err
 	}
 	token, err := jwt.ParseWithClaims(rawToken, claims, func(token *jwt.Token) (interface{}, error) {
-		if token.Method.Alg() != DefaultOptions.SignMethod.Alg() {
+		if token.Method.Alg() != DefaultOptions().SignMethod.Alg() {
 			return nil, errors.New("invalid signing method")
 		}
 		switch k := key.(type) {
@@ -75,9 +76,10 @@ func ParseWithClaims(rawToken string, claims jwt.Claims) (*HToken, error) {
 		log.Errorf(fmt.Sprintf("parse token error, %v", err))
 		return nil, err
 	}
+
 	if !token.Valid {
 		log.Errorf(fmt.Sprintf("invalid jwt token, %v", token))
-		return nil, err
+		return nil, errors.New("invalid jwt token")
 	}
 	return &HToken{
 		Token: *token,
diff --git a/src/common/token/htoken_test.go b/src/common/token/htoken_test.go
index 58a853d94..38e187ef7 100644
--- a/src/common/token/htoken_test.go
+++ b/src/common/token/htoken_test.go
@@ -1,25 +1,16 @@
 package token
 
 import (
-	"github.com/goharbor/harbor/src/common/rbac"
-	"github.com/goharbor/harbor/src/common/utils/test"
-	"github.com/goharbor/harbor/src/core/config"
-	"github.com/stretchr/testify/assert"
 	"os"
 	"testing"
+	"time"
+
+	"github.com/goharbor/harbor/src/common/rbac"
+	"github.com/goharbor/harbor/src/core/config"
+	"github.com/stretchr/testify/assert"
 )
 
 func TestMain(m *testing.M) {
-	server, err := test.NewAdminserver(nil)
-	if err != nil {
-		panic(err)
-	}
-	defer server.Close()
-
-	if err := os.Setenv("ADMINSERVER_URL", server.URL); err != nil {
-		panic(err)
-	}
-
 	if err := config.Init(); err != nil {
 		panic(err)
 	}
@@ -40,7 +31,9 @@ func TestNew(t *testing.T) {
 
 	tokenID := int64(123)
 	projectID := int64(321)
-	token, err := New(tokenID, projectID, policies)
+	tokenExpiration := time.Duration(10) * 24 * time.Hour
+	expiresAt := time.Now().UTC().Add(tokenExpiration).Unix()
+	token, err := New(tokenID, projectID, expiresAt, policies)
 
 	assert.Nil(t, err)
 	assert.Equal(t, token.Header["alg"], "RS256")
@@ -59,7 +52,9 @@ func TestRaw(t *testing.T) {
 	tokenID := int64(123)
 	projectID := int64(321)
 
-	token, err := New(tokenID, projectID, policies)
+	tokenExpiration := time.Duration(10) * 24 * time.Hour
+	expiresAt := time.Now().UTC().Add(tokenExpiration).Unix()
+	token, err := New(tokenID, projectID, expiresAt, policies)
 	assert.Nil(t, err)
 
 	rawTk, err := token.Raw()
diff --git a/src/common/token/options.go b/src/common/token/options.go
index a3328d82e..747d7435d 100644
--- a/src/common/token/options.go
+++ b/src/common/token/options.go
@@ -16,12 +16,6 @@ const (
 	signedMethod = "RS256"
 )
 
-var (
-	privateKey = config.TokenPrivateKeyPath()
-	// DefaultOptions ...
-	DefaultOptions = NewOptions()
-)
-
 // Options ...
 type Options struct {
 	SignMethod jwt.SigningMethod
@@ -31,9 +25,10 @@ type Options struct {
 	Issuer     string
 }
 
-// NewOptions ...
-func NewOptions() *Options {
-	privateKey, err := ioutil.ReadFile(privateKey)
+// DefaultOptions ...
+func DefaultOptions() *Options {
+	privateKeyFile := config.TokenPrivateKeyPath()
+	privateKey, err := ioutil.ReadFile(privateKeyFile)
 	if err != nil {
 		log.Errorf(fmt.Sprintf("failed to read private key %v", err))
 		return nil
diff --git a/src/common/token/options_test.go b/src/common/token/options_test.go
index 660975fff..5f64fb380 100644
--- a/src/common/token/options_test.go
+++ b/src/common/token/options_test.go
@@ -8,7 +8,7 @@ import (
 )
 
 func TestNewOptions(t *testing.T) {
-	defaultOpt := DefaultOptions
+	defaultOpt := DefaultOptions()
 	assert.NotNil(t, defaultOpt)
 	assert.Equal(t, defaultOpt.SignMethod, jwt.GetSigningMethod("RS256"))
 	assert.Equal(t, defaultOpt.Issuer, "harbor-token-issuer")
@@ -16,7 +16,7 @@ func TestNewOptions(t *testing.T) {
 }
 
 func TestGetKey(t *testing.T) {
-	defaultOpt := DefaultOptions
+	defaultOpt := DefaultOptions()
 	key, err := defaultOpt.GetKey()
 	assert.Nil(t, err)
 	assert.NotNil(t, key)
diff --git a/src/common/utils/clair/utils_test.go b/src/common/utils/clair/utils_test.go
index 1a6d3d002..a360c9f8c 100644
--- a/src/common/utils/clair/utils_test.go
+++ b/src/common/utils/clair/utils_test.go
@@ -25,7 +25,7 @@ import (
 )
 
 func TestParseServerity(t *testing.T) {
-	assert := assert.New(t)
+	newAssert := assert.New(t)
 	in := map[string]models.Severity{
 		"negligible": models.SevNone,
 		"whatever":   models.SevUnknown,
@@ -35,39 +35,39 @@ func TestParseServerity(t *testing.T) {
 		"Critical":   models.SevHigh,
 	}
 	for k, v := range in {
-		assert.Equal(v, ParseClairSev(k))
+		newAssert.Equal(v, ParseClairSev(k))
 	}
 }
 
 func TestTransformVuln(t *testing.T) {
 	var clairVuln = &models.ClairLayerEnvelope{}
-	assert := assert.New(t)
+	newAssert := assert.New(t)
 	empty := []byte(`{"Layer":{"Features":[]}}`)
 	loadVuln(empty, clairVuln)
 	output, o := transformVuln(clairVuln)
-	assert.Equal(0, output.Total)
-	assert.Equal(models.SevNone, o)
+	newAssert.Equal(0, output.Total)
+	newAssert.Equal(models.SevNone, o)
 	_, f, _, ok := runtime.Caller(0)
 	if !ok {
 		panic("Failed to get current directory")
 	}
 	curDir := path.Dir(f)
-	real, err := ioutil.ReadFile(path.Join(curDir, "test/total-12.json"))
+	fileData, err := ioutil.ReadFile(path.Join(curDir, "test/total-12.json"))
 	if err != nil {
 		panic(err)
 	}
-	loadVuln(real, clairVuln)
+	loadVuln(fileData, clairVuln)
 	output, o = transformVuln(clairVuln)
-	assert.Equal(12, output.Total)
-	assert.Equal(models.SevHigh, o)
+	newAssert.Equal(12, output.Total)
+	newAssert.Equal(models.SevHigh, o)
 	hit := false
 	for _, s := range output.Summary {
 		if s.Sev == int(models.SevHigh) {
-			assert.Equal(3, s.Count, "There should be 3 components with High severity")
+			newAssert.Equal(3, s.Count, "There should be 3 components with High severity")
 			hit = true
 		}
 	}
-	assert.True(hit, "Not found entry for high severity in summary list")
+	newAssert.True(hit, "Not found entry for high severity in summary list")
 }
 
 func loadVuln(input []byte, data *models.ClairLayerEnvelope) {
diff --git a/src/common/utils/ldap/ldap.go b/src/common/utils/ldap/ldap.go
index 88692a46a..627785733 100644
--- a/src/common/utils/ldap/ldap.go
+++ b/src/common/utils/ldap/ldap.go
@@ -117,8 +117,8 @@ func formatURL(ldapURL string) (string, error) {
 
 	if strings.Contains(hostport, ":") {
 		splitHostPort := strings.Split(hostport, ":")
-		port, error := strconv.Atoi(splitHostPort[1])
-		if error != nil {
+		port, err := strconv.Atoi(splitHostPort[1])
+		if err != nil {
 			return "", fmt.Errorf("illegal url port")
 		}
 		if port == 636 {
@@ -212,6 +212,7 @@ func (session *Session) SearchUser(username string) ([]models.LdapUser, error) {
 	for _, ldapEntry := range result.Entries {
 		var u models.LdapUser
 		groupDNList := []string{}
+		groupAttr := strings.ToLower(session.ldapGroupConfig.LdapGroupMembershipAttribute)
 		for _, attr := range ldapEntry.Attributes {
 			// OpenLdap sometimes contain leading space in useranme
 			val := strings.TrimSpace(attr.Values[0])
@@ -227,7 +228,7 @@ func (session *Session) SearchUser(username string) ([]models.LdapUser, error) {
 				u.Email = val
 			case "email":
 				u.Email = val
-			case "memberof":
+			case groupAttr:
 				for _, dnItem := range attr.Values {
 					groupDNList = append(groupDNList, strings.TrimSpace(dnItem))
 					log.Debugf("Found memberof %v", dnItem)
@@ -281,12 +282,18 @@ func (session *Session) Open() error {
 
 // SearchLdap to search ldap with the provide filter
 func (session *Session) SearchLdap(filter string) (*goldap.SearchResult, error) {
-	attributes := []string{"uid", "cn", "mail", "email", "memberof"}
+	attributes := []string{"uid", "cn", "mail", "email"}
 	lowerUID := strings.ToLower(session.ldapConfig.LdapUID)
 
 	if lowerUID != "uid" && lowerUID != "cn" && lowerUID != "mail" && lowerUID != "email" {
 		attributes = append(attributes, session.ldapConfig.LdapUID)
 	}
+
+	// Add the Group membership attribute
+	groupAttr := strings.TrimSpace(session.ldapGroupConfig.LdapGroupMembershipAttribute)
+	log.Debugf("Membership attribute: %s\n", groupAttr)
+	attributes = append(attributes, groupAttr)
+
 	return session.SearchLdapAttribute(session.ldapConfig.LdapBaseDn, filter, attributes)
 }
 
diff --git a/src/common/utils/test/adminserver.go b/src/common/utils/test/config.go
similarity index 75%
rename from src/common/utils/test/adminserver.go
rename to src/common/utils/test/config.go
index 283727225..b57111e4a 100644
--- a/src/common/utils/test/adminserver.go
+++ b/src/common/utils/test/config.go
@@ -15,14 +15,10 @@
 package test
 
 import (
-	"encoding/json"
-	"net/http"
-	"net/http/httptest"
-
 	"github.com/goharbor/harbor/src/common"
 )
 
-var adminServerDefaultConfig = map[string]interface{}{
+var defaultConfig = map[string]interface{}{
 	common.ExtEndpoint:                "https://host01.com",
 	common.AUTHMode:                   common.DBAuth,
 	common.DatabaseType:               "postgresql",
@@ -77,54 +73,7 @@ var adminServerDefaultConfig = map[string]interface{}{
 	common.NotaryURL:                  "http://notary-server:4443",
 }
 
-// NewAdminserver returns a mock admin server
-func NewAdminserver(config map[string]interface{}) (*httptest.Server, error) {
-	m := []*RequestHandlerMapping{}
-	if config == nil {
-		config = adminServerDefaultConfig
-	} else {
-		for k, v := range adminServerDefaultConfig {
-			if _, ok := config[k]; !ok {
-				config[k] = v
-			}
-		}
-	}
-	b, err := json.Marshal(config)
-	if err != nil {
-		return nil, err
-	}
-
-	resp := &Response{
-		StatusCode: http.StatusOK,
-		Body:       b,
-	}
-
-	m = append(m, &RequestHandlerMapping{
-		Method:  "GET",
-		Pattern: "/api/configs",
-		Handler: Handler(resp),
-	})
-
-	m = append(m, &RequestHandlerMapping{
-		Method:  "PUT",
-		Pattern: "/api/configurations",
-		Handler: Handler(&Response{
-			StatusCode: http.StatusOK,
-		}),
-	})
-
-	m = append(m, &RequestHandlerMapping{
-		Method:  "POST",
-		Pattern: "/api/configurations/reset",
-		Handler: Handler(&Response{
-			StatusCode: http.StatusOK,
-		}),
-	})
-
-	return NewServer(m...), nil
-}
-
 // GetDefaultConfigMap returns the defailt config map for easier modification.
 func GetDefaultConfigMap() map[string]interface{} {
-	return adminServerDefaultConfig
+	return defaultConfig
 }
diff --git a/src/core/api/harborapi_test.go b/src/core/api/harborapi_test.go
index 5db28c63f..3fc217f6d 100644
--- a/src/core/api/harborapi_test.go
+++ b/src/core/api/harborapi_test.go
@@ -100,6 +100,7 @@ func init() {
 	beego.Router("/api/projects/:id", &ProjectAPI{}, "delete:Delete;get:Get;put:Put")
 	beego.Router("/api/users/:id", &UserAPI{}, "get:Get")
 	beego.Router("/api/users", &UserAPI{}, "get:List;post:Post;delete:Delete;put:Put")
+	beego.Router("/api/users/search", &UserAPI{}, "get:Search")
 	beego.Router("/api/users/:id([0-9]+)/password", &UserAPI{}, "put:ChangePassword")
 	beego.Router("/api/users/:id/permissions", &UserAPI{}, "get:ListUserPermissions")
 	beego.Router("/api/users/:id/sysadmin", &UserAPI{}, "put:ToggleUserAdminRole")
@@ -821,6 +822,25 @@ func (a testapi) UsersGet(userName string, authInfo usrInfo) (int, []apilib.User
 	return httpStatusCode, successPayLoad, err
 }
 
+// Search registered users of Harbor.
+func (a testapi) UsersSearch(userName string, authInfo ...usrInfo) (int, []apilib.UserSearch, error) {
+	_sling := sling.New().Get(a.basePath)
+	// create path and map variables
+	path := "/api/users/search"
+	_sling = _sling.Path(path)
+	// body params
+	type QueryParams struct {
+		UserName string `url:"username, omitempty"`
+	}
+	_sling = _sling.QueryStruct(&QueryParams{UserName: userName})
+	httpStatusCode, body, err := request(_sling, jsonAcceptHeader, authInfo...)
+	var successPayLoad []apilib.UserSearch
+	if 200 == httpStatusCode && nil == err {
+		err = json.Unmarshal(body, &successPayLoad)
+	}
+	return httpStatusCode, successPayLoad, err
+}
+
 // Get registered users by userid.
 func (a testapi) UsersGetByID(userName string, authInfo usrInfo, userID int) (int, apilib.User, error) {
 	_sling := sling.New().Get(a.basePath)
diff --git a/src/core/api/models/reg_gc.go b/src/core/api/models/reg_gc.go
index 725e0a850..54576db6c 100644
--- a/src/core/api/models/reg_gc.go
+++ b/src/core/api/models/reg_gc.go
@@ -22,16 +22,20 @@ import (
 	"github.com/astaxie/beego/validation"
 	"github.com/goharbor/harbor/src/common/job"
 	"github.com/goharbor/harbor/src/common/job/models"
-	"github.com/goharbor/harbor/src/common/utils"
 	"github.com/goharbor/harbor/src/common/utils/log"
 	"github.com/goharbor/harbor/src/core/config"
+	"github.com/robfig/cron"
 )
 
 const (
+	// ScheduleHourly : 'Hourly'
+	ScheduleHourly = "Hourly"
 	// ScheduleDaily : 'Daily'
 	ScheduleDaily = "Daily"
 	// ScheduleWeekly : 'Weekly'
 	ScheduleWeekly = "Weekly"
+	// ScheduleCustom : 'Custom'
+	ScheduleCustom = "Custom"
 	// ScheduleManual : 'Manual'
 	ScheduleManual = "Manual"
 	// ScheduleNone : 'None'
@@ -48,12 +52,10 @@ type GCReq struct {
 
 // ScheduleParam defines the parameter of schedule trigger
 type ScheduleParam struct {
-	// Daily, Weekly, Manual, None
+	// Daily, Weekly, Custom, Manual, None
 	Type string `json:"type"`
-	// Optional, only used when type is 'weekly'
-	Weekday int8 `json:"weekday"`
-	// The time offset with the UTC 00:00 in seconds
-	Offtime int64 `json:"offtime"`
+	// The cron string of scheduled job
+	Cron string `json:"cron"`
 }
 
 // GCRep holds the response of query gc
@@ -75,9 +77,9 @@ func (gr *GCReq) Valid(v *validation.Validation) {
 		return
 	}
 	switch gr.Schedule.Type {
-	case ScheduleDaily, ScheduleWeekly:
-		if gr.Schedule.Offtime < 0 || gr.Schedule.Offtime > 3600*24 {
-			v.SetError("offtime", fmt.Sprintf("Invalid schedule trigger parameter offtime: %d", gr.Schedule.Offtime))
+	case ScheduleHourly, ScheduleDaily, ScheduleWeekly, ScheduleCustom:
+		if _, err := cron.Parse(gr.Schedule.Cron); err != nil {
+			v.SetError("cron", fmt.Sprintf("Invalid schedule trigger parameter cron: %s", gr.Schedule.Cron))
 		}
 	case ScheduleManual, ScheduleNone:
 	default:
@@ -85,26 +87,15 @@ func (gr *GCReq) Valid(v *validation.Validation) {
 	}
 }
 
-// ToJob converts request to a job reconiged by job service.
-func (gr *GCReq) ToJob() (*models.JobData, error) {
+// ToJob converts request to a job recognized by job service.
+func (gr *GCReq) ToJob() *models.JobData {
 	metadata := &models.JobMetadata{
 		JobKind: gr.JobKind(),
+		Cron:    gr.Schedule.Cron,
 		// GC job must be unique ...
 		IsUnique: true,
 	}
 
-	switch gr.Schedule.Type {
-	case ScheduleDaily:
-		h, m, s := utils.ParseOfftime(gr.Schedule.Offtime)
-		metadata.Cron = fmt.Sprintf("%d %d %d * * *", s, m, h)
-	case ScheduleWeekly:
-		h, m, s := utils.ParseOfftime(gr.Schedule.Offtime)
-		metadata.Cron = fmt.Sprintf("%d %d %d * * %d", s, m, h, gr.Schedule.Weekday%7)
-	case ScheduleManual, ScheduleNone:
-	default:
-		return nil, fmt.Errorf("unsupported schedule trigger type: %s", gr.Schedule.Type)
-	}
-
 	jobData := &models.JobData{
 		Name:       job.ImageGC,
 		Parameters: gr.Parameters,
@@ -112,7 +103,7 @@ func (gr *GCReq) ToJob() (*models.JobData, error) {
 		StatusHook: fmt.Sprintf("%s/service/notifications/jobs/adminjob/%d",
 			config.InternalCoreURL(), gr.ID),
 	}
-	return jobData, nil
+	return jobData
 }
 
 // IsPeriodic ...
@@ -123,7 +114,7 @@ func (gr *GCReq) IsPeriodic() bool {
 // JobKind ...
 func (gr *GCReq) JobKind() string {
 	switch gr.Schedule.Type {
-	case ScheduleDaily, ScheduleWeekly:
+	case ScheduleHourly, ScheduleDaily, ScheduleWeekly, ScheduleCustom:
 		return job.JobKindPeriodic
 	case ScheduleManual:
 		return job.JobKindGeneric
diff --git a/src/core/api/models/reg_gc_test.go b/src/core/api/models/reg_gc_test.go
index 0de7c1486..1d8da9c4e 100644
--- a/src/core/api/models/reg_gc_test.go
+++ b/src/core/api/models/reg_gc_test.go
@@ -41,16 +41,15 @@ func TestMain(m *testing.M) {
 
 func TestToJob(t *testing.T) {
 	schedule := &ScheduleParam{
-		Type:    "Daily",
-		Offtime: 200,
+		Type: "Daily",
+		Cron: "20 3 0 * * *",
 	}
 
 	adminjob := &GCReq{
 		Schedule: schedule,
 	}
 
-	job, err := adminjob.ToJob()
-	assert.Nil(t, err)
+	job := adminjob.ToJob()
 	assert.Equal(t, job.Name, "IMAGE_GC")
 	assert.Equal(t, job.Metadata.JobKind, common_job.JobKindPeriodic)
 	assert.Equal(t, job.Metadata.Cron, "20 3 0 * * *")
@@ -65,29 +64,15 @@ func TestToJobManual(t *testing.T) {
 		Schedule: schedule,
 	}
 
-	job, err := adminjob.ToJob()
-	assert.Nil(t, err)
+	job := adminjob.ToJob()
 	assert.Equal(t, job.Name, "IMAGE_GC")
 	assert.Equal(t, job.Metadata.JobKind, common_job.JobKindGeneric)
 }
 
-func TestToJobErr(t *testing.T) {
-	schedule := &ScheduleParam{
-		Type: "test",
-	}
-
-	adminjob := &GCReq{
-		Schedule: schedule,
-	}
-
-	_, err := adminjob.ToJob()
-	assert.NotNil(t, err)
-}
-
 func TestIsPeriodic(t *testing.T) {
 	schedule := &ScheduleParam{
-		Type:    "Daily",
-		Offtime: 200,
+		Type: "Daily",
+		Cron: "20 3 0 * * *",
 	}
 
 	adminjob := &GCReq{
@@ -100,8 +85,8 @@ func TestIsPeriodic(t *testing.T) {
 
 func TestJobKind(t *testing.T) {
 	schedule := &ScheduleParam{
-		Type:    "Daily",
-		Offtime: 200,
+		Type: "Daily",
+		Cron: "20 3 0 * * *",
 	}
 	adminjob := &GCReq{
 		Schedule: schedule,
@@ -121,12 +106,12 @@ func TestJobKind(t *testing.T) {
 
 func TestCronString(t *testing.T) {
 	schedule := &ScheduleParam{
-		Type:    "Daily",
-		Offtime: 102,
+		Type: "Daily",
+		Cron: "20 3 0 * * *",
 	}
 	adminjob := &GCReq{
 		Schedule: schedule,
 	}
 	cronStr := adminjob.CronString()
-	assert.True(t, strings.EqualFold(cronStr, "{\"type\":\"Daily\",\"Weekday\":0,\"Offtime\":102}"))
+	assert.True(t, strings.EqualFold(cronStr, "{\"type\":\"Daily\",\"Cron\":\"20 3 0 * * *\"}"))
 }
diff --git a/src/core/api/projectmember.go b/src/core/api/projectmember.go
index f4e52d672..27fc4252d 100644
--- a/src/core/api/projectmember.go
+++ b/src/core/api/projectmember.go
@@ -22,6 +22,7 @@ import (
 	"strings"
 
 	"github.com/goharbor/harbor/src/common"
+	"github.com/goharbor/harbor/src/common/dao"
 	"github.com/goharbor/harbor/src/common/dao/project"
 	"github.com/goharbor/harbor/src/common/models"
 	"github.com/goharbor/harbor/src/common/rbac"
@@ -220,11 +221,20 @@ func AddProjectMember(projectID int64, request models.MemberReq) (int, error) {
 		member.EntityID = request.MemberGroup.ID
 		member.EntityType = common.GroupMember
 	} else if len(request.MemberUser.Username) > 0 {
+		var userID int
 		member.EntityType = common.UserMember
-		userID, err := auth.SearchAndOnBoardUser(request.MemberUser.Username)
+		u, err := dao.GetUser(models.User{Username: request.MemberUser.Username})
 		if err != nil {
 			return 0, err
 		}
+		if u != nil {
+			userID = u.UserID
+		} else {
+			userID, err = auth.SearchAndOnBoardUser(request.MemberUser.Username)
+			if err != nil {
+				return 0, err
+			}
+		}
 		member.EntityID = userID
 	} else if len(request.MemberGroup.LdapGroupDN) > 0 {
 
diff --git a/src/core/api/reg_gc.go b/src/core/api/reg_gc.go
index fb1037506..62b67beaf 100644
--- a/src/core/api/reg_gc.go
+++ b/src/core/api/reg_gc.go
@@ -214,7 +214,7 @@ func (gc *GCAPI) GetLog() {
 
 // submitJob submits a job to job service per request
 func (gc *GCAPI) submitJob(gr *models.GCReq) {
-	// cannot post multiple schdule for GC job.
+	// cannot post multiple schedule for GC job.
 	if gr.IsPeriodic() {
 		jobs, err := dao.GetAdminJobs(&common_models.AdminJobQuery{
 			Name: common_job.ImageGC,
@@ -243,7 +243,7 @@ func (gc *GCAPI) submitJob(gr *models.GCReq) {
 	gr.Parameters = map[string]interface{}{
 		"redis_url_reg": os.Getenv("_REDIS_URL_REG"),
 	}
-	job, err := gr.ToJob()
+	job := gr.ToJob()
 	if err != nil {
 		gc.HandleInternalServerError(fmt.Sprintf("%v", err))
 		return
diff --git a/src/core/api/reg_gc_test.go b/src/core/api/reg_gc_test.go
index 5c7b7bbea..7581e4a9e 100644
--- a/src/core/api/reg_gc_test.go
+++ b/src/core/api/reg_gc_test.go
@@ -54,7 +54,7 @@ func TestConvertToGCRep(t *testing.T) {
 				ID:      1,
 				Name:    "IMAGE_GC",
 				Kind:    "Generic",
-				Cron:    "{\"Type\":\"Manual\",\"Weekday\":0,\"Offtime\":0}",
+				Cron:    "{\"Type\":\"Daily\",\"Cron\":\"20 3 0 * * *\"}",
 				Status:  "pending",
 				Deleted: false,
 			},
@@ -63,9 +63,8 @@ func TestConvertToGCRep(t *testing.T) {
 				Name: "IMAGE_GC",
 				Kind: "Generic",
 				Schedule: &api_modes.ScheduleParam{
-					Type:    "Manual",
-					Weekday: 0,
-					Offtime: 0,
+					Type: "Daily",
+					Cron: "20 3 0 * * *",
 				},
 				Status:  "pending",
 				Deleted: false,
diff --git a/src/core/api/robot.go b/src/core/api/robot.go
index 03850f90f..e500bc243 100644
--- a/src/core/api/robot.go
+++ b/src/core/api/robot.go
@@ -16,14 +16,16 @@ package api
 
 import (
 	"fmt"
-	"net/http"
-	"strconv"
-
 	"github.com/goharbor/harbor/src/common"
 	"github.com/goharbor/harbor/src/common/dao"
 	"github.com/goharbor/harbor/src/common/models"
 	"github.com/goharbor/harbor/src/common/rbac"
 	"github.com/goharbor/harbor/src/common/token"
+	"net/http"
+	"strconv"
+
+	"github.com/goharbor/harbor/src/core/config"
+	"time"
 )
 
 // RobotAPI ...
@@ -104,6 +106,9 @@ func (r *RobotAPI) Post() {
 	}
 
 	var robotReq models.RobotReq
+	// Token duration in minutes
+	tokenDuration := time.Duration(config.RobotTokenDuration()) * time.Minute
+	expiresAt := time.Now().UTC().Add(tokenDuration).Unix()
 	r.DecodeJSONReq(&robotReq)
 	createdName := common.RobotPrefix + robotReq.Name
 
@@ -112,6 +117,7 @@ func (r *RobotAPI) Post() {
 		Name:        createdName,
 		Description: robotReq.Description,
 		ProjectID:   r.project.ProjectID,
+		ExpiresAt:   expiresAt,
 	}
 	id, err := dao.AddRobot(&robot)
 	if err != nil {
@@ -125,7 +131,7 @@ func (r *RobotAPI) Post() {
 
 	// generate the token, and return it with response data.
 	// token is not stored in the database.
-	jwtToken, err := token.New(id, r.project.ProjectID, robotReq.Access)
+	jwtToken, err := token.New(id, r.project.ProjectID, expiresAt, robotReq.Access)
 	if err != nil {
 		r.HandleInternalServerError(fmt.Sprintf("failed to valid parameters to generate token for robot account, %v", err))
 		err := dao.DeleteRobot(id)
diff --git a/src/core/api/search.go b/src/core/api/search.go
index eb821ee0e..107d20bae 100644
--- a/src/core/api/search.go
+++ b/src/core/api/search.go
@@ -33,7 +33,7 @@ type chartSearchHandler func(string, []string) ([]*search.Result, error)
 
 var searchHandler chartSearchHandler
 
-// SearchAPI handles requesst to /api/search
+// SearchAPI handles request to /api/search
 type SearchAPI struct {
 	BaseController
 }
@@ -41,7 +41,7 @@ type SearchAPI struct {
 type searchResult struct {
 	Project    []*models.Project        `json:"project"`
 	Repository []map[string]interface{} `json:"repository"`
-	Chart      []*search.Result
+	Chart      *[]*search.Result        `json:"chart,omitempty"`
 }
 
 // Get ...
@@ -141,8 +141,8 @@ func (s *SearchAPI) Get() {
 			log.Errorf("failed to filter charts: %v", err)
 			s.CustomAbort(http.StatusInternalServerError, err.Error())
 		}
+		result.Chart = &chartResults
 
-		result.Chart = chartResults
 	}
 
 	s.Data["json"] = result
diff --git a/src/core/api/search_test.go b/src/core/api/search_test.go
index aec6b9a9d..9f6a32d27 100644
--- a/src/core/api/search_test.go
+++ b/src/core/api/search_test.go
@@ -201,8 +201,8 @@ func TestSearch(t *testing.T) {
 		credential: sysAdmin,
 	}, result)
 	require.Nil(t, err)
-	require.Equal(t, 1, len(result.Chart))
-	require.Equal(t, "library/harbor", result.Chart[0].Name)
+	require.Equal(t, 1, len(*(result.Chart)))
+	require.Equal(t, "library/harbor", (*result.Chart)[0].Name)
 
 	// Restore chart search handler
 	searchHandler = nil
diff --git a/src/core/api/user.go b/src/core/api/user.go
index fb1cfebce..f797096dd 100644
--- a/src/core/api/user.go
+++ b/src/core/api/user.go
@@ -46,6 +46,11 @@ type passwordReq struct {
 	NewPassword string `json:"new_password"`
 }
 
+type userSearch struct {
+	UserID   int    `json:"user_id"`
+	Username string `json:"username"`
+}
+
 // Prepare validates the URL and parms
 func (ua *UserAPI) Prepare() {
 	ua.BaseController.Prepare()
@@ -166,6 +171,40 @@ func (ua *UserAPI) List() {
 	ua.ServeJSON()
 }
 
+// Search ...
+func (ua *UserAPI) Search() {
+	page, size := ua.GetPaginationParams()
+	query := &models.UserQuery{
+		Username: ua.GetString("username"),
+		Email:    ua.GetString("email"),
+		Pagination: &models.Pagination{
+			Page: page,
+			Size: size,
+		},
+	}
+
+	total, err := dao.GetTotalOfUsers(query)
+	if err != nil {
+		ua.HandleInternalServerError(fmt.Sprintf("failed to get total of users: %v", err))
+		return
+	}
+
+	users, err := dao.ListUsers(query)
+	if err != nil {
+		ua.HandleInternalServerError(fmt.Sprintf("failed to get users: %v", err))
+		return
+	}
+
+	var userSearches []userSearch
+	for _, user := range users {
+		userSearches = append(userSearches, userSearch{UserID: user.UserID, Username: user.Username})
+	}
+
+	ua.SetPaginationHeader(total, page, size)
+	ua.Data["json"] = userSearches
+	ua.ServeJSON()
+}
+
 // Put ...
 func (ua *UserAPI) Put() {
 	if !ua.modifiable() {
diff --git a/src/core/api/user_test.go b/src/core/api/user_test.go
index 00cdfa234..75d324322 100644
--- a/src/core/api/user_test.go
+++ b/src/core/api/user_test.go
@@ -208,6 +208,35 @@ func TestUsersGet(t *testing.T) {
 	}
 }
 
+func TestUsersSearch(t *testing.T) {
+
+	fmt.Println("Testing User Search")
+	assert := assert.New(t)
+	apiTest := newHarborAPI()
+
+	testUser0002.Username = "testUser0002"
+	// case 1: Search user2 without auth, expect 401
+
+	testUser0002Auth = &usrInfo{"testUser0002", "testUser0002"}
+	code, users, err := apiTest.UsersSearch(testUser0002.Username)
+	if err != nil {
+		t.Error("Error occurred while search users", err.Error())
+		t.Log(err)
+	} else {
+		assert.Equal(401, code, "Search users status should be 401")
+	}
+	// case 2: Search user2 with with common auth, expect 200
+	code, users, err = apiTest.UsersSearch(testUser0002.Username, *testUser0002Auth)
+	if err != nil {
+		t.Error("Error occurred while search users", err.Error())
+		t.Log(err)
+	} else {
+		assert.Equal(200, code, "Search users status should be 200")
+		assert.Equal(1, len(users), "Search users record should be 1 ")
+		testUser0002ID = users[0].UserID
+	}
+}
+
 func TestUsersGetByID(t *testing.T) {
 
 	fmt.Println("Testing User GetByID")
diff --git a/src/core/auth/authproxy/auth.go b/src/core/auth/authproxy/auth.go
index a87e567d7..a71786503 100644
--- a/src/core/auth/authproxy/auth.go
+++ b/src/core/auth/authproxy/auth.go
@@ -22,27 +22,38 @@ import (
 	"github.com/goharbor/harbor/src/common/models"
 	"github.com/goharbor/harbor/src/common/utils/log"
 	"github.com/goharbor/harbor/src/core/auth"
+	"github.com/goharbor/harbor/src/core/config"
 	"io/ioutil"
 	"net/http"
-	"os"
 	"strings"
 	"sync"
+	"time"
 )
 
+const refreshDuration = 5 * time.Second
+const userEntryComment = "By Authproxy"
+
 // Auth implements HTTP authenticator the required attributes.
 // The attribute Endpoint is the HTTP endpoint to which the POST request should be issued for authentication
 type Auth struct {
 	auth.DefaultAuthenticateHelper
 	sync.Mutex
-	Endpoint       string
-	SkipCertVerify bool
-	AlwaysOnboard  bool
-	client         *http.Client
+	Endpoint         string
+	SkipCertVerify   bool
+	AlwaysOnboard    bool
+	settingTimeStamp time.Time
+	client           *http.Client
 }
 
 // Authenticate issues http POST request to Endpoint if it returns 200 the authentication is considered success.
 func (a *Auth) Authenticate(m models.AuthModel) (*models.User, error) {
-	a.ensure()
+	err := a.ensure()
+	if err != nil {
+		if a.Endpoint == "" {
+			return nil, fmt.Errorf("failed to initialize HTTP Auth Proxy Authenticator, error: %v", err)
+		}
+		log.Warningf("Failed to refresh configuration for HTTP Auth Proxy Authenticator, error: %v, old settings will be used", err)
+	}
 	req, err := http.NewRequest(http.MethodPost, a.Endpoint, nil)
 	if err != nil {
 		return nil, fmt.Errorf("failed to send request, error: %v", err)
@@ -109,7 +120,7 @@ func (a *Auth) fillInModel(u *models.User) error {
 	}
 	u.Realname = u.Username
 	u.Password = "1234567ab"
-	u.Comment = "By Authproxy"
+	u.Comment = userEntryComment
 	if strings.Contains(u.Username, "@") {
 		u.Email = u.Username
 	} else {
@@ -118,13 +129,17 @@ func (a *Auth) fillInModel(u *models.User) error {
 	return nil
 }
 
-func (a *Auth) ensure() {
+func (a *Auth) ensure() error {
 	a.Lock()
 	defer a.Unlock()
-	if a.Endpoint == "" {
-		a.Endpoint = os.Getenv("AUTHPROXY_ENDPOINT")
-		a.SkipCertVerify = strings.EqualFold(os.Getenv("AUTHPROXY_SKIP_CERT_VERIFY"), "true")
-		a.AlwaysOnboard = strings.EqualFold(os.Getenv("AUTHPROXY_ALWAYS_ONBOARD"), "true")
+	if time.Now().Sub(a.settingTimeStamp) >= refreshDuration {
+		setting, err := config.HTTPAuthProxySetting()
+		if err != nil {
+			return err
+		}
+		a.Endpoint = setting.Endpoint
+		a.SkipCertVerify = setting.SkipCertVerify
+		a.AlwaysOnboard = setting.AlwaysOnBoard
 	}
 	if a.client == nil {
 		tr := &http.Transport{
@@ -136,6 +151,7 @@ func (a *Auth) ensure() {
 			Transport: tr,
 		}
 	}
+	return nil
 }
 
 func init() {
diff --git a/src/core/auth/authproxy/auth_test.go b/src/core/auth/authproxy/auth_test.go
index 9c0c81cbd..5ceecbba8 100644
--- a/src/core/auth/authproxy/auth_test.go
+++ b/src/core/auth/authproxy/auth_test.go
@@ -15,13 +15,16 @@
 package authproxy
 
 import (
+	"github.com/goharbor/harbor/src/common/dao"
 	"github.com/goharbor/harbor/src/common/models"
+	cut "github.com/goharbor/harbor/src/common/utils/test"
 	"github.com/goharbor/harbor/src/core/auth"
 	"github.com/goharbor/harbor/src/core/auth/authproxy/test"
 	"github.com/stretchr/testify/assert"
 	"net/http/httptest"
 	"os"
 	"testing"
+	"time"
 )
 
 var mockSvr *httptest.Server
@@ -30,13 +33,22 @@ var pwd = "1234567ab"
 var cmt = "By Authproxy"
 
 func TestMain(m *testing.M) {
+	cut.InitDatabaseFromEnv()
+	if err := dao.ClearHTTPAuthProxyUsers(); err != nil {
+		panic(err)
+	}
 	mockSvr = test.NewMockServer(map[string]string{"jt": "pp", "Admin@vsphere.local": "Admin!23"})
 	defer mockSvr.Close()
 	a = &Auth{
 		Endpoint:       mockSvr.URL + "/test/login",
 		SkipCertVerify: true,
+		// So it won't require mocking the cfgManager
+		settingTimeStamp: time.Now(),
 	}
 	rc := m.Run()
+	if err := dao.ClearHTTPAuthProxyUsers(); err != nil {
+		panic(err)
+	}
 	if rc != 0 {
 		os.Exit(rc)
 	}
@@ -104,7 +116,6 @@ func TestAuth_Authenticate(t *testing.T) {
 	}
 }
 
-/* TODO: Enable this case after adminserver refactor is merged.
 func TestAuth_PostAuthenticate(t *testing.T) {
 	type tc struct {
 		input  *models.User
@@ -120,7 +131,7 @@ func TestAuth_PostAuthenticate(t *testing.T) {
 				Email:    "jt@placeholder.com",
 				Realname: "jt",
 				Password: pwd,
-				Comment:  fmt.Sprintf(cmtTmpl, mockSvr.URL+"/test/login"),
+				Comment:  userEntryComment,
 			},
 		},
 		{
@@ -129,16 +140,19 @@ func TestAuth_PostAuthenticate(t *testing.T) {
 			},
 			expect: models.User{
 				Username: "Admin@vsphere.local",
-				Email:    "jt@placeholder.com",
+				Email:    "Admin@vsphere.local",
 				Realname: "Admin@vsphere.local",
 				Password: pwd,
-				Comment:  fmt.Sprintf(cmtTmpl, mockSvr.URL+"/test/login"),
+				Comment:  userEntryComment,
 			},
 		},
 	}
 	for _, c := range suite {
 		a.PostAuthenticate(c.input)
-		assert.Equal(t, c.expect, *c.input)
+		assert.Equal(t, c.expect.Username, c.input.Username)
+		assert.Equal(t, c.expect.Email, c.input.Email)
+		assert.Equal(t, c.expect.Realname, c.input.Realname)
+		assert.Equal(t, c.expect.Comment, c.input.Comment)
 	}
+
 }
-*/
diff --git a/src/core/auth/db/db_test.go b/src/core/auth/db/db_test.go
index 161cf4823..3ca0c81c4 100644
--- a/src/core/auth/db/db_test.go
+++ b/src/core/auth/db/db_test.go
@@ -30,38 +30,23 @@ import (
 )
 
 var adminServerTestConfig = map[string]interface{}{
-	common.ExtEndpoint:        "host01.com",
-	common.AUTHMode:           "db_auth",
-	common.DatabaseType:       "postgresql",
-	common.PostGreSQLHOST:     "127.0.0.1",
-	common.PostGreSQLPort:     5432,
-	common.PostGreSQLUsername: "postgres",
-	common.PostGreSQLPassword: "root123",
-	common.PostGreSQLDatabase: "registry",
-	// config.SelfRegistration: true,
-	common.LDAPURL:       "ldap://127.0.0.1",
-	common.LDAPSearchDN:  "cn=admin,dc=example,dc=com",
-	common.LDAPSearchPwd: "admin",
-	common.LDAPBaseDN:    "dc=example,dc=com",
-	common.LDAPUID:       "uid",
-	common.LDAPFilter:    "",
-	common.LDAPScope:     3,
-	common.LDAPTimeout:   30,
-	//	config.TokenServiceURL:            "",
-	//	config.RegistryURL:                "",
-	//	config.EmailHost:                  "",
-	//	config.EmailPort:                  25,
-	//	config.EmailUsername:              "",
-	//	config.EmailPassword:              "password",
-	//	config.EmailFrom:                  "from",
-	//	config.EmailSSL:                   true,
-	//	config.EmailIdentity:              "",
-	//	config.ProjectCreationRestriction: config.ProCrtRestrAdmOnly,
-	//	config.VerifyRemoteCert:           false,
-	//	config.MaxJobWorkers:              3,
-	//	config.TokenExpiration:            30,
-	common.CfgExpiration: 5,
-	//	config.JobLogDir:                  "/var/log/jobs",
+	common.ExtEndpoint:          "host01.com",
+	common.AUTHMode:             "db_auth",
+	common.DatabaseType:         "postgresql",
+	common.PostGreSQLHOST:       "127.0.0.1",
+	common.PostGreSQLPort:       5432,
+	common.PostGreSQLUsername:   "postgres",
+	common.PostGreSQLPassword:   "root123",
+	common.PostGreSQLDatabase:   "registry",
+	common.LDAPURL:              "ldap://127.0.0.1",
+	common.LDAPSearchDN:         "cn=admin,dc=example,dc=com",
+	common.LDAPSearchPwd:        "admin",
+	common.LDAPBaseDN:           "dc=example,dc=com",
+	common.LDAPUID:              "uid",
+	common.LDAPFilter:           "",
+	common.LDAPScope:            3,
+	common.LDAPTimeout:          30,
+	common.CfgExpiration:        5,
 	common.AdminInitialPassword: "password",
 }
 
diff --git a/src/core/auth/ldap/ldap_test.go b/src/core/auth/ldap/ldap_test.go
index 93acb8606..566fd93f9 100644
--- a/src/core/auth/ldap/ldap_test.go
+++ b/src/core/auth/ldap/ldap_test.go
@@ -32,7 +32,7 @@ import (
 	coreConfig "github.com/goharbor/harbor/src/core/config"
 )
 
-var adminServerLdapTestConfig = map[string]interface{}{
+var ldapTestConfig = map[string]interface{}{
 	common.ExtEndpoint:        "host01.com",
 	common.AUTHMode:           "ldap_auth",
 	common.DatabaseType:       "postgresql",
@@ -42,29 +42,15 @@ var adminServerLdapTestConfig = map[string]interface{}{
 	common.PostGreSQLPassword: "root123",
 	common.PostGreSQLDatabase: "registry",
 	// config.SelfRegistration: true,
-	common.LDAPURL:       "ldap://127.0.0.1",
-	common.LDAPSearchDN:  "cn=admin,dc=example,dc=com",
-	common.LDAPSearchPwd: "admin",
-	common.LDAPBaseDN:    "dc=example,dc=com",
-	common.LDAPUID:       "uid",
-	common.LDAPFilter:    "",
-	common.LDAPScope:     2,
-	common.LDAPTimeout:   30,
-	//	config.TokenServiceURL:            "",
-	//	config.RegistryURL:                "",
-	//	config.EmailHost:                  "",
-	//	config.EmailPort:                  25,
-	//	config.EmailUsername:              "",
-	//	config.EmailPassword:              "password",
-	//	config.EmailFrom:                  "from",
-	//	config.EmailSSL:                   true,
-	//	config.EmailIdentity:              "",
-	//	config.ProjectCreationRestriction: config.ProCrtRestrAdmOnly,
-	//	config.VerifyRemoteCert:           false,
-	//	config.MaxJobWorkers:              3,
-	//	config.TokenExpiration:            30,
-	common.CfgExpiration: 5,
-	//	config.JobLogDir:                  "/var/log/jobs",
+	common.LDAPURL:                "ldap://127.0.0.1",
+	common.LDAPSearchDN:           "cn=admin,dc=example,dc=com",
+	common.LDAPSearchPwd:          "admin",
+	common.LDAPBaseDN:             "dc=example,dc=com",
+	common.LDAPUID:                "uid",
+	common.LDAPFilter:             "",
+	common.LDAPScope:              2,
+	common.LDAPTimeout:            30,
+	common.CfgExpiration:          5,
 	common.AdminInitialPassword:   "password",
 	common.LDAPGroupSearchFilter:  "objectclass=groupOfNames",
 	common.LDAPGroupBaseDN:        "dc=example,dc=com",
@@ -75,7 +61,7 @@ var adminServerLdapTestConfig = map[string]interface{}{
 
 func TestMain(m *testing.M) {
 	test.InitDatabaseFromEnv()
-	coreConfig.InitWithSettings(adminServerLdapTestConfig)
+	coreConfig.InitWithSettings(ldapTestConfig)
 
 	secretKeyPath := "/tmp/secretkey"
 	_, err := test.GenerateKey(secretKeyPath)
@@ -93,7 +79,8 @@ func TestMain(m *testing.M) {
 	initSqls := []string{
 		"insert into harbor_user (username, email, password, realname)  values ('member_test_01', 'member_test_01@example.com', '123456', 'member_test_01')",
 		"insert into project (name, owner_id) values ('member_test_01', 1)",
-		"insert into user_group (group_name, group_type, group_property) values ('test_group_01', 1, 'CN=harbor_users,OU=sample,OU=vmware,DC=harbor,DC=com')",
+		"insert into project (name, owner_id) values ('member_test_02', 1)",
+		"insert into user_group (group_name, group_type, ldap_group_dn) values ('test_group_01', 1, 'CN=harbor_users,OU=sample,OU=vmware,DC=harbor,DC=com')",
 		"update project set owner_id = (select user_id from harbor_user where username = 'member_test_01') where name = 'member_test_01'",
 		"insert into project_member (project_id, entity_id, entity_type, role) values ( (select project_id from project where name = 'member_test_01') , (select user_id from harbor_user where username = 'member_test_01'), 'u', 1)",
 		"insert into project_member (project_id, entity_id, entity_type, role) values ( (select project_id from project where name = 'member_test_01') , (select id from user_group where group_name = 'test_group_01'), 'g', 1)",
@@ -101,6 +88,7 @@ func TestMain(m *testing.M) {
 
 	clearSqls := []string{
 		"delete from project where name='member_test_01'",
+		"delete from project where name='member_test_02'",
 		"delete from harbor_user where username='member_test_01' or username='pm_sample'",
 		"delete from user_group",
 		"delete from project_member",
@@ -389,6 +377,25 @@ func TestAddProjectMemberWithLdapUser(t *testing.T) {
 	if pmid == 0 {
 		t.Errorf("Error occurred in AddOrUpdateProjectMember: pmid:%v", pmid)
 	}
+
+	currentProject, err = dao.GetProjectByName("member_test_02")
+	if err != nil {
+		t.Errorf("Error occurred when GetProjectByName: %v", err)
+	}
+	member2 := models.MemberReq{
+		ProjectID: currentProject.ProjectID,
+		MemberUser: models.User{
+			Username: "mike",
+		},
+		Role: models.PROJECTADMIN,
+	}
+	pmid, err = api.AddProjectMember(currentProject.ProjectID, member2)
+	if err != nil {
+		t.Errorf("Error occurred in AddOrUpdateProjectMember: %v", err)
+	}
+	if pmid == 0 {
+		t.Errorf("Error occurred in AddOrUpdateProjectMember: pmid:%v", pmid)
+	}
 }
 func TestAddProjectMemberWithLdapGroup(t *testing.T) {
 	currentProject, err := dao.GetProjectByName("member_test_01")
diff --git a/src/core/config/config.go b/src/core/config/config.go
index d90b61751..88d1586a4 100644
--- a/src/core/config/config.go
+++ b/src/core/config/config.go
@@ -212,11 +212,12 @@ func LDAPGroupConf() (*models.LdapGroupConf, error) {
 		return nil, err
 	}
 	return &models.LdapGroupConf{
-		LdapGroupBaseDN:        cfgMgr.Get(common.LDAPGroupBaseDN).GetString(),
-		LdapGroupFilter:        cfgMgr.Get(common.LDAPGroupSearchFilter).GetString(),
-		LdapGroupNameAttribute: cfgMgr.Get(common.LDAPGroupAttributeName).GetString(),
-		LdapGroupSearchScope:   cfgMgr.Get(common.LDAPGroupSearchScope).GetInt(),
-		LdapGroupAdminDN:       cfgMgr.Get(common.LdapGroupAdminDn).GetString(),
+		LdapGroupBaseDN:              cfgMgr.Get(common.LDAPGroupBaseDN).GetString(),
+		LdapGroupFilter:              cfgMgr.Get(common.LDAPGroupSearchFilter).GetString(),
+		LdapGroupNameAttribute:       cfgMgr.Get(common.LDAPGroupAttributeName).GetString(),
+		LdapGroupSearchScope:         cfgMgr.Get(common.LDAPGroupSearchScope).GetInt(),
+		LdapGroupAdminDN:             cfgMgr.Get(common.LdapGroupAdminDn).GetString(),
+		LdapGroupMembershipAttribute: cfgMgr.Get(common.LDAPGroupMembershipAttribute).GetString(),
 	}, nil
 }
 
@@ -225,6 +226,11 @@ func TokenExpiration() (int, error) {
 	return cfgMgr.Get(common.TokenExpiration).GetInt(), nil
 }
 
+// RobotTokenDuration returns the token expiration time of robot account (in minute)
+func RobotTokenDuration() int {
+	return cfgMgr.Get(common.RobotTokenDuration).GetInt()
+}
+
 // ExtEndpoint returns the external URL of Harbor: protocol://host:port
 func ExtEndpoint() (string, error) {
 	return cfgMgr.Get(common.ExtEndpoint).GetString(), nil
@@ -457,3 +463,17 @@ func GetClairHealthCheckServerURL() string {
 	}
 	return url
 }
+
+// HTTPAuthProxySetting returns the setting of HTTP Auth proxy.  the settings are only meaningful when the auth_mode is
+// set to http_auth
+func HTTPAuthProxySetting() (*models.HTTPAuthProxy, error) {
+	if err := cfgMgr.Load(); err != nil {
+		return nil, err
+	}
+	return &models.HTTPAuthProxy{
+		Endpoint:       cfgMgr.Get(common.HTTPAuthProxyEndpoint).GetString(),
+		SkipCertVerify: cfgMgr.Get(common.HTTPAuthProxySkipCertVerify).GetBool(),
+		AlwaysOnBoard:  cfgMgr.Get(common.HTTPAuthProxyAlwaysOnboard).GetBool(),
+	}, nil
+
+}
diff --git a/src/core/config/config_test.go b/src/core/config/config_test.go
index 549dc37d5..ed95030de 100644
--- a/src/core/config/config_test.go
+++ b/src/core/config/config_test.go
@@ -97,6 +97,9 @@ func TestConfig(t *testing.T) {
 		t.Fatalf("failed to get token expiration: %v", err)
 	}
 
+	tkExp := RobotTokenDuration()
+	assert.Equal(tkExp, 43200)
+
 	if _, err := ExtEndpoint(); err != nil {
 		t.Fatalf("failed to get domain name: %v", err)
 	}
@@ -222,3 +225,19 @@ func TestConfigureValue_GetMap(t *testing.T) {
 	}
 	fmt.Printf("%+v\n", policy)
 }
+
+func TestHTTPAuthProxySetting(t *testing.T) {
+	m := map[string]interface{}{
+		common.HTTPAuthProxyAlwaysOnboard:  "true",
+		common.HTTPAuthProxySkipCertVerify: "true",
+		common.HTTPAuthProxyEndpoint:       "https://auth.proxy/suffix",
+	}
+	InitWithSettings(m)
+	v, e := HTTPAuthProxySetting()
+	assert.Nil(t, e)
+	assert.Equal(t, *v, models.HTTPAuthProxy{
+		Endpoint:       "https://auth.proxy/suffix",
+		AlwaysOnBoard:  true,
+		SkipCertVerify: true,
+	})
+}
diff --git a/src/core/promgr/pmsdriver/admiral/admiral_test.go b/src/core/promgr/pmsdriver/admiral/admiral_test.go
index 957da62bc..bcc1bb325 100644
--- a/src/core/promgr/pmsdriver/admiral/admiral_test.go
+++ b/src/core/promgr/pmsdriver/admiral/admiral_test.go
@@ -188,7 +188,7 @@ func TestGet(t *testing.T) {
 		Name: name,
 	})
 	require.Nil(t, err)
-	defer delete(t, id)
+	defer deleteProject(t, id)
 
 	// get by invalid input type
 	_, err = d.Get([]string{})
@@ -230,7 +230,7 @@ func TestCreate(t *testing.T) {
 		},
 	})
 	require.Nil(t, err)
-	defer delete(t, id)
+	defer deleteProject(t, id)
 
 	project, err := d.Get(id)
 	assert.Nil(t, err)
@@ -288,7 +288,7 @@ func TestList(t *testing.T) {
 		Name: name1,
 	})
 	require.Nil(t, err)
-	defer delete(t, id1)
+	defer deleteProject(t, id1)
 
 	name2 := "project_for_test_get_all_02"
 	id2, err := d.Create(&models.Project{
@@ -298,7 +298,7 @@ func TestList(t *testing.T) {
 		},
 	})
 	require.Nil(t, err)
-	defer delete(t, id2)
+	defer deleteProject(t, id2)
 
 	// no filter
 	result, err := d.List(nil)
@@ -346,7 +346,7 @@ func TestList(t *testing.T) {
 	assert.True(t, found2)
 }
 
-func delete(t *testing.T, id int64) {
+func deleteProject(t *testing.T, id int64) {
 	d := NewDriver(client, endpoint, tokenReader)
 	if err := d.Delete(id); err != nil {
 		t.Logf("failed to delete project %d: %v", id, err)
diff --git a/src/core/router.go b/src/core/router.go
index f0cbec0b7..a954ff950 100644
--- a/src/core/router.go
+++ b/src/core/router.go
@@ -45,6 +45,7 @@ func initRouters() {
 
 		beego.Router("/api/users/:id", &api.UserAPI{}, "get:Get;delete:Delete;put:Put")
 		beego.Router("/api/users", &api.UserAPI{}, "get:List;post:Post")
+		beego.Router("/api/users/search", &api.UserAPI{}, "get:Search")
 		beego.Router("/api/users/:id([0-9]+)/password", &api.UserAPI{}, "put:ChangePassword")
 		beego.Router("/api/users/:id/permissions", &api.UserAPI{}, "get:ListUserPermissions")
 		beego.Router("/api/users/:id/sysadmin", &api.UserAPI{}, "put:ToggleUserAdminRole")
diff --git a/src/core/service/notifications/clair/handler.go b/src/core/service/notifications/clair/handler.go
index 3ff295030..0c96e6768 100644
--- a/src/core/service/notifications/clair/handler.go
+++ b/src/core/service/notifications/clair/handler.go
@@ -64,8 +64,8 @@ func (h *Handler) Handle() {
 			ns[vuln.NamespaceName] = true
 		}
 	}
-	if new := notification.New; new != nil {
-		if vuln := new.Vulnerability; vuln != nil {
+	if newNotification := notification.New; newNotification != nil {
+		if vuln := newNotification.Vulnerability; vuln != nil {
 			log.Debugf("new vulnerability namespace: %s", vuln.NamespaceName)
 			ns[vuln.NamespaceName] = true
 		}
diff --git a/src/jobservice/README.md b/src/jobservice/README.md
index b707dd942..a7c8e4e94 100644
--- a/src/jobservice/README.md
+++ b/src/jobservice/README.md
@@ -382,7 +382,7 @@ The following configuration options are supported:
 | worker_pool.redis_pool.namespace | The namespace used in redis| JOB_SERVICE_POOL_REDIS_NAMESPACE |
 | loggers | Loggers for job service itself. Refer to [Configure loggers](#configure-loggers)|  |
 | job_loggers | Loggers for the running jobs. Refer to [Configure loggers](#configure-loggers) | |
-| admin_server | The harbor admin server endpoint which used to retrieve Harbor configures| ADMINSERVER_URL |
+| core_server | The harbor core server endpoint which used to retrieve Harbor configures| CORE_URL |
 
 ### Sample
 
@@ -428,9 +428,6 @@ job_loggers:
 loggers:
   - name: "STD_OUTPUT" # Same with above
     level: "DEBUG"
-
-#Admin server endpoint
-admin_server: "http://adminserver:9010/"
 ```
 
 ## API
diff --git a/src/jobservice/config/config.go b/src/jobservice/config/config.go
index 34be52e5a..5e128cdd3 100644
--- a/src/jobservice/config/config.go
+++ b/src/jobservice/config/config.go
@@ -65,8 +65,6 @@ type Configuration struct {
 	// Server listening port
 	Port uint `yaml:"port"`
 
-	AdminServer string `yaml:"admin_server"`
-
 	// Additional config when using https
 	HTTPSConfig *HTTPSConfig `yaml:"https_config,omitempty"`
 
@@ -171,11 +169,6 @@ func GetUIAuthSecret() string {
 	return utils.ReadEnv(uiAuthSecret)
 }
 
-// GetAdminServerEndpoint return the admin server endpoint
-func GetAdminServerEndpoint() string {
-	return DefaultConfig.AdminServer
-}
-
 // Load env variables
 func (c *Configuration) loadEnvs() {
 	prot := utils.ReadEnv(jobServiceProtocol)
@@ -251,11 +244,6 @@ func (c *Configuration) loadEnvs() {
 		}
 	}
 
-	// admin server
-	if coreServer := utils.ReadEnv(jobServiceCoreServerEndpoint); !utils.IsEmptyStr(coreServer) {
-		c.AdminServer = coreServer
-	}
-
 }
 
 // Check if the configurations are valid settings.
@@ -325,9 +313,5 @@ func (c *Configuration) validate() error {
 		return errors.New("missing logger config of job")
 	}
 
-	if _, err := url.Parse(c.AdminServer); err != nil {
-		return fmt.Errorf("invalid admin server endpoint: %s", err)
-	}
-
 	return nil // valid
 }
diff --git a/src/jobservice/config/config_test.go b/src/jobservice/config/config_test.go
index 687f1d8ab..6b925d5d1 100644
--- a/src/jobservice/config/config_test.go
+++ b/src/jobservice/config/config_test.go
@@ -69,11 +69,6 @@ func TestDefaultConfig(t *testing.T) {
 	if err := DefaultConfig.Load("../config_test.yml", true); err != nil {
 		t.Fatalf("Load config from yaml file, expect nil error but got error '%s'\n", err)
 	}
-
-	if endpoint := GetAdminServerEndpoint(); endpoint != "http://127.0.0.1:8888" {
-		t.Errorf("expect default admin server endpoint 'http://127.0.0.1:8888' but got '%s'\n", endpoint)
-	}
-
 	redisURL := DefaultConfig.PoolConfig.RedisPoolCfg.RedisURL
 	if redisURL != "redis://localhost:6379" {
 		t.Errorf("expect redisURL '%s' but got '%s'\n", "redis://localhost:6379", redisURL)
diff --git a/src/jobservice/job/impl/replication/transfer.go b/src/jobservice/job/impl/replication/transfer.go
index c17005da6..a949e45b1 100644
--- a/src/jobservice/job/impl/replication/transfer.go
+++ b/src/jobservice/job/impl/replication/transfer.go
@@ -272,6 +272,12 @@ func (t *Transfer) transferLayers(tag string, blobs []distribution.Descriptor) e
 		}
 
 		digest := blob.Digest.String()
+
+		if blob.MediaType == schema2.MediaTypeForeignLayer {
+			t.logger.Infof("blob %s of %s:%s is an foreign layer, skip", digest, repository, tag)
+			continue
+		}
+
 		exist, err := t.dstRegistry.BlobExist(digest)
 		if err != nil {
 			t.logger.Errorf("an error occurred while checking existence of blob %s of %s:%s on destination registry: %v",
diff --git a/src/jobservice/runtime/bootstrap.go b/src/jobservice/runtime/bootstrap.go
index 42153e7cb..c4b3ed4cb 100644
--- a/src/jobservice/runtime/bootstrap.go
+++ b/src/jobservice/runtime/bootstrap.go
@@ -124,7 +124,7 @@ func (bs *Bootstrap) LoadAndRun(ctx context.Context, cancel context.CancelFunc)
 	apiServer.Stop()
 
 	// In case stop is called before the server is ready
-	close := make(chan bool, 1)
+	closeChan := make(chan bool, 1)
 	go func() {
 		timer := time.NewTimer(10 * time.Second)
 		defer timer.Stop()
@@ -133,14 +133,14 @@ func (bs *Bootstrap) LoadAndRun(ctx context.Context, cancel context.CancelFunc)
 		case <-timer.C:
 			// Try again
 			apiServer.Stop()
-		case <-close:
+		case <-closeChan:
 			return
 		}
 
 	}()
 
 	rootContext.WG.Wait()
-	close <- true
+	closeChan <- true
 
 	if err != nil {
 		logger.Fatalf("Server exit with error: %s\n", err)
diff --git a/src/portal/lib/src/config/config.ts b/src/portal/lib/src/config/config.ts
index 9947c21fa..093132ae7 100644
--- a/src/portal/lib/src/config/config.ts
+++ b/src/portal/lib/src/config/config.ts
@@ -82,10 +82,14 @@ export class Configuration {
     email_password?: StringValueItem;
     email_insecure: BoolValueItem;
     verify_remote_cert: BoolValueItem;
+    robot_token_duration: NumberValueItem;
     token_expiration: NumberValueItem;
     cfg_expiration: NumberValueItem;
     scan_all_policy: ComplexValueItem;
     read_only: BoolValueItem;
+    http_authproxy_endpoint?: StringValueItem;
+    http_authproxy_skip_cert_verify?: BoolValueItem;
+    http_authproxy_always_onboard?: BoolValueItem;
 
     public constructor() {
         this.auth_mode = new StringValueItem("db_auth", true);
@@ -117,6 +121,7 @@ export class Configuration {
         this.email_password = new StringValueItem("", true);
         this.email_insecure = new BoolValueItem(false, true);
         this.token_expiration = new NumberValueItem(30, true);
+        this.robot_token_duration = new NumberValueItem(30, true);
         this.cfg_expiration = new NumberValueItem(30, true);
         this.verify_remote_cert = new BoolValueItem(false, true);
         this.scan_all_policy = new ComplexValueItem({
@@ -126,5 +131,8 @@ export class Configuration {
             }
         }, true);
         this.read_only = new BoolValueItem(false, true);
+        this.http_authproxy_endpoint = new StringValueItem("", true);
+        this.http_authproxy_skip_cert_verify = new BoolValueItem(false, true);
+        this.http_authproxy_always_onboard = new BoolValueItem(false, true);
     }
 }
diff --git a/src/portal/lib/src/config/gc/gc.component.html b/src/portal/lib/src/config/gc/gc.component.html
index 5384058e9..2f4d4bb1e 100644
--- a/src/portal/lib/src/config/gc/gc.component.html
+++ b/src/portal/lib/src/config/gc/gc.component.html
@@ -1,33 +1,5 @@
-
- {{'GC.CURRENT_SCHEDULE' | translate}} - {{(originScheduleType ? 'SCHEDULE.'+ originScheduleType.toUpperCase(): "") | translate}} - {{'SCHEDULE.ON' | translate}} - {{originWeekDay.text | translate}} - {{'SCHEDULE.AT' | translate}} - {{originOffTime.text}} AM - -
-
- -
- -
-
- {{'SCHEDULE.ON' | translate}} - -
-
- {{'SCHEDULE.AT' | translate}} - -
- - +
+
{{'GC.JOB_HISTORY' | translate}}
diff --git a/src/portal/lib/src/config/gc/gc.component.scss b/src/portal/lib/src/config/gc/gc.component.scss index b560ccc6a..217f9d3ea 100644 --- a/src/portal/lib/src/config/gc/gc.component.scss +++ b/src/portal/lib/src/config/gc/gc.component.scss @@ -10,6 +10,10 @@ font-size: .541667rem; } +.cron-selection { + margin-top: 20px; +} + .setting-wrapper { label { width: 228px; diff --git a/src/portal/lib/src/config/gc/gc.component.spec.ts b/src/portal/lib/src/config/gc/gc.component.spec.ts index 6ea81f5e9..635ba8eb1 100644 --- a/src/portal/lib/src/config/gc/gc.component.spec.ts +++ b/src/portal/lib/src/config/gc/gc.component.spec.ts @@ -6,7 +6,7 @@ import { GcRepoService } from './gc.service'; import { SharedModule } from "../../shared/shared.module"; import { ErrorHandler } from '../../error-handler/error-handler'; import { GcViewModelFactory } from './gc.viewmodel.factory'; -import { GcUtility } from './gc.utility'; +import { CronScheduleComponent } from '../../cron-schedule/cron-schedule.component'; import { of } from 'rxjs'; describe('GcComponent', () => { @@ -33,14 +33,13 @@ describe('GcComponent', () => { imports: [ SharedModule ], - declarations: [ GcComponent ], + declarations: [ GcComponent, CronScheduleComponent], providers: [ { provide: GcApiRepository, useClass: GcApiDefaultRepository }, { provide: SERVICE_CONFIG, useValue: config }, GcRepoService, ErrorHandler, - GcViewModelFactory, - GcUtility + GcViewModelFactory ] }) .compileComponents(); diff --git a/src/portal/lib/src/config/gc/gc.component.ts b/src/portal/lib/src/config/gc/gc.component.ts index f8e5a6c71..b4b2f7cc9 100644 --- a/src/portal/lib/src/config/gc/gc.component.ts +++ b/src/portal/lib/src/config/gc/gc.component.ts @@ -1,40 +1,47 @@ -import { Component, Input, Output, EventEmitter, ViewChild, OnInit } from '@angular/core'; -import { TranslateService } from '@ngx-translate/core'; -import { GcJobViewModel, WeekDay } from "./gcLog"; +import { + Component, + Input, + Output, + EventEmitter, + ViewChild, + OnInit +} from "@angular/core"; +import { TranslateService } from "@ngx-translate/core"; +import { GcJobViewModel } from "./gcLog"; import { GcViewModelFactory } from "./gc.viewmodel.factory"; import { GcRepoService } from "./gc.service"; -import { WEEKDAYS, SCHEDULE_TYPE, ONE_MINITUE, THREE_SECONDS} from './gc.const'; -import { GcUtility } from './gc.utility'; -import { ErrorHandler } from '../../error-handler/index'; +import { + SCHEDULE_TYPE_NONE, + ONE_MINITUE, + THREE_SECONDS +} from "./gc.const"; +import { ErrorHandler } from "../../error-handler/index"; +import { CronScheduleComponent } from "../../cron-schedule/cron-schedule.component"; +import { OriginCron } from '../../service/interface'; @Component({ - selector: 'gc-config', - templateUrl: './gc.component.html', - styleUrls: ['./gc.component.scss'] + selector: "gc-config", + templateUrl: "./gc.component.html", + styleUrls: ["./gc.component.scss"] }) export class GcComponent implements OnInit { jobs: Array = []; schedule: any; - originScheduleType: string; - originOffTime: any = { value: null, text: "" }; - originWeekDay: any = { value: null, text: "" }; - scheduleType: string; - isEditMode: boolean = false; - weekDays = WEEKDAYS; - SCHEDULE_TYPE = SCHEDULE_TYPE; - weekDay: WeekDay = WEEKDAYS[0]; - dailyTime: string; + originCron: OriginCron; disableGC: boolean = false; - - constructor(private gcRepoService: GcRepoService, + getText = 'CONFIG.GC'; + getLabelCurrent = 'GC.CURRENT_SCHEDULE'; + @ViewChild(CronScheduleComponent) + CronScheduleComponent: CronScheduleComponent; + constructor( + private gcRepoService: GcRepoService, private gcViewModelFactory: GcViewModelFactory, - private gcUtility: GcUtility, private errorHandler: ErrorHandler, - private translate: TranslateService) { - translate.setDefaultLang('en-us'); + private translate: TranslateService + ) { + translate.setDefaultLang("en-us"); } - ngOnInit() { this.getCurrentSchedule(); this.getJobs(); @@ -46,32 +53,15 @@ export class GcComponent implements OnInit { }); } - private initSchedule(schedule: any) { + public initSchedule(schedule: any) { if (schedule && schedule.length > 0) { this.schedule = schedule[0]; - const cron = this.schedule.schedule; - this.originScheduleType = cron.type; - this.originWeekDay = this.weekDays[cron.weekday]; - let dailyTime = this.gcUtility.getDailyTime(cron.offtime); - this.originOffTime = { value: cron.offtime, text: dailyTime }; + this.originCron = this.schedule.schedule; } else { - this.originScheduleType = SCHEDULE_TYPE.NONE; - } - } - - editSchedule() { - this.isEditMode = true; - this.scheduleType = this.originScheduleType; - if (this.originWeekDay.value) { - this.weekDay = this.originWeekDay; - } else { - this.weekDay = this.weekDays[0]; - } - - if (this.originOffTime.value) { - this.dailyTime = this.originOffTime.text; - } else { - this.dailyTime = "00:00"; + this.originCron = { + type: SCHEDULE_TYPE_NONE, + cron: '' + }; } } @@ -83,59 +73,58 @@ export class GcComponent implements OnInit { gcNow(): void { this.disableGC = true; - setTimeout(() => {this.enableGc(); }, ONE_MINITUE); + setTimeout(() => { + this.enableGc(); + }, ONE_MINITUE); - this.gcRepoService.manualGc().subscribe(response => { - this.translate.get('GC.MSG_SUCCESS').subscribe((res: string) => { - this.errorHandler.info(res); - }); - this.getJobs(); - setTimeout(() => {this.getJobs(); }, THREE_SECONDS); // to avoid some jobs not finished. - }, error => { - this.errorHandler.error(error); - }); + this.gcRepoService.manualGc().subscribe( + response => { + this.translate.get("GC.MSG_SUCCESS").subscribe((res: string) => { + this.errorHandler.info(res); + }); + this.getJobs(); + setTimeout(() => { + this.getJobs(); + }, THREE_SECONDS); // to avoid some jobs not finished. + }, + error => { + this.errorHandler.error(error); + } + ); } - private enableGc () { + private enableGc() { this.disableGC = false; } - private resetSchedule(offTime) { - this.schedule = { - schedule: { - type: this.scheduleType, - offTime: offTime, - weekDay: this.weekDay.value - } - }; - this.originScheduleType = this.scheduleType; - this.originWeekDay = this.weekDay; - this.originOffTime = { value: offTime, text: this.dailyTime }; - this.isEditMode = false; - this.getJobs(); - } - - scheduleGc(): void { - let offTime = this.gcUtility.getOffTime(this.dailyTime); + getcron(cron: string) { let schedule = this.schedule; - if (schedule && schedule.schedule && schedule.schedule.type !== SCHEDULE_TYPE.NONE) { - this.gcRepoService.putScheduleGc(this.scheduleType, offTime, this.weekDay.value).subscribe(response => { - this.translate.get('GC.MSG_SCHEDULE_RESET').subscribe((res: string) => { - this.errorHandler.info(res); - }); - this.resetSchedule(offTime); - }, error => { - this.errorHandler.error(error); - }); + if (schedule && schedule.schedule && schedule.schedule.type !== SCHEDULE_TYPE_NONE) { + this.gcRepoService.putScheduleGc(this.CronScheduleComponent.scheduleType, cron).subscribe( + response => { + this.translate + .get("GC.MSG_SCHEDULE_RESET") + .subscribe((res) => { + this.errorHandler.info(res); + }); + this.getJobs(); + }, + error => { + this.errorHandler.error(error); + } + ); } else { - this.gcRepoService.postScheduleGc(this.scheduleType, offTime, this.weekDay.value).subscribe(response => { - this.translate.get('GC.MSG_SCHEDULE_SET').subscribe((res: string) => { - this.errorHandler.info(res); - }); - this.resetSchedule(offTime); - }, error => { - this.errorHandler.error(error); - }); + this.gcRepoService.postScheduleGc(this.CronScheduleComponent.scheduleType, cron).subscribe( + response => { + this.translate.get("GC.MSG_SCHEDULE_SET").subscribe((res) => { + this.errorHandler.info(res); + }); + this.getJobs(); + }, + error => { + this.errorHandler.error(error); + } + ); } } } diff --git a/src/portal/lib/src/config/gc/gc.const.ts b/src/portal/lib/src/config/gc/gc.const.ts index f095adb0f..2407b098c 100644 --- a/src/portal/lib/src/config/gc/gc.const.ts +++ b/src/portal/lib/src/config/gc/gc.const.ts @@ -1,18 +1,6 @@ -export const WEEKDAYS = [ - {value: 0, text: "WEEKLY.MONDAY"}, - {value: 1, text: "WEEKLY.TUESDAY"}, - {value: 2, text: "WEEKLY.WEDNESDAY"}, - {value: 3, text: "WEEKLY.THURSDAY"}, - {value: 4, text: "WEEKLY.FRIDAY"}, - {value: 5, text: "WEEKLY.SATURDAY"}, - {value: 6, text: "WEEKLY.SUNDAY"} -]; -export const SCHEDULE_TYPE = { - NONE: "None", - DAILY: "Daily", - WEEKLY: "Weekly" -}; + +export const SCHEDULE_TYPE_NONE = "None"; export const ONE_MINITUE = 60000; export const THREE_SECONDS = 3000; diff --git a/src/portal/lib/src/config/gc/gc.service.ts b/src/portal/lib/src/config/gc/gc.service.ts index 126ad7580..9bca2c3b2 100644 --- a/src/portal/lib/src/config/gc/gc.service.ts +++ b/src/portal/lib/src/config/gc/gc.service.ts @@ -36,29 +36,25 @@ export class GcRepoService { return this.gcApiRepository.getSchedule(); } - public postScheduleGc(type, offTime, weekday ?): Observable { + public postScheduleGc(type, cron): Observable { let param = { "schedule": { "type": type, - "offtime": offTime, + "cron": cron, } }; - if (weekday) { - param.schedule["weekday"] = weekday; - } + return this.gcApiRepository.postSchedule(param); } - public putScheduleGc(type, offTime, weekday ?): Observable { + public putScheduleGc(type, cron): Observable { let param = { "schedule": { "type": type, - "offtime": offTime, + "cron": cron, } }; - if (weekday) { - param.schedule["weekday"] = weekday; - } + return this.gcApiRepository.putSchedule(param); } } diff --git a/src/portal/lib/src/config/gc/gc.utility.ts b/src/portal/lib/src/config/gc/gc.utility.ts deleted file mode 100644 index 6c06e55ea..000000000 --- a/src/portal/lib/src/config/gc/gc.utility.ts +++ /dev/null @@ -1,62 +0,0 @@ - -import { Injectable } from '@angular/core'; - -const ONE_HOUR_SECONDS: number = 3600; -const ONE_DAY_SECONDS: number = 24 * ONE_HOUR_SECONDS; - -@Injectable() -export class GcUtility { - private _localTime: Date = new Date(); - public getOffTime(v: string) { - let values: string[] = v.split(":"); - if (!values || values.length !== 2) { - return; - } - let hours: number = +values[0]; - let minutes: number = +values[1]; - // Convert to UTC time - let timezoneOffset: number = this._localTime.getTimezoneOffset(); - let utcTimes: number = hours * ONE_HOUR_SECONDS + minutes * 60; - utcTimes += timezoneOffset * 60; - if (utcTimes < 0) { - utcTimes += ONE_DAY_SECONDS; - } - if (utcTimes >= ONE_DAY_SECONDS) { - utcTimes -= ONE_DAY_SECONDS; - } - return utcTimes; - } - - public getDailyTime(v: number ) { - let timeOffset: number = 0; // seconds - timeOffset = + v; - // Convert to current time - let timezoneOffset: number = this._localTime.getTimezoneOffset(); - // Local time - timeOffset = timeOffset - timezoneOffset * 60; - if (timeOffset < 0) { - timeOffset = timeOffset + ONE_DAY_SECONDS; - } - - if (timeOffset >= ONE_DAY_SECONDS) { - timeOffset -= ONE_DAY_SECONDS; - } - - // To time string - let hours: number = Math.floor(timeOffset / ONE_HOUR_SECONDS); - let minutes: number = Math.floor((timeOffset - hours * ONE_HOUR_SECONDS) / 60); - - let timeStr: string = "" + hours; - if (hours < 10) { - timeStr = "0" + timeStr; - } - if (minutes < 10) { - timeStr += ":0"; - } else { - timeStr += ":"; - } - timeStr += minutes; - - return timeStr; - } -} diff --git a/src/portal/lib/src/config/gc/gcLog.ts b/src/portal/lib/src/config/gc/gcLog.ts index 8de1d4137..e55dd3751 100644 --- a/src/portal/lib/src/config/gc/gcLog.ts +++ b/src/portal/lib/src/config/gc/gcLog.ts @@ -12,8 +12,7 @@ export class GcJobData { export class Schedule { type: string; - weekday: number; - offtime: number; + cron: string; } export class GcJobViewModel { id: number; @@ -24,14 +23,4 @@ export class GcJobViewModel { details: string; } -export class WeekDay { - value: number; - text: string; -} - -export class GcScheduleViewModel { - type: string; - weekDay: string; - dailyTime: string; -} diff --git a/src/portal/lib/src/config/gc/index.ts b/src/portal/lib/src/config/gc/index.ts index 8bc26568d..b80853d74 100644 --- a/src/portal/lib/src/config/gc/index.ts +++ b/src/portal/lib/src/config/gc/index.ts @@ -2,6 +2,5 @@ export * from "./gc.component"; export * from "./gc.const"; export * from "./gc.api.repository"; export * from "./gc.service"; -export * from "./gc.utility"; export * from "./gc.viewmodel.factory"; export * from "./gcLog"; diff --git a/src/portal/lib/src/config/registry-config.component.spec.ts b/src/portal/lib/src/config/registry-config.component.spec.ts index a3a183702..a7159b9e7 100644 --- a/src/portal/lib/src/config/registry-config.component.spec.ts +++ b/src/portal/lib/src/config/registry-config.component.spec.ts @@ -9,6 +9,7 @@ import { VulnerabilityConfigComponent } from './vulnerability/vulnerability-conf import { RegistryConfigComponent } from './registry-config.component'; import { ConfirmationDialogComponent } from '../confirmation-dialog/confirmation-dialog.component'; import { GcComponent } from './gc/gc.component'; +import { CronScheduleComponent } from '../cron-schedule/cron-schedule.component'; import { ConfigurationService, @@ -64,7 +65,8 @@ describe('RegistryConfigComponent (inline template)', () => { VulnerabilityConfigComponent, RegistryConfigComponent, ConfirmationDialogComponent, - GcComponent + GcComponent, + CronScheduleComponent ], providers: [ ErrorHandler, diff --git a/src/portal/lib/src/config/system/system-settings.component.html b/src/portal/lib/src/config/system/system-settings.component.html index f405f15de..e5bef3026 100644 --- a/src/portal/lib/src/config/system/system-settings.component.html +++ b/src/portal/lib/src/config/system/system-settings.component.html @@ -30,6 +30,21 @@ {{'CONFIG.TOOLTIP.TOKEN_EXPIRATION' | translate}}
+
+ + + + + {{'CONFIG.TOOLTIP.ROBOT_TOKEN_EXPIRATION' | translate}} + +
{{'CONFIG.ROOT_CERT_LINK' | translate}} diff --git a/src/portal/lib/src/config/system/system-settings.component.ts b/src/portal/lib/src/config/system/system-settings.component.ts index 8fc0ea1f8..7f8bd756e 100644 --- a/src/portal/lib/src/config/system/system-settings.component.ts +++ b/src/portal/lib/src/config/system/system-settings.component.ts @@ -1,4 +1,4 @@ -import { Component, Input, Output, EventEmitter, ViewChild, Inject, OnChanges, SimpleChanges } from '@angular/core'; +import { Component, Input, OnInit, Output, EventEmitter, ViewChild, Inject, OnChanges, SimpleChanges } from '@angular/core'; import { NgForm } from '@angular/forms'; import { Configuration, StringValueItem } from '../config'; import { SERVICE_CONFIG, IServiceConfig } from '../../service.config'; @@ -13,17 +13,19 @@ import { } from '../../service/index'; import { from } from 'rxjs'; const fakePass = 'aWpLOSYkIzJTTU4wMDkx'; - +const ONE_HOUR_MINUTES: number = 60; +const ONE_DAY_MINUTES: number = 24 * ONE_HOUR_MINUTES; @Component({ selector: 'system-settings', templateUrl: './system-settings.component.html', styleUrls: ['./system-settings.component.scss', '../registry-config.component.scss'] }) -export class SystemSettingsComponent implements OnChanges { +export class SystemSettingsComponent implements OnChanges, OnInit { config: Configuration = new Configuration(); onGoing = false; private originalConfig: Configuration; downloadLink: string; + robotTokenExpiration: string; @Output() configChange: EventEmitter = new EventEmitter(); @Output() readOnlyChange: EventEmitter = new EventEmitter(); @Output() reloadSystemConfig: EventEmitter = new EventEmitter(); @@ -51,6 +53,12 @@ export class SystemSettingsComponent implements OnChanges { this.systemSettings.token_expiration.editable; } + get robotExpirationEditable(): boolean { + return this.systemSettings && + this.systemSettings.robot_token_duration && + this.systemSettings.robot_token_duration.editable; + } + public isValid(): boolean { return this.systemSettingsForm && this.systemSettingsForm.valid; } @@ -76,7 +84,8 @@ export class SystemSettingsComponent implements OnChanges { public getSystemChanges(allChanges: any) { let changes = {}; for (let prop in allChanges) { - if (prop === 'token_expiration' || prop === 'read_only' || prop === 'project_creation_restriction') { + if (prop === 'token_expiration' || prop === 'read_only' || prop === 'project_creation_restriction' + || prop === 'robot_token_duration') { changes[prop] = allChanges[prop]; } } @@ -165,6 +174,7 @@ export class SystemSettingsComponent implements OnChanges { ack.state === ConfirmationState.CONFIRMED) { let changes = this.getChanges(); this.reset(changes); + this.initRobotToken(); } } @@ -203,7 +213,27 @@ export class SystemSettingsComponent implements OnChanges { this.downloadLink = this.configInfo.systemInfoEndpoint + "/getcert"; } } + ngOnInit() { + this.initRobotToken(); + } + private initRobotToken (): void { + if (this.config && + this.config.robot_token_duration ) { + let robotExpiration = this.config.robot_token_duration.value; + this.robotTokenExpiration = Math.floor(robotExpiration / ONE_DAY_MINUTES) + ''; + } + } + changeToken(v: string) { + if (!v || v === "") { + return; + } + if (!(this.config && + this.config.robot_token_duration)) { + return; + } + this.config.robot_token_duration.value = +v * ONE_DAY_MINUTES; + } } diff --git a/src/portal/lib/src/cron-schedule/cron-schedule.component.html b/src/portal/lib/src/cron-schedule/cron-schedule.component.html new file mode 100644 index 000000000..2312de378 --- /dev/null +++ b/src/portal/lib/src/cron-schedule/cron-schedule.component.html @@ -0,0 +1,50 @@ +
+ {{ labelCurrent | translate }} + {{(originScheduleType ? 'SCHEDULE.'+ originScheduleType.toUpperCase(): "") | translate}} + + + {{'CONFIG.TOOLTIP.HOURLY_CRON' | translate}} + + + + {{'CONFIG.TOOLTIP.WEEKLY_CRON' | translate}} + + + + {{'CONFIG.TOOLTIP.DAILY_CRON' | translate}} + + {{ "SCHEDULE.CRON" | translate }} : + {{ oriCron }} + +
+
+ {{ labelEdit | translate }} +
+ +
+ {{ "SCHEDULE.CRON" | translate }} : +
+ +
+ + +
\ No newline at end of file diff --git a/src/portal/lib/src/cron-schedule/cron-schedule.component.scss b/src/portal/lib/src/cron-schedule/cron-schedule.component.scss new file mode 100644 index 000000000..944262fec --- /dev/null +++ b/src/portal/lib/src/cron-schedule/cron-schedule.component.scss @@ -0,0 +1,45 @@ +.flex-layout { + display: flex; + align-items: center; + margin: 20px 0; + font-size: .541667rem; + } + + .normal-wrapper { + > span:first-child { + width: 228px; + } + + > span:not(:first-child) { + margin-right: 18px; + } + > a { + margin-left: -10px; + } + button { + margin-left: 10px; + } + } + + .setting-wrapper { + > span:first-child { + width: 228px; + } + + *:not(:first-child) { + margin-right: 18px; + } + + .select-schedule { + display: inline-block; + width: 100px; + } + + .cron-input { + width: 195px; + } + } + .font-style { + color: #000; + font-size: .541667rem; + } \ No newline at end of file diff --git a/src/portal/lib/src/cron-schedule/cron-schedule.component.ts b/src/portal/lib/src/cron-schedule/cron-schedule.component.ts new file mode 100644 index 000000000..46e53960a --- /dev/null +++ b/src/portal/lib/src/cron-schedule/cron-schedule.component.ts @@ -0,0 +1,78 @@ +import { + Component, + EventEmitter, + Output, + Input, + OnChanges, + SimpleChanges, + SimpleChange +} from "@angular/core"; +import { OriginCron } from "../service/interface"; +const SCHEDULE_TYPE = { + NONE: "None", + DAILY: "Daily", + WEEKLY: "Weekly", + HOURLY: "Hourly", + CUSTOM: "Custom" +}; +@Component({ + selector: "cron-selection", + templateUrl: "./cron-schedule.component.html", + styleUrls: ["./cron-schedule.component.scss"] +}) +export class CronScheduleComponent implements OnChanges { + @Input() originCron: OriginCron; + @Input() labelEdit: string; + @Input() labelCurrent: string; + originScheduleType: string; + oriCron: string; + cronString: string; + isEditMode: boolean = false; + SCHEDULE_TYPE = SCHEDULE_TYPE; + scheduleType: string; + @Output() inputvalue = new EventEmitter(); + + ngOnChanges(changes: SimpleChanges): void { + let cronChange: SimpleChange = changes["originCron"]; + if (cronChange.currentValue) { + this.originScheduleType = cronChange.currentValue.type; + this.oriCron = cronChange.currentValue.cron; + } + } + editSchedule() { + if (!this.originScheduleType) { + return; + } + this.isEditMode = true; + this.scheduleType = this.originScheduleType; + if (this.scheduleType && this.scheduleType === SCHEDULE_TYPE.CUSTOM) { + this.cronString = this.oriCron; + } else { + this.cronString = ""; + } + } + + public resetSchedule() { + this.originScheduleType = this.scheduleType; + this.oriCron = this.cronString; + this.isEditMode = false; + } + + save(): void { + let scheduleTerm: string = ""; + this.resetSchedule(); + if (this.scheduleType && this.scheduleType === SCHEDULE_TYPE.NONE) { + scheduleTerm = ""; + } else if (this.scheduleType && this.scheduleType === SCHEDULE_TYPE.HOURLY) { + scheduleTerm = "0 0 * * * *"; + } else if (this.scheduleType && this.scheduleType === SCHEDULE_TYPE.DAILY) { + scheduleTerm = "0 0 0 * * *"; + } else if (this.scheduleType && this.scheduleType === SCHEDULE_TYPE.WEEKLY) { + scheduleTerm = "0 0 0 * * 0"; + } else { + scheduleTerm = this.cronString; + } + scheduleTerm = scheduleTerm.replace(/\s+/g, " ").trim(); + this.inputvalue.emit(scheduleTerm); + } +} diff --git a/src/portal/lib/src/cron-schedule/index.ts b/src/portal/lib/src/cron-schedule/index.ts new file mode 100644 index 000000000..b70e5071e --- /dev/null +++ b/src/portal/lib/src/cron-schedule/index.ts @@ -0,0 +1,6 @@ +import { Type } from "@angular/core"; + +import { CronScheduleComponent } from "./cron-schedule.component"; +export const CRON_SCHEDULE_DIRECTIVES: Type[] = [ + CronScheduleComponent +]; diff --git a/src/portal/lib/src/harbor-library.module.ts b/src/portal/lib/src/harbor-library.module.ts index fffd8432e..44baa557c 100644 --- a/src/portal/lib/src/harbor-library.module.ts +++ b/src/portal/lib/src/harbor-library.module.ts @@ -29,6 +29,7 @@ import { CREATE_EDIT_LABEL_DIRECTIVES } from "./create-edit-label/index"; import { LABEL_PIECE_DIRECTIVES } from "./label-piece/index"; import { HELMCHART_DIRECTIVE } from "./helm-chart/index"; import { IMAGE_NAME_INPUT_DIRECTIVES } from "./image-name-input/index"; +import { CRON_SCHEDULE_DIRECTIVES } from "./cron-schedule/index"; import { SystemInfoService, SystemInfoDefaultService, @@ -60,7 +61,6 @@ import { UserPermissionDefaultService } from './service/index'; import { GcRepoService } from './config/gc/gc.service'; -import { GcUtility } from './config/gc/gc.utility'; import {GcViewModelFactory} from './config/gc/gc.viewmodel.factory'; import {GcApiRepository, GcApiDefaultRepository} from './config/gc/gc.api.repository'; import { @@ -210,7 +210,8 @@ export function initConfig(translateInitializer: TranslateServiceInitializer, co REPOSITORY_GRIDVIEW_DIRECTIVES, OPERATION_DIRECTIVES, HELMCHART_DIRECTIVE, - IMAGE_NAME_INPUT_DIRECTIVES + IMAGE_NAME_INPUT_DIRECTIVES, + CRON_SCHEDULE_DIRECTIVES ], exports: [ LOG_DIRECTIVES, @@ -237,7 +238,8 @@ export function initConfig(translateInitializer: TranslateServiceInitializer, co REPOSITORY_GRIDVIEW_DIRECTIVES, OPERATION_DIRECTIVES, HELMCHART_DIRECTIVE, - IMAGE_NAME_INPUT_DIRECTIVES + IMAGE_NAME_INPUT_DIRECTIVES, + CRON_SCHEDULE_DIRECTIVES ], providers: [] }) @@ -275,8 +277,7 @@ export class HarborLibraryModule { ChannelService, OperationService, GcRepoService, - GcViewModelFactory, - GcUtility + GcViewModelFactory ] }; } @@ -305,8 +306,7 @@ export class HarborLibraryModule { ChannelService, OperationService, GcRepoService, - GcViewModelFactory, - GcUtility + GcViewModelFactory ] }; } diff --git a/src/portal/lib/src/project-policy-config/project-policy-config.component.spec.ts b/src/portal/lib/src/project-policy-config/project-policy-config.component.spec.ts index 8b82c8e05..3e4aa5248 100644 --- a/src/portal/lib/src/project-policy-config/project-policy-config.component.spec.ts +++ b/src/portal/lib/src/project-policy-config/project-policy-config.component.spec.ts @@ -47,7 +47,7 @@ describe('ProjectPolicyConfigComponent', () => { } ]; - let mockPorjectPolicies: Project[] | any[] = [ + let mockProjectPolicies: Project[] | any[] = [ { 'project_id': 1, 'owner_id': 1, @@ -122,7 +122,7 @@ describe('ProjectPolicyConfigComponent', () => { projectPolicyService = fixture.debugElement.injector.get(ProjectService); spySystemInfo = spyOn(systemInfoService, 'getSystemInfo').and.returnValues(Promise.resolve(mockSystemInfo[0])); - spyProjectPolicies = spyOn(projectPolicyService, 'getProject').and.returnValues(Promise.resolve(mockPorjectPolicies[0])); + spyProjectPolicies = spyOn(projectPolicyService, 'getProject').and.returnValues(Promise.resolve(mockProjectPolicies[0])); userPermissionService = fixture.debugElement.injector.get(UserPermissionService); spyOn(userPermissionService, "getPermission") diff --git a/src/portal/lib/src/service/interface.ts b/src/portal/lib/src/service/interface.ts index 7bd1c8993..91c34601a 100644 --- a/src/portal/lib/src/service/interface.ts +++ b/src/portal/lib/src/service/interface.ts @@ -446,3 +446,8 @@ export interface UserPrivilegeServeItem { action: string; } +export class OriginCron { + type: string; + cron: string; +} + diff --git a/src/portal/src/app/base/global-search/search-result.component.html b/src/portal/src/app/base/global-search/search-result.component.html index 9f03c23b1..9942c8f42 100644 --- a/src/portal/src/app/base/global-search/search-result.component.html +++ b/src/portal/src/app/base/global-search/search-result.component.html @@ -16,7 +16,7 @@

{{'HELM_CHART.HELMCHARTS' | translate}}

- +
\ No newline at end of file diff --git a/src/portal/src/app/base/global-search/search-result.component.ts b/src/portal/src/app/base/global-search/search-result.component.ts index 3a73e8e73..51e29a017 100644 --- a/src/portal/src/app/base/global-search/search-result.component.ts +++ b/src/portal/src/app/base/global-search/search-result.component.ts @@ -78,7 +78,9 @@ export class SearchResultComponent implements OnInit, OnDestroy { if (src) { src.project.forEach(pro => res.project.push(Object.assign({}, pro))); src.repository.forEach(repo => res.repository.push(Object.assign({}, repo))); - src.Chart.forEach(chart => res.Chart.push(JSON.parse(JSON.stringify(chart)))); + if (this.withHelmChart) { + src.chart.forEach(chart => res.chart.push(JSON.parse(JSON.stringify(chart)))); + } return res; } @@ -129,6 +131,9 @@ export class SearchResultComponent implements OnInit, OnDestroy { if (term === "") { this.searchResults.project = []; this.searchResults.repository = []; + if (this.withHelmChart) { + this.searchResults.chart = []; + } return; } // Show spinner diff --git a/src/portal/src/app/base/global-search/search-results.ts b/src/portal/src/app/base/global-search/search-results.ts index 0548a01ef..ae9eae7b2 100644 --- a/src/portal/src/app/base/global-search/search-results.ts +++ b/src/portal/src/app/base/global-search/search-results.ts @@ -18,10 +18,10 @@ export class SearchResults { constructor() { this.project = []; this.repository = []; - this.Chart = []; + this.chart = []; } project: Project[]; repository: Repository[]; - Chart: HelmChartSearchResultItem[]; + chart: HelmChartSearchResultItem[]; } diff --git a/src/portal/src/app/config/auth/config-auth.component.html b/src/portal/src/app/config/auth/config-auth.component.html index c05e03214..bc33d50d6 100644 --- a/src/portal/src/app/config/auth/config-auth.component.html +++ b/src/portal/src/app/config/auth/config-auth.component.html @@ -3,14 +3,16 @@
- +
- + {{'CONFIG.TOOLTIP.AUTH_MODE' | translate}} @@ -19,22 +21,24 @@
- +
- +
-
- @@ -44,7 +48,8 @@
-
-
-
-
-
- - + {{'CONFIG.TOOLTIP.LDAP_UID' | translate}} @@ -120,7 +136,8 @@
- @@ -133,8 +150,9 @@
- + @@ -145,7 +163,8 @@
+ [(ngModel)]="currentConfig.ldap_group_search_filter.value" id="ldapGroupFilter" size="40" + [disabled]="disabled(currentConfig.ldap_group_search_filter)"> @@ -155,8 +174,9 @@
- + @@ -168,7 +188,8 @@
+ [(ngModel)]="currentConfig.ldap_group_admin_dn.value" id="ldapGroupAdminDN" size="40" + [disabled]="disabled(currentConfig.ldap_group_admin_dn)"> @@ -180,7 +201,8 @@
- @@ -218,10 +243,12 @@
- +
+
+
+ + +
+
+ + + + +
+
+ + + + +
+
- - - + + +
\ No newline at end of file diff --git a/src/portal/src/app/config/auth/config-auth.component.ts b/src/portal/src/app/config/auth/config-auth.component.ts index beda79e6d..ccb71f731 100644 --- a/src/portal/src/app/config/auth/config-auth.component.ts +++ b/src/portal/src/app/config/auth/config-auth.component.ts @@ -65,12 +65,15 @@ export class ConfigurationAuthComponent implements OnChanges { public get showUAA(): boolean { return this.currentConfig && this.currentConfig.auth_mode && this.currentConfig.auth_mode.value === 'uaa_auth'; } - + public get showHttpAuth(): boolean { + return this.currentConfig && this.currentConfig.auth_mode && this.currentConfig.auth_mode.value === 'http_auth'; + } public get showSelfReg(): boolean { if (!this.currentConfig || !this.currentConfig.auth_mode) { return true; } else { - return this.currentConfig.auth_mode.value !== 'ldap_auth' && this.currentConfig.auth_mode.value !== 'uaa_auth'; + return this.currentConfig.auth_mode.value !== 'ldap_auth' && this.currentConfig.auth_mode.value !== 'uaa_auth' + && this.currentConfig.auth_mode.value !== 'http_auth' ; } } @@ -143,7 +146,11 @@ export class ConfigurationAuthComponent implements OnChanges { || prop.startsWith('uaa_') || prop === 'auth_mode' || prop === 'project_creattion_restriction' - || prop === 'self_registration') { + || prop === 'self_registration' + || prop === 'http_authproxy_endpoint' + || prop === 'http_authproxy_skip_cert_verify' + || prop === 'http_authproxy_always_onboard' + ) { changes[prop] = allChanges[prop]; } } @@ -161,7 +168,7 @@ export class ConfigurationAuthComponent implements OnChanges { handleOnChange($event: any): void { if ($event && $event.target && $event.target["value"]) { let authMode = $event.target["value"]; - if (authMode === 'ldap_auth' || authMode === 'uaa_auth') { + if (authMode === 'ldap_auth' || authMode === 'uaa_auth' || authMode === 'http_auth') { if (this.currentConfig.self_registration.value) { this.currentConfig.self_registration.value = false; // unselect } diff --git a/src/portal/src/app/project/list-project/list-project.component.html b/src/portal/src/app/project/list-project/list-project.component.html index 26fc5c603..d6d6957f6 100644 --- a/src/portal/src/app/project/list-project/list-project.component.html +++ b/src/portal/src/app/project/list-project/list-project.component.html @@ -10,7 +10,7 @@ {{'PROJECT.ACCESS_LEVEL' | translate}} {{'PROJECT.ROLE' | translate}} {{'PROJECT.REPO_COUNT'| translate}} - {{'PROJECT.CHART_COUNT'| translate}} + {{'PROJECT.CHART_COUNT'| translate}} {{'PROJECT.CREATION_TIME' | translate}} @@ -19,7 +19,7 @@ {{ (p.metadata.public === 'true' ? 'PROJECT.PUBLIC' : 'PROJECT.PRIVATE') | translate}} {{roleInfo[p.current_user_role_id] | translate}} {{p.repo_count}} - {{p.chart_count}} + {{p.chart_count}} {{p.creation_time | date: 'short'}} diff --git a/src/portal/src/app/project/list-project/list-project.component.ts b/src/portal/src/app/project/list-project/list-project.component.ts index e10f3f8c6..b0ab4e7fd 100644 --- a/src/portal/src/app/project/list-project/list-project.component.ts +++ b/src/portal/src/app/project/list-project/list-project.component.ts @@ -107,6 +107,14 @@ export class ListProjectComponent implements OnDestroy { return false; } + get withChartMuseum(): boolean { + if (this.appConfigService.getConfig().with_chartmuseum) { + return true; + } else { + return false; + } + } + public get isSystemAdmin(): boolean { let account = this.session.getCurrentUser(); return account != null && account.has_admin_role; diff --git a/src/portal/src/app/project/member/add-member/add-member.component.ts b/src/portal/src/app/project/member/add-member/add-member.component.ts index 51ebaab98..c9f368011 100644 --- a/src/portal/src/app/project/member/add-member/add-member.component.ts +++ b/src/portal/src/app/project/member/add-member/add-member.component.ts @@ -94,7 +94,7 @@ export class AddMemberComponent implements AfterViewChecked, OnInit, OnDestroy { hasProjectAdminRole = (resolverData['projectResolver']).has_project_admin_role; } if (hasProjectAdminRole) { - this.userService.getUsers() + this.userService.getUsersNameList() .then(users => { this.userLists = users; }); @@ -153,6 +153,8 @@ export class AddMemberComponent implements AfterViewChecked, OnInit, OnDestroy { .addUserMember(this.projectId, {username: this.member.entity_name}, +this.member.role_id).pipe( finalize(() => { this.addMemberOpened = false; + this.member.role_id = null; + let changeTimer = setInterval(() => this.ref.detectChanges(), 200); setTimeout(() => { clearInterval(changeTimer); diff --git a/src/portal/src/app/project/robot-account/robot-account.component.html b/src/portal/src/app/project/robot-account/robot-account.component.html index 5245893a9..53fa836a7 100644 --- a/src/portal/src/app/project/robot-account/robot-account.component.html +++ b/src/portal/src/app/project/robot-account/robot-account.component.html @@ -43,6 +43,7 @@ {{'ROBOT_ACCOUNT.NAME' | translate}} {{'ROBOT_ACCOUNT.ENABLED_STATE' | translate}} + {{'ROBOT_ACCOUNT.EXPIRATION' | translate}} {{'ROBOT_ACCOUNT.DESCRIPTION' | translate}} {{r.name}} @@ -50,6 +51,7 @@ + {{r.expiresat * 1000 | date: 'short'}} {{r.description}} diff --git a/src/portal/src/app/project/robot-account/robot.ts b/src/portal/src/app/project/robot-account/robot.ts index f3ff1ffef..2dcf432b9 100644 --- a/src/portal/src/app/project/robot-account/robot.ts +++ b/src/portal/src/app/project/robot-account/robot.ts @@ -3,6 +3,7 @@ export class Robot { id: number; name: string; description: string; + expiresat: number; disabled: boolean; access: { isPull: boolean; diff --git a/src/portal/src/app/user/user.service.ts b/src/portal/src/app/user/user.service.ts index 7cafc2b00..20aa55f50 100644 --- a/src/portal/src/app/user/user.service.ts +++ b/src/portal/src/app/user/user.service.ts @@ -20,6 +20,7 @@ import { User, LDAPUser } from './user'; import LDAPUsertoUser from './user'; const userMgmtEndpoint = '/api/users'; +const userListSearch = '/api/users/search'; const ldapUserEndpoint = '/api/ldap/users'; /** @@ -39,6 +40,11 @@ export class UserService { } // Get the user list + getUsersNameList(): Promise { + return this.http.get(userListSearch, HTTP_GET_OPTIONS).toPromise() + .then(response => response.json() as User[]) + .catch(error => this.handleError(error)); + } getUsers(): Promise { return this.http.get(userMgmtEndpoint, HTTP_GET_OPTIONS).toPromise() .then(response => response.json() as User[]) diff --git a/src/portal/src/i18n/lang/en-us-lang.json b/src/portal/src/i18n/lang/en-us-lang.json index ebdeff096..36f8e1d65 100644 --- a/src/portal/src/i18n/lang/en-us-lang.json +++ b/src/portal/src/i18n/lang/en-us-lang.json @@ -65,12 +65,14 @@ "ITEM_REQUIRED": "Field is required.", "NUMBER_REQUIRED": "Field is required and should be numbers.", "PORT_REQUIRED": "Field is required and should be valid port number.", + "CRON_REQUIRED": "Field is required and should be in cron format.", "EMAIL_EXISTING": "Email address already exists.", "USER_EXISTING": "Username is already in use.", "RULE_USER_EXISTING": "Name is already in use.", "EMPTY": "Name is required", "NONEMPTY": "Can't be empty", - "REPO_TOOLTIP": "Users can not do any operations to the images in this mode." + "REPO_TOOLTIP": "Users can not do any operations to the images in this mode.", + "ENDPOINT_FORMAT": "Endpoint must start with HTTP or HTTPS." }, "PLACEHOLDER": { "CURRENT_PWD": "Enter current password", @@ -265,7 +267,10 @@ "TOKEN": "Token", "NEW_ROBOT_ACCOUNT": "NEW ROBOT ACCOUNT", "ENABLED_STATE": "Enabled state", + "NUMBER_REQUIRED":"Field is required and should be an integer other than 0.", "DESCRIPTION": "Description", + "EXPIRATION": "Expiration", + "TOKEN_EXPIRATION":"Robot Token Expiration (Days)", "ACTION": "Action", "EDIT": "Edit", "ITEMS": "items", @@ -615,6 +620,7 @@ "AUTH_MODE_DB": "Database", "AUTH_MODE_LDAP": "LDAP", "AUTH_MODE_UAA": "UAA", + "AUTH_MODE_HTTP": "http_auth", "SCOPE_BASE": "Base", "SCOPE_ONE_LEVEL": "OneLevel", "SCOPE_SUBTREE": "Subtree", @@ -633,12 +639,16 @@ "LDAP_UID": "The attribute used in a search to match a user. It could be uid, cn, email, sAMAccountName or other attributes depending on your LDAP/AD.", "LDAP_SCOPE": "The scope to search for users.", "TOKEN_EXPIRATION": "The expiration time (in minutes) of a token created by the token service. Default is 30 minutes.", + "ROBOT_TOKEN_EXPIRATION": "The expiration time ( in days) of the token of the robot account, Default is 30 days. Show the number of days converted from minutes and rounds down", "PRO_CREATION_RESTRICTION": "The flag to define what users have permission to create projects. By default, everyone can create a project. Set to 'Admin Only' so that only an administrator can create a project.", "ROOT_CERT_DOWNLOAD": "Download the root certificate of registry.", "SCANNING_POLICY": "Set image scanning policy based on different requirements. 'None': No active policy; 'Daily At': Triggering scanning at the specified time everyday.", "VERIFY_CERT": "Verify Cert from LDAP Server", "READONLY_TOOLTIP": "In read-only mode, you can not delete repositories or tags or push images. ", - "REPO_TOOLTIP": "Users can not do any operations to the images in this mode." + "REPO_TOOLTIP": "Users can not do any operations to the images in this mode.", + "HOURLY_CRON":"Run once an hour, beginning of hour", + "WEEKLY_CRON":"Run once a week, midnight between Sat/Sun", + "DAILY_CRON":"Run once a day, midnight" }, "LDAP": { "URL": "LDAP URL", @@ -667,6 +677,11 @@ "CLIENT_SECRET": "UAA Client Secret", "VERIFY_CERT": "UAA Verify Cert" }, + "HTTP_AUTH": { + "ENDPOINT": "Server Endpoint", + "ALWAYS_ONBOARD": "Always Onboard", + "VERIFY_CERT": "Authentication Verify Cert" + }, "SCANNING": { "TRIGGER_SCAN_ALL_SUCCESS": "Trigger scan all successfully!", "TRIGGER_SCAN_ALL_FAIL": "Failed to trigger scan all with error: {{error}", @@ -872,7 +887,10 @@ "NONE": "None", "DAILY": "Daily", "WEEKLY": "Weekly", + "HOURLY": "Hourly", + "CUSTOM": "Custom", "MANUAL": "Manual", + "CRON": "cron", "ON": "on", "AT": "at" }, diff --git a/src/portal/src/i18n/lang/es-es-lang.json b/src/portal/src/i18n/lang/es-es-lang.json index 181433c6e..776694506 100644 --- a/src/portal/src/i18n/lang/es-es-lang.json +++ b/src/portal/src/i18n/lang/es-es-lang.json @@ -65,12 +65,14 @@ "ITEM_REQUIRED": "Campo obligatorio.", "NUMBER_REQUIRED": "El campo es obligatorio y debería ser un número.", "PORT_REQUIRED": "El campo es obligatorio y debería ser un número de puerto válido.", + "CRON_REQUIRED": "El campo es obligatorio y debe estar en formato cron.", "EMAIL_EXISTING": "Esa dirección de email ya existe.", "USER_EXISTING": "Ese nombre de usuario ya existe.", "RULE_USER_EXISTING": "Name is already in use.", "EMPTY": "Name is required", "NONEMPTY": "Can't be empty", - "REPO_TOOLTIP": "Users can not do any operations to the images in this mode." + "REPO_TOOLTIP": "Users can not do any operations to the images in this mode.", + "ENDPOINT_FORMAT": "Endpoint must start with HTTP or HTTPS." }, "PLACEHOLDER": { "CURRENT_PWD": "Introduzca la contraseña actual", @@ -265,6 +267,9 @@ "TOKEN": "Token", "NEW_ROBOT_ACCOUNT": "NEW ROBOT ACCOUNT", "ENABLED_STATE": "Enabled state", + "EXPIRATION": "Expiration", + "NUMBER_REQUIRED":"Field is required and should be an integer other than 0.", + "TOKEN_EXPIRATION":"Robot Token Expiration (Days)", "DESCRIPTION": "Description", "ACTION": "Action", "EDIT": "Edit", @@ -614,6 +619,7 @@ "AUTH_MODE_DB": "Base de datos", "AUTH_MODE_LDAP": "LDAP", "AUTH_MODE_UAA": "UAA", + "AUTH_MODE_HTTP": "http_auth", "SCOPE_BASE": "Base", "SCOPE_ONE_LEVEL": "UnNivel", "SCOPE_SUBTREE": "Subárbol", @@ -632,12 +638,16 @@ "LDAP_UID": "El atributo usado en una búsqueda para encontrar un usuario. Debe ser el uid, cn, email, sAMAccountName u otro atributo dependiendo del LDAP/AD.", "LDAP_SCOPE": "El ámbito de búsqueda para usuarios", "TOKEN_EXPIRATION": "El tiempo de expiración (en minutos) del token creado por el servicio de tokens. Por defecto son 30 minutos.", + "ROBOT_TOKEN_EXPIRATION": "El tiempo de caducidad (días) del token de la cuenta del robot, el valor predeterminado es 30 días. Muestra el número de días convertidos de minutos y redondeos.", "PRO_CREATION_RESTRICTION": "Marca para definir qué usuarios tienen permisos para crear proyectos. Por defecto, todos pueden crear proyectos. Seleccione 'Solo Administradores' para que solamente los administradores puedan crear proyectos.", "ROOT_CERT_DOWNLOAD": "Download the root certificate of registry.", "SCANNING_POLICY": "Set image scanning policy based on different requirements. 'None': No active policy; 'Daily At': Triggering scanning at the specified time everyday.", "VERIFY_CERT": "Verify Cert from LDAP Server", "READONLY_TOOLTIP": "In read-only mode, you can not delete repositories or tags or push images. ", - "GC_POLICY": "" + "GC_POLICY": "", + "HOURLY_CRON":"Run once an hour, beginning of hour", + "WEEKLY_CRON":"Run once a week, midnight between Sat/Sun", + "DAILY_CRON":"Run once a day, midnight" }, "LDAP": { @@ -666,6 +676,11 @@ "CLIENT_SECRET": "UAA Client Secret", "VERIFY_CERT": "UAA Verify Cert" }, + "HTTP_AUTH": { + "ENDPOINT": "Server Endpoint", + "ALWAYS_ONBOARD": "Always Onboard", + "VERIFY_CERT": "Authentication Verify Cert" + }, "SCANNING": { "TRIGGER_SCAN_ALL_SUCCESS": "Trigger scan all successfully!", "TRIGGER_SCAN_ALL_FAIL": "Failed to trigger scan all with error: {{error}", diff --git a/src/portal/src/i18n/lang/fr-fr-lang.json b/src/portal/src/i18n/lang/fr-fr-lang.json index af362a39c..2a4b19715 100644 --- a/src/portal/src/i18n/lang/fr-fr-lang.json +++ b/src/portal/src/i18n/lang/fr-fr-lang.json @@ -54,10 +54,12 @@ "ITEM_REQUIRED": "Le champ est obligatoire.", "NUMBER_REQUIRED": "Le champ est obligatoire et doit être numérique.", "PORT_REQUIRED": "Le champ est obligatoire et doit être un numéro de port valide.", + "CRON_REQUIRED": "Le champ est obligatoire et doit être au format cron.", "EMAIL_EXISTING": "L'adresse e-mail existe déjà.", "USER_EXISTING": "Le nom d'utilisateur est déjà utilisé.", "NONEMPTY": "Can't be empty", - "REPO_TOOLTIP": "Users can not do any operations to the images in this mode." + "REPO_TOOLTIP": "Users can not do any operations to the images in this mode.", + "ENDPOINT_FORMAT": "Endpoint must start with HTTP or HTTPS." }, "PLACEHOLDER": { "CURRENT_PWD": "Entrez le mot de passe actuel", @@ -249,6 +251,9 @@ "TOKEN": "gage ", "NEW_ROBOT_ACCOUNT": "nouveau robot compte ", "ENABLED_STATE": "état d 'activation", + "EXPIRATION": "Expiration", + "NUMBER_REQUIRED":"Field is required and should be an integer other than 0.", + "TOKEN_EXPIRATION":"Robot Token Expiration (Days)", "DESCRIPTION": "Description", "ACTION": "Action", "EDIT": "Edit", @@ -586,6 +591,7 @@ "SELF_REGISTRATION": "Autoriser l'Auto-Inscription", "AUTH_MODE_DB": "Base de données", "AUTH_MODE_LDAP": "LDAP", + "AUTH_MODE_HTTP": "http_auth", "SCOPE_BASE": "Base", "SCOPE_ONE_LEVEL": "Premier Niveau", "SCOPE_SUBTREE": "Sous-arbre", @@ -605,11 +611,15 @@ "LDAP_UID": "Attribut utilisé dans une recherche pour trouver un utilisateur. Cela peut être uid, cn, email, sAMAccountName ou d'autres attributs selon votre LDAP/AD.", "LDAP_SCOPE": "Le scope de recherche des utilisateurs.", "TOKEN_EXPIRATION": "Le temps d'expiration (en minutes) d'un jeton créé par le service de jeton. La valeur par défaut est 30 minutes.", + "ROBOT_TOKEN_EXPIRATION": "Le délai d'expiration (en jours) du jeton du compte robot est défini par défaut sur 30 jours. Afficher le nombre de jours convertis à partir des minutes et des arrondis", "PRO_CREATION_RESTRICTION": "L'indicateur pour définir quels utilisateurs ont le droit de créer des projets. Par défaut, tout le monde peut créer un projet. Définissez sur 'Administrateur Seulement' pour que seul un administrateur puisse créer un projet.", "ROOT_CERT_DOWNLOAD": "Téléchargez le certificat racine du dépôt.", "SCANNING_POLICY": "Définissez la politique d'analyse des images en fonction des différentes exigences. 'Aucune' : pas de politique active; 'Tousles jours à' : déclenchement du balayage à l'heure spécifiée tous les jours.", "READONLY_TOOLTIP": "In read-only mode, you can not delete repositories or tags or push images. ", - "GC_POLICY": "" + "GC_POLICY": "", + "HOURLY_CRON":"Run once an hour, beginning of hour", + "WEEKLY_CRON":"Run once a week, midnight between Sat/Sun", + "DAILY_CRON":"Run once a day, midnight" }, "LDAP": { "URL": "URL LDAP", @@ -631,6 +641,11 @@ "GROUP_SCOPE": "LDAP Group Scope", "GROUP_SCOPE_INFO": "The scope to search for groups, select Subtree by default." }, + "HTTP_AUTH": { + "ENDPOINT": "serveur paramètre", + "ALWAYS_ONBOARD": "Always Onboard", + "VERIFY_CERT": "authentification vérifier cert" + }, "SCANNING": { "TRIGGER_SCAN_ALL_SUCCESS": "Déclenchement d'analyse globale avec succès !", "TRIGGER_SCAN_ALL_FAIL": "Echec du déclenchement d'analyse globale avec des erreurs : {{error}", diff --git a/src/portal/src/i18n/lang/pt-br-lang.json b/src/portal/src/i18n/lang/pt-br-lang.json index 684cff475..8ad4c5c83 100644 --- a/src/portal/src/i18n/lang/pt-br-lang.json +++ b/src/portal/src/i18n/lang/pt-br-lang.json @@ -65,10 +65,12 @@ "ITEM_REQUIRED": "Campo é obrigatório.", "NUMBER_REQUIRED": "Campo é obrigatório e deve ser numerico.", "PORT_REQUIRED": "Campo é obrigatório e deve ser um número de porta válido.", + "CRON_REQUIRED": "O campo é obrigatório e deve estar no formato cron.", "EMAIL_EXISTING": "Email já existe.", "USER_EXISTING": "Nome de usuário já está em uso.", "RULE_USER_EXISTING": "Nome já em uso.", - "EMPTY": "Nome é obrigatório" + "EMPTY": "Nome é obrigatório", + "ENDPOINT_FORMAT": "Avaliação deve começar por HTTP Ou HTTPS." }, "PLACEHOLDER": { "CURRENT_PWD": "Insira a senha atual", @@ -263,6 +265,9 @@ "TOKEN": "Token", "NEW_ROBOT_ACCOUNT": "Novo robô conta", "ENABLED_STATE": "Enabled state", + "EXPIRATION": "Expiration", + "NUMBER_REQUIRED":"Field is required and should be an integer other than 0.", + "TOKEN_EXPIRATION":"Robot Token Expiration (Days)", "DESCRIPTION": "Descrição", "ACTION": "AÇÃO", "EDIT": "Editar", @@ -609,6 +614,7 @@ "AUTH_MODE_DB": "Banco de Dados", "AUTH_MODE_LDAP": "LDAP", "AUTH_MODE_UAA": "UAA", + "AUTH_MODE_HTTP": "http_auth", "SCOPE_BASE": "Base", "SCOPE_ONE_LEVEL": "OneLevel", "SCOPE_SUBTREE": "Subtree", @@ -626,12 +632,16 @@ "LDAP_UID": "O atributo utilizado na busca de um uusário. Pode ser uid, cn, email, sAMAccountName ou outro atributo dependendo LDAP/AD.", "LDAP_SCOPE": "O escopo de busca de usuários.", "TOKEN_EXPIRATION": "O tempo de expiração (em minutos) de um token criado pelo serviço de token. O padrão é 30 minutos.", + "ROBOT_TOKEN_EXPIRATION": "O tempo de expiração (dias) do token da conta do robô, o padrão é 30 dias. Mostra o número de dias convertidos de minutos e arredonda para baixo", "PRO_CREATION_RESTRICTION": "A opção para definir quais usuários possuem permissão de criar projetos. Por padrão, qualquer um pode criar projetos. Configure para 'Apenas Administradores' para que apenas Administradores possam criar projetos.", "ROOT_CERT_DOWNLOAD": "Baixar o certificado raiz do registry.", "SCANNING_POLICY": "Configura a política de análise das imagens baseado em diferentes requisitos. 'Nenhum': Nenhuma política ativa; 'Diariamente em': Dispara a análise diariamente no horário especificado.", "VERIFY_CERT": "Verificar o Certificado do Servidor LDAP", "READONLY_TOOLTIP": "Em modo somente leitura, você não pode remover repositórios ou tags ou enviar imagens. ", - "REPO_TOOLTIP": "Usuários não podem efetuar qualquer operação nas imagens nesse modo." + "REPO_TOOLTIP": "Usuários não podem efetuar qualquer operação nas imagens nesse modo.", + "HOURLY_CRON":"Run once an hour, beginning of hour", + "WEEKLY_CRON":"Run once a week, midnight between Sat/Sun", + "DAILY_CRON":"Run once a day, midnight" }, "LDAP": { "URL": "URL LDAP", @@ -660,6 +670,11 @@ "CLIENT_SECRET": "Secret de Cliente UAA", "VERIFY_CERT": "Verificar certificado UAA" }, + "HTTP_AUTH": { + "ENDPOINT": "server endpoint", + "ALWAYS_ONBOARD": "Sempre Onboard", + "VERIFY_CERT": "Verificar certificado de Authentication" + }, "SCANNING": { "TRIGGER_SCAN_ALL_SUCCESS": "Disparo de análise geral efetuado com sucesso!", "TRIGGER_SCAN_ALL_FAIL": "Falha ao disparar análise geral com erro: {{error}", diff --git a/src/portal/src/i18n/lang/zh-cn-lang.json b/src/portal/src/i18n/lang/zh-cn-lang.json index a4475b4dc..ee829b758 100644 --- a/src/portal/src/i18n/lang/zh-cn-lang.json +++ b/src/portal/src/i18n/lang/zh-cn-lang.json @@ -65,11 +65,13 @@ "ITEM_REQUIRED": "此项为必填项。", "NUMBER_REQUIRED": "此项为必填项且为数字。", "PORT_REQUIRED": "此项为必填项且为合法端口号。", + "CRON_REQUIRED": "此项为必填项且为cron格式。", "EMAIL_EXISTING": "邮件地址已经存在。", "USER_EXISTING": "用户名已经存在。", "RULE_USER_EXISTING": "名称已经存在。", "EMPTY": "名称为必填项", - "NONEMPTY": "不能为空" + "NONEMPTY": "不能为空", + "ENDPOINT_FORMAT": "Endpoint必须以http或https开头。" }, "PLACEHOLDER": { "CURRENT_PWD": "输入当前密码", @@ -264,6 +266,9 @@ "TOKEN": "令牌", "NEW_ROBOT_ACCOUNT": "添加机器人账户", "ENABLED_STATE": "启用状态", + "EXPIRATION": "过期时间", + "NUMBER_REQUIRED":"此项为必填项且为不为0的整数.", + "TOKEN_EXPIRATION":"机器人账户令牌过期时间(天)", "DESCRIPTION": "描述", "ACTION": "操作", "EDIT": "编辑", @@ -614,6 +619,7 @@ "AUTH_MODE_DB": "数据库", "AUTH_MODE_LDAP": "LDAP", "AUTH_MODE_UAA": "UAA", + "AUTH_MODE_HTTP": "http_auth", "SCOPE_BASE": "本层", "SCOPE_ONE_LEVEL": "下一层", "SCOPE_SUBTREE": "子树", @@ -632,12 +638,16 @@ "LDAP_UID": "在搜索中用来匹配用户的属性,可以是uid,cn,email,sAMAccountName或者其它LDAP/AD服务器支持的属性。", "LDAP_SCOPE": "搜索用户的范围。", "TOKEN_EXPIRATION": "由令牌服务创建的令牌的过期时间(分钟),默认为30分钟。", + "ROBOT_TOKEN_EXPIRATION": "机器人账户的令牌的过期时间(天),默认为30天,显示的结果为分钟转化的天数并向下取整。", "PRO_CREATION_RESTRICTION": "用来确定哪些用户有权限创建项目,默认为’所有人‘,设置为’仅管理员‘则只有管理员可以创建项目。", "ROOT_CERT_DOWNLOAD": "下载镜像库根证书.", "SCANNING_POLICY": "基于不同需求设置镜像扫描策略。‘无’:不设置任何策略;‘每日定时’:每天在设置的时间定时执行扫描。", "VERIFY_CERT": "检查来自LDAP服务端的证书", "READONLY_TOOLTIP": "选中,表示正在维护状态,不可删除仓库及标签,也不可以推送镜像。", - "REPO_TOOLTIP": "用户在此模式下无法对图像执行任何操作。" + "REPO_TOOLTIP": "用户在此模式下无法对图像执行任何操作。", + "HOURLY_CRON":"每小时运行一次", + "WEEKLY_CRON":"每周一次,周六/周日午夜之间开始", + "DAILY_CRON":"每天午夜运行一次" }, "LDAP": { "URL": "LDAP URL", @@ -665,6 +675,11 @@ "CLIENT_SECRET": "UAA Client Secret", "VERIFY_CERT": "UAA 检查证书" }, + "HTTP_AUTH": { + "ENDPOINT": "Server Endpoint", + "ALWAYS_ONBOARD": "Always Onboard", + "VERIFY_CERT": "Authentication验证证书" + }, "SCANNING": { "TRIGGER_SCAN_ALL_SUCCESS": "启动扫描所有镜像任务成功!", "TRIGGER_SCAN_ALL_FAIL": "启动扫描所有镜像任务失败:{{error}", diff --git a/src/replication/policy/manager.go b/src/replication/policy/manager.go index 824885a9e..7210a1782 100644 --- a/src/replication/policy/manager.go +++ b/src/replication/policy/manager.go @@ -196,5 +196,10 @@ func (m *DefaultManager) UpdatePolicy(policy models.ReplicationPolicy) error { // RemovePolicy removes the specified policy; // If removing failed, error will be returned. func (m *DefaultManager) RemovePolicy(policyID int64) error { + // delete replication jobs + if err := dao.DeleteRepJobs(policyID); err != nil { + return err + } + // delete the replication policy return dao.DeleteRepPolicy(policyID) } diff --git a/src/replication/trigger/cache.go b/src/replication/trigger/cache.go index 979cee14e..59b82664d 100644 --- a/src/replication/trigger/cache.go +++ b/src/replication/trigger/cache.go @@ -106,9 +106,9 @@ type Cache struct { // NewCache is constructor of cache func NewCache(capacity int) *Cache { - cap := capacity - if cap <= 0 { - cap = defaultCapacity + capa := capacity + if capa <= 0 { + capa = defaultCapacity } // Initialize heap @@ -116,7 +116,7 @@ func NewCache(capacity int) *Cache { heap.Init(&mq) return &Cache{ - capacity: cap, + capacity: capa, lock: new(sync.RWMutex), hash: make(map[string]CacheItem), queue: &mq, diff --git a/tests/apitests/apilib/user.go b/tests/apitests/apilib/user.go index 8fc12ae69..62a93aae0 100644 --- a/tests/apitests/apilib/user.go +++ b/tests/apitests/apilib/user.go @@ -54,6 +54,12 @@ type User struct { UpdateTime string `json:"update_time,omitempty"` } +// UserSearch the user search type +type UserSearch struct { + UserID int `json:"user_id,omitempty"` + Username string `json:"username,omitempty"` +} + // Permission the permission type type Permission struct { Resource string `json:"resource,omitempty"` diff --git a/tests/configharbor.py b/tests/configharbor.py index f355faaac..19955ff57 100644 --- a/tests/configharbor.py +++ b/tests/configharbor.py @@ -46,4 +46,3 @@ if response.status_code == 200 : else: print("Failed with http return code:"+ str(response.status_code)) sys.exit(1) - diff --git a/tests/resources/APITest-Util.robot b/tests/resources/APITest-Util.robot index c7ac739f6..057820a73 100644 --- a/tests/resources/APITest-Util.robot +++ b/tests/resources/APITest-Util.robot @@ -1,13 +1,13 @@ *** Keywords *** Make Swagger Client - ${rc} ${output}= Run And Return Rc And Output make swagger_client + ${rc} ${output}= Run And Return Rc And Output make swagger_client Log ${output} [Return] ${rc} Setup API Test Retry Keyword When Error Make Swagger Client -Harbor API Test +Harbor API Test [Arguments] ${testcase_name} ${current_dir}= Run pwd Log To Console ${current_dir} diff --git a/tests/resources/Harbor-Pages/Project-Helmcharts.robot b/tests/resources/Harbor-Pages/Project-Helmcharts.robot index 556ddd88a..9a9d1c8ef 100644 --- a/tests/resources/Harbor-Pages/Project-Helmcharts.robot +++ b/tests/resources/Harbor-Pages/Project-Helmcharts.robot @@ -46,5 +46,12 @@ Go Back To Versions And Delete Retry Element Click xpath=${version_bread_crumbs} Retry Element Click xpath=${version_checkbox} Retry Element Click xpath=${version_delete} - Retry Element Click xpath=${version_confirm_delete} - Retry Keyword When Error Wait Until Page Contains Element element=xpath=${helmchart_content} \ No newline at end of file + :For ${n} IN RANGE 1 6 + \ Log To Console Trying Go Back To Versions And Delete ${n} times ... + \ Retry Element Click xpath=${version_confirm_delete} + \ Capture Page Screenshot + \ ${out} Run Keyword And Ignore Error Retry Wait Until Page Contains Element xpath=${helmchart_content} + \ Capture Page Screenshot + \ Log To Console Return value is ${out[0]} + \ Exit For Loop If '${out[0]}'=='PASS' + \ Sleep 1 diff --git a/tests/resources/Harbor-Pages/Project-Members.robot b/tests/resources/Harbor-Pages/Project-Members.robot index 1760c1849..cc26f0635 100644 --- a/tests/resources/Harbor-Pages/Project-Members.robot +++ b/tests/resources/Harbor-Pages/Project-Members.robot @@ -22,11 +22,10 @@ ${HARBOR_VERSION} v1.1.1 *** Keywords *** Go Into Project [Arguments] ${project} ${has_image}=${true} - Wait Until Element Is Visible And Enabled ${search_input} + Retry Wait Element ${search_input} Input Text ${search_input} ${project} - Wait Until Page Contains ${project} - Wait Until Element Is Visible And Enabled xpath=//*[@id='project-results']//clr-dg-cell[contains(.,'${project}')]/a - Click Element xpath=//*[@id='project-results']//clr-dg-cell[contains(.,'${project}')]/a + Retry Wait Until Page Contains ${project} + Retry Element Click xpath=//*[@id='project-results']//clr-dg-cell[contains(.,'${project}')]/a #To prevent waiting for a fixed-period of time for page loading and failure caused by exception, we add loop to re-run when # exception was caught. :For ${n} IN RANGE 1 5 @@ -41,35 +40,35 @@ Go Into Project Add User To Project Admin [Arguments] ${project} ${user} Go Into Project - Sleep 2 + Sleep 2 Click Element xpath=${project_member_tag_xpath} Sleep 1 Click Element xpath=${project_member_add_button_xpath} - Sleep 2 + Sleep 2 Input Text xpath=${project_member_add_username_xpath} ${user} Sleep 3 Click Element xpath=${project_member_add_admin_xpath} Click Element xpath=${project_member_add_save_button_xpath} Sleep 4 - + Search Project Member [Arguments] ${project} ${user} Go Into Project ${project} - Sleep 2 + Sleep 2 Click Element xpath=//clr-dg-cell//a[contains(.,'${project}')] - Sleep 1 + Sleep 1 Click Element xpath=${project_member_search_button_xpath} - Sleep 1 + Sleep 1 Click Element xpath=${project_member_search_text_xpath} Sleep 2 - Wait Until Page Contains ${user} - + Wait Until Page Contains ${user} + Change Project Member Role [Arguments] ${project} ${user} ${role} Click Element xpath=//clr-dg-cell//a[contains(.,'${project}')] - Sleep 2 + Sleep 2 Click Element xpath=${project_member_tag_xpath} - Sleep 1 + Sleep 1 Click Element xpath=//project-detail//clr-dg-row[contains(.,'${user}')]//label Sleep 1 #change role @@ -100,13 +99,12 @@ User Can Not Add Member Add Guest Member To Project [arguments] ${member} - Click Element xpath=${project_member_add_button_xpath} - Sleep 1 - Input Text xpath=${project_member_add_username_xpath} ${member} + Retry Element Click xpath=${project_member_add_button_xpath} + Retry Text Input xpath=${project_member_add_username_xpath} ${member} #select guest Mouse Down xpath=${project_member_guest_radio_checkbox} Mouse Up xpath=${project_member_guest_radio_checkbox} - Click Button xpath=${project_member_add_confirmation_ok_xpath} + Retry Button Click xpath=${project_member_add_confirmation_ok_xpath} Sleep 1 Delete Project Member @@ -188,6 +186,17 @@ User Should Be Admin Logout Harbor Push Image With Tag ${ip} ${user} ${pwd} ${project} hello-world v2 +User Should Be Master + [Arguments] ${user} ${pwd} ${project} + Sign In Harbor ${HARBOR_URL} ${user} ${pwd} + Project Should Display ${project} + Go Into Project ${project} + Delete Repo ${project} + Switch To Member + Page Should Contain Element xpath=//clr-dg-row[contains(.,'${user}')]//clr-dg-cell[contains(.,'Master')] + Logout Harbor + Push Image With Tag ${ip} ${user} ${pwd} ${project} hello-world v3 + Project Should Have Member [Arguments] ${project} ${user} Sign In Harbor ${HARBOR_URL} %{HARBOR_ADMIN} %{HARBOR_PASSWORD} diff --git a/tests/resources/Harbor-Pages/Project.robot b/tests/resources/Harbor-Pages/Project.robot index 2a8f79799..65fcf99d0 100644 --- a/tests/resources/Harbor-Pages/Project.robot +++ b/tests/resources/Harbor-Pages/Project.robot @@ -44,7 +44,7 @@ Create An New Project With New User Logout Harbor Sign In Harbor ${url} ${username} ${newPassword} Create An New Project ${projectname} ${public} - Sleep 1 + Sleep 1 #It's the log of project. Go To Project Log @@ -67,7 +67,7 @@ Switch To Replication Sleep 1 Navigate To Projects - ${element}= Set Variable xpath=${projects_xpath} + ${element}= Set Variable xpath=${projects_xpath} Wait Until Element Is Visible And Enabled ${element} Click Element ${element} Sleep 2 @@ -89,7 +89,7 @@ Search Private Projects Make Project Private [Arguments] ${projectname} - Go Into Project ${project name} + Go Into Project ${project name} Sleep 2 Click Element xpath=//project-detail//a[contains(.,'Configuration')] Sleep 1 @@ -102,28 +102,25 @@ Make Project Private Make Project Public [Arguments] ${projectname} Go Into Project ${project name} - Sleep 2 - Click Element xpath=//project-detail//a[contains(.,'Configuration')] + Retry Element Click xpath=//project-detail//a[contains(.,'Configuration')] Checkbox Should Not Be Selected xpath=//input[@name='public'] - Click Element //div[@id="clr-wrapper-public"]//label[1] - Wait Until Element Is Enabled //button[contains(.,'SAVE')] - Click Element //button[contains(.,'SAVE')] + Retry Element Click //div[@id="clr-wrapper-public"]//label[1] + Retry Element Click //button[contains(.,'SAVE')] Wait Until Page Contains Configuration has been successfully saved Delete Repo [Arguments] ${projectname} ${element_repo_checkbox}= Set Variable xpath=//clr-dg-row[contains(.,'${projectname}')]//clr-checkbox-wrapper//label - Retry Element Click ${element_repo_checkbox} - Retry Element Click ${repo_delete_btn} - Retry Element Click ${repo_delete_confirm_btn} + Retry Double Keywords When Error Retry Element Click ${element_repo_checkbox} Wait Until Element Is Visible And Enabled ${repo_delete_btn} + Retry Double Keywords When Error Retry Element Click ${repo_delete_btn} Wait Until Element Is Visible And Enabled ${delete_confirm_btn} + Retry Double Keywords When Error Retry Element Click ${delete_confirm_btn} Retry Wait Until Page Not Contains Element ${delete_confirm_btn} Delete Repo on CardView [Arguments] ${reponame} - Click Element //hbr-gridview//span[contains(.,'${reponame}')]//clr-dropdown/button - Wait Until Element Is Visible //hbr-gridview//span[contains(.,'${reponame}')]//clr-dropdown/clr-dropdown-menu/button[contains(.,'Delete')] - Click Element //hbr-gridview//span[contains(.,'${reponame}')]//clr-dropdown/clr-dropdown-menu/button[contains(.,'Delete')] - Wait Until Element Is Visible //clr-modal//button[contains(.,'DELETE')] - Click Element //clr-modal//button[contains(.,'DELETE')] + Retry Element Click //hbr-gridview//span[contains(.,'${reponame}')]//clr-dropdown/button + Retry Element Click //hbr-gridview//span[contains(.,'${reponame}')]//clr-dropdown/clr-dropdown-menu/button[contains(.,'Delete')] + Retry Element Click ${repo_delete_on_card_view_btn} + Sleep 2 Delete Project [Arguments] ${projectname} @@ -151,7 +148,7 @@ Project Should Be Deleted Advanced Search Should Display Page Should Contain Element xpath=//audit-log//div[@class='flex-xs-middle']/button -# it's not a common keywords, only used into log case. +# it's not a common keywords, only used into log case. Do Log Advanced Search Capture Page Screenshot LogAdvancedSearch.png Sleep 1 diff --git a/tests/resources/Harbor-Pages/Project_Elements.robot b/tests/resources/Harbor-Pages/Project_Elements.robot index 58d3d32c8..d969816ee 100644 --- a/tests/resources/Harbor-Pages/Project_Elements.robot +++ b/tests/resources/Harbor-Pages/Project_Elements.robot @@ -26,9 +26,15 @@ ${project_replication_xpath} //project-detail//a[contains(.,'Replication')] ${project_log_xpath} //project-detail//li[contains(.,'Logs')] ${project_member_xpath} //project-detail//li[contains(.,'Members')] -${create_project_OK_button_xpath} xpath=//button[contains(.,'OK')] ${create_project_CANCEL_button_xpath} xpath=//button[contains(.,'CANCEL')] +${create_project_OK_button_xpath} xpath=//button[contains(.,'OK')] +${delete_confirm_btn} xpath=//confirmation-dialog//button[contains(.,'DELETE')] ${project_statistics_private_repository_icon} xpath=//project/div/div/div[1]/div/statistics-panel/div/div[2]/div[1]/div[2]/div[2]/statistics/div/span[1] -${repo_delete_btn} xpath=//button[contains(.,'Delete')] ${repo_delete_confirm_btn} xpath=//clr-modal//button[2] ${repo_retag_confirm_dlg} css=${modal-dialog} +${repo_delete_on_card_view_btn} //clr-modal//button[contains(.,'DELETE')] +${delete_btn} //button[contains(.,'Delete')] +${repo_delete_btn} xpath=//repository//button[contains(.,'Delete')] +${project_delete_btn} xpath=//list-project//clr-datagrid//button[contains(.,'Delete')] +${tag_delete_btn} xpath=//tag-repository//clr-datagrid//button[contains(.,'Delete')] +${user_delete_btn} xpath=/clr-dropdown-menu//button[contains(.,'Delete')] diff --git a/tests/resources/Harbor-Pages/ToolKit.robot b/tests/resources/Harbor-Pages/ToolKit.robot index a2222d387..bea0601fe 100644 --- a/tests/resources/Harbor-Pages/ToolKit.robot +++ b/tests/resources/Harbor-Pages/ToolKit.robot @@ -23,51 +23,46 @@ ${HARBOR_VERSION} v1.1.1 Delete Success [Arguments] @{obj} :For ${obj} in @{obj} - \ Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape='success-standard'] + \ Retry Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape='success-standard'] Sleep 1 Capture Page Screenshot Delete Fail [Arguments] @{obj} :For ${obj} in @{obj} - \ Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape='error-standard'] + \ Retry Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape='error-standard'] Sleep 1 Capture Page Screenshot Filter Object #Filter project repo user tag. [Arguments] ${kw} - ${element}= Set Variable xpath=//hbr-filter//clr-icon - Wait Until Element Is Visible And Enabled ${element} - Click Element ${element} + Retry Element Click xpath=//hbr-filter//clr-icon ${element}= Set Variable xpath=//hbr-filter//input - Wait Until Element Is Visible And Enabled ${element} + Wait Until Element Is Visible And Enabled ${element} Input Text ${element} ${kw} Sleep 3 Select Object #select single element such as user project repo tag [Arguments] ${obj} - ${element}= Set Variable xpath=//clr-dg-row[contains(.,'${obj}')]//label - Wait Until Element Is Visible And Enabled ${element} - Click Element ${element} + Retry Element Click xpath=//clr-dg-row[contains(.,'${obj}')]//label # This func cannot support as the delete user flow changed. Multi-delete Object - [Arguments] @{obj} + [Arguments] ${delete_btn} @{obj} :For ${obj} in @{obj} \ ${element}= Set Variable xpath=//clr-dg-row[contains(.,'${obj}')]//label - \ Wait Until Element Is Visible And Enabled ${element} - \ Click Element ${element} + \ Retry Element Click ${element} + Sleep 1 Capture Page Screenshot - ${element}= Set Variable xpath=//button[contains(.,'Delete')] - Wait Until Element Is Visible And Enabled ${element} - Click Element ${element} + Retry Element Click ${delete_btn} + Sleep 1 Capture Page Screenshot - ${element}= Set Variable xpath=//clr-modal//button[contains(.,'DELETE')] - Wait Until Element Is Visible And Enabled ${element} - Click Element ${element} + Retry Element Click ${repo_delete_on_card_view_btn} + Sleep 1 Capture Page Screenshot + Sleep 1 Multi-delete User [Arguments] @{obj} @@ -81,7 +76,7 @@ Multi-delete User Click Element //clr-modal//button[contains(.,'DELETE')] Sleep 3 -Multi-delete Member +Multi-delete Member [Arguments] @{obj} :For ${obj} in @{obj} \ Click Element //clr-dg-row[contains(.,'${obj}')]//label diff --git a/tests/resources/SeleniumUtil.robot b/tests/resources/SeleniumUtil.robot index c2e34ecee..420e8a7c2 100644 --- a/tests/resources/SeleniumUtil.robot +++ b/tests/resources/SeleniumUtil.robot @@ -36,5 +36,13 @@ Init Chrome Driver Call Method ${chrome options} add_argument --no-sandbox Call Method ${chrome options} add_argument --window-size\=1600,900 ${chrome options.binary_location} Set Variable /usr/bin/google-chrome - Create Webdriver Chrome Chrome_headless chrome_options=${chrome options} desired_capabilities=${capabilities} + #Create Webdriver Chrome Chrome_headless chrome_options=${chrome options} desired_capabilities=${capabilities} + :For ${n} IN RANGE 1 6 + \ Log To Console Trying Create Webdriver ${n} times ... + \ ${out} Run Keyword And Ignore Error Create Webdriver Chrome Chrome_headless chrome_options=${chrome options} desired_capabilities=${capabilities} + \ Log To Console Return value is ${out[0]} + \ Exit For Loop If '${out[0]}'=='PASS' + \ Sleep 2 + Run Keyword If '${out[0]}'=='FAIL' Capture Page Screenshot + Should Be Equal As Strings '${out[0]}' 'PASS' Sleep 5 diff --git a/tests/resources/Util.robot b/tests/resources/Util.robot index 84c310678..c5950d4e2 100644 --- a/tests/resources/Util.robot +++ b/tests/resources/Util.robot @@ -68,24 +68,48 @@ Wait Until Element Is Visible And Enabled Wait Until Element Is Enabled ${element} Retry Action Keyword - [Arguments] ${keyword} ${element_xpath} - Retry Keyword When Error ${keyword} element=${element_xpath} - -Retry Element Click - [Arguments] ${element_xpath} - Retry Action Keyword Element Click ${element_xpath} + [Arguments] ${keyword} @{param} + Retry Keyword When Error ${keyword} @{param} Retry Wait Element [Arguments] ${element_xpath} - Retry Action Keyword Wait Until Element Is Visible And Enabled ${element_xpath} + @{param} Create List ${element_xpath} + Retry Action Keyword Wait Until Element Is Visible And Enabled @{param} Retry Wait Element Not Visible [Arguments] ${element_xpath} - Retry Action Keyword Wait Until Element Is Not Visible ${element_xpath} + @{param} Create List ${element_xpath} + Retry Action Keyword Wait Until Element Is Not Visible @{param} + +Retry Element Click + [Arguments] ${element_xpath} + @{param} Create List ${element_xpath} + Retry Action Keyword Element Click @{param} Retry Button Click [Arguments] ${element_xpath} - Retry Action Keyword Button Click ${element_xpath} + @{param} Create List ${element_xpath} + Retry Action Keyword Button Click @{param} + +Retry Text Input + [Arguments] ${element_xpath} ${text} + @{param} Create List ${element_xpath} ${text} + Retry Action Keyword Text Input @{param} + +Retry Wait Until Page Contains + [Arguments] ${element_xpath} + @{param} Create List ${element_xpath} + Retry Action Keyword Wait Until Page Contains @{param} + +Retry Wait Until Page Contains Element + [Arguments] ${element_xpath} + @{param} Create List ${element_xpath} + Retry Action Keyword Wait Until Page Contains Element @{param} + +Retry Wait Until Page Not Contains Element + [Arguments] ${element_xpath} + @{param} Create List ${element_xpath} + Retry Action Keyword Wait Until Page Does Not Contain Element @{param} Element Click [Arguments] ${element_xpath} @@ -97,6 +121,11 @@ Button Click Wait Until Element Is Visible And Enabled ${element_xpath} Click button ${element_xpath} +Text Input + [Arguments] ${element_xpath} ${text} + Wait Until Element Is Visible And Enabled ${element_xpath} + Input Text ${element_xpath} ${text} + Wait Unitl Vul Data Ready [Arguments] ${url} ${timeout} ${interval} ${n}= Evaluate ${timeout}/${interval} @@ -117,19 +146,32 @@ Wait Unitl Command Success \ Run Keyword If ${positive} == ${true} Exit For Loop If '${rc}'=='0' \ ... ELSE Exit For Loop If '${rc}'!='0' \ Sleep 2 - Log ${output} + Log Command Result is ${output} Run Keyword If ${positive} == ${true} Should Be Equal As Strings '${rc}' '0' - ... ELSE Should Not Be Equal As Strings '${rc}' '0' + ... ELSE Should Not Be Equal As Strings '${rc}' '0' [Return] ${output} Retry Keyword When Error - [Arguments] ${keyword} ${element}=${None} ${times}=6 - :For ${n} IN RANGE 1 ${times} + [Arguments] ${keyword} @{elements} + :For ${n} IN RANGE 1 6 \ Log To Console Trying ${keyword} ${n} times ... - \ ${out} Run Keyword If "${element}"=="${None}" Run Keyword And Ignore Error ${keyword} - \ ... ELSE Run Keyword And Ignore Error ${keyword} ${element} + \ ${out} Run Keyword And Ignore Error ${keyword} @{elements} \ Log To Console Return value is ${out[0]} \ Exit For Loop If '${out[0]}'=='PASS' \ Sleep 2 Run Keyword If '${out[0]}'=='FAIL' Capture Page Screenshot - Should Be Equal As Strings '${out[0]}' 'PASS' \ No newline at end of file + Should Be Equal As Strings '${out[0]}' 'PASS' + +Retry Double Keywords When Error + [Arguments] ${keyword1} ${element1} ${keyword2} ${element2} + :For ${n} IN RANGE 1 6 + \ Log To Console Trying Delete Repo ${n} times ... + \ ${out1} Run Keyword And Ignore Error ${keyword1} ${element1} + \ Capture Page Screenshot + \ ${out2} Run Keyword And Ignore Error ${keyword2} ${element2} + \ Capture Page Screenshot + \ Log To Console Return value is ${out1[0]} ${out2[0]} + \ Exit For Loop If '${out1[0]}'=='PASS' and '${out2[0]}'=='PASS' + \ Sleep 2 + Should Be Equal As Strings '${out1[0]}' 'PASS' + Should Be Equal As Strings '${out2[0]}' 'PASS' \ No newline at end of file diff --git a/tests/robot-cases/Group1-Nightly/Common.robot b/tests/robot-cases/Group1-Nightly/Common.robot index af6b8729e..875ad4c8b 100644 --- a/tests/robot-cases/Group1-Nightly/Common.robot +++ b/tests/robot-cases/Group1-Nightly/Common.robot @@ -41,7 +41,7 @@ Test Case - Vulnerability Data Not Ready Test Case - Garbage Collection Init Chrome Driver ${d}= Get Current Date result_format=%m%s - + Sign In Harbor ${HARBOR_URL} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} Create An New Project project${d} Push Image ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} project${d} hello-world @@ -66,7 +66,7 @@ Test Case - Garbage Collection Should Contain ${output} success to run gc in job. Close Browser - + Test Case - Create An New Project Init Chrome Driver ${d}= Get Current Date result_format=%m%s @@ -294,7 +294,7 @@ Test Case - User View Logs Sign In Harbor ${HARBOR_URL} user002 Test1@34 Create An New Project project${d} - + Push image ${ip} user002 Test1@34 project${d} busybox:latest Pull image ${ip} user002 Test1@34 project${d} busybox:latest @@ -313,7 +313,7 @@ Test Case - User View Logs Test Case - Manage Project Member Init Chrome Driver ${d}= Get current Date result_format=%m%s - + Sign In Harbor ${HARBOR_URL} user004 Test1@34 Create An New Project project${d} Push image ip=${ip} user=user004 pwd=Test1@34 project=project${d} image=hello-world @@ -326,8 +326,11 @@ Test Case - Manage Project Member User Should Be Developer user005 Test1@34 project${d} Change User Role In Project user004 Test1@34 project${d} user005 Admin User Should Be Admin user005 Test1@34 project${d} user006 + Change User Role In Project user004 Test1@34 project${d} user005 Master + User Should Be Master user005 Test1@34 project${d} Manage Project Member user004 Test1@34 project${d} user005 Remove User Should Not Be A Member Of Project user005 Test1@34 project${d} + Push image ip=${ip} user=user004 pwd=Test1@34 project=project${d} image=hello-world User Should Be Guest user006 Test1@34 project${d} Close Browser @@ -403,7 +406,7 @@ Test Case - Edit Project Creation Test Case - Edit Repo Info Init Chrome Driver ${d}= Get Current Date result_format=%m%s - + Sign In Harbor ${HARBOR_URL} user011 Test1@34 Create An New Project project${d} Push Image ${ip} user011 Test1@34 project${d} hello-world @@ -415,7 +418,7 @@ Test Case - Edit Repo Info Test Case - Delete Multi Project Init Chrome Driver ${d}= Get Current Date result_format=%m%s - + Sign In Harbor ${HARBOR_URL} user012 Test1@34 Create An New Project projecta${d} Create An New Project projectb${d} @@ -423,7 +426,8 @@ Test Case - Delete Multi Project Navigate To Projects Filter Object project Retry Wait Element Not Visible //clr-datagrid/div/div[2] - Multi-delete Object projecta projectb + @{project_list} Create List projecta projectb + Multi-delete Object ${project_delete_btn} @{project_list} # Verify delete project with image should not be deleted directly Delete Fail projecta${d} Delete Success projectb${d} @@ -432,14 +436,15 @@ Test Case - Delete Multi Project Test Case - Delete Multi Repo Init Chrome Driver ${d}= Get Current Date result_format=%m%s - + Sign In Harbor ${HARBOR_URL} user013 Test1@34 Create An New Project project${d} Push Image ${ip} user013 Test1@34 project${d} hello-world Push Image ${ip} user013 Test1@34 project${d} busybox Sleep 2 Go Into Project project${d} - Multi-delete Object hello-world busybox + @{repo_list} Create List hello-world busybox + Multi-delete Object ${repo_delete_btn} @{repo_list} # Verify Delete Success hello-world busybox Close Browser @@ -447,14 +452,15 @@ Test Case - Delete Multi Repo Test Case - Delete Multi Tag Init Chrome Driver ${d}= Get Current Date result_format=%m%s - + Sign In Harbor ${HARBOR_URL} user014 Test1@34 Create An New Project project${d} Push Image With Tag ${ip} user014 Test1@34 project${d} redis 3.2.10-alpine 3.2.10-alpine Push Image With Tag ${ip} user014 Test1@34 project${d} redis 4.0.7-alpine 4.0.7-alpine Go Into Project project${d} Go Into Repo redis - Multi-delete object 3.2.10-alpine 4.0.7-alpine + @{tag_list} Create List 3.2.10-alpine 4.0.7-alpine + Multi-delete object ${tag_delete_btn} @{tag_list} # Verify Delete Success 3.2.10-alpine 4.0.7-alpine Close Browser @@ -476,7 +482,7 @@ Test Case - Delete Repo on CardView Test Case - Delete Multi Member Init Chrome Driver ${d}= Get Current Date result_format=%m%s - Sign In Harbor ${HARBOR_URL} user016 Test1@34 + Sign In Harbor ${HARBOR_URL} user016 Test1@34 Create An New Project project${d} Go Into Project project${d} has_image=${false} Switch To Member @@ -530,7 +536,7 @@ Test Case - Developer Operate Labels Sign In Harbor ${HARBOR_URL} user021 Test1@34 Create An New Project project${d} Logout Harbor - + Manage Project Member user021 Test1@34 project${d} user022 Add ${false} Change User Role In Project user021 Test1@34 project${d} user022 Developer @@ -546,7 +552,7 @@ Test Case - Scan A Tag In The Repo Sign In Harbor ${HARBOR_URL} user023 Test1@34 Create An New Project project${d} - Go Into Project project${d} has_image=${false} + Go Into Project project${d} has_image=${false} Push Image ${ip} user023 Test1@34 project${d} hello-world Go Into Project project${d} Go Into Repo project${d}/hello-world @@ -560,7 +566,7 @@ Test Case - Scan As An Unprivileged User Init Chrome Driver ${d}= get current date result_format=%m%s Push Image ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} library hello-world - + Sign In Harbor ${HARBOR_URL} user024 Test1@34 Go Into Project library Go Into Repo hello-world @@ -697,7 +703,7 @@ Test Case - View Scan Results ${d}= get current date result_format=%m%s Sign In Harbor ${HARBOR_URL} user025 Test1@34 - Create An New Project project${d} + Create An New Project project${d} Push Image ${ip} user025 Test1@34 project${d} tomcat Go Into Project project${d} Go Into Repo project${d}/tomcat diff --git a/tests/robot-cases/Group1-Nightly/Nightly.robot b/tests/robot-cases/Group1-Nightly/Nightly.robot index 3d78ab74b..0e011df79 100644 --- a/tests/robot-cases/Group1-Nightly/Nightly.robot +++ b/tests/robot-cases/Group1-Nightly/Nightly.robot @@ -536,7 +536,8 @@ Test Case - Delete Multi Project Create An New Project projectb${d} Push Image ${ip} test${d} Test1@34 projecta${d} hello-world Filter Object project - Multi-delete Object projecta projectb + @{project_list} Create List projecta projectb + Multi-delete Object ${project_delete_btn} @{project_list} # Verify delete project with image should not be deleted directly Delete Fail projecta${d} Delete Success projectb${d} @@ -554,7 +555,8 @@ Test Case - Delete Multi User Sign In Harbor ${HARBOR_URL} admin Harbor12345 Switch To User Tag Filter Object delete - Multi-delete Object deletea deleteb deletec + @{user_list} Create List deletea deleteb deletec + Multi-delete Object ${user_delete_btn} @{user_list} # Assert delete Delete Success deletea deleteb deletec Sleep 1 @@ -569,7 +571,8 @@ Test Case - Delete Multi Repo Push Image ${ip} test${d} Test1@34 project${d} busybox Sleep 2 Go Into Project project${d} - Multi-delete Object hello-world busybox + @{repo_list} Create List hello-world busybox + Multi-delete Object ${repo_delete_btn} @{repo_list} # Verify Delete Success hello-world busybox Close Browser @@ -584,7 +587,8 @@ Test Case - Delete Multi Tag Sleep 2 Go Into Project project${d} Go Into Repo redis - Multi-delete object 3.2.10-alpine 4.0.7-alpine + @{tag_list} Create List 3.2.10-alpine 4.0.7-alpine + Multi-delete object ${tag_delete_btn} @{tag_list} # Verify Delete Success 3.2.10-alpine 4.0.7-alpine Close Browser diff --git a/tests/robot-cases/Group3-Upgrade/prepare.py b/tests/robot-cases/Group3-Upgrade/prepare.py index ac2905b21..8589f20d4 100644 --- a/tests/robot-cases/Group3-Upgrade/prepare.py +++ b/tests/robot-cases/Group3-Upgrade/prepare.py @@ -8,7 +8,8 @@ requests.packages.urllib3.disable_warnings(InsecureRequestWarning) parser = argparse.ArgumentParser(description='The script to generate data for harbor v1.4.0') parser.add_argument('--endpoint', '-e', dest='endpoint', required=True, help='The endpoint to harbor') -args = parser.parse_args() +parser.add_argument('--version', '-v', dest='version', required=False, help='The version to harbor') +args = parser.parse_args() url = "https://"+args.endpoint+"/api/" print url @@ -17,30 +18,37 @@ class HarborAPI: def create_project(self, project_name): body=dict(body={"project_name": ""+project_name+"", "metadata": {"public": "true"}}) request(url+"projects", 'post', **body) - + def create_user(self, username): - payload = {"username":username, "email":username+"@vmware.com", "password":"Harbor12345", "realname":username, "commment":"string"} + payload = {"username":username, "email":username+"@vmware.com", "password":"Harbor12345", "realname":username, "comment":"string"} body=dict(body=payload) request(url+"users", 'post', **body) - + def set_user_admin(self, user): r = request(url+"users?username="+user+"", 'get') userid = str(r.json()[0]['user_id']) - body=dict(body={"has_admin_role": 1}) + if args.version == "1.6": + body=dict(body={"has_admin_role": True}) + else: + body=dict(body={"has_admin_role": 1}) request(url+"users/"+userid+"/sysadmin", 'put', **body) - + def add_member(self, project, user, role): r = request(url+"projects?name="+project+"", 'get') projectid = str(r.json()[0]['project_id']) - payload = {"roles": [role], "username":""+user+""} + if args.version == "1.6": + payload = {"member_user":{ "username": ""+user+""},"role_id": role} + else: + payload = {"roles": [role], "username":""+user+""} + body=dict(body=payload) request(url+"projects/"+projectid+"/members", 'post', **body) - + def add_endpoint(self, endpointurl, endpointname, username, password, insecure): payload = {"endpoint": ""+endpointurl+"", "name": ""+endpointname+"", "username": ""+username+"", "password": ""+password+"", "insecure": insecure} body=dict(body=payload) request(url+"targets", 'post', **body) - + def add_replication_rule(self, project, target, trigger, rulename): r = request(url+"projects?name="+project+"", 'get') projectid = r.json()[0]['project_id'] @@ -49,7 +57,7 @@ class HarborAPI: payload = {"name": ""+rulename+"", "description": "string", "projects": [{"project_id": projectid,}], "targets": [{"id": targetid,}], "trigger": {"kind": ""+trigger+"", "schedule_param": {"type": "weekly", "weekday": 1, "offtime": 0}}} body=dict(body=payload) request(url+"policies/replication", 'post', **body) - + def update_project_setting(self, project, contenttrust, preventrunning, preventseverity, scanonpush): r = request(url+"projects?name="+project+"", 'get') projectid = str(r.json()[0]['project_id']) @@ -65,7 +73,7 @@ class HarborAPI: } body=dict(body=payload) request(url+"projects/"+projectid+"", 'put', **body) - + def update_systemsetting(self, emailfrom, emailhost, emailport, emailuser, creation, selfreg, token): payload = { "auth_mode": "db_auth", @@ -80,7 +88,6 @@ class HarborAPI: "read_only": False, "self_registration": selfreg, "token_expiration": token, - "verify_remote_cert": True, "scan_all_policy": { "type": "none", "parameter": { @@ -90,7 +97,7 @@ class HarborAPI: } body=dict(body=payload) request(url+"configurations", 'put', **body) - + def update_repoinfo(self, reponame): payload = {"description": "testdescription"} body=dict(body=payload) @@ -111,7 +118,7 @@ class HarborAPI: pass open(target, 'wb').write(ca_content) - + def request(url, method, user = None, userp = None, **kwargs): if user is None: user = "admin" @@ -147,44 +154,39 @@ def push_signed_image(image, project, tag): def do_data_creation(): harborAPI = HarborAPI() harborAPI.get_ca() - + for user in data["users"]: harborAPI.create_user(user["name"]) - + for user in data["admin"]: harborAPI.set_user_admin(user["name"]) - + for project in data["projects"]: harborAPI.create_project(project["name"]) - for member in project["member"]: + for member in project["member"]: harborAPI.add_member(project["name"], member["name"], member["role"]) - + pull_image("busybox", "redis", "haproxy", "alpine", "httpd:2") push_image("busybox", data["projects"][0]["name"]) push_signed_image("alpine", data["projects"][0]["name"], "latest") - for endpoint in data["endpoint"]: harborAPI.add_endpoint(endpoint["url"], endpoint["name"], endpoint["user"], endpoint["pass"], False) - for replicationrule in data["replicationrule"]: - harborAPI.add_replication_rule(replicationrule["project"], - replicationrule["endpoint"], replicationrule["trigger"], + harborAPI.add_replication_rule(replicationrule["project"], + replicationrule["endpoint"], replicationrule["trigger"], replicationrule["rulename"]) - for project in data["projects"]: - harborAPI.update_project_setting(project["name"], - project["configuration"]["enable_content_trust"], - project["configuration"]["prevent_vulnerable_images_from_running"], + harborAPI.update_project_setting(project["name"], + project["configuration"]["enable_content_trust"], + project["configuration"]["prevent_vulnerable_images_from_running"], project["configuration"]["prevent_vlunerable_images_from_running_severity"], project["configuration"]["automatically_scan_images_on_push"]) - - harborAPI.update_systemsetting(data["configuration"]["emailsetting"]["emailfrom"], - data["configuration"]["emailsetting"]["emailserver"], - float(data["configuration"]["emailsetting"]["emailport"]), - data["configuration"]["emailsetting"]["emailuser"], + harborAPI.update_systemsetting(data["configuration"]["emailsetting"]["emailfrom"], + data["configuration"]["emailsetting"]["emailserver"], + float(data["configuration"]["emailsetting"]["emailport"]), + data["configuration"]["emailsetting"]["emailuser"], data["configuration"]["projectcreation"], data["configuration"]["selfreg"], float(data["configuration"]["token"])) - do_data_creation() \ No newline at end of file diff --git a/tests/testprepare.sh b/tests/testprepare.sh index 384e0da24..66e43af3c 100755 --- a/tests/testprepare.sh +++ b/tests/testprepare.sh @@ -14,8 +14,4 @@ else fi echo "server ip is "$IP -sed -i -r "s/POSTGRESQL_HOST=postgresql/POSTGRESQL_HOST=$IP/" make/common/config/adminserver/env -sed -i -r "s|REGISTRY_URL=http://registry:5000|REGISTRY_URL=http://$IP:5000|" make/common/config/adminserver/env -sed -i -r "s/CORE_SECRET=.*/CORE_SECRET=$CORE_SECRET/" make/common/config/adminserver/env - chmod 777 /data/ diff --git a/tests/travis/ut_install.sh b/tests/travis/ut_install.sh index 1bf39d275..da9c17ff5 100644 --- a/tests/travis/ut_install.sh +++ b/tests/travis/ut_install.sh @@ -32,7 +32,6 @@ sudo mkdir -p /harbor && sudo mv ./VERSION /harbor/UIVERSION sudo ./tests/testprepare.sh cd tests && sudo ./ldapprepare.sh && sudo ./admiral.sh && cd .. -sudo make compile_adminserver sudo make -f make/photon/Makefile _build_db _build_registry -e VERSIONTAG=dev -e CLAIRDBVERSION=dev -e REGISTRYVERSION=${REG_VERSION} sudo sed -i 's/__reg_version__/${REG_VERSION}-dev/g' ./make/docker-compose.test.yml sudo sed -i 's/__version__/dev/g' ./make/docker-compose.test.yml diff --git a/tools/migration/Dockerfile b/tools/migration/Dockerfile index 504d2a858..4bebce16c 100644 --- a/tools/migration/Dockerfile +++ b/tools/migration/Dockerfile @@ -4,11 +4,12 @@ ENV PGDATA /var/lib/postgresql/data ## have both mysql and pgsql installed. RUN tdnf distro-sync -y \ - && tdnf install -y sed shadow procps-ng gawk gzip sudo net-tools >> /dev/null\ + && tdnf remove -y toybox \ + && tdnf install -y sed shadow procps-ng gawk gzip sudo net-tools glibc-i18n >> /dev/null\ && groupadd -r -g 10000 mysql && useradd --no-log-init -r -g 10000 -u 10000 mysql \ && tdnf install -y mariadb-server mariadb mariadb-devel python2 python2-devel python-pip gcc \ - linux-api-headers glibc-devel binutils zlib-devel openssl-devel postgresql >> /dev/null \ - && pip install mysqlclient alembic psycopg2 \ + linux-api-headers glibc-devel binutils zlib-devel openssl-devel postgresql python-psycopg2 >> /dev/null \ + && pip install mysqlclient alembic \ && mkdir /docker-entrypoint-initdb.d /docker-entrypoint-updatedb.d \ && rm -fr /var/lib/mysql \ && mkdir -p /var/lib/mysql /var/run/mysqld \ diff --git a/tools/notary-migration-fix.sh b/tools/notary-migration-fix.sh new file mode 100644 index 000000000..c82785638 --- /dev/null +++ b/tools/notary-migration-fix.sh @@ -0,0 +1,63 @@ +#!/bin/bash +# Copyright Project Harbor Authors +# +# 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. +# + +set -ex + +harbor_db_image=$(docker images goharbor/harbor-db --format "{{.Repository}}:{{.Tag}}") +harbor_db_path="/data/database" + +launch_db() { + docker run -d --name fix-notary-migration -v ${harbor_db_path}:/var/lib/postgresql/data ${harbor_db_image} "postgres" +} + +clean_db() { + docker stop fix-notary-migration + docker rm fix-notary-migration +} + +wait_for_db_ready() { + set +e + TIMEOUT=12 + while [ $TIMEOUT -gt 0 ]; do + docker exec fix-notary-migration pg_isready | grep "accepting connections" + if [ $? -eq 0 ]; then + break + fi + TIMEOUT=$((TIMEOUT - 1)) + sleep 5 + done + if [ $TIMEOUT -eq 0 ]; then + echo "Harbor DB cannot reach within one minute." + clean_db + exit 1 + fi + set -e +} + +fix_notary_server() { + docker exec fix-notary-migration psql -U postgres -d notaryserver -c "delete from schema_migrations where version > 2 and not exists(select column_name from information_schema.columns where table_name = 'schema_migrations' and column_name = 'dirty');" +} + +fix_notary_signer() { + docker exec fix-notary-migration psql -U postgres -d notarysigner -c "delete from schema_migrations where version > 1 and not exists(select column_name from information_schema.columns where table_name = 'schema_migrations' and column_name = 'dirty');" +} + + +launch_db +wait_for_db_ready +fix_notary_server +fix_notary_signer +clean_db \ No newline at end of file