From c6737b1f01cf7a812f0cae98c4ddf14c8b36562a Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Thu, 2 May 2024 14:23:04 +0200 Subject: [PATCH] fix headers --- example/mpi/CMakeLists.txt | 6 +++--- example/mpi/comm_split.c | 6 +++--- example/mpi/comm_split.h | 6 +++--- tools/check_header.sh | 7 ++++--- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/example/mpi/CMakeLists.txt b/example/mpi/CMakeLists.txt index c06e975b7..88a20b21d 100644 --- a/example/mpi/CMakeLists.txt +++ b/example/mpi/CMakeLists.txt @@ -2,8 +2,8 @@ # # @file CMakeLists.txt # -# @copyright 2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, -# Univ. Bordeaux. All rights reserved. +# @copyright 2024-2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. # ### # @@ -14,7 +14,7 @@ # @version 1.3.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2024-03-19 +# @date 2024-05-06 # ### diff --git a/example/mpi/comm_split.c b/example/mpi/comm_split.c index 834582be6..4b167ac13 100644 --- a/example/mpi/comm_split.c +++ b/example/mpi/comm_split.c @@ -2,8 +2,8 @@ * * @file comm_split.c * - * @copyright 2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, - * Univ. Bordeaux. All rights reserved. + * @copyright 2024-2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * Univ. Bordeaux. All rights reserved. * *** * @@ -12,7 +12,7 @@ * @version 1.3.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2024-03-19 + * @date 2024-05-06 * */ #include "comm_split.h" diff --git a/example/mpi/comm_split.h b/example/mpi/comm_split.h index ecbd19f5a..90e76f6cb 100644 --- a/example/mpi/comm_split.h +++ b/example/mpi/comm_split.h @@ -2,8 +2,8 @@ * * @file comm_split.h * - * @copyright 2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, - * Univ. Bordeaux. All rights reserved. + * @copyright 2024-2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * Univ. Bordeaux. All rights reserved. * *** * @@ -12,7 +12,7 @@ * @version 1.3.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2024-03-19 + * @date 2024-05-06 * */ #ifndef _comm_split_h_ diff --git a/tools/check_header.sh b/tools/check_header.sh index c5f5ed630..2348bee3d 100755 --- a/tools/check_header.sh +++ b/tools/check_header.sh @@ -4,10 +4,10 @@ # @copyright 2016-2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 1.2.0 +# @version 1.3.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2022-02-22 +# @date 2024-05-06 # # This script check that basic informations is present and correct in # headers of source files. @@ -193,7 +193,8 @@ files=$( git ls-files | grep -v "distrib/debian/.*" | grep -v "tools/bench/jube/requirements.txt" | grep -v "\.org" | - grep -v "\.scm" ) + grep -v "\.scm" | + grep -v "\.rb") if [ $# -gt 0 ] then files=$* -- GitLab