From 43fc619a7e940152e956d64797bdad04edcfb40b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 22 Aug 2018 13:57:25 +0200 Subject: [PATCH] Update license note in headers of source files --- CMakeLists.txt | 2 +- bindings/go/evmc/evmc.go | 2 +- bindings/go/evmc/evmc_test.go | 2 +- bindings/go/evmc/host.c | 2 +- bindings/go/evmc/host.go | 2 +- cmake/HunterConfig.cmake | 2 +- examples/examplevm/CMakeLists.txt | 2 +- examples/examplevm/examplevm.h | 2 +- examples/use_evmc_in_cmake/CMakeLists.txt | 2 +- examples/use_evmc_in_cmake/use_evmc_in_cmake.c | 2 +- examples/use_instructions_in_cmake/CMakeLists.txt | 2 +- examples/use_instructions_in_cmake/use_instructions_in_cmake.c | 2 +- include/evmc/evmc.h | 2 +- include/evmc/helpers.h | 2 +- include/evmc/instructions.h | 2 +- include/evmc/loader.h | 2 +- include/evmc/utils.h | 2 +- lib/CMakeLists.txt | 2 +- lib/instructions/CMakeLists.txt | 2 +- lib/instructions/instruction_metrics.c | 2 +- lib/instructions/instruction_names.c | 2 +- lib/loader/CMakeLists.txt | 2 +- lib/loader/loader.c | 2 +- test/CMakeLists.txt | 2 +- test/integration/CMakeLists.txt | 2 +- test/integration/compilation/CMakeLists.txt | 2 +- test/integration/compilation/compilation_test.c | 2 +- test/unittests/CMakeLists.txt | 2 +- test/unittests/test_instructions.cpp | 2 +- test/unittests/test_loader.cpp | 2 +- test/unittests/vm_mock.c | 2 +- test/vmtester/CMakeLists.txt | 2 +- test/vmtester/tests.cpp | 2 +- test/vmtester/vmtester.cpp | 2 +- test/vmtester/vmtester.hpp | 2 +- 35 files changed, 35 insertions(+), 35 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 313cb6cba..d90d605a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. cmake_minimum_required(VERSION 3.5) diff --git a/bindings/go/evmc/evmc.go b/bindings/go/evmc/evmc.go index 5584815cd..24e19b8f8 100644 --- a/bindings/go/evmc/evmc.go +++ b/bindings/go/evmc/evmc.go @@ -1,6 +1,6 @@ // EVMC: Ethereum Client-VM Connector API. // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. package evmc diff --git a/bindings/go/evmc/evmc_test.go b/bindings/go/evmc/evmc_test.go index e554c3b42..db20b5dec 100644 --- a/bindings/go/evmc/evmc_test.go +++ b/bindings/go/evmc/evmc_test.go @@ -1,6 +1,6 @@ // EVMC: Ethereum Client-VM Connector API. // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. package evmc diff --git a/bindings/go/evmc/host.c b/bindings/go/evmc/host.c index bd9bc0a7f..53e3bfbdf 100644 --- a/bindings/go/evmc/host.c +++ b/bindings/go/evmc/host.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #include "_cgo_export.h" diff --git a/bindings/go/evmc/host.go b/bindings/go/evmc/host.go index 1d349388a..47f4f638f 100644 --- a/bindings/go/evmc/host.go +++ b/bindings/go/evmc/host.go @@ -1,6 +1,6 @@ // EVMC: Ethereum Client-VM Connector API. // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. package evmc diff --git a/cmake/HunterConfig.cmake b/cmake/HunterConfig.cmake index 0ff0503c7..403358adb 100644 --- a/cmake/HunterConfig.cmake +++ b/cmake/HunterConfig.cmake @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. # Setup Hunter. # Hunter is going to be initialized only if building with tests, diff --git a/examples/examplevm/CMakeLists.txt b/examples/examplevm/CMakeLists.txt index d36d3e02b..4f1dc5273 100644 --- a/examples/examplevm/CMakeLists.txt +++ b/examples/examplevm/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. include(GNUInstallDirs) diff --git a/examples/examplevm/examplevm.h b/examples/examplevm/examplevm.h index b36dc6c41..b201587cc 100644 --- a/examples/examplevm/examplevm.h +++ b/examples/examplevm/examplevm.h @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #pragma once diff --git a/examples/use_evmc_in_cmake/CMakeLists.txt b/examples/use_evmc_in_cmake/CMakeLists.txt index ba2817d65..ecacf872e 100644 --- a/examples/use_evmc_in_cmake/CMakeLists.txt +++ b/examples/use_evmc_in_cmake/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. # This example shows how to use evmc INTERFACE library from evmc CMake package. diff --git a/examples/use_evmc_in_cmake/use_evmc_in_cmake.c b/examples/use_evmc_in_cmake/use_evmc_in_cmake.c index 6be98c585..adac0a00b 100644 --- a/examples/use_evmc_in_cmake/use_evmc_in_cmake.c +++ b/examples/use_evmc_in_cmake/use_evmc_in_cmake.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ /** This example shows how to use evmc INTERFACE library from evmc CMake package. */ diff --git a/examples/use_instructions_in_cmake/CMakeLists.txt b/examples/use_instructions_in_cmake/CMakeLists.txt index 067b49563..69fe76d30 100644 --- a/examples/use_instructions_in_cmake/CMakeLists.txt +++ b/examples/use_instructions_in_cmake/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. # This example shows how to use evmc::instructions library from evmc CMake package. diff --git a/examples/use_instructions_in_cmake/use_instructions_in_cmake.c b/examples/use_instructions_in_cmake/use_instructions_in_cmake.c index 8ae3a70d6..6d40c38ad 100644 --- a/examples/use_instructions_in_cmake/use_instructions_in_cmake.c +++ b/examples/use_instructions_in_cmake/use_instructions_in_cmake.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ /** This example shows how to use evmc::instructions library from evmc CMake package. */ diff --git a/include/evmc/evmc.h b/include/evmc/evmc.h index f36ea3076..4c0a838c1 100644 --- a/include/evmc/evmc.h +++ b/include/evmc/evmc.h @@ -3,7 +3,7 @@ * * @copyright * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. * * @defgroup EVMC EVMC * @{ diff --git a/include/evmc/helpers.h b/include/evmc/helpers.h index a0c3d1284..36c14ec9d 100644 --- a/include/evmc/helpers.h +++ b/include/evmc/helpers.h @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ /** diff --git a/include/evmc/instructions.h b/include/evmc/instructions.h index d5f3d90e0..c74c3355f 100644 --- a/include/evmc/instructions.h +++ b/include/evmc/instructions.h @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ /** diff --git a/include/evmc/loader.h b/include/evmc/loader.h index f2170ece5..bf21d0735 100644 --- a/include/evmc/loader.h +++ b/include/evmc/loader.h @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ /** diff --git a/include/evmc/utils.h b/include/evmc/utils.h index 1e2b45999..19580b806 100644 --- a/include/evmc/utils.h +++ b/include/evmc/utils.h @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #pragma once diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 44942542c..0bc11ce85 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. add_subdirectory(instructions) add_subdirectory(loader) diff --git a/lib/instructions/CMakeLists.txt b/lib/instructions/CMakeLists.txt index b5585dc3c..2c75c15df 100644 --- a/lib/instructions/CMakeLists.txt +++ b/lib/instructions/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. add_library( instructions STATIC diff --git a/lib/instructions/instruction_metrics.c b/lib/instructions/instruction_metrics.c index 81d29d004..9f7f41284 100644 --- a/lib/instructions/instruction_metrics.c +++ b/lib/instructions/instruction_metrics.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #include diff --git a/lib/instructions/instruction_names.c b/lib/instructions/instruction_names.c index 80b77e81e..cd381d0ed 100644 --- a/lib/instructions/instruction_names.c +++ b/lib/instructions/instruction_names.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #include diff --git a/lib/loader/CMakeLists.txt b/lib/loader/CMakeLists.txt index cb22fa04b..2e9af7603 100644 --- a/lib/loader/CMakeLists.txt +++ b/lib/loader/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. add_library( loader STATIC diff --git a/lib/loader/loader.c b/lib/loader/loader.c index 3964e6752..ffb26e2af 100644 --- a/lib/loader/loader.c +++ b/lib/loader/loader.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #include diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 24ac3c103..bfd3b4afd 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. hunter_add_package(GTest) find_package(GTest CONFIG REQUIRED) diff --git a/test/integration/CMakeLists.txt b/test/integration/CMakeLists.txt index 413699306..0355a4707 100644 --- a/test/integration/CMakeLists.txt +++ b/test/integration/CMakeLists.txt @@ -1,5 +1,5 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. add_subdirectory(compilation) diff --git a/test/integration/compilation/CMakeLists.txt b/test/integration/compilation/CMakeLists.txt index 4b1fb3c94..161873b6e 100644 --- a/test/integration/compilation/CMakeLists.txt +++ b/test/integration/compilation/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. add_library(test-compile-c99 STATIC compilation_test.c) target_link_libraries(test-compile-c99 PRIVATE evmc) diff --git a/test/integration/compilation/compilation_test.c b/test/integration/compilation/compilation_test.c index 2a1d689d0..15ab3fdd1 100644 --- a/test/integration/compilation/compilation_test.c +++ b/test/integration/compilation/compilation_test.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #include diff --git a/test/unittests/CMakeLists.txt b/test/unittests/CMakeLists.txt index 6ff458419..baa3e6e3a 100644 --- a/test/unittests/CMakeLists.txt +++ b/test/unittests/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. add_library(vm-mock SHARED vm_mock.c) target_link_libraries(vm-mock PRIVATE evmc) diff --git a/test/unittests/test_instructions.cpp b/test/unittests/test_instructions.cpp index 2beba2e65..a69131e82 100644 --- a/test/unittests/test_instructions.cpp +++ b/test/unittests/test_instructions.cpp @@ -1,6 +1,6 @@ // EVMC: Ethereum Client-VM Connector API. // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. #include diff --git a/test/unittests/test_loader.cpp b/test/unittests/test_loader.cpp index 115174871..4eb28719e 100644 --- a/test/unittests/test_loader.cpp +++ b/test/unittests/test_loader.cpp @@ -1,6 +1,6 @@ // EVMC: Ethereum Client-VM Connector API. // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. #include diff --git a/test/unittests/vm_mock.c b/test/unittests/vm_mock.c index dd59f6014..650d97f8b 100644 --- a/test/unittests/vm_mock.c +++ b/test/unittests/vm_mock.c @@ -1,6 +1,6 @@ /* EVMC: Ethereum Client-VM Connector API. * Copyright 2018 The EVMC Authors. - * Licensed under the MIT License. See the LICENSE file. + * Licensed under the Apache License, Version 2.0. See the LICENSE file. */ #include diff --git a/test/vmtester/CMakeLists.txt b/test/vmtester/CMakeLists.txt index 9f6e3c74b..7e2d3d33d 100644 --- a/test/vmtester/CMakeLists.txt +++ b/test/vmtester/CMakeLists.txt @@ -1,6 +1,6 @@ # EVMC: Ethereum Client-VM Connector API. # Copyright 2018 The EVMC Authors. -# Licensed under the MIT License. See the LICENSE file. +# Licensed under the Apache License, Version 2.0. See the LICENSE file. include(GNUInstallDirs) diff --git a/test/vmtester/tests.cpp b/test/vmtester/tests.cpp index f2cbd517e..d459307e0 100644 --- a/test/vmtester/tests.cpp +++ b/test/vmtester/tests.cpp @@ -1,6 +1,6 @@ // EVMC -- Ethereum Client-VM Connector API // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. #include "vmtester.hpp" diff --git a/test/vmtester/vmtester.cpp b/test/vmtester/vmtester.cpp index d4e6ca718..40659e09d 100644 --- a/test/vmtester/vmtester.cpp +++ b/test/vmtester/vmtester.cpp @@ -1,6 +1,6 @@ // EVMC: Ethereum Client-VM Connector API. // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. #include "vmtester.hpp" diff --git a/test/vmtester/vmtester.hpp b/test/vmtester/vmtester.hpp index 3845d09ad..a208f9be6 100644 --- a/test/vmtester/vmtester.hpp +++ b/test/vmtester/vmtester.hpp @@ -1,6 +1,6 @@ // EVMC: Ethereum Client-VM Connector API // Copyright 2018 The EVMC Authors. -// Licensed under the MIT License. See the LICENSE file. +// Licensed under the Apache License, Version 2.0. See the LICENSE file. #pragma once