Skip to content

Commit a17bf91

Browse files
committed
updated copyright dates to 2025
1 parent cda25a1 commit a17bf91

File tree

87 files changed

+98
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+98
-89
lines changed

ChangeLog

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,13 @@ CHANGES SINCE 2.6.3
6767

6868
24. Fix: arrays.shuffle error message no longer says an array type can be used.
6969

70-
25. New: numercis.shannon_entropy_of for strings.
70+
25. New: numerics.shannon_entropy_of for byte entropy for string types.
7171

72-
26. New: string constants are checked for secret data using shannon entropy. [docs, positive tests needed]
72+
26. New: string constants are checked for secret data using shannon entropy plus heuristics. [docs, positive tests needed]
7373

7474
27. Fix: teams.messaging spelling corrected.
7575

76+
28. Fix: Building mostly successfully under Linux Mint 22 / Ubuntu 24.04. Graphics show warnings due to Ubuntu MESA bugs. Sound must be disabled due with --without-sound to Ubuntu gstreamer bugs. Some OpenGL functions commented out due to GCC Ada compiler bugs.
77+
78+
29. Fix: Due to new rules about the arrangement of subprogram methods, some classes have been reordered to prevent GCC 13 "frozen" errors.
79+

TODO

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Priority Issues (Fix These First)
1313

1414
- ongoing major rework
1515
- conversion of error message to give additional context
16-
- ref_errors.html, ref_php are obsolete
1716
- parser-decl has not been completed
1817
- messages in present or past tense not both
1918
- search for appropriate remedies

extras/update_copyright_dates.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ls *.adb | (while read FILE ; do
22

3-
sed 's/2001-2023/2001-2024/g' < "$FILE" > t.t
3+
sed 's/2001-2024/2001-2025/g' < "$FILE" > t.t
44
mv t.t "$FILE"
55
done)
66

provision.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,13 @@ debian )
369369
apt_install git
370370
apt_install wget
371371
apt_install bc
372+
apt_install gcc
373+
set +e
372374
apt_install libssl1.1
375+
if [ $? -ne 0 ] ; then
376+
apt_install libssl3
377+
fi
378+
set -e
373379
if [ -z "$NO_LOCATE" ] ; then
374380
apt_install locate
375381
fi

src/builtins-help.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- Part of SparForte --
55
------------------------------------------------------------------------------
66
-- --
7-
-- Copyright (C) 2001-2024 Free Software Foundation --
7+
-- Copyright (C) 2001-2025 Free Software Foundation --
88
-- --
99
-- This is free software; you can redistribute it and/or modify it under --
1010
-- terms of the GNU General Public License as published by the Free Soft- --

src/builtins.adb.orig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- Part of SparForte --
55
------------------------------------------------------------------------------
66
-- --
7-
-- Copyright (C) 2001-2024 Free Software Foundation --
7+
-- Copyright (C) 2001-2025 Free Software Foundation --
88
-- --
99
-- This is free software; you can redistribute it and/or modify it under --
1010
-- terms of the GNU General Public License as published by the Free Soft- --

src/chain_util.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-- Designed and Programmed by Ken O. Burtch --
66
------------------------------------------------------------------------------
77
-- --
8-
-- Copyright (C) 2001-2024 Free Software Foundation --
8+
-- Copyright (C) 2001-2025 Free Software Foundation --
99
-- --
1010
-- This is free software; you can redistribute it and/or modify it under --
1111
-- terms of the GNU General Public License as published by the Free Soft- --

src/compiler.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-- Part of SparForte --
66
------------------------------------------------------------------------------
77
-- --
8-
-- Copyright (C) 2001-2024 Free Software Foundation --
8+
-- Copyright (C) 2001-2025 Free Software Foundation --
99
-- --
1010
-- This is free software; you can redistribute it and/or modify it under --
1111
-- terms of the GNU General Public License as published by the Free Soft- --

src/interpreter.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- Part of SparForte --
55
------------------------------------------------------------------------------
66
-- --
7-
-- Copyright (C) 2001-2024 Free Software Foundation --
7+
-- Copyright (C) 2001-2025 Free Software Foundation --
88
-- --
99
-- This is free software; you can redistribute it and/or modify it under --
1010
-- terms of the GNU General Public License as published by the Free Soft- --

src/jobs.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- Part of SparForte --
55
------------------------------------------------------------------------------
66
-- --
7-
-- Copyright (C) 2001-2024 Free Software Foundation --
7+
-- Copyright (C) 2001-2025 Free Software Foundation --
88
-- --
99
-- This is free software; you can redistribute it and/or modify it under --
1010
-- terms of the GNU General Public License as published by the Free Soft- --

0 commit comments

Comments
 (0)