diff options
author | Jack Lloyd <[email protected]> | 2021-01-26 05:32:10 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2021-01-26 05:32:10 -0500 |
commit | 0995d76e772b1687b74d97fd49fbd27022ecfe6b (patch) | |
tree | 8a7290732628404710694cd9e3a48e3374cce5eb /src/scripts | |
parent | 446d22b8ec189224aa5e3f8d62314b3e5e6a1b9c (diff) |
Add copyright and license decl to some files that were missing [ci skip]
Diffstat (limited to 'src/scripts')
-rw-r--r-- | src/scripts/ci/appveyor.yml | 4 | ||||
-rw-r--r-- | src/scripts/ci/setup_appveyor.bat | 3 | ||||
-rwxr-xr-x | src/scripts/ci/setup_gh_actions.sh | 2 | ||||
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 2 | ||||
-rw-r--r-- | src/scripts/ci/travis.yml | 5 | ||||
-rwxr-xr-x | src/scripts/create_corpus_zip.py | 3 | ||||
-rwxr-xr-x | src/scripts/run_tls_attacker.py | 3 | ||||
-rwxr-xr-x | src/scripts/run_tls_fuzzer.py | 3 | ||||
-rwxr-xr-x | src/scripts/test_fuzzers.py | 1 | ||||
-rwxr-xr-x | src/scripts/tls_scanner/tls_scanner.py | 3 | ||||
-rwxr-xr-x | src/scripts/website.py | 2 |
11 files changed, 31 insertions, 0 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index 098226211..4c76b773f 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -1,4 +1,8 @@ +# (C) 2015,2016,2017,2019,2020,2021 Jack Lloyd +# (C) 2015,2016 Simon Warta +# Botan is released under the Simplified BSD License (see license.txt) + clone_depth: 5 environment: diff --git a/src/scripts/ci/setup_appveyor.bat b/src/scripts/ci/setup_appveyor.bat index 996f9d011..0438fc9d8 100644 --- a/src/scripts/ci/setup_appveyor.bat +++ b/src/scripts/ci/setup_appveyor.bat @@ -1,4 +1,7 @@ +rem (C) 2017,2019,2021 Jack Lloyd +rem Botan is released under the Simplified BSD License (see license.txt) + echo Current build setup CC="%CC%" PLATFORM="%PLATFORM%" TARGET="%TARGET%" if %CC% == VC2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% diff --git a/src/scripts/ci/setup_gh_actions.sh b/src/scripts/ci/setup_gh_actions.sh index 0f33f2fdd..6077e2454 100755 --- a/src/scripts/ci/setup_gh_actions.sh +++ b/src/scripts/ci/setup_gh_actions.sh @@ -4,6 +4,8 @@ # # (C) 2015,2017 Simon Warta # (C) 2016,2017,2018,2020 Jack Lloyd +# +# Botan is released under the Simplified BSD License (see license.txt) command -v shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index 76d59c0d7..7ff7d2b7a 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -4,6 +4,8 @@ # # (C) 2015,2017 Simon Warta # (C) 2016,2017,2018 Jack Lloyd +# +# Botan is released under the Simplified BSD License (see license.txt) command -v shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available diff --git a/src/scripts/ci/travis.yml b/src/scripts/ci/travis.yml index 75bda1376..b19a7e0ea 100644 --- a/src/scripts/ci/travis.yml +++ b/src/scripts/ci/travis.yml @@ -1,3 +1,8 @@ + +# (C) 2015,2016,2017,2019,2020,2021 Jack Lloyd +# (C) 2015,2016 Simon Warta +# Botan is released under the Simplified BSD License (see license.txt) + language: cpp os: linux dist: focal diff --git a/src/scripts/create_corpus_zip.py b/src/scripts/create_corpus_zip.py index 5faee3b52..b749b8d39 100755 --- a/src/scripts/create_corpus_zip.py +++ b/src/scripts/create_corpus_zip.py @@ -1,5 +1,8 @@ #!/usr/bin/python +# (C) 2017 Jack Lloyd +# Botan is released under the Simplified BSD License (see license.txt) + # These is used to create fuzzer corpus zip files # This is primarily used by OSS-Fuzz but might be useful if you were diff --git a/src/scripts/run_tls_attacker.py b/src/scripts/run_tls_attacker.py index a77364633..ae05a2176 100755 --- a/src/scripts/run_tls_attacker.py +++ b/src/scripts/run_tls_attacker.py @@ -1,5 +1,8 @@ #!/usr/bin/python +# (C) 2017 Jack Lloyd +# Botan is released under the Simplified BSD License (see license.txt) + import os import sys import subprocess diff --git a/src/scripts/run_tls_fuzzer.py b/src/scripts/run_tls_fuzzer.py index b4ee91d24..4122e5bd4 100755 --- a/src/scripts/run_tls_fuzzer.py +++ b/src/scripts/run_tls_fuzzer.py @@ -1,5 +1,8 @@ #!/usr/bin/python +# (C) 2019 Jack Lloyd +# Botan is released under the Simplified BSD License (see license.txt) + import argparse import subprocess import logging diff --git a/src/scripts/test_fuzzers.py b/src/scripts/test_fuzzers.py index 9ea3c378b..356a83779 100755 --- a/src/scripts/test_fuzzers.py +++ b/src/scripts/test_fuzzers.py @@ -1,6 +1,7 @@ #!/usr/bin/python # (C) 2017,2018 Jack Lloyd +# Botan is released under the Simplified BSD License (see license.txt) import sys import os diff --git a/src/scripts/tls_scanner/tls_scanner.py b/src/scripts/tls_scanner/tls_scanner.py index 8fdf046ca..3f9aa49d5 100755 --- a/src/scripts/tls_scanner/tls_scanner.py +++ b/src/scripts/tls_scanner/tls_scanner.py @@ -1,5 +1,8 @@ #!/usr/bin/python2 +# (C) 2017 Jack Lloyd +# Botan is released under the Simplified BSD License (see license.txt) + import sys import time import subprocess diff --git a/src/scripts/website.py b/src/scripts/website.py index e28909531..9b745ab7e 100755 --- a/src/scripts/website.py +++ b/src/scripts/website.py @@ -4,6 +4,8 @@ Generate the Botan website (C) 2017 Jack Lloyd + +Botan is released under the Simplified BSD License (see license.txt) """ import optparse # pylint: disable=deprecated-module |