diff --git a/Makefile b/Makefile index 0d3c2642..d8bc76c6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ # Top-level Makefile for Remind. +# SPDX-License-Identifier: GPL-2.0-only all: src/Makefile @echo "" diff --git a/build.tk b/build.tk index 41cfc397..6f8a1e5f 100644 --- a/build.tk +++ b/build.tk @@ -1,5 +1,6 @@ #!/bin/sh # -*-Mode: TCL;-*- +# SPDX-License-Identifier: GPL-2.0-only #-------------------------------------------------------------- # BUILD.TK diff --git a/examples/alignment.rem b/examples/alignment.rem index f3988024..0354fc1a 100644 --- a/examples/alignment.rem +++ b/examples/alignment.rem @@ -1,6 +1,7 @@ # Demo the columns() function # # Run as: remind -@2 alignment.rem +# SPDX-License-Identifier: GPL-2.0-only SET $AddBlankLines 0 BANNER % diff --git a/examples/ansitext b/examples/ansitext index 33eb1ec9..5ec34d1a 100755 --- a/examples/ansitext +++ b/examples/ansitext @@ -2,6 +2,7 @@ # # A little demo script that displays ANSI text attributes # Not all attributes work on all terminals... your mileage may vary. +# SPDX-License-Identifier: GPL-2.0-only remind -@2 - <<'EOF' diff --git a/examples/astro b/examples/astro index e8465878..416d08d9 100755 --- a/examples/astro +++ b/examples/astro @@ -3,6 +3,7 @@ # A little demo script that displays astronomical events # # Best used in a UTF-8 environment. +# SPDX-License-Identifier: GPL-2.0-only # Set this variable to 1 if your terminal has a dark background or 0 if # it: light. diff --git a/examples/defs.rem b/examples/defs.rem index b8f45429..abf4e88c 100644 --- a/examples/defs.rem +++ b/examples/defs.rem @@ -17,6 +17,7 @@ # # # This file is part of REMIND. # # Copyright (C) 1992-2022 Dianne Skoll # +# SPDX-License-Identifier: GPL-2.0-only # # ############################################################################# diff --git a/include/ansitext.rem b/include/ansitext.rem index 95935641..c7797f37 100644 --- a/include/ansitext.rem +++ b/include/ansitext.rem @@ -3,6 +3,7 @@ # This file is part of REMIND # REMIND is Copyright (C) 1992-2022 by Dianne Skoll +# SPDX-License-Identifier: GPL-2.0-only if !defined("ansi_bold") # Disable ANSI attributes in calandar mode diff --git a/include/holidays/ca.rem b/include/holidays/ca.rem index 43d7b2e9..b206788b 100644 --- a/include/holidays/ca.rem +++ b/include/holidays/ca.rem @@ -1,4 +1,5 @@ # Canadian holidays +# SPDX-License-Identifier: GPL-2.0-only OMIT 1 Jan MSG New Year's Day diff --git a/include/holidays/jewish.rem b/include/holidays/jewish.rem index b5206ab3..c6689f56 100644 --- a/include/holidays/jewish.rem +++ b/include/holidays/jewish.rem @@ -1,4 +1,5 @@ # Major Jewish Holidays +# SPDX-License-Identifier: GPL-2.0-only # Set the variable InIsrael to 1 if you live in Israel. Otherwise, # you get the Diaspora versions of Jewish holidays diff --git a/include/holidays/us.rem b/include/holidays/us.rem index 3593ad7a..58f68d1e 100644 --- a/include/holidays/us.rem +++ b/include/holidays/us.rem @@ -1,6 +1,7 @@ # US holidays # This file is part of REMIND. # Copyright (C) 1992-2022 Dianne Skoll +# SPDX-License-Identifier: GPL-2.0-only REM [easterdate($Uy)-46] MSG Ash Wednesday REM [easterdate($Uy)-7] MSG Palm Sunday diff --git a/include/lang/auto.rem b/include/lang/auto.rem index 440cfebd..c0995767 100644 --- a/include/lang/auto.rem +++ b/include/lang/auto.rem @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-only SET autolang getenv("LC_ALL") IF autolang == "" SET autolang getenv("LANGUAGE") diff --git a/include/seasons.rem b/include/seasons.rem index 3c70fa76..6e38d937 100644 --- a/include/seasons.rem +++ b/include/seasons.rem @@ -1,4 +1,5 @@ # Equinoxes and solstices +# SPDX-License-Identifier: GPL-2.0-only IF $LatDeg >= 0 # Northern Hemisphere diff --git a/rem2html/rem2html b/rem2html/rem2html index 55396703..8136a1ac 100644 --- a/rem2html/rem2html +++ b/rem2html/rem2html @@ -1,4 +1,5 @@ #!perl +# SPDX-License-Identifier: GPL-2.0-only use strict; use warnings; diff --git a/rem2pdf/bin/rem2pdf.in b/rem2pdf/bin/rem2pdf.in index 0e7e2181..5ff1c62c 100644 --- a/rem2pdf/bin/rem2pdf.in +++ b/rem2pdf/bin/rem2pdf.in @@ -1,4 +1,5 @@ #!@PERL@ +# SPDX-License-Identifier: GPL-2.0-only use strict; use warnings; use lib '@prefix@/lib/perl5'; diff --git a/rem2pdf/lib/Remind/PDF.pm b/rem2pdf/lib/Remind/PDF.pm index 053ddacd..65a44188 100644 --- a/rem2pdf/lib/Remind/PDF.pm +++ b/rem2pdf/lib/Remind/PDF.pm @@ -1,4 +1,5 @@ package Remind::PDF; +# SPDX-License-Identifier: GPL-2.0-only use strict; use warnings; diff --git a/rem2pdf/lib/Remind/PDF/Entry.pm b/rem2pdf/lib/Remind/PDF/Entry.pm index b9ba8139..254446e2 100644 --- a/rem2pdf/lib/Remind/PDF/Entry.pm +++ b/rem2pdf/lib/Remind/PDF/Entry.pm @@ -1,4 +1,5 @@ package Remind::PDF::Entry; +# SPDX-License-Identifier: GPL-2.0-only use strict; use warnings; diff --git a/scripts/tkremind b/scripts/tkremind index eecf4089..fd6aa491 100755 --- a/scripts/tkremind +++ b/scripts/tkremind @@ -1,5 +1,6 @@ #!/bin/sh # -*-Mode: TCL;-*- +# SPDX-License-Identifier: GPL-2.0-only #-------------------------------------------------------------- # TKREMIND diff --git a/src/calendar.c b/src/calendar.c index da3f234d..ebd5280b 100644 --- a/src/calendar.c +++ b/src/calendar.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/custom.h b/src/custom.h index c8e54076..409ea96a 100644 --- a/src/custom.h +++ b/src/custom.h @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/custom.h.in b/src/custom.h.in index c8e54076..409ea96a 100644 --- a/src/custom.h.in +++ b/src/custom.h.in @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/dorem.c b/src/dorem.c index acc05783..cf159432 100644 --- a/src/dorem.c +++ b/src/dorem.c @@ -8,6 +8,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/dosubst.c b/src/dosubst.c index 3fc21052..14aca43b 100644 --- a/src/dosubst.c +++ b/src/dosubst.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/dynbuf.c b/src/dynbuf.c index 56430f46..76c1a8c0 100644 --- a/src/dynbuf.c +++ b/src/dynbuf.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/dynbuf.h b/src/dynbuf.h index 62a79ceb..d71b6648 100644 --- a/src/dynbuf.h +++ b/src/dynbuf.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/err.h b/src/err.h index 6db5b138..145a82ff 100644 --- a/src/err.h +++ b/src/err.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/expr.c b/src/expr.c index 4d4a7609..ac4f3987 100644 --- a/src/expr.c +++ b/src/expr.c @@ -6,6 +6,7 @@ /* expressions. */ /* */ /* Copyright 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/expr.h b/src/expr.h index c9c5be9d..0d8a14cf 100644 --- a/src/expr.h +++ b/src/expr.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/files.c b/src/files.c index 5a1faefc..a421a333 100644 --- a/src/files.c +++ b/src/files.c @@ -8,6 +8,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/funcs.c b/src/funcs.c index ecdb0b9d..725ac92d 100644 --- a/src/funcs.c +++ b/src/funcs.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/globals.c b/src/globals.c index 394b86e6..3144886c 100644 --- a/src/globals.c +++ b/src/globals.c @@ -9,6 +9,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/globals.h b/src/globals.h index dae2cd57..c63f0085 100644 --- a/src/globals.h +++ b/src/globals.h @@ -8,6 +8,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2021 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/hbcal.c b/src/hbcal.c index 7e884103..15e422d5 100644 --- a/src/hbcal.c +++ b/src/hbcal.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /* Derived from code written by Amos Shapir in 1978; revised */ /* 1985. */ diff --git a/src/init.c b/src/init.c index f26e4310..748a4cea 100644 --- a/src/init.c +++ b/src/init.c @@ -8,6 +8,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/lang.h b/src/lang.h index 00753a93..d76a5151 100644 --- a/src/lang.h +++ b/src/lang.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/danish.h b/src/langs/danish.h index 14ed8d40..8f5ebe34 100644 --- a/src/langs/danish.h +++ b/src/langs/danish.h @@ -8,6 +8,7 @@ /* */ /* REMIND is Copyright (C) 1992-2022 by Dianne Skoll */ /* This file is Copyright (C) 1993 by Mogens Lynnerup. */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/dutch.h b/src/langs/dutch.h index 2c7f1f31..a95c9051 100644 --- a/src/langs/dutch.h +++ b/src/langs/dutch.h @@ -12,6 +12,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/english.h b/src/langs/english.h index 71557cca..5e25c919 100644 --- a/src/langs/english.h +++ b/src/langs/english.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/finnish.h b/src/langs/finnish.h index 397b78cb..ec19af67 100644 --- a/src/langs/finnish.h +++ b/src/langs/finnish.h @@ -12,6 +12,7 @@ /* This file is part of REMIND. */ /* This file is Copyright (C) 1993-1998 by Mikko Silvonen. */ /* REMIND is Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/french.h b/src/langs/french.h index 0b3505dd..ac6d5e6f 100644 --- a/src/langs/french.h +++ b/src/langs/french.h @@ -11,6 +11,7 @@ /* REMIND is Copyright (C) 1992-2022 by Dianne Skoll */ /* This file is Copyright (C) 1993 by Laurent Duperval and */ /* Dianne Skoll. */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/german.h b/src/langs/german.h index d84ee40c..2992c875 100644 --- a/src/langs/german.h +++ b/src/langs/german.h @@ -10,6 +10,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/icelandic.h b/src/langs/icelandic.h index 985c9c11..14cac748 100644 --- a/src/langs/icelandic.h +++ b/src/langs/icelandic.h @@ -7,6 +7,7 @@ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ /* Translated by Björn Davíðsson (bjossi@snerpa.is) */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/italian.h b/src/langs/italian.h index e2e2f338..1cd2e569 100644 --- a/src/langs/italian.h +++ b/src/langs/italian.h @@ -8,6 +8,7 @@ /* It is Copyright (C) 1996 by Valerio Aimale */ /* */ /* Remind is copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/norwgian.h b/src/langs/norwgian.h index 5142071b..256fe32e 100644 --- a/src/langs/norwgian.h +++ b/src/langs/norwgian.h @@ -7,6 +7,7 @@ /* This file is part of REMIND. */ /* This file is Copyright (C) 1993 by Trygve Randen. */ /* Remind is Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/polish.h b/src/langs/polish.h index 4974909f..7a1cf5e6 100644 --- a/src/langs/polish.h +++ b/src/langs/polish.h @@ -10,6 +10,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/portbr.h b/src/langs/portbr.h index 464b2d75..ff4a0863 100644 --- a/src/langs/portbr.h +++ b/src/langs/portbr.h @@ -11,6 +11,7 @@ /* REMIND is Copyright (C) 1992-2022 by Dianne Skoll */ /* This file is Copyright (C) 1996 by Marco Paganini and */ /* Dianne Skoll. */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/romanian.h b/src/langs/romanian.h index c7bafbf0..56727fe4 100644 --- a/src/langs/romanian.h +++ b/src/langs/romanian.h @@ -10,6 +10,7 @@ /* */ /* REMIND is Copyright (C) 1992-2022 by Dianne Skoll */ /* This file is Copyright (C) 1996-1998 by Liviu Daia */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/langs/spanish.h b/src/langs/spanish.h index e4c69022..06dedb43 100644 --- a/src/langs/spanish.h +++ b/src/langs/spanish.h @@ -8,6 +8,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/main.c b/src/main.c index c378e67b..cbf97e01 100644 --- a/src/main.c +++ b/src/main.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/moon.c b/src/moon.c index 2d695c6e..76eaaae0 100644 --- a/src/moon.c +++ b/src/moon.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/omit.c b/src/omit.c index 400ab663..08d1f597 100644 --- a/src/omit.c +++ b/src/omit.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/protos.h b/src/protos.h index e8da5f8c..8ec507a7 100644 --- a/src/protos.h +++ b/src/protos.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/queue.c b/src/queue.c index 3ea0bc2e..b93f7772 100644 --- a/src/queue.c +++ b/src/queue.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/rem2ps.c b/src/rem2ps.c index a2ca3ed8..74653d2c 100644 --- a/src/rem2ps.c +++ b/src/rem2ps.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/rem2ps.h b/src/rem2ps.h index 4ececd1e..ed2a9a11 100644 --- a/src/rem2ps.h +++ b/src/rem2ps.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/sort.c b/src/sort.c index a1179984..b9e63d8c 100644 --- a/src/sort.c +++ b/src/sort.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/token.c b/src/token.c index 5693aac3..905d5cc0 100644 --- a/src/token.c +++ b/src/token.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/trigger.c b/src/trigger.c index 695b8341..340080e9 100644 --- a/src/trigger.c +++ b/src/trigger.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/types.h b/src/types.h index ee8e522a..7569aa91 100644 --- a/src/types.h +++ b/src/types.h @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/userfns.c b/src/userfns.c index c6b37881..6ac0b7a4 100644 --- a/src/userfns.c +++ b/src/userfns.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/utils.c b/src/utils.c index 26f7d407..7f278ff5 100644 --- a/src/utils.c +++ b/src/utils.c @@ -6,6 +6,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/src/var.c b/src/var.c index 39e8fbc9..d32330bf 100644 --- a/src/var.c +++ b/src/var.c @@ -7,6 +7,7 @@ /* */ /* This file is part of REMIND. */ /* Copyright (C) 1992-2022 by Dianne Skoll */ +/* SPDX-License-Identifier: GPL-2.0-only */ /* */ /***************************************************************/ diff --git a/tests/test-rem b/tests/test-rem index c8d0ad95..ed6cc727 100644 --- a/tests/test-rem +++ b/tests/test-rem @@ -8,6 +8,7 @@ # # This file is part of REMIND. # Copyright (C) 1992-2022 Dianne Skoll +# SPDX-License-Identifier: GPL-2.0-only # --------------------------------------------------------------------------- DIR=`dirname $0` diff --git a/tests/tstlang.rem b/tests/tstlang.rem index 68d4778a..560f889c 100644 --- a/tests/tstlang.rem +++ b/tests/tstlang.rem @@ -12,6 +12,7 @@ # # This file is part of REMIND. # Copyright (C) 1992-2022 Dianne Skoll +# SPDX-License-Identifier: GPL-2.0-only # # --------------------------------------------------------------------------- diff --git a/www/sunset b/www/sunset index f3cf1200..94158f49 100644 --- a/www/sunset +++ b/www/sunset @@ -3,6 +3,7 @@ # # This file is part of REMIND. # Copyright (C) 1992-2018 by Dianne Skoll +# SPDX-License-Identifier: GPL-2.0-only echo Content-type: text/html echo diff --git a/www/sunset.rem-DIST b/www/sunset.rem-DIST index 210d6c19..e32caa8a 100644 --- a/www/sunset.rem-DIST +++ b/www/sunset.rem-DIST @@ -2,6 +2,7 @@ # # This file is part of REMIND. # Copyright (C) 1992-2018 by Dianne Skoll +# SPDX-License-Identifier: GPL-2.0-only set now now()