Skip to content

Commit 7f1e492

Browse files
authored
Renamed COPYING to LICENSE (HDFGroup#4978)
This is where most people will expect to find license information. The COPYING_LBNL_HDF5 file has also been renamed to LICENSE_LBNL_HDF5. The licenses are unchanged.
1 parent bb56611 commit 7f1e492

File tree

1,897 files changed

+1927
-1922
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,897 files changed

+1927
-1922
lines changed

CMakeFilters.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file is part of HDF5. The full HDF5 copyright notice, including
66
# terms governing use, modification, and redistribution, is contained in
7-
# the COPYING file, which can be found at the root of the source code
7+
# the LICENSE file, which can be found at the root of the source code
88
# distribution tree, or in https://www.hdfgroup.org/licenses.
99
# If you do not have access to either file, you may request a copy from
1010

CMakeInstallation.cmake

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file is part of HDF5. The full HDF5 copyright notice, including
66
# terms governing use, modification, and redistribution, is contained in
7-
# the COPYING file, which can be found at the root of the source code
7+
# the LICENSE file, which can be found at the root of the source code
88
# distribution tree, or in https://www.hdfgroup.org/licenses.
99
# If you do not have access to either file, you may request a copy from
1010
@@ -180,18 +180,18 @@ endif ()
180180
HDF_README_PROPERTIES(HDF5_BUILD_FORTRAN)
181181

182182
#-----------------------------------------------------------------------------
183-
# Configure the COPYING.txt file for the windows binary package
183+
# Configure the LICENSE.txt file for the windows binary package
184184
#-----------------------------------------------------------------------------
185185
if (WIN32)
186-
configure_file (${HDF5_SOURCE_DIR}/COPYING ${HDF5_BINARY_DIR}/COPYING.txt @ONLY)
186+
configure_file (${HDF5_SOURCE_DIR}/LICENSE ${HDF5_BINARY_DIR}/LICENSE.txt @ONLY)
187187
endif ()
188188

189189
#-----------------------------------------------------------------------------
190190
# Add Document File(s) to CMake Install
191191
#-----------------------------------------------------------------------------
192192
if (NOT HDF5_EXTERNALLY_CONFIGURED)
193193
install (
194-
FILES ${HDF5_SOURCE_DIR}/COPYING
194+
FILES ${HDF5_SOURCE_DIR}/LICENSE
195195
DESTINATION ${HDF5_INSTALL_DATA_DIR}
196196
COMPONENT hdfdocuments
197197
)
@@ -255,7 +255,7 @@ if (NOT HDF5_EXTERNALLY_CONFIGURED AND NOT HDF5_NO_PACKAGES)
255255
set (CPACK_PACKAGE_VERSION_MAJOR "${HDF5_PACKAGE_VERSION_MAJOR}")
256256
set (CPACK_PACKAGE_VERSION_MINOR "${HDF5_PACKAGE_VERSION_MINOR}")
257257
set (CPACK_PACKAGE_VERSION_PATCH "")
258-
set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
258+
set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
259259
if (EXISTS "${HDF5_SOURCE_DIR}/release_docs")
260260
set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/release_docs/RELEASE.txt")
261261
set (CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/release_docs/RELEASE.txt")
@@ -321,7 +321,7 @@ if (NOT HDF5_EXTERNALLY_CONFIGURED AND NOT HDF5_NO_PACKAGES)
321321
# With CPACK_WIX_LICENSE_RTF you can override the license file used by the
322322
# WiX Generator in case CPACK_RESOURCE_FILE_LICENSE is in an unsupported
323323
# format or the .txt -> .rtf conversion does not work as expected.
324-
set (CPACK_RESOURCE_FILE_LICENSE "${HDF5_BINARY_DIR}/COPYING.txt")
324+
set (CPACK_RESOURCE_FILE_LICENSE "${HDF5_BINARY_DIR}/LICENSE.txt")
325325
# .. variable:: CPACK_WIX_PRODUCT_ICON
326326
# The Icon shown next to the program name in Add/Remove programs.
327327
set(CPACK_WIX_PRODUCT_ICON "${HDF_RESOURCES_DIR}\\\\hdf.ico")

CMakePlugins.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file is part of HDF5. The full HDF5 copyright notice, including
66
# terms governing use, modification, and redistribution, is contained in
7-
# the COPYING file, which can be found at the root of the source code
7+
# the LICENSE file, which can be found at the root of the source code
88
# distribution tree, or in https://www.hdfgroup.org/licenses.
99
# If you do not have access to either file, you may request a copy from
1010

CMakeTests.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file is part of HDF5. The full HDF5 copyright notice, including
66
# terms governing use, modification, and redistribution, is contained in
7-
# the COPYING file, which can be found at the root of the source code
7+
# the LICENSE file, which can be found at the root of the source code
88
# distribution tree, or in https://www.hdfgroup.org/licenses.
99
# If you do not have access to either file, you may request a copy from
1010

CMakeVOL.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file is part of HDF5. The full HDF5 copyright notice, including
66
# terms governing use, modification, and redistribution, is contained in
7-
# the COPYING file, which can be found at the root of the source code
7+
# the LICENSE file, which can be found at the root of the source code
88
# distribution tree, or in https://www.hdfgroup.org/licenses.
99
# If you do not have access to either file, you may request a copy from
1010

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ process enjoyable and straightforward.
77
This document describes guiding principles for the HDF5 code contributors and does not pretend to address any possible
88
contribution. If in doubt, please do not hesitate to ask us for guidance.
99
***Note that no contribution may be accepted unless the donor agrees with the HDF Group software license terms
10-
found in the COPYING file in every branch's top source directory.***
10+
found in the LICENSE file in every branch's top source directory.***
1111

1212

1313
> We will assume that you are familiar with `git` and `GitHub`. If not, you may go through the GitHub tutorial found at

CTestConfig.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file is part of HDF5. The full HDF5 copyright notice, including
66
# terms governing use, modification, and redistribution, is contained in
7-
# the COPYING file, which can be found at the root of the source code
7+
# the LICENSE file, which can be found at the root of the source code
88
# distribution tree, or in https://www.hdfgroup.org/licenses.
99
# If you do not have access to either file, you may request a copy from
1010

HDF5Examples/C/H5D/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This file is part of HDF5. The full HDF5 copyright notice, including
77
# terms governing use, modification, and redistribution, is contained in
8-
# the COPYING file, which can be found at the root of the source code
8+
# the LICENSE file, which can be found at the root of the source code
99
# distribution tree, or in https://www.hdfgroup.org/licenses.
1010
# If you do not have access to either file, you may request a copy from
1111

HDF5Examples/C/H5D/test-pc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This file is part of HDF5. The full HDF5 copyright notice, including
77
# terms governing use, modification, and redistribution, is contained in
8-
# the COPYING file, which can be found at the root of the source code
8+
# the LICENSE file, which can be found at the root of the source code
99
# distribution tree, or in https://www.hdfgroup.org/licenses.
1010
# If you do not have access to either file, you may request a copy from
1111

HDF5Examples/C/H5D/test.sh.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# This file is part of HDF5. The full HDF5 copyright notice, including
88
# terms governing use, modification, and redistribution, is contained in
9-
# the COPYING file, which can be found at the root of the source code
9+
# the LICENSE file, which can be found at the root of the source code
1010
# distribution tree, or in https://www.hdfgroup.org/licenses.
1111
# If you do not have access to either file, you may request a copy from
1212

HDF5Examples/C/H5FLT/h5ex_d_blosc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 BLOSC filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the BLOSC source code *
8+
* the file LICENSE, which can be found at the root of the BLOSC source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_blosc2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 BLOSC2 filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the BLOSC2 source code *
8+
* the file LICENSE, which can be found at the root of the BLOSC2 source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_bshuf.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 BSHUF filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the BSHUF source code *
8+
* the file LICENSE, which can be found at the root of the BSHUF source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_bzip2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 BZIP2 filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the BZIP2 source code *
8+
* the file LICENSE, which can be found at the root of the BZIP2 source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_jpeg.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 JPEG filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the JPEG source code *
8+
* the file LICENSE, which can be found at the root of the JPEG source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_lz4.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 LZ4 filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the LZ4 source code *
8+
* the file LICENSE, which can be found at the root of the LZ4 source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_lzf.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 LZF filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the LZF source code *
8+
* the file LICENSE, which can be found at the root of the LZF source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_mafisc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 MAFISC filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the MAFISC source code *
8+
* the file LICENSE, which can be found at the root of the MAFISC source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_zfp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 ZFP filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the ZFP source code *
8+
* the file LICENSE, which can be found at the root of the ZFP source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5FLT/h5ex_d_zstd.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of the HDF5 ZSTD filter plugin source. The full *
66
* copyright notice, including terms governing use, modification, and *
77
* terms governing use, modification, and redistribution, is contained in *
8-
* the file COPYING, which can be found at the root of the ZSTD source code *
8+
* the file LICENSE, which can be found at the root of the ZSTD source code *
99
* distribution tree. If you do not have access to this file, you may *
1010
* request a copy from [email protected]. *
1111
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

HDF5Examples/C/H5G/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This file is part of HDF5. The full HDF5 copyright notice, including
77
# terms governing use, modification, and redistribution, is contained in
8-
# the COPYING file, which can be found at the root of the source code
8+
# the LICENSE file, which can be found at the root of the source code
99
# distribution tree, or in https://www.hdfgroup.org/licenses.
1010
# If you do not have access to either file, you may request a copy from
1111

HDF5Examples/C/H5G/test-pc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This file is part of HDF5. The full HDF5 copyright notice, including
77
# terms governing use, modification, and redistribution, is contained in
8-
# the COPYING file, which can be found at the root of the source code
8+
# the LICENSE file, which can be found at the root of the source code
99
# distribution tree, or in https://www.hdfgroup.org/licenses.
1010
# If you do not have access to either file, you may request a copy from
1111

HDF5Examples/C/H5G/test.sh.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# This file is part of HDF5. The full HDF5 copyright notice, including
88
# terms governing use, modification, and redistribution, is contained in
9-
# the COPYING file, which can be found at the root of the source code
9+
# the LICENSE file, which can be found at the root of the source code
1010
# distribution tree, or in https://www.hdfgroup.org/licenses.
1111
# If you do not have access to either file, you may request a copy from
1212

HDF5Examples/C/H5PAR/ph5_filtered_writes.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* *
55
* This file is part of HDF5. The full HDF5 copyright notice, including *
66
* terms governing use, modification, and redistribution, is contained in *
7-
* the COPYING file, which can be found at the root of the source code *
7+
* the LICENSE file, which can be found at the root of the source code *
88
* distribution tree, or in https://www.hdfgroup.org/licenses. *
99
* If you do not have access to either file, you may request a copy from *
1010

HDF5Examples/C/H5PAR/ph5_filtered_writes_no_sel.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* *
55
* This file is part of HDF5. The full HDF5 copyright notice, including *
66
* terms governing use, modification, and redistribution, is contained in *
7-
* the COPYING file, which can be found at the root of the source code *
7+
* the LICENSE file, which can be found at the root of the source code *
88
* distribution tree, or in https://www.hdfgroup.org/licenses. *
99
* If you do not have access to either file, you may request a copy from *
1010

HDF5Examples/C/H5PAR/ph5_subfiling.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* *
55
* This file is part of HDF5. The full HDF5 copyright notice, including *
66
* terms governing use, modification, and redistribution, is contained in *
7-
* the COPYING file, which can be found at the root of the source code *
7+
* the LICENSE file, which can be found at the root of the source code *
88
* distribution tree, or in https://www.hdfgroup.org/licenses. *
99
* If you do not have access to either file, you may request a copy from *
1010

HDF5Examples/C/H5PAR/ph5example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* *
55
* This file is part of HDF5. The full HDF5 copyright notice, including *
66
* terms governing use, modification, and redistribution, is contained in *
7-
* the COPYING file, which can be found at the root of the source code *
7+
* the LICENSE file, which can be found at the root of the source code *
88
* distribution tree, or in https://www.hdfgroup.org/licenses. *
99
* If you do not have access to either file, you may request a copy from *
1010

HDF5Examples/C/H5T/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This file is part of HDF5. The full HDF5 copyright notice, including
77
# terms governing use, modification, and redistribution, is contained in
8-
# the COPYING file, which can be found at the root of the source code
8+
# the LICENSE file, which can be found at the root of the source code
99
# distribution tree, or in https://www.hdfgroup.org/licenses.
1010
# If you do not have access to either file, you may request a copy from
1111

HDF5Examples/C/H5T/test-pc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This file is part of HDF5. The full HDF5 copyright notice, including
77
# terms governing use, modification, and redistribution, is contained in
8-
# the COPYING file, which can be found at the root of the source code
8+
# the LICENSE file, which can be found at the root of the source code
99
# distribution tree, or in https://www.hdfgroup.org/licenses.
1010
# If you do not have access to either file, you may request a copy from
1111

HDF5Examples/C/H5T/test.sh.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# This file is part of HDF5. The full HDF5 copyright notice, including
88
# terms governing use, modification, and redistribution, is contained in
9-
# the COPYING file, which can be found at the root of the source code
9+
# the LICENSE file, which can be found at the root of the source code
1010
# distribution tree, or in https://www.hdfgroup.org/licenses.
1111
# If you do not have access to either file, you may request a copy from
1212

HDF5Examples/C/H5VDS/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This file is part of HDF5. The full HDF5 copyright notice, including
77
# terms governing use, modification, and redistribution, is contained in
8-
# the COPYING file, which can be found at the root of the source code
8+
# the LICENSE file, which can be found at the root of the source code
99
# distribution tree, or in https://www.hdfgroup.org/licenses.
1010
# If you do not have access to either file, you may request a copy from
1111

HDF5Examples/C/H5VDS/h5ex_vds-eiger.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* *
55
* This file is part of HDF5. The full HDF5 copyright notice, including *
66
* terms governing use, modification, and redistribution, is contained in *
7-
* the COPYING file, which can be found at the root of the source code *
7+
* the LICENSE file, which can be found at the root of the source code *
88
* distribution tree, or in https://www.hdfgroup.org/licenses. *
99
* If you do not have access to either file, you may request a copy from *
1010

0 commit comments

Comments
 (0)