From 9a8b3b3e131359aea1cac650fb6ac331fbe2047c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 23 Mar 2020 14:44:29 +0100 Subject: copyright: fix out-of-date copyright ranges and missing headers Reported by the new script 'scripts/copyright.pl'. The script has a regex whitelist for the files that don't need copyright headers. Removed three (mostly usesless) README files from docs/ Closes #5141 --- packages/Android/Android.mk | 21 +++++++++++++++++++++ packages/DOS/common.dj | 21 +++++++++++++++++++++ packages/Makefile.am | 21 +++++++++++++++++++++ packages/OS400/curl.inc.in | 2 +- packages/OS400/initscript.sh | 21 +++++++++++++++++++++ packages/OS400/make-include.sh | 21 +++++++++++++++++++++ packages/OS400/make-lib.sh | 21 +++++++++++++++++++++ packages/OS400/make-src.sh | 21 +++++++++++++++++++++ packages/OS400/make-tests.sh | 21 +++++++++++++++++++++ packages/OS400/makefile.sh | 21 +++++++++++++++++++++ packages/OS400/os400sys.h | 2 +- packages/TPF/curl.mak | 21 +++++++++++++++++++++ packages/TPF/maketpf.env_curl | 21 +++++++++++++++++++++ packages/TPF/maketpf.env_curllib | 21 +++++++++++++++++++++ packages/vms/Makefile.am | 21 +++++++++++++++++++++ packages/vms/backup_gnv_curl_src.com | 2 +- packages/vms/build_gnv_curl.com | 2 +- packages/vms/build_gnv_curl_pcsi_desc.com | 2 +- packages/vms/build_gnv_curl_pcsi_text.com | 2 +- packages/vms/build_gnv_curl_release_notes.com | 2 +- packages/vms/build_libcurl_pc.com | 2 +- packages/vms/clean_gnv_curl.com | 2 +- packages/vms/compare_curl_source.com | 2 +- packages/vms/config_h.com | 2 +- packages/vms/curl_crtl_init.c | 21 +++++++++++++++++++++ packages/vms/curl_gnv_build_steps.txt | 2 +- packages/vms/curl_startup.com | 2 +- packages/vms/curlmsg.h | 2 +- packages/vms/curlmsg.msg | 21 +++++++++++++++++++++ packages/vms/curlmsg_vms.h | 2 +- packages/vms/generate_vax_transfer.com | 2 +- packages/vms/gnv_conftest.c_first | 2 +- packages/vms/gnv_curl_configure.sh | 2 +- packages/vms/gnv_libcurl_symbols.opt | 2 +- packages/vms/gnv_link_curl.com | 2 +- packages/vms/make_gnv_curl_install.sh | 2 +- packages/vms/make_pcsi_curl_kit_name.com | 2 +- packages/vms/pcsi_gnv_curl_file_list.txt | 2 +- packages/vms/pcsi_product_gnv_curl.com | 2 +- packages/vms/setup_gnv_curl_build.com | 2 +- packages/vms/stage_curl_install.com | 2 +- packages/vms/vms_eco_level.h | 2 +- 42 files changed, 342 insertions(+), 27 deletions(-) (limited to 'packages') diff --git a/packages/Android/Android.mk b/packages/Android/Android.mk index 6a2ebff68..4269ac3d4 100644 --- a/packages/Android/Android.mk +++ b/packages/Android/Android.mk @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # Google Android makefile for curl and libcurl # # This file can be used when building curl using the full Android source diff --git a/packages/DOS/common.dj b/packages/DOS/common.dj index c97b216eb..b0e15d676 100644 --- a/packages/DOS/common.dj +++ b/packages/DOS/common.dj @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # # Common defines for curl (djgpp/Watt-32) # diff --git a/packages/Makefile.am b/packages/Makefile.am index bfa096be5..d8a92abbb 100644 --- a/packages/Makefile.am +++ b/packages/Makefile.am @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### SUBDIRS = vms EXTRA_DIST = README \ diff --git a/packages/OS400/curl.inc.in b/packages/OS400/curl.inc.in index 72acbe3fa..5b3b2c059 100644 --- a/packages/OS400/curl.inc.in +++ b/packages/OS400/curl.inc.in @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2019, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms diff --git a/packages/OS400/initscript.sh b/packages/OS400/initscript.sh index a13d651bc..a59351106 100644 --- a/packages/OS400/initscript.sh +++ b/packages/OS400/initscript.sh @@ -1,4 +1,25 @@ #!/bin/sh +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### setenv() diff --git a/packages/OS400/make-include.sh b/packages/OS400/make-include.sh index 3c50d2d5f..4cb0edd86 100644 --- a/packages/OS400/make-include.sh +++ b/packages/OS400/make-include.sh @@ -1,4 +1,25 @@ #!/bin/sh +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # # Installation of the header files in the OS/400 library. # diff --git a/packages/OS400/make-lib.sh b/packages/OS400/make-lib.sh index fadb4c5f6..c772b246c 100644 --- a/packages/OS400/make-lib.sh +++ b/packages/OS400/make-lib.sh @@ -1,4 +1,25 @@ #!/bin/sh +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # # libcurl compilation script for the OS/400. # diff --git a/packages/OS400/make-src.sh b/packages/OS400/make-src.sh index 090ae1287..dbe039b2c 100644 --- a/packages/OS400/make-src.sh +++ b/packages/OS400/make-src.sh @@ -1,4 +1,25 @@ #!/bin/sh +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # # # Not implemented yet on OS/400. diff --git a/packages/OS400/make-tests.sh b/packages/OS400/make-tests.sh index 9240b7ff6..54cdd2fea 100644 --- a/packages/OS400/make-tests.sh +++ b/packages/OS400/make-tests.sh @@ -1,4 +1,25 @@ #!/bin/sh +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # # tests compilation script for the OS/400. # diff --git a/packages/OS400/makefile.sh b/packages/OS400/makefile.sh index 7c6bcd7c6..3ff151202 100644 --- a/packages/OS400/makefile.sh +++ b/packages/OS400/makefile.sh @@ -1,4 +1,25 @@ #!/bin/sh +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # # curl compilation script for the OS/400. # diff --git a/packages/OS400/os400sys.h b/packages/OS400/os400sys.h index c98e198cc..8dafd6491 100644 --- a/packages/OS400/os400sys.h +++ b/packages/OS400/os400sys.h @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms diff --git a/packages/TPF/curl.mak b/packages/TPF/curl.mak index 176abec24..d8d55a805 100644 --- a/packages/TPF/curl.mak +++ b/packages/TPF/curl.mak @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### ####################################################################### # # # MAKEFILE NAME..... curl.mak # diff --git a/packages/TPF/maketpf.env_curl b/packages/TPF/maketpf.env_curl index 3ebf1d189..ac460438e 100644 --- a/packages/TPF/maketpf.env_curl +++ b/packages/TPF/maketpf.env_curl @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### ################################################################################ ################################################################################ #env TPF CURL Includes diff --git a/packages/TPF/maketpf.env_curllib b/packages/TPF/maketpf.env_curllib index 30cc3169e..613619bdc 100644 --- a/packages/TPF/maketpf.env_curllib +++ b/packages/TPF/maketpf.env_curllib @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### ################################################################################ ################################################################################ #env TPF CURL Library Source and Output diff --git a/packages/vms/Makefile.am b/packages/vms/Makefile.am index 38f65859a..f5cf9a93f 100644 --- a/packages/vms/Makefile.am +++ b/packages/vms/Makefile.am @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### EXTRA_DIST = \ backup_gnv_curl_src.com \ build_curl-config_script.com \ diff --git a/packages/vms/backup_gnv_curl_src.com b/packages/vms/backup_gnv_curl_src.com index 38575710b..fcf3061c2 100644 --- a/packages/vms/backup_gnv_curl_src.com +++ b/packages/vms/backup_gnv_curl_src.com @@ -17,7 +17,7 @@ $! This file is created from a template file for the purpose of making it $! easier to port Unix code, particularly open source code to VMS. $! Therefore permission is freely granted for any use. $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/build_gnv_curl.com b/packages/vms/build_gnv_curl.com index 1eaa7d5f3..ede38548d 100644 --- a/packages/vms/build_gnv_curl.com +++ b/packages/vms/build_gnv_curl.com @@ -4,7 +4,7 @@ $! $Id$ $! $! All in one build procedure $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/build_gnv_curl_pcsi_desc.com b/packages/vms/build_gnv_curl_pcsi_desc.com index fab2c823c..941875ab4 100644 --- a/packages/vms/build_gnv_curl_pcsi_desc.com +++ b/packages/vms/build_gnv_curl_pcsi_desc.com @@ -31,7 +31,7 @@ $! A rename action section is needed to make sure that the files are $! created in the GNV$GNU: in the correct case, and to create the alias $! link [usr.bin]curl. for [usr.bin]curl.exe. $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/build_gnv_curl_pcsi_text.com b/packages/vms/build_gnv_curl_pcsi_text.com index df98f6301..94ca7eb44 100644 --- a/packages/vms/build_gnv_curl_pcsi_text.com +++ b/packages/vms/build_gnv_curl_pcsi_text.com @@ -12,7 +12,7 @@ $! 4. Generated Producer section. $! $! Set the name of the release notes from the GNV_PCSI_FILENAME_BASE $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/build_gnv_curl_release_notes.com b/packages/vms/build_gnv_curl_release_notes.com index da0276f58..8342ef978 100644 --- a/packages/vms/build_gnv_curl_release_notes.com +++ b/packages/vms/build_gnv_curl_release_notes.com @@ -11,7 +11,7 @@ $! $! Set the name of the release notes from the GNV_PCSI_FILENAME_BASE $! logical name. $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/build_libcurl_pc.com b/packages/vms/build_libcurl_pc.com index 97e6ae643..5b2315e2a 100644 --- a/packages/vms/build_libcurl_pc.com +++ b/packages/vms/build_libcurl_pc.com @@ -4,7 +4,7 @@ $! $Id:$ $! $! Build the libcurl.pc file from the libcurl.pc.in file $! -$! Copyright 2013, John Malmberg +$! Copyright 2013 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/clean_gnv_curl.com b/packages/vms/clean_gnv_curl.com index 4e58356b1..5846739e4 100644 --- a/packages/vms/clean_gnv_curl.com +++ b/packages/vms/clean_gnv_curl.com @@ -15,7 +15,7 @@ $! Parameter P1: REALCLEAN $! This removes all build products and brings the environment back to $! the point where the gnv_curl_configure.sh procedure needs to be run again. $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/compare_curl_source.com b/packages/vms/compare_curl_source.com index 66f6a4598..a720afc63 100644 --- a/packages/vms/compare_curl_source.com +++ b/packages/vms/compare_curl_source.com @@ -69,7 +69,7 @@ $! $! This is to make sure that the backup save set for the unmodified $! source is up to date. $! -$! Copyright 2011, John Malmberg +$! Copyright 2011 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/config_h.com b/packages/vms/config_h.com index 9bfb40b95..4049d9f06 100644 --- a/packages/vms/config_h.com +++ b/packages/vms/config_h.com @@ -28,7 +28,7 @@ $! $! This procedure may not guess the options correctly for all architectures, $! and is a work in progress. $! -$! Copyright 2011, John Malmberg +$! Copyright 2011 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/curl_crtl_init.c b/packages/vms/curl_crtl_init.c index 9f7cf66c7..b8e5f7f50 100644 --- a/packages/vms/curl_crtl_init.c +++ b/packages/vms/curl_crtl_init.c @@ -1,3 +1,24 @@ +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at https://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ /* File: curl_crtl_init.c * * This file makes sure that the DECC Unix settings are correct for diff --git a/packages/vms/curl_gnv_build_steps.txt b/packages/vms/curl_gnv_build_steps.txt index 8fc4c953f..52dc32881 100644 --- a/packages/vms/curl_gnv_build_steps.txt +++ b/packages/vms/curl_gnv_build_steps.txt @@ -1,6 +1,6 @@ From File: curl_gnv_build_steps.txt - Copyright 2009, John Malmberg + Copyright 2009 - 2020, John Malmberg Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/curl_startup.com b/packages/vms/curl_startup.com index 84760a0af..b94ee7f44 100644 --- a/packages/vms/curl_startup.com +++ b/packages/vms/curl_startup.com @@ -5,7 +5,7 @@ $! $! Procedure to setup the CURL libraries for use by programs from the $! VMS SYSTARTUP*.COM procedure. $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/curlmsg.h b/packages/vms/curlmsg.h index 424a382f0..55c9ee5cb 100644 --- a/packages/vms/curlmsg.h +++ b/packages/vms/curlmsg.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2011, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms diff --git a/packages/vms/curlmsg.msg b/packages/vms/curlmsg.msg index 492657c02..73bc763e8 100644 --- a/packages/vms/curlmsg.msg +++ b/packages/vms/curlmsg.msg @@ -1,3 +1,24 @@ +!*************************************************************************** +! _ _ ____ _ +! Project ___| | | | _ \| | +! / __| | | | |_) | | +! | (__| |_| | _ <| |___ +! \___|\___/|_| \_\_____| +! +! Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +! +! This software is licensed as described in the file COPYING, which +! you should have received as part of this distribution. The terms +! are also available at https://curl.haxx.se/docs/copyright.html. +! +! You may opt to use, copy, modify, merge, publish, distribute and/or sell +! copies of the Software, and permit persons to whom the Software is +! furnished to do so, under the terms of the COPYING file. +! +! This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +! KIND, either express or implied. +! +!########################################################################## ! ! These VMS error codes are generated by taking apart the curl.h ! file and putting all the CURLE_* enum stuff into this file, diff --git a/packages/vms/curlmsg_vms.h b/packages/vms/curlmsg_vms.h index b7ff7a0cb..9dbc6ab71 100644 --- a/packages/vms/curlmsg_vms.h +++ b/packages/vms/curlmsg_vms.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2011, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms diff --git a/packages/vms/generate_vax_transfer.com b/packages/vms/generate_vax_transfer.com index 92391f92e..00020810f 100644 --- a/packages/vms/generate_vax_transfer.com +++ b/packages/vms/generate_vax_transfer.com @@ -14,7 +14,7 @@ $! gnv_libcurl_xfer.obj $! gnv_libcurl_xfer.opt $! macro32_exactcase.exe $! -$! Copyright 2013, John Malmberg +$! Copyright 2013 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/gnv_conftest.c_first b/packages/vms/gnv_conftest.c_first index f47469c5b..1d69600a2 100644 --- a/packages/vms/gnv_conftest.c_first +++ b/packages/vms/gnv_conftest.c_first @@ -2,7 +2,7 @@ * * $Id$ * - * Copyright 2009, John Malmberg + * Copyright 2009 - 2020, John Malmberg * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/gnv_curl_configure.sh b/packages/vms/gnv_curl_configure.sh index 2eeb209c8..839a40bff 100644 --- a/packages/vms/gnv_curl_configure.sh +++ b/packages/vms/gnv_curl_configure.sh @@ -5,7 +5,7 @@ # Set up and run the configure script for Curl so that it can find the # proper options for VMS. # -# Copyright 2009, John Malmberg +# Copyright 2009 - 2020, John Malmberg # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/gnv_libcurl_symbols.opt b/packages/vms/gnv_libcurl_symbols.opt index 84655926c..cae2a754b 100644 --- a/packages/vms/gnv_libcurl_symbols.opt +++ b/packages/vms/gnv_libcurl_symbols.opt @@ -41,7 +41,7 @@ ! maintaining multiple versions as long as the routine can be called with ! the old number of parameters. ! -! Copyright 2009, John Malmberg +! Copyright 2009 - 2020, John Malmberg ! ! Permission to use, copy, modify, and/or distribute this software for any ! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/gnv_link_curl.com b/packages/vms/gnv_link_curl.com index 7ec4ecb09..c9db8d90d 100644 --- a/packages/vms/gnv_link_curl.com +++ b/packages/vms/gnv_link_curl.com @@ -4,7 +4,7 @@ $! $Id$ $! $! File to build images using gnv$libcurl.exe $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/make_gnv_curl_install.sh b/packages/vms/make_gnv_curl_install.sh index 5099fe447..699c8d2f2 100644 --- a/packages/vms/make_gnv_curl_install.sh +++ b/packages/vms/make_gnv_curl_install.sh @@ -7,7 +7,7 @@ # This makes the library, the curl binary and attempts an install. # A search list should be set up for GNU (GNV$GNU). # -# Copyright 2009, John Malmberg +# Copyright 2009 - 2020, John Malmberg # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/make_pcsi_curl_kit_name.com b/packages/vms/make_pcsi_curl_kit_name.com index f644fe3ec..2061429ae 100644 --- a/packages/vms/make_pcsi_curl_kit_name.com +++ b/packages/vms/make_pcsi_curl_kit_name.com @@ -8,7 +8,7 @@ $! $! The results are stored in as logical names so that other procedures $! can use them. $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/pcsi_gnv_curl_file_list.txt b/packages/vms/pcsi_gnv_curl_file_list.txt index 07539b2cd..6eb69c384 100644 --- a/packages/vms/pcsi_gnv_curl_file_list.txt +++ b/packages/vms/pcsi_gnv_curl_file_list.txt @@ -15,7 +15,7 @@ ! ! [xxx.yyy]file.ext is a file for the rename and add phases. ! -! Copyright 2009, John Malmberg +! Copyright 2009 - 2020, John Malmberg ! ! Permission to use, copy, modify, and/or distribute this software for any ! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/pcsi_product_gnv_curl.com b/packages/vms/pcsi_product_gnv_curl.com index 747cbd63a..0f9961f49 100644 --- a/packages/vms/pcsi_product_gnv_curl.com +++ b/packages/vms/pcsi_product_gnv_curl.com @@ -5,7 +5,7 @@ $! $! This command file packages up the product CURL into a sequential $! format kit $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/setup_gnv_curl_build.com b/packages/vms/setup_gnv_curl_build.com index 03d5c0b4d..45dcf0fb8 100644 --- a/packages/vms/setup_gnv_curl_build.com +++ b/packages/vms/setup_gnv_curl_build.com @@ -7,7 +7,7 @@ $! $! GNV needs some files moved into the other directories to help with $! the configure script and the build. $! -$! Copyright 2009, John Malmberg +$! Copyright 2009 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/stage_curl_install.com b/packages/vms/stage_curl_install.com index 84540d739..d79c9e33e 100644 --- a/packages/vms/stage_curl_install.com +++ b/packages/vms/stage_curl_install.com @@ -24,7 +24,7 @@ $! [usr.share.man.man3]curl*.3 $! [usr.share.man.man3]libcurl*.3 $! Future: A symbolic link to the release notes? $! -$! Copyright 2012, John Malmberg +$! Copyright 2012 - 2020, John Malmberg $! $! Permission to use, copy, modify, and/or distribute this software for any $! purpose with or without fee is hereby granted, provided that the above diff --git a/packages/vms/vms_eco_level.h b/packages/vms/vms_eco_level.h index 354875bbb..05abe9101 100644 --- a/packages/vms/vms_eco_level.h +++ b/packages/vms/vms_eco_level.h @@ -2,7 +2,7 @@ * * $Id$ * - * Copyright 2012, John Malmberg + * Copyright 2012 - 2020, John Malmberg * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above -- cgit v1.2.3