瀏覽代碼

Copyright update

rhuanjl 5 年之前
父節點
當前提交
a804755ef9
共有 7 個文件被更改,包括 13 次插入2 次删除
  1. 1 1
      LICENSE.txt
  2. 5 0
      azure-pipelines.yml
  3. 1 0
      jenkins/check_ascii.sh
  4. 3 1
      jenkins/check_copyright.py
  5. 1 0
      jenkins/check_copyright.sh
  6. 1 0
      jenkins/check_eol.sh
  7. 1 0
      jenkins/check_tabs.sh

+ 1 - 1
LICENSE.txt

@@ -2,7 +2,7 @@ The MIT License (MIT)
 
 Copyright (c) Microsoft Corporation
 All rights reserved.
-Copyright (c) 2021 ChakraCore Project Contributors
+Copyright (c) 2021 ChakraCore Project Contributors. 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

+ 5 - 0
azure-pipelines.yml

@@ -1,3 +1,8 @@
+#-------------------------------------------------------------------------------------------------------
+# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
+# Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
+#-------------------------------------------------------------------------------------------------------
+
 trigger:
 - master
 - release/*

+ 1 - 0
jenkins/check_ascii.sh

@@ -1,5 +1,6 @@
 #-------------------------------------------------------------------------------------------------------
 # Copyright (C) Microsoft. All rights reserved.
+# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
 # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
 #-------------------------------------------------------------------------------------------------------
 

+ 3 - 1
jenkins/check_copyright.py

@@ -1,5 +1,6 @@
 #-------------------------------------------------------------------------------------------------------
 # Copyright (C) Microsoft. All rights reserved.
+# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
 # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
 #-------------------------------------------------------------------------------------------------------
 
@@ -13,6 +14,7 @@ import re
 copyright_lines = [
     r'-------------------------------------------------------------------------------------------------------',
     r' Copyright \(C\) Microsoft( Corporation and contributors)?\. All rights reserved\.',
+    r' Copyright \(c\) 2021 ChakraCore Project Contributors\. All rights reserved\.',
     r' Licensed under the MIT license\. See LICENSE\.txt file in the project root for full license information\.',
     r'.*' # the above should always be followed by at least one other line, so make sure that line is present
 ]
@@ -33,7 +35,7 @@ if not os.path.isfile(file_name):
 
 def report_incorrect(file_name, pairs):
     # found a problem so report the problem to the caller and exit
-    print(file_name, "... does not contain a correct Microsoft copyright notice.\n")
+    print(file_name, "... does not contain a correct copyright notice.\n")
     # print the relevant lines to help the reader find the problem
     for (_, line) in pairs:
         print("    ", line, end="")

+ 1 - 0
jenkins/check_copyright.sh

@@ -1,5 +1,6 @@
 #-------------------------------------------------------------------------------------------------------
 # Copyright (C) Microsoft. All rights reserved.
+# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
 # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
 #-------------------------------------------------------------------------------------------------------
 

+ 1 - 0
jenkins/check_eol.sh

@@ -1,5 +1,6 @@
 #-------------------------------------------------------------------------------------------------------
 # Copyright (C) Microsoft. All rights reserved.
+# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
 # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
 #-------------------------------------------------------------------------------------------------------
 

+ 1 - 0
jenkins/check_tabs.sh

@@ -1,5 +1,6 @@
 #-------------------------------------------------------------------------------------------------------
 # Copyright (C) Microsoft. All rights reserved.
+# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
 # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
 #-------------------------------------------------------------------------------------------------------