From 5a3059833c46f76dd526b0b3e46d41c2aed1ecff Mon Sep 17 00:00:00 2001 From: Liu Date: Tue, 7 May 2024 23:22:10 +0800 Subject: [PATCH] chore: update copyright statement --- lib/pandagl/include/pandagl/file_reader.h | 10 ++++++++ lib/pandagl/src/file_reader.c | 11 +++++++++ lib/pandagl/src/image/bmp_private.h | 2 +- lib/pandagl/src/image/jpeg_private.h | 2 +- lib/pandagl/src/image/png_private.h | 13 +++++++++- lib/thread/src/thread.h.in | 29 ++++------------------- lib/timer/src/timer.h.in | 10 ++++++++ lib/ui-router/src/version.h.in | 11 +++++++++ scripts/add-copyright.js | 2 +- 9 files changed, 62 insertions(+), 28 deletions(-) diff --git a/lib/pandagl/include/pandagl/file_reader.h b/lib/pandagl/include/pandagl/file_reader.h index 21418e75b..2f59ccf0c 100644 --- a/lib/pandagl/include/pandagl/file_reader.h +++ b/lib/pandagl/include/pandagl/file_reader.h @@ -1,3 +1,13 @@ +/* + * lib/pandagl/include/pandagl/file_reader.h + * + * Copyright (c) 2024, Liu Chao All rights reserved. + * + * SPDX-License-Identifier: MIT + * + * This file is part of LCUI, distributed under the MIT License found in the + * LICENSE.TXT file in the root directory of this source tree. + */ #ifndef LIB_PANDAGL_INCLUDE_PANDAGL_FILE_READER_H #define LIB_PANDAGL_INCLUDE_PANDAGL_FILE_READER_H diff --git a/lib/pandagl/src/file_reader.c b/lib/pandagl/src/file_reader.c index e63a3c75a..d59397ab5 100644 --- a/lib/pandagl/src/file_reader.c +++ b/lib/pandagl/src/file_reader.c @@ -1,3 +1,14 @@ +/* + * lib/pandagl/src/file_reader.c + * + * Copyright (c) 2024, Liu Chao All rights reserved. + * + * SPDX-License-Identifier: MIT + * + * This file is part of LCUI, distributed under the MIT License found in the + * LICENSE.TXT file in the root directory of this source tree. + */ + #include #include #include diff --git a/lib/pandagl/src/image/bmp_private.h b/lib/pandagl/src/image/bmp_private.h index a34ba5a00..2971888e2 100644 --- a/lib/pandagl/src/image/bmp_private.h +++ b/lib/pandagl/src/image/bmp_private.h @@ -1,5 +1,5 @@ /* - * lib/pandagl/src/image/bmp.h + * lib/pandagl/src/image/bmp_private.h * * Copyright (c) 2023-2024, Liu Chao All rights reserved. * diff --git a/lib/pandagl/src/image/jpeg_private.h b/lib/pandagl/src/image/jpeg_private.h index b6ed600d4..d3278a6ae 100644 --- a/lib/pandagl/src/image/jpeg_private.h +++ b/lib/pandagl/src/image/jpeg_private.h @@ -1,5 +1,5 @@ /* - * lib/pandagl/src/image/jpeg.h + * lib/pandagl/src/image/jpeg_private.h * * Copyright (c) 2023-2024, Liu Chao All rights reserved. * diff --git a/lib/pandagl/src/image/png_private.h b/lib/pandagl/src/image/png_private.h index 216fcf50b..7def2f21b 100644 --- a/lib/pandagl/src/image/png_private.h +++ b/lib/pandagl/src/image/png_private.h @@ -1,4 +1,15 @@ -void pd_png_reader_create(pd_image_reader_t *reader); +/* + * lib/pandagl/src/image/png_private.h + * + * Copyright (c) 2024, Liu Chao All rights reserved. + * + * SPDX-License-Identifier: MIT + * + * This file is part of LCUI, distributed under the MIT License found in the + * LICENSE.TXT file in the root directory of this source tree. + */ + +void pd_png_reader_create(pd_image_reader_t *reader); void pd_png_reader_destroy(pd_image_reader_t *reader); jmp_buf *pd_png_reader_jmpbuf(pd_image_reader_t *reader); pd_error_t pd_png_reader_read_header(pd_image_reader_t *reader); diff --git a/lib/thread/src/thread.h.in b/lib/thread/src/thread.h.in index 246d25358..871380709 100644 --- a/lib/thread/src/thread.h.in +++ b/lib/thread/src/thread.h.in @@ -1,31 +1,12 @@ /* - * thread.h -- basic thread management + * lib/thread/include/thread.h: -- basic thread management * - * Copyright (c) 2018-2022, Liu chao All rights reserved. + * Copyright (c) 2018-2024, Liu chao All rights reserved. * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: + * SPDX-License-Identifier: MIT * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * Neither the name of LCUI nor the names of its contributors may be used - * to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. + * This file is part of LCUI, distributed under the MIT License found in the + * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIB_THREAD_INCLUDE_THREAD_H diff --git a/lib/timer/src/timer.h.in b/lib/timer/src/timer.h.in index 28b4f36cc..8de1b72bd 100644 --- a/lib/timer/src/timer.h.in +++ b/lib/timer/src/timer.h.in @@ -1,3 +1,13 @@ +/* + * lib/timer/include/timer.h + * + * Copyright (c) 2023-2024, Liu Chao All rights reserved. + * + * SPDX-License-Identifier: MIT + * + * This file is part of LCUI, distributed under the MIT License found in the + * LICENSE.TXT file in the root directory of this source tree. + */ #ifndef LCUI_TIMER_H #define LCUI_TIMER_H diff --git a/lib/ui-router/src/version.h.in b/lib/ui-router/src/version.h.in index f90df4501..1317db01d 100644 --- a/lib/ui-router/src/version.h.in +++ b/lib/ui-router/src/version.h.in @@ -1,3 +1,14 @@ +/* + * lib/ui-router/include/ui_router/version.h + * + * Copyright (c) 2023-2024, Liu Chao All rights reserved. + * + * SPDX-License-Identifier: MIT + * + * This file is part of LCUI, distributed under the MIT License found in the + * LICENSE.TXT file in the root directory of this source tree. + */ + #define LIBUI_ROUTER_VERSION "${VERSION}" #define LIBUI_ROUTER_VERSION_MAJOR ${VERSION_MAJOR} #define LIBUI_ROUTER_VERSION_MINOR ${VERSION_MINOR} diff --git a/scripts/add-copyright.js b/scripts/add-copyright.js index ee7095c24..4a6320c54 100644 --- a/scripts/add-copyright.js +++ b/scripts/add-copyright.js @@ -8,7 +8,7 @@ const includes = ["lib", "include", "src"].map((file) => path.resolve(cwd, file) ); const excludes = ["lib/yutil"].map((file) => path.resolve(cwd, file)); -const extensions = [".c", ".h"]; +const extensions = [".c", ".h", ".h.in"]; const copyrightHolder = "Liu Chao "; const copyright = `/* * {{filePath}}{{summary}}