stardis-green

Post-processing of green functions
git clone git://git.meso-star.fr/stardis-green.git
Log | Files | Refs | README | LICENSE

commit 32cf5ffe8bff25200be12dcb9013623795558aba
parent 4e95eeb6a9f4b757d5c4440462b0e6d09bb2949e
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 15 Mar 2022 11:03:38 +0100

Merge branch 'release_0.4_r1'

Diffstat:
MREADME.md | 2+-
Mcmake/CMakeLists.txt | 4++--
Mcmake/doc/CMakeLists.txt | 2+-
Mdoc/sgreen-input.5.txt | 2+-
Mdoc/sgreen-output.5.txt | 2+-
Mdoc/sgreen.1.txt.in | 2+-
Msrc/green-args.c | 2+-
Msrc/green-args.h | 2+-
Msrc/green-compute.c | 2+-
Msrc/green-compute.h | 2+-
Msrc/green-default.h.in | 2+-
Msrc/green-input.c | 2+-
Msrc/green-main.c | 2+-
Msrc/green-output.c | 4++--
Msrc/green-output.h | 2+-
Msrc/green-types.h | 2+-
Msrc/green-version.h.in | 2+-
17 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/README.md b/README.md @@ -61,7 +61,7 @@ Fix a bug that could cause a crash. ## License -Copyright (C) 2020-2021 |Meso|Star> (<contact@meso-star.com>). Stardis-Green is +Copyright (C) 2020-2022 |Meso|Star> (<contact@meso-star.com>). Stardis-Green is free software released under the GPL v3+ license: GNU GPL version 3 or later. You are welcome to redistribute it under certain conditions; refer to the COPYING file for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2020, 2021 |Meso|Star> +# Copyright (C) 2020-2022 |Meso|Star> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -55,7 +55,7 @@ configure_file(${GREEN_SOURCE_DIR}/green-version.h.in # Check dependencies ############################################################################### find_package(RCMake 0.4 REQUIRED) -find_package(RSys 0.9 REQUIRED) +find_package(RSys 0.12 REQUIRED) find_package(stardis-green-types 4 REQUIRED) find_package(OpenMP 2.0 REQUIRED) if(MSVC) diff --git a/cmake/doc/CMakeLists.txt b/cmake/doc/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2020, 2021 |Meso|Star> +# Copyright (C) 2020-2022 |Meso|Star> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/doc/sgreen-input.5.txt b/doc/sgreen-input.5.txt @@ -1,4 +1,4 @@ -// Copyright (C) 2020, 2021 |Meso|Star> +// Copyright (C) 2020-2022 |Meso|Star> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/doc/sgreen-output.5.txt b/doc/sgreen-output.5.txt @@ -1,4 +1,4 @@ -// Copyright (C) 2020, 2021 |Meso|Star> +// Copyright (C) 2020-2022 |Meso|Star> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/doc/sgreen.1.txt.in b/doc/sgreen.1.txt.in @@ -1,4 +1,4 @@ -// Copyright (C) 2020, 2021 |Meso|Star> +// Copyright (C) 2020-2022 |Meso|Star> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/src/green-args.c b/src/green-args.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-args.h b/src/green-args.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-compute.c b/src/green-compute.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-compute.h b/src/green-compute.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-default.h.in b/src/green-default.h.in @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> +/* Copyright (C) 2020-2022 |Meso|Star> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-input.c b/src/green-input.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-main.c b/src/green-main.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-output.c b/src/green-output.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -99,7 +99,7 @@ short_help fprintf(stream, " Set the verbosity level.\n"); fprintf(stream, -"\nCopyright (C) 2020-2021 |Meso|Star> <contact@meso-star.com>.\n" +"\nCopyright (C) 2020-2022 |Meso|Star> <contact@meso-star.com>.\n" "stardis-green is free software released under the GNU GPL license, version 3 or later.\n" "You are free to change or redistribute it under certain conditions\n" "<http://gnu.org/licenses/gpl.html>.\n"); diff --git a/src/green-output.h b/src/green-output.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-types.h b/src/green-types.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2020-2022 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/green-version.h.in b/src/green-version.h.in @@ -1,4 +1,4 @@ -/* Copyright (C) 2020, 2021 |Meso|Star> +/* Copyright (C) 2020-2022 |Meso|Star> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by