Skip to content

Commit

Permalink
chore: get ready for v4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tueda committed Apr 11, 2023
1 parent f1ae07e commit 722a8a6
Show file tree
Hide file tree
Showing 77 changed files with 92 additions and 79 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -59,7 +59,7 @@ For more advanced build options, see the file "[INSTALL](INSTALL)".
Additional information
----------------------

The latest reference manual can be found [here](https://github.com/vermaseren/form/releases/download/v4.3.0/form-4.3.0-manual.pdf) and the Form Cookbook can be found [here](https://github.com/vermaseren/form/wiki/FORM-Cookbook).
The latest reference manual can be found [here](https://github.com/vermaseren/form/releases/download/v4.3.1/form-4.3.1-manual.pdf) and the Form Cookbook can be found [here](https://github.com/vermaseren/form/wiki/FORM-Cookbook).

More background information, a collection of FORM programs, and a number of courses can be found on the official [FORM website](http://www.nikhef.nl/~form) and on the [Wiki](https://github.com/vermaseren/form/wiki).

Expand Down
19 changes: 16 additions & 3 deletions scripts/update-copyright.sh
Expand Up @@ -8,8 +8,21 @@
#
# in all files in the current directory and its subdirectories.
#
# NOTE: GNU grep/xargs/sed required.
# NOTE: GNU grep/sed required.
#
# Usage:
# update-copyright.sh
#
set -eu
grep -l -r 'Copyright *(C).*Vermaseren' . \
| xargs sed -i 's/Copyright *(C).*Vermaseren/Copyright (C) 1984-2022 J.A.M. Vermaseren/g'

year=$(date +%Y)

grep -l -r 'Copyright *(C).*Vermaseren' . | while IFS= read -r f; do
case $f in
*update-copyright.sh)
;;
*)
sed -i "s/Copyright *(C).*Vermaseren/Copyright (C) 1984-$year J.A.M. Vermaseren/g" "$f"
;;
esac
done
2 changes: 1 addition & 1 deletion sources/argument.c
Expand Up @@ -6,7 +6,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/bugtool.c
Expand Up @@ -5,7 +5,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/checkpoint.c
Expand Up @@ -53,7 +53,7 @@
#] Explanations :
#[ License :
*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/comexpr.c
Expand Up @@ -7,7 +7,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/compcomm.c
Expand Up @@ -9,7 +9,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/compiler.c
Expand Up @@ -14,7 +14,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/compress.c
Expand Up @@ -6,7 +6,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/comtool.c
Expand Up @@ -4,7 +4,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/comtool.h
Expand Up @@ -4,7 +4,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/declare.h
Expand Up @@ -8,7 +8,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/diagrams.c
Expand Up @@ -4,7 +4,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/dict.c
Expand Up @@ -17,7 +17,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/dollar.c
Expand Up @@ -5,7 +5,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/execute.c
Expand Up @@ -5,7 +5,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/extcmd.c
Expand Up @@ -4,7 +4,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/factor.c
Expand Up @@ -4,7 +4,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/findpat.c
Expand Up @@ -12,7 +12,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/form3.h
Expand Up @@ -7,7 +7,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/fsizes.h
Expand Up @@ -5,7 +5,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/ftypes.h
Expand Up @@ -8,7 +8,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/function.c
Expand Up @@ -7,7 +7,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/fwin.h
Expand Up @@ -5,7 +5,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/if.c
Expand Up @@ -4,7 +4,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/index.c
Expand Up @@ -7,7 +7,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/inivar.h
Expand Up @@ -6,7 +6,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/lus.c
Expand Up @@ -6,7 +6,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/mallocprotect.h
Expand Up @@ -9,7 +9,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/message.c
Expand Up @@ -8,7 +8,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/minos.c
Expand Up @@ -6,7 +6,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/minos.h
Expand Up @@ -16,7 +16,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/module.c
Expand Up @@ -6,7 +6,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/mpi.c
Expand Up @@ -8,7 +8,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/mpidbg.h
Expand Up @@ -9,7 +9,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/mytime.h
@@ -1,7 +1,7 @@
#pragma once
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/names.c
Expand Up @@ -8,7 +8,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/normal.c
Expand Up @@ -9,7 +9,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/notation.c
Expand Up @@ -5,7 +5,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/opera.c
Expand Up @@ -8,7 +8,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/optimize.cc
Expand Up @@ -5,7 +5,7 @@

/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down
2 changes: 1 addition & 1 deletion sources/parallel.c
Expand Up @@ -10,7 +10,7 @@
*/
/* #[ License : */
/*
* Copyright (C) 1984-2022 J.A.M. Vermaseren
* Copyright (C) 1984-2023 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
Expand Down

0 comments on commit 722a8a6

Please sign in to comment.