From ef24d2ed818c88eb7899d079bfac4b7bc89a1576 Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 16:03:37 +0300 Subject: [PATCH 01/16] feat(#3934): remove license --- .../src/main/antlr4/org/eolang/parser/Eo.g4 | 8 ++--- .../java/org/eolang/parser/XeEoListener.java | 34 +++++++++---------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eo-parser/src/main/antlr4/org/eolang/parser/Eo.g4 b/eo-parser/src/main/antlr4/org/eolang/parser/Eo.g4 index 7dc274f1fc8..99baa54a93b 100644 --- a/eo-parser/src/main/antlr4/org/eolang/parser/Eo.g4 +++ b/eo-parser/src/main/antlr4/org/eolang/parser/Eo.g4 @@ -8,7 +8,7 @@ tokens { TAB, UNTAB } // Entry point program - : license? metas? objects EOF + : metas? objects EOF ; // Double EOL @@ -16,9 +16,9 @@ eop : EOL EOL ; // Licence -license - : (COMMENTARY EOL)* COMMENTARY eop - ; +//comments +// : (COMMENTARY EOL)* COMMENTARY eop +// ; // Metas metas diff --git a/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java b/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java index c6cfb8a8063..510e8aa55fc 100644 --- a/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java +++ b/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java @@ -104,23 +104,23 @@ public void exitEop(final EoParser.EopContext ctx) { // Nothing here } - @Override - public void enterLicense(final EoParser.LicenseContext ctx) { - this.dirs.addIf("license").set( - new Joined( - "\n", - new Mapped<>( - cmt -> cmt.getText().substring(1).trim(), - ctx.COMMENTARY() - ) - ) - ).up(); - } - - @Override - public void exitLicense(final EoParser.LicenseContext ctx) { - // Nothing here - } +// @Override +// public void enterComments(final EoParser.CommentsContext ctx) { +// this.dirs.addIf("comments").set( +// new Joined( +// "\n", +// new Mapped<>( +// cmt -> cmt.getText().substring(1).trim(), +// ctx.COMMENTARY() +// ) +// ) +// ).up(); +// } + +// @Override +// public void exitComments(final EoParser.CommentsContext ctx) { +// // Nothing here +// } @Override public void enterMetas(final EoParser.MetasContext ctx) { From ee7cb11360b0ff634dfa43fbd3913f00efad96fe Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 16:41:32 +0300 Subject: [PATCH 02/16] feat(#3934): off license node --- .../test/resources/org/eolang/maven/mess.eo | 3 --- .../eolang/parser/eo-syntax/full-syntax.yaml | 5 ----- .../eolang/parser/eo-syntax/leap-year.yaml | 5 ----- .../resources/org/eolang/parser/factorial.eo | 3 --- .../resources/org/eolang/parser/fibonacci.eo | 3 --- .../eolang/parser/phi-packs/bool-tests.yaml | 22 ------------------- .../parser/print-packs/yaml/idiomatic.yaml | 6 ----- eo-runtime/src/main/eo/org/eolang/bytes.eo | 3 --- eo-runtime/src/main/eo/org/eolang/cti.eo | 3 --- eo-runtime/src/main/eo/org/eolang/dataized.eo | 3 --- eo-runtime/src/main/eo/org/eolang/error.eo | 3 --- eo-runtime/src/main/eo/org/eolang/false.eo | 3 --- eo-runtime/src/main/eo/org/eolang/fs/dir.eo | 3 --- eo-runtime/src/main/eo/org/eolang/fs/file.eo | 3 --- eo-runtime/src/main/eo/org/eolang/fs/path.eo | 3 --- .../src/main/eo/org/eolang/fs/tmpdir.eo | 3 --- eo-runtime/src/main/eo/org/eolang/go.eo | 3 --- eo-runtime/src/main/eo/org/eolang/i16.eo | 3 --- eo-runtime/src/main/eo/org/eolang/i32.eo | 3 --- eo-runtime/src/main/eo/org/eolang/i64.eo | 3 --- .../main/eo/org/eolang/io/bytes-as-input.eo | 3 --- .../src/main/eo/org/eolang/io/console.eo | 3 --- .../src/main/eo/org/eolang/io/dead-input.eo | 3 --- .../src/main/eo/org/eolang/io/dead-output.eo | 3 --- .../src/main/eo/org/eolang/io/input-length.eo | 3 --- .../main/eo/org/eolang/io/malloc-as-output.eo | 3 --- eo-runtime/src/main/eo/org/eolang/io/stdin.eo | 3 --- .../src/main/eo/org/eolang/io/stdout.eo | 3 --- .../src/main/eo/org/eolang/io/tee-input.eo | 3 --- eo-runtime/src/main/eo/org/eolang/malloc.eo | 3 --- .../src/main/eo/org/eolang/math/angle.eo | 3 --- eo-runtime/src/main/eo/org/eolang/math/e.eo | 3 --- .../src/main/eo/org/eolang/math/integral.eo | 3 --- .../src/main/eo/org/eolang/math/numbers.eo | 3 --- eo-runtime/src/main/eo/org/eolang/math/pi.eo | 3 --- .../src/main/eo/org/eolang/math/random.eo | 3 --- .../src/main/eo/org/eolang/math/real.eo | 3 --- eo-runtime/src/main/eo/org/eolang/nan.eo | 3 --- .../main/eo/org/eolang/negative-infinity.eo | 3 --- .../src/main/eo/org/eolang/net/socket.eo | 3 --- eo-runtime/src/main/eo/org/eolang/number.eo | 3 --- .../main/eo/org/eolang/positive-infinity.eo | 3 --- eo-runtime/src/main/eo/org/eolang/seq.eo | 3 --- eo-runtime/src/main/eo/org/eolang/string.eo | 3 --- .../eo/org/eolang/structs/bytes-as-array.eo | 3 --- .../eo/org/eolang/structs/hash-code-of.eo | 3 --- .../src/main/eo/org/eolang/structs/list.eo | 3 --- .../src/main/eo/org/eolang/structs/map.eo | 3 --- .../eo/org/eolang/structs/range-of-ints.eo | 3 --- .../src/main/eo/org/eolang/structs/range.eo | 3 --- .../src/main/eo/org/eolang/structs/set.eo | 3 --- eo-runtime/src/main/eo/org/eolang/switch.eo | 3 --- .../src/main/eo/org/eolang/sys/getenv.eo | 3 --- .../main/eo/org/eolang/sys/line-separator.eo | 3 --- eo-runtime/src/main/eo/org/eolang/sys/os.eo | 3 --- .../src/main/eo/org/eolang/sys/posix.eo | 3 --- .../src/main/eo/org/eolang/sys/win32.eo | 3 --- eo-runtime/src/main/eo/org/eolang/true.eo | 3 --- eo-runtime/src/main/eo/org/eolang/try.eo | 3 --- eo-runtime/src/main/eo/org/eolang/tuple.eo | 3 --- .../src/main/eo/org/eolang/txt/regex.eo | 3 --- .../src/main/eo/org/eolang/txt/sprintf.eo | 3 --- .../src/main/eo/org/eolang/txt/sscanf.eo | 3 --- eo-runtime/src/main/eo/org/eolang/txt/text.eo | 3 --- eo-runtime/src/main/eo/org/eolang/while.eo | 3 --- .../src/test/eo/org/eolang/bool-tests.eo | 3 --- .../src/test/eo/org/eolang/bytes-tests.eo | 3 --- .../src/test/eo/org/eolang/cti-tests.eo | 3 --- .../src/test/eo/org/eolang/dataized-tests.eo | 3 --- .../src/test/eo/org/eolang/fs/dir-tests.eo | 3 --- .../src/test/eo/org/eolang/fs/file-tests.eo | 3 --- .../src/test/eo/org/eolang/fs/path-tests.eo | 3 --- .../src/test/eo/org/eolang/fs/tmpdir-tests.eo | 3 --- eo-runtime/src/test/eo/org/eolang/go-tests.eo | 3 --- .../src/test/eo/org/eolang/i16-tests.eo | 3 --- .../src/test/eo/org/eolang/i32-tests.eo | 3 --- .../src/test/eo/org/eolang/i64-tests.eo | 3 --- .../eo/org/eolang/io/bytes-as-input-tests.eo | 3 --- .../test/eo/org/eolang/io/console-tests.eo | 3 --- .../test/eo/org/eolang/io/dead-input-tests.eo | 3 --- .../eo/org/eolang/io/dead-output-tests.eo | 3 --- .../eo/org/eolang/io/input-length-tests.eo | 3 --- .../org/eolang/io/malloc-as-output-tests.eo | 3 --- .../src/test/eo/org/eolang/io/stdout-tests.eo | 3 --- .../test/eo/org/eolang/io/tee-input-tests.eo | 3 --- .../src/test/eo/org/eolang/malloc-tests.eo | 3 --- .../test/eo/org/eolang/math/angle-tests.eo | 3 --- .../test/eo/org/eolang/math/integral-tests.eo | 3 --- .../test/eo/org/eolang/math/numbers-tests.eo | 3 --- .../test/eo/org/eolang/math/random-tests.eo | 3 --- .../src/test/eo/org/eolang/math/real-tests.eo | 3 --- .../src/test/eo/org/eolang/nan-tests.eo | 3 --- .../eo/org/eolang/negative-infinity-tests.eo | 3 --- .../src/test/eo/org/eolang/number-tests.eo | 3 --- .../eo/org/eolang/positive-infinity-tests.eo | 3 --- .../src/test/eo/org/eolang/runtime-tests.eo | 3 --- .../src/test/eo/org/eolang/seq-tests.eo | 3 --- .../src/test/eo/org/eolang/string-tests.eo | 3 --- .../eolang/structs/bytes-as-array-tests.eo | 3 --- .../org/eolang/structs/hash-code-of-tests.eo | 3 --- .../test/eo/org/eolang/structs/list-tests.eo | 3 --- .../test/eo/org/eolang/structs/map-tests.eo | 3 --- .../org/eolang/structs/range-of-ints-tests.eo | 3 --- .../test/eo/org/eolang/structs/range-tests.eo | 3 --- .../test/eo/org/eolang/structs/set-tests.eo | 3 --- .../src/test/eo/org/eolang/switch-tests.eo | 3 --- .../src/test/eo/org/eolang/sys/os-tests.eo | 3 --- .../src/test/eo/org/eolang/sys/posix-tests.eo | 3 --- .../src/test/eo/org/eolang/sys/win32-tests.eo | 3 --- .../src/test/eo/org/eolang/try-tests.eo | 3 --- .../src/test/eo/org/eolang/tuple-tests.eo | 3 --- .../src/test/eo/org/eolang/txt/regex-tests.eo | 3 --- .../test/eo/org/eolang/txt/sprintf-tests.eo | 3 --- .../test/eo/org/eolang/txt/sscanf-tests.eo | 3 --- .../src/test/eo/org/eolang/txt/text-tests.eo | 3 --- .../src/test/eo/org/eolang/while-tests.eo | 3 --- 116 files changed, 374 deletions(-) diff --git a/eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo b/eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo index 20dc2692dc7..fe2a62d5204 100644 --- a/eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo +++ b/eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.stdout +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/full-syntax.yaml b/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/full-syntax.yaml index 6d82a9e6160..df883fdb94e 100644 --- a/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/full-syntax.yaml +++ b/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/full-syntax.yaml @@ -4,7 +4,6 @@ sheets: [ ] asserts: - /program[not(errors)] - - /program/license[text()!=''] - /program/metas[count(meta)=4] - /program/metas/meta[head='foo' and tail=''] - //o[@base='Q.org.eolang.true'] @@ -18,10 +17,6 @@ asserts: - //o[@atom and @name='atom' and count(o)=2 and o[@name='a']] - //o[@atom='org.eolang.number'] input: | - # The purpose of this test case is to make - # sure all possible syntax scenarios can - # be parsed by the ANTLR - +alias org.example.foo +alias Test Test +bar Some text diff --git a/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/leap-year.yaml b/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/leap-year.yaml index 59a30322652..e51af076790 100644 --- a/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/leap-year.yaml +++ b/eo-parser/src/test/resources/org/eolang/parser/eo-syntax/leap-year.yaml @@ -7,11 +7,6 @@ asserts: - /program/objects[count(o)=1] - //o[@base='.and'] input: | - # This program is from the EOLANG original paper - # and must produce a working command line tool - # - # License is MIT - +alias org.eolang.io.stdin +alias org.eolang.io.stdout +alias org.eolang.txt.scanner diff --git a/eo-parser/src/test/resources/org/eolang/parser/factorial.eo b/eo-parser/src/test/resources/org/eolang/parser/factorial.eo index 20dbf18782b..ee49b801f23 100644 --- a/eo-parser/src/test/resources/org/eolang/parser/factorial.eo +++ b/eo-parser/src/test/resources/org/eolang/parser/factorial.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - [n] > f if. > @ n.lt 1 diff --git a/eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo b/eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo index b71fbb44ca3..3f9de3b7d20 100644 --- a/eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo +++ b/eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +meta This is just a test META +meta2 And yet another one diff --git a/eo-parser/src/test/resources/org/eolang/parser/phi-packs/bool-tests.yaml b/eo-parser/src/test/resources/org/eolang/parser/phi-packs/bool-tests.yaml index 09849c1d072..77a35919a60 100644 --- a/eo-parser/src/test/resources/org/eolang/parser/phi-packs/bool-tests.yaml +++ b/eo-parser/src/test/resources/org/eolang/parser/phi-packs/bool-tests.yaml @@ -2,28 +2,6 @@ # SPDX-License-Identifier: MIT --- input: | - # The MIT License (MIT) - # - # Copyright (c) 2016-2025 Objectionary.com - # - # Permission is hereby granted, free of charge, to any person obtaining a copy - # of this software and associated documentation files (the "Software"), to deal - # in the Software without restriction, including without limitation the rights - # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - # copies of the Software, and to permit persons to whom the Software is - # furnished to do so, subject to the following conditions: - # - # The above copyright notice and this permission notice shall be included - # in all copies or substantial portions of the Software. - # - # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE - # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - # SOFTWARE. - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-parser/src/test/resources/org/eolang/parser/print-packs/yaml/idiomatic.yaml b/eo-parser/src/test/resources/org/eolang/parser/print-packs/yaml/idiomatic.yaml index 97884b0dc29..12f27194f9f 100644 --- a/eo-parser/src/test/resources/org/eolang/parser/print-packs/yaml/idiomatic.yaml +++ b/eo-parser/src/test/resources/org/eolang/parser/print-packs/yaml/idiomatic.yaml @@ -2,9 +2,6 @@ # SPDX-License-Identifier: MIT --- origin: | - # This is the license part - # of the program - +meta1 +meta2 short +meta2 long tail @@ -33,9 +30,6 @@ origin: | "hello, 大家!" printed: | - # This is the license part - # of the program - +meta1 +meta2 short +meta2 long tail diff --git a/eo-runtime/src/main/eo/org/eolang/bytes.eo b/eo-runtime/src/main/eo/org/eolang/bytes.eo index 69ea1443ca0..c5bae7f5d82 100644 --- a/eo-runtime/src/main/eo/org/eolang/bytes.eo +++ b/eo-runtime/src/main/eo/org/eolang/bytes.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/cti.eo b/eo-runtime/src/main/eo/org/eolang/cti.eo index 7ed81e6bcb6..4776f068f70 100644 --- a/eo-runtime/src/main/eo/org/eolang/cti.eo +++ b/eo-runtime/src/main/eo/org/eolang/cti.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/dataized.eo b/eo-runtime/src/main/eo/org/eolang/dataized.eo index 62fff58983c..62cae610562 100644 --- a/eo-runtime/src/main/eo/org/eolang/dataized.eo +++ b/eo-runtime/src/main/eo/org/eolang/dataized.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/error.eo b/eo-runtime/src/main/eo/org/eolang/error.eo index 1e87dcfc59a..5c0b3017048 100644 --- a/eo-runtime/src/main/eo/org/eolang/error.eo +++ b/eo-runtime/src/main/eo/org/eolang/error.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/false.eo b/eo-runtime/src/main/eo/org/eolang/false.eo index 4e9ad5be2dd..3475ca0f7a6 100644 --- a/eo-runtime/src/main/eo/org/eolang/false.eo +++ b/eo-runtime/src/main/eo/org/eolang/false.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/fs/dir.eo b/eo-runtime/src/main/eo/org/eolang/fs/dir.eo index 4a24c18429c..4ee945fbf09 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/dir.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/dir.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/fs/file.eo b/eo-runtime/src/main/eo/org/eolang/fs/file.eo index bc06a56e9cc..f4670eb638a 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/file.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/file.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/fs/path.eo b/eo-runtime/src/main/eo/org/eolang/fs/path.eo index 0cd0c67ea5c..f2dbe771800 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/path.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/path.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.fs.dir +alias org.eolang.fs.file +alias org.eolang.sys.os diff --git a/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo b/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo index 501081dacbf..e740c0e5db4 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.fs.dir +alias org.eolang.fs.file +alias org.eolang.sys.getenv diff --git a/eo-runtime/src/main/eo/org/eolang/go.eo b/eo-runtime/src/main/eo/org/eolang/go.eo index 5cccedf338a..f8d70412499 100644 --- a/eo-runtime/src/main/eo/org/eolang/go.eo +++ b/eo-runtime/src/main/eo/org/eolang/go.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/i16.eo b/eo-runtime/src/main/eo/org/eolang/i16.eo index c727fbbeb0c..7572200a9b7 100644 --- a/eo-runtime/src/main/eo/org/eolang/i16.eo +++ b/eo-runtime/src/main/eo/org/eolang/i16.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/i32.eo b/eo-runtime/src/main/eo/org/eolang/i32.eo index 6fc49d38893..5d53c2b9711 100644 --- a/eo-runtime/src/main/eo/org/eolang/i32.eo +++ b/eo-runtime/src/main/eo/org/eolang/i32.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/i64.eo b/eo-runtime/src/main/eo/org/eolang/i64.eo index 8c09ff33acb..53857946a15 100644 --- a/eo-runtime/src/main/eo/org/eolang/i64.eo +++ b/eo-runtime/src/main/eo/org/eolang/i64.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo b/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo index 3617b4ea35e..da91fad3b1f 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/console.eo b/eo-runtime/src/main/eo/org/eolang/io/console.eo index b2bd62d4f74..43e5070a71f 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/console.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/console.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo b/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo index 2747ab79d60..b7f1e26e38c 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo b/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo index f8170e43a33..97e1a6413cb 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/input-length.eo b/eo-runtime/src/main/eo/org/eolang/io/input-length.eo index ab3c63ded96..b2a693edab9 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/input-length.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/input-length.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo b/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo index a1133ef669c..23ebab9fc35 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/stdin.eo b/eo-runtime/src/main/eo/org/eolang/io/stdin.eo index 59edf652236..ff64163a7a0 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/stdin.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/stdin.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.console +alias org.eolang.sys.line-separator +architect yegor256@gmail.com diff --git a/eo-runtime/src/main/eo/org/eolang/io/stdout.eo b/eo-runtime/src/main/eo/org/eolang/io/stdout.eo index f007fb52a51..aa821b23120 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/stdout.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/stdout.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.console +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo b/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo index 4e16f655ed3..0a96d530b96 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/malloc.eo b/eo-runtime/src/main/eo/org/eolang/malloc.eo index f06ea2db04b..1049493cef5 100644 --- a/eo-runtime/src/main/eo/org/eolang/malloc.eo +++ b/eo-runtime/src/main/eo/org/eolang/malloc.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/math/angle.eo b/eo-runtime/src/main/eo/org/eolang/math/angle.eo index e7e5be0aaa7..b45c359e4d6 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/angle.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/angle.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.math.pi +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/math/e.eo b/eo-runtime/src/main/eo/org/eolang/math/e.eo index 746eff13af1..09b2eed83e1 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/e.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/e.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.math diff --git a/eo-runtime/src/main/eo/org/eolang/math/integral.eo b/eo-runtime/src/main/eo/org/eolang/math/integral.eo index 80aeda914e0..2767eb50084 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/integral.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/integral.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.math diff --git a/eo-runtime/src/main/eo/org/eolang/math/numbers.eo b/eo-runtime/src/main/eo/org/eolang/math/numbers.eo index bbe8ab752c1..a093b8f56c8 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/numbers.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/numbers.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.list +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/math/pi.eo b/eo-runtime/src/main/eo/org/eolang/math/pi.eo index 98009bd2599..39d1d0a0900 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/pi.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/pi.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.math diff --git a/eo-runtime/src/main/eo/org/eolang/math/random.eo b/eo-runtime/src/main/eo/org/eolang/math/random.eo index e0e8a6624d7..9b63dbc58eb 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/random.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/random.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/math/real.eo b/eo-runtime/src/main/eo/org/eolang/math/real.eo index 25bef64d4f5..b266f1a3542 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/real.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/real.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.math.e +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/nan.eo b/eo-runtime/src/main/eo/org/eolang/nan.eo index 9b3276fd9cc..601a6cf16fe 100644 --- a/eo-runtime/src/main/eo/org/eolang/nan.eo +++ b/eo-runtime/src/main/eo/org/eolang/nan.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo index a9d9117eb0b..ff5674e83de 100644 --- a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/net/socket.eo b/eo-runtime/src/main/eo/org/eolang/net/socket.eo index 75b3de1bb59..900d0ce1a17 100644 --- a/eo-runtime/src/main/eo/org/eolang/net/socket.eo +++ b/eo-runtime/src/main/eo/org/eolang/net/socket.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/number.eo b/eo-runtime/src/main/eo/org/eolang/number.eo index 63ac7eab1a0..d8bc73e7fe4 100644 --- a/eo-runtime/src/main/eo/org/eolang/number.eo +++ b/eo-runtime/src/main/eo/org/eolang/number.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index 0fed5bb1d0b..9076eb74dd5 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/seq.eo b/eo-runtime/src/main/eo/org/eolang/seq.eo index af3472c17bf..99a85a19c69 100644 --- a/eo-runtime/src/main/eo/org/eolang/seq.eo +++ b/eo-runtime/src/main/eo/org/eolang/seq.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/string.eo b/eo-runtime/src/main/eo/org/eolang/string.eo index 711afdc6c2e..dd3f64fd5f6 100644 --- a/eo-runtime/src/main/eo/org/eolang/string.eo +++ b/eo-runtime/src/main/eo/org/eolang/string.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo b/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo index 2d7f640c69c..f1e4481b96d 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.structs diff --git a/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo b/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo index 1a6e95e136d..efb7a82551a 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.structs diff --git a/eo-runtime/src/main/eo/org/eolang/structs/list.eo b/eo-runtime/src/main/eo/org/eolang/structs/list.eo index c260ff09c70..02a9a29120f 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/list.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/list.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.structs diff --git a/eo-runtime/src/main/eo/org/eolang/structs/map.eo b/eo-runtime/src/main/eo/org/eolang/structs/map.eo index eb9a234d049..ab7739e039a 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/map.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/map.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.hash-code-of +alias org.eolang.structs.list +alias org.eolang.txt.sprintf diff --git a/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo b/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo index 712e5d1318c..9e913fa2eed 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.range +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/structs/range.eo b/eo-runtime/src/main/eo/org/eolang/structs/range.eo index c3f8a0ff717..d175dd445dc 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/range.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/range.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.list +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/structs/set.eo b/eo-runtime/src/main/eo/org/eolang/structs/set.eo index dc13f192be1..761db237df5 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/set.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/set.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.list +alias org.eolang.structs.map +architect yegor256@gmail.com diff --git a/eo-runtime/src/main/eo/org/eolang/switch.eo b/eo-runtime/src/main/eo/org/eolang/switch.eo index a7483a44661..e09612f6425 100644 --- a/eo-runtime/src/main/eo/org/eolang/switch.eo +++ b/eo-runtime/src/main/eo/org/eolang/switch.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo b/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo index e4b0f581906..4d8c1de45ff 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo b/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo index 077a41a5323..beca4c53fa2 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/sys/os.eo b/eo-runtime/src/main/eo/org/eolang/sys/os.eo index f72247b7328..982e3370cac 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/os.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/os.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.regex +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/sys/posix.eo b/eo-runtime/src/main/eo/org/eolang/sys/posix.eo index 1a1856042e5..ff413047d74 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/posix.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/posix.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.sys diff --git a/eo-runtime/src/main/eo/org/eolang/sys/win32.eo b/eo-runtime/src/main/eo/org/eolang/sys/win32.eo index 508e0242534..d43a67d761b 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/win32.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/win32.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.sys diff --git a/eo-runtime/src/main/eo/org/eolang/true.eo b/eo-runtime/src/main/eo/org/eolang/true.eo index b78335d498f..0afc5275a31 100644 --- a/eo-runtime/src/main/eo/org/eolang/true.eo +++ b/eo-runtime/src/main/eo/org/eolang/true.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/try.eo b/eo-runtime/src/main/eo/org/eolang/try.eo index 0bf27fb2092..01eab2fac39 100644 --- a/eo-runtime/src/main/eo/org/eolang/try.eo +++ b/eo-runtime/src/main/eo/org/eolang/try.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/tuple.eo b/eo-runtime/src/main/eo/org/eolang/tuple.eo index 288bdbb44a8..823d5379053 100644 --- a/eo-runtime/src/main/eo/org/eolang/tuple.eo +++ b/eo-runtime/src/main/eo/org/eolang/tuple.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/txt/regex.eo b/eo-runtime/src/main/eo/org/eolang/txt/regex.eo index 3bcbacd8580..cdb1f6db789 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/regex.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/regex.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.txt diff --git a/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo b/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo index f819c152af3..fa43534b5a5 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.txt diff --git a/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo b/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo index 4f43127c13a..c9b36ada964 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.txt diff --git a/eo-runtime/src/main/eo/org/eolang/txt/text.eo b/eo-runtime/src/main/eo/org/eolang/txt/text.eo index f789d98011a..522533ce547 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/text.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/text.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.bytes-as-array +alias org.eolang.structs.list +alias org.eolang.txt.regex diff --git a/eo-runtime/src/main/eo/org/eolang/while.eo b/eo-runtime/src/main/eo/org/eolang/while.eo index 51b2a42c815..71809fff652 100644 --- a/eo-runtime/src/main/eo/org/eolang/while.eo +++ b/eo-runtime/src/main/eo/org/eolang/while.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/bool-tests.eo b/eo-runtime/src/test/eo/org/eolang/bool-tests.eo index 23108977ba2..e0e841dfdf2 100644 --- a/eo-runtime/src/test/eo/org/eolang/bool-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/bool-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo b/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo index 80fa5ce8ba0..6ecd2976bc1 100644 --- a/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/cti-tests.eo b/eo-runtime/src/test/eo/org/eolang/cti-tests.eo index c7beaabe889..b5aaffe3e9b 100644 --- a/eo-runtime/src/test/eo/org/eolang/cti-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/cti-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo b/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo index 0554a7fddd9..a66a6009ff2 100644 --- a/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo index ad31c67561a..323ed6b0b01 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.fs.dir +alias org.eolang.fs.tmpdir +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo index cf74ba12ba4..8794a9f1c8c 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.fs.file +alias org.eolang.fs.path +alias org.eolang.fs.tmpdir diff --git a/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo index 4af7f48c7ab..d3c8ee3dd60 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +alias org.eolang.fs.path +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo index bc3e01cea1a..542e390cb5b 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.fs.tmpdir +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/go-tests.eo b/eo-runtime/src/test/eo/org/eolang/go-tests.eo index 774afac6545..7b9b03aee77 100644 --- a/eo-runtime/src/test/eo/org/eolang/go-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/go-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/i16-tests.eo b/eo-runtime/src/test/eo/org/eolang/i16-tests.eo index 02521d4d654..02aef25b8eb 100644 --- a/eo-runtime/src/test/eo/org/eolang/i16-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/i16-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/i32-tests.eo b/eo-runtime/src/test/eo/org/eolang/i32-tests.eo index 0790438d5b5..70adc42270a 100644 --- a/eo-runtime/src/test/eo/org/eolang/i32-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/i32-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/i64-tests.eo b/eo-runtime/src/test/eo/org/eolang/i64-tests.eo index deb870b946d..a2154fa5538 100644 --- a/eo-runtime/src/test/eo/org/eolang/i64-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/i64-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo index 2ac46b81b24..3bd3e27c144 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.bytes-as-input +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo index 5c775bf46e8..d6b8c4d3286 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.console +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo index 9a60cbee577..35afa715f1d 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.dead-input +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo index 1ca07200a4c..8daa4e21949 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.dead-output +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo index 2ebdafb5df5..653a78d8da6 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.bytes-as-input +alias org.eolang.io.input-length +alias org.eolang.io.malloc-as-output diff --git a/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo index 689a93fd959..e24d9a0d9db 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.malloc-as-output +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo index f56c9bc6040..5b529257933 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.stdout +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo index af8d0dcfca5..c205a8d6683 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.io.bytes-as-input +alias org.eolang.io.malloc-as-output +alias org.eolang.io.tee-input diff --git a/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo b/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo index 39a388e684e..9637ce9a187 100644 --- a/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo index a7b936ef175..bf5a36334e1 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.math.angle +alias org.eolang.math.pi +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo index cbfd40ed2fa..01ccbdc2b30 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.math.integral +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo index 77369b01241..302012997ac 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.math.numbers +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo index 93fb930c7d4..a624fd5101e 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.math.random +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo index 0516f08d081..4b20b8020e8 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.math.e +alias org.eolang.math.pi +alias org.eolang.math.real diff --git a/eo-runtime/src/test/eo/org/eolang/nan-tests.eo b/eo-runtime/src/test/eo/org/eolang/nan-tests.eo index 6e838e9a6d1..a2cb77eb70f 100644 --- a/eo-runtime/src/test/eo/org/eolang/nan-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/nan-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo b/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo index fd72bc3a43b..990a03fd98e 100644 --- a/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/number-tests.eo b/eo-runtime/src/test/eo/org/eolang/number-tests.eo index 8c7c23b76f4..898fe91807d 100644 --- a/eo-runtime/src/test/eo/org/eolang/number-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/number-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo b/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo index 12c5424cc4a..655f7d193c6 100644 --- a/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo b/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo index a0e898d1d40..95fe1358a48 100644 --- a/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/seq-tests.eo b/eo-runtime/src/test/eo/org/eolang/seq-tests.eo index 80af4e95238..17aa61932be 100644 --- a/eo-runtime/src/test/eo/org/eolang/seq-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/seq-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/string-tests.eo b/eo-runtime/src/test/eo/org/eolang/string-tests.eo index 584f5054064..0498ff79a5f 100644 --- a/eo-runtime/src/test/eo/org/eolang/string-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/string-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo index 26a54258171..047a4b1caa6 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.bytes-as-array +alias org.eolang.structs.list +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo index 6d0e05ed021..55d8b3cbf64 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.hash-code-of +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo index 9515fabde65..c88045e648c 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.list +alias org.eolang.txt.sprintf +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo index 8317f7d0fd9..28ecb02988b 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.map +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo index 98d82df427e..5f59bcc1055 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.range-of-ints +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo index 5226199c4ed..378b668e72a 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.range +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo index 197cfa65f9f..7e0687a453b 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.set +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/switch-tests.eo b/eo-runtime/src/test/eo/org/eolang/switch-tests.eo index 8557966e2c7..81f1a012144 100644 --- a/eo-runtime/src/test/eo/org/eolang/switch-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/switch-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo b/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo index 2b6e0724fb6..89f61c4da65 100644 --- a/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo b/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo index 71ca298a465..2d2d95f1f5b 100644 --- a/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +alias org.eolang.sys.posix +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo b/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo index a8d21c086f6..405a4728ec0 100644 --- a/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.sys.os +alias org.eolang.sys.win32 +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/try-tests.eo b/eo-runtime/src/test/eo/org/eolang/try-tests.eo index be158175ad4..5fbc6d8fb73 100644 --- a/eo-runtime/src/test/eo/org/eolang/try-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/try-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo b/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo index a147838f788..c339b46bc50 100644 --- a/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo index 4668fa4e017..1b4817442b7 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.regex +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo index 4b238ab4735..ece5dfa4f70 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo index 472198f3890..35ac36d83a0 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.list +alias org.eolang.txt.sprintf +alias org.eolang.txt.sscanf diff --git a/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo index cbb3ae431fc..287e42f1383 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +alias org.eolang.structs.list +alias org.eolang.txt.regex +alias org.eolang.txt.text diff --git a/eo-runtime/src/test/eo/org/eolang/while-tests.eo b/eo-runtime/src/test/eo/org/eolang/while-tests.eo index 6ef6e91072d..8f0e871776f 100644 --- a/eo-runtime/src/test/eo/org/eolang/while-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/while-tests.eo @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com -# SPDX-License-Identifier: MIT - +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests From c0139d353c53cc8567f74e557374f0d77fff95f3 Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 17:57:09 +0300 Subject: [PATCH 03/16] feat(#3934): +spdx --- eo-maven-plugin/pom.xml | 2 +- .../main/java/org/eolang/maven/LintMojo.java | 8 +++++++- .../java/org/eolang/parser/XeEoListener.java | 20 ------------------- eo-runtime/src/main/eo/org/eolang/bytes.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/cti.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/dataized.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/error.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/false.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/fs/dir.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/fs/file.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/fs/path.eo | 2 ++ .../src/main/eo/org/eolang/fs/tmpdir.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/go.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/i16.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/i32.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/i64.eo | 2 ++ .../main/eo/org/eolang/io/bytes-as-input.eo | 2 ++ .../src/main/eo/org/eolang/io/console.eo | 2 ++ .../src/main/eo/org/eolang/io/dead-input.eo | 2 ++ .../src/main/eo/org/eolang/io/dead-output.eo | 2 ++ .../src/main/eo/org/eolang/io/input-length.eo | 2 ++ .../main/eo/org/eolang/io/malloc-as-output.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/io/stdin.eo | 2 ++ .../src/main/eo/org/eolang/io/stdout.eo | 2 ++ .../src/main/eo/org/eolang/io/tee-input.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/malloc.eo | 2 ++ .../src/main/eo/org/eolang/math/angle.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/math/e.eo | 2 ++ .../src/main/eo/org/eolang/math/integral.eo | 2 ++ .../src/main/eo/org/eolang/math/numbers.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/math/pi.eo | 2 ++ .../src/main/eo/org/eolang/math/random.eo | 2 ++ .../src/main/eo/org/eolang/math/real.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/nan.eo | 2 ++ .../main/eo/org/eolang/negative-infinity.eo | 2 ++ .../src/main/eo/org/eolang/net/socket.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/number.eo | 2 ++ .../main/eo/org/eolang/positive-infinity.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/seq.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/string.eo | 2 ++ .../eo/org/eolang/structs/bytes-as-array.eo | 2 ++ .../eo/org/eolang/structs/hash-code-of.eo | 2 ++ .../src/main/eo/org/eolang/structs/list.eo | 2 ++ .../src/main/eo/org/eolang/structs/map.eo | 2 ++ .../eo/org/eolang/structs/range-of-ints.eo | 2 ++ .../src/main/eo/org/eolang/structs/range.eo | 2 ++ .../src/main/eo/org/eolang/structs/set.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/switch.eo | 2 ++ .../src/main/eo/org/eolang/sys/getenv.eo | 2 ++ .../main/eo/org/eolang/sys/line-separator.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/sys/os.eo | 2 ++ .../src/main/eo/org/eolang/sys/posix.eo | 2 ++ .../src/main/eo/org/eolang/sys/win32.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/true.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/try.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/tuple.eo | 2 ++ .../src/main/eo/org/eolang/txt/regex.eo | 2 ++ .../src/main/eo/org/eolang/txt/sprintf.eo | 2 ++ .../src/main/eo/org/eolang/txt/sscanf.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/txt/text.eo | 2 ++ eo-runtime/src/main/eo/org/eolang/while.eo | 2 ++ .../src/test/eo/org/eolang/bool-tests.eo | 2 ++ .../src/test/eo/org/eolang/bytes-tests.eo | 2 ++ .../src/test/eo/org/eolang/cti-tests.eo | 2 ++ .../src/test/eo/org/eolang/dataized-tests.eo | 2 ++ .../src/test/eo/org/eolang/fs/dir-tests.eo | 2 ++ .../src/test/eo/org/eolang/fs/file-tests.eo | 2 ++ .../src/test/eo/org/eolang/fs/path-tests.eo | 2 ++ .../src/test/eo/org/eolang/fs/tmpdir-tests.eo | 2 ++ eo-runtime/src/test/eo/org/eolang/go-tests.eo | 2 ++ .../src/test/eo/org/eolang/i16-tests.eo | 2 ++ .../src/test/eo/org/eolang/i32-tests.eo | 2 ++ .../src/test/eo/org/eolang/i64-tests.eo | 2 ++ .../eo/org/eolang/io/bytes-as-input-tests.eo | 2 ++ .../test/eo/org/eolang/io/console-tests.eo | 2 ++ .../test/eo/org/eolang/io/dead-input-tests.eo | 2 ++ .../eo/org/eolang/io/dead-output-tests.eo | 2 ++ .../eo/org/eolang/io/input-length-tests.eo | 2 ++ .../org/eolang/io/malloc-as-output-tests.eo | 2 ++ .../src/test/eo/org/eolang/io/stdout-tests.eo | 2 ++ .../test/eo/org/eolang/io/tee-input-tests.eo | 2 ++ .../src/test/eo/org/eolang/malloc-tests.eo | 2 ++ .../test/eo/org/eolang/math/angle-tests.eo | 2 ++ .../test/eo/org/eolang/math/integral-tests.eo | 2 ++ .../test/eo/org/eolang/math/numbers-tests.eo | 2 ++ .../test/eo/org/eolang/math/random-tests.eo | 2 ++ .../src/test/eo/org/eolang/math/real-tests.eo | 2 ++ .../src/test/eo/org/eolang/nan-tests.eo | 2 ++ .../eo/org/eolang/negative-infinity-tests.eo | 2 ++ .../src/test/eo/org/eolang/number-tests.eo | 2 ++ .../eo/org/eolang/positive-infinity-tests.eo | 2 ++ .../src/test/eo/org/eolang/runtime-tests.eo | 2 ++ .../src/test/eo/org/eolang/seq-tests.eo | 2 ++ .../src/test/eo/org/eolang/string-tests.eo | 2 ++ .../eolang/structs/bytes-as-array-tests.eo | 2 ++ .../org/eolang/structs/hash-code-of-tests.eo | 2 ++ .../test/eo/org/eolang/structs/list-tests.eo | 2 ++ .../test/eo/org/eolang/structs/map-tests.eo | 2 ++ .../org/eolang/structs/range-of-ints-tests.eo | 2 ++ .../test/eo/org/eolang/structs/range-tests.eo | 2 ++ .../test/eo/org/eolang/structs/set-tests.eo | 2 ++ .../src/test/eo/org/eolang/switch-tests.eo | 2 ++ .../src/test/eo/org/eolang/sys/os-tests.eo | 2 ++ .../src/test/eo/org/eolang/sys/posix-tests.eo | 2 ++ .../src/test/eo/org/eolang/sys/win32-tests.eo | 2 ++ .../src/test/eo/org/eolang/try-tests.eo | 2 ++ .../src/test/eo/org/eolang/tuple-tests.eo | 2 ++ .../src/test/eo/org/eolang/txt/regex-tests.eo | 2 ++ .../test/eo/org/eolang/txt/sprintf-tests.eo | 2 ++ .../test/eo/org/eolang/txt/sscanf-tests.eo | 2 ++ .../src/test/eo/org/eolang/txt/text-tests.eo | 2 ++ .../src/test/eo/org/eolang/while-tests.eo | 2 ++ pom.xml | 15 +++++++++++++- 113 files changed, 240 insertions(+), 23 deletions(-) diff --git a/eo-maven-plugin/pom.xml b/eo-maven-plugin/pom.xml index adc7e036946..d35f75acbf6 100644 --- a/eo-maven-plugin/pom.xml +++ b/eo-maven-plugin/pom.xml @@ -23,7 +23,7 @@ org.eolang lints - 0.0.38 + 0.0.39 org.glassfish diff --git a/eo-maven-plugin/src/main/java/org/eolang/maven/LintMojo.java b/eo-maven-plugin/src/main/java/org/eolang/maven/LintMojo.java index a2ba8757244..38687529eac 100644 --- a/eo-maven-plugin/src/main/java/org/eolang/maven/LintMojo.java +++ b/eo-maven-plugin/src/main/java/org/eolang/maven/LintMojo.java @@ -257,10 +257,16 @@ private static String summary(final ConcurrentHashMap counts) * @param xmir The XML before linting * @param counts Counts of errors, warnings, and critical * @return XML after linting + * @todo #3934:35min Remove .without() from Program to enable `unknown-metas` + * and `unsorted-metas` lints. Currently we disabled them since lints does not + * support `+spdx` meta yet. Once this + * issue will be resolved, we should enable all lints. */ private static XML linted(final XML xmir, final ConcurrentHashMap counts) { final Directives dirs = new Directives(); - final Collection defects = new Program(xmir).defects(); + final Collection defects = new Program(xmir).without( + "unknown-metas", "unsorted-metas" + ).defects(); if (!defects.isEmpty()) { dirs.xpath("/program").addIf("errors").strict(1); LintMojo.embed(xmir, defects); diff --git a/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java b/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java index 510e8aa55fc..9cc2c09d912 100644 --- a/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java +++ b/eo-parser/src/main/java/org/eolang/parser/XeEoListener.java @@ -16,8 +16,6 @@ import org.antlr.v4.runtime.tree.ErrorNode; import org.antlr.v4.runtime.tree.TerminalNode; import org.apache.commons.text.StringEscapeUtils; -import org.cactoos.iterable.Mapped; -import org.cactoos.text.Joined; import org.xembly.Directive; import org.xembly.Directives; @@ -104,24 +102,6 @@ public void exitEop(final EoParser.EopContext ctx) { // Nothing here } -// @Override -// public void enterComments(final EoParser.CommentsContext ctx) { -// this.dirs.addIf("comments").set( -// new Joined( -// "\n", -// new Mapped<>( -// cmt -> cmt.getText().substring(1).trim(), -// ctx.COMMENTARY() -// ) -// ) -// ).up(); -// } - -// @Override -// public void exitComments(final EoParser.CommentsContext ctx) { -// // Nothing here -// } - @Override public void enterMetas(final EoParser.MetasContext ctx) { this.dirs.addIf("metas"); diff --git a/eo-runtime/src/main/eo/org/eolang/bytes.eo b/eo-runtime/src/main/eo/org/eolang/bytes.eo index c5bae7f5d82..88d1233e656 100644 --- a/eo-runtime/src/main/eo/org/eolang/bytes.eo +++ b/eo-runtime/src/main/eo/org/eolang/bytes.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/cti.eo b/eo-runtime/src/main/eo/org/eolang/cti.eo index 4776f068f70..e7b44efeda3 100644 --- a/eo-runtime/src/main/eo/org/eolang/cti.eo +++ b/eo-runtime/src/main/eo/org/eolang/cti.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/dataized.eo b/eo-runtime/src/main/eo/org/eolang/dataized.eo index 62cae610562..0abc57dfaba 100644 --- a/eo-runtime/src/main/eo/org/eolang/dataized.eo +++ b/eo-runtime/src/main/eo/org/eolang/dataized.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/error.eo b/eo-runtime/src/main/eo/org/eolang/error.eo index 5c0b3017048..87b68153bf0 100644 --- a/eo-runtime/src/main/eo/org/eolang/error.eo +++ b/eo-runtime/src/main/eo/org/eolang/error.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/false.eo b/eo-runtime/src/main/eo/org/eolang/false.eo index 3475ca0f7a6..670caa23771 100644 --- a/eo-runtime/src/main/eo/org/eolang/false.eo +++ b/eo-runtime/src/main/eo/org/eolang/false.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/fs/dir.eo b/eo-runtime/src/main/eo/org/eolang/fs/dir.eo index 4ee945fbf09..167704c680a 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/dir.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/dir.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/fs/file.eo b/eo-runtime/src/main/eo/org/eolang/fs/file.eo index f4670eb638a..80f34cafa9e 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/file.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/file.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/fs/path.eo b/eo-runtime/src/main/eo/org/eolang/fs/path.eo index f2dbe771800..ffe3571186c 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/path.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/path.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.fs.dir +alias org.eolang.fs.file +alias org.eolang.sys.os diff --git a/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo b/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo index e740c0e5db4..2aa7e4cc10e 100644 --- a/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo +++ b/eo-runtime/src/main/eo/org/eolang/fs/tmpdir.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.fs.dir +alias org.eolang.fs.file +alias org.eolang.sys.getenv diff --git a/eo-runtime/src/main/eo/org/eolang/go.eo b/eo-runtime/src/main/eo/org/eolang/go.eo index f8d70412499..0ef47937860 100644 --- a/eo-runtime/src/main/eo/org/eolang/go.eo +++ b/eo-runtime/src/main/eo/org/eolang/go.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/i16.eo b/eo-runtime/src/main/eo/org/eolang/i16.eo index 7572200a9b7..b4555faf2d8 100644 --- a/eo-runtime/src/main/eo/org/eolang/i16.eo +++ b/eo-runtime/src/main/eo/org/eolang/i16.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/i32.eo b/eo-runtime/src/main/eo/org/eolang/i32.eo index 5d53c2b9711..1a3a3f71462 100644 --- a/eo-runtime/src/main/eo/org/eolang/i32.eo +++ b/eo-runtime/src/main/eo/org/eolang/i32.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/i64.eo b/eo-runtime/src/main/eo/org/eolang/i64.eo index 53857946a15..362f63f8fc7 100644 --- a/eo-runtime/src/main/eo/org/eolang/i64.eo +++ b/eo-runtime/src/main/eo/org/eolang/i64.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo b/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo index da91fad3b1f..00c8a75a596 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/bytes-as-input.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/console.eo b/eo-runtime/src/main/eo/org/eolang/io/console.eo index 43e5070a71f..205e1deb1b6 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/console.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/console.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo b/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo index b7f1e26e38c..994eb5e606b 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/dead-input.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo b/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo index 97e1a6413cb..374f3df4e9d 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/dead-output.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/input-length.eo b/eo-runtime/src/main/eo/org/eolang/io/input-length.eo index b2a693edab9..6f7244b449d 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/input-length.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/input-length.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo b/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo index 23ebab9fc35..57971135383 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/malloc-as-output.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/io/stdin.eo b/eo-runtime/src/main/eo/org/eolang/io/stdin.eo index ff64163a7a0..27f378ae397 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/stdin.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/stdin.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.console +alias org.eolang.sys.line-separator +architect yegor256@gmail.com diff --git a/eo-runtime/src/main/eo/org/eolang/io/stdout.eo b/eo-runtime/src/main/eo/org/eolang/io/stdout.eo index aa821b23120..27f732823d1 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/stdout.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/stdout.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.console +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo b/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo index 0a96d530b96..e8113a5806a 100644 --- a/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo +++ b/eo-runtime/src/main/eo/org/eolang/io/tee-input.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.io diff --git a/eo-runtime/src/main/eo/org/eolang/malloc.eo b/eo-runtime/src/main/eo/org/eolang/malloc.eo index 1049493cef5..82f900d7dfc 100644 --- a/eo-runtime/src/main/eo/org/eolang/malloc.eo +++ b/eo-runtime/src/main/eo/org/eolang/malloc.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/math/angle.eo b/eo-runtime/src/main/eo/org/eolang/math/angle.eo index b45c359e4d6..1b9274c046c 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/angle.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/angle.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.math.pi +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/math/e.eo b/eo-runtime/src/main/eo/org/eolang/math/e.eo index 09b2eed83e1..80dd60be8df 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/e.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/e.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.math diff --git a/eo-runtime/src/main/eo/org/eolang/math/integral.eo b/eo-runtime/src/main/eo/org/eolang/math/integral.eo index 2767eb50084..c3933185500 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/integral.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/integral.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.math diff --git a/eo-runtime/src/main/eo/org/eolang/math/numbers.eo b/eo-runtime/src/main/eo/org/eolang/math/numbers.eo index a093b8f56c8..8debf785f15 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/numbers.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/numbers.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.list +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/math/pi.eo b/eo-runtime/src/main/eo/org/eolang/math/pi.eo index 39d1d0a0900..c6b7149f489 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/pi.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/pi.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.math diff --git a/eo-runtime/src/main/eo/org/eolang/math/random.eo b/eo-runtime/src/main/eo/org/eolang/math/random.eo index 9b63dbc58eb..7a008978170 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/random.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/random.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/math/real.eo b/eo-runtime/src/main/eo/org/eolang/math/real.eo index b266f1a3542..9b6392e84d7 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/real.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/real.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.math.e +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/nan.eo b/eo-runtime/src/main/eo/org/eolang/nan.eo index 601a6cf16fe..bdad99191b6 100644 --- a/eo-runtime/src/main/eo/org/eolang/nan.eo +++ b/eo-runtime/src/main/eo/org/eolang/nan.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo index ff5674e83de..55dcb32613c 100644 --- a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/net/socket.eo b/eo-runtime/src/main/eo/org/eolang/net/socket.eo index 900d0ce1a17..6ef2fdd779e 100644 --- a/eo-runtime/src/main/eo/org/eolang/net/socket.eo +++ b/eo-runtime/src/main/eo/org/eolang/net/socket.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/number.eo b/eo-runtime/src/main/eo/org/eolang/number.eo index d8bc73e7fe4..24bbadc5e73 100644 --- a/eo-runtime/src/main/eo/org/eolang/number.eo +++ b/eo-runtime/src/main/eo/org/eolang/number.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index 9076eb74dd5..223dfcb8c15 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/seq.eo b/eo-runtime/src/main/eo/org/eolang/seq.eo index 99a85a19c69..d4e0df8daf0 100644 --- a/eo-runtime/src/main/eo/org/eolang/seq.eo +++ b/eo-runtime/src/main/eo/org/eolang/seq.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/string.eo b/eo-runtime/src/main/eo/org/eolang/string.eo index dd3f64fd5f6..96661a30939 100644 --- a/eo-runtime/src/main/eo/org/eolang/string.eo +++ b/eo-runtime/src/main/eo/org/eolang/string.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo b/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo index f1e4481b96d..e8f506dc69c 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/bytes-as-array.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.structs diff --git a/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo b/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo index efb7a82551a..0d0e106db0c 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/hash-code-of.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.structs diff --git a/eo-runtime/src/main/eo/org/eolang/structs/list.eo b/eo-runtime/src/main/eo/org/eolang/structs/list.eo index 02a9a29120f..694b1b92e2e 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/list.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/list.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.structs diff --git a/eo-runtime/src/main/eo/org/eolang/structs/map.eo b/eo-runtime/src/main/eo/org/eolang/structs/map.eo index ab7739e039a..b4377a7b2db 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/map.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/map.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.hash-code-of +alias org.eolang.structs.list +alias org.eolang.txt.sprintf diff --git a/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo b/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo index 9e913fa2eed..5e2523c4d89 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/range-of-ints.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.range +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/structs/range.eo b/eo-runtime/src/main/eo/org/eolang/structs/range.eo index d175dd445dc..b111e8ade47 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/range.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/range.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.list +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/structs/set.eo b/eo-runtime/src/main/eo/org/eolang/structs/set.eo index 761db237df5..6a42f80d98e 100644 --- a/eo-runtime/src/main/eo/org/eolang/structs/set.eo +++ b/eo-runtime/src/main/eo/org/eolang/structs/set.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.list +alias org.eolang.structs.map +architect yegor256@gmail.com diff --git a/eo-runtime/src/main/eo/org/eolang/switch.eo b/eo-runtime/src/main/eo/org/eolang/switch.eo index e09612f6425..a55a2a4cb18 100644 --- a/eo-runtime/src/main/eo/org/eolang/switch.eo +++ b/eo-runtime/src/main/eo/org/eolang/switch.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo b/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo index 4d8c1de45ff..19271d8bf95 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/getenv.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +alias org.eolang.sys.posix +alias org.eolang.sys.win32 diff --git a/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo b/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo index beca4c53fa2..e74fbb65603 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/line-separator.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/sys/os.eo b/eo-runtime/src/main/eo/org/eolang/sys/os.eo index 982e3370cac..cf2f7a7b26c 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/os.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/os.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.regex +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/main/eo/org/eolang/sys/posix.eo b/eo-runtime/src/main/eo/org/eolang/sys/posix.eo index ff413047d74..c9f923934f6 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/posix.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/posix.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.sys diff --git a/eo-runtime/src/main/eo/org/eolang/sys/win32.eo b/eo-runtime/src/main/eo/org/eolang/sys/win32.eo index d43a67d761b..4b94e9f857c 100644 --- a/eo-runtime/src/main/eo/org/eolang/sys/win32.eo +++ b/eo-runtime/src/main/eo/org/eolang/sys/win32.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.sys diff --git a/eo-runtime/src/main/eo/org/eolang/true.eo b/eo-runtime/src/main/eo/org/eolang/true.eo index 0afc5275a31..d1479646f00 100644 --- a/eo-runtime/src/main/eo/org/eolang/true.eo +++ b/eo-runtime/src/main/eo/org/eolang/true.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/try.eo b/eo-runtime/src/main/eo/org/eolang/try.eo index 01eab2fac39..dca74f7202b 100644 --- a/eo-runtime/src/main/eo/org/eolang/try.eo +++ b/eo-runtime/src/main/eo/org/eolang/try.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/tuple.eo b/eo-runtime/src/main/eo/org/eolang/tuple.eo index 823d5379053..253c4d53383 100644 --- a/eo-runtime/src/main/eo/org/eolang/tuple.eo +++ b/eo-runtime/src/main/eo/org/eolang/tuple.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/main/eo/org/eolang/txt/regex.eo b/eo-runtime/src/main/eo/org/eolang/txt/regex.eo index cdb1f6db789..864eef35447 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/regex.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/regex.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.txt diff --git a/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo b/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo index fa43534b5a5..b67fb2c2a8c 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/sprintf.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.txt diff --git a/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo b/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo index c9b36ada964..6df250b0e77 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/sscanf.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang.txt diff --git a/eo-runtime/src/main/eo/org/eolang/txt/text.eo b/eo-runtime/src/main/eo/org/eolang/txt/text.eo index 522533ce547..c5e8aa22a03 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/text.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/text.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.bytes-as-array +alias org.eolang.structs.list +alias org.eolang.txt.regex diff --git a/eo-runtime/src/main/eo/org/eolang/while.eo b/eo-runtime/src/main/eo/org/eolang/while.eo index 71809fff652..f056e15acea 100644 --- a/eo-runtime/src/main/eo/org/eolang/while.eo +++ b/eo-runtime/src/main/eo/org/eolang/while.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/bool-tests.eo b/eo-runtime/src/test/eo/org/eolang/bool-tests.eo index e0e841dfdf2..54f2c672c2f 100644 --- a/eo-runtime/src/test/eo/org/eolang/bool-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/bool-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo b/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo index 6ecd2976bc1..ff7d787c79b 100644 --- a/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/bytes-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/cti-tests.eo b/eo-runtime/src/test/eo/org/eolang/cti-tests.eo index b5aaffe3e9b..f51cac1da01 100644 --- a/eo-runtime/src/test/eo/org/eolang/cti-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/cti-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo b/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo index a66a6009ff2..d52b64a5696 100644 --- a/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/dataized-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo index 323ed6b0b01..90c6136545d 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/dir-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.fs.dir +alias org.eolang.fs.tmpdir +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo index 8794a9f1c8c..9bfe4d86ad1 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/file-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.fs.file +alias org.eolang.fs.path +alias org.eolang.fs.tmpdir diff --git a/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo index d3c8ee3dd60..99ad24ff7fd 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/path-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +alias org.eolang.fs.path +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo b/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo index 542e390cb5b..b49e1ad5eac 100644 --- a/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/fs/tmpdir-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.fs.tmpdir +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/go-tests.eo b/eo-runtime/src/test/eo/org/eolang/go-tests.eo index 7b9b03aee77..a62604d15a6 100644 --- a/eo-runtime/src/test/eo/org/eolang/go-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/go-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/i16-tests.eo b/eo-runtime/src/test/eo/org/eolang/i16-tests.eo index 02aef25b8eb..af9445bc87d 100644 --- a/eo-runtime/src/test/eo/org/eolang/i16-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/i16-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/i32-tests.eo b/eo-runtime/src/test/eo/org/eolang/i32-tests.eo index 70adc42270a..93bbe0d9b75 100644 --- a/eo-runtime/src/test/eo/org/eolang/i32-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/i32-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/i64-tests.eo b/eo-runtime/src/test/eo/org/eolang/i64-tests.eo index a2154fa5538..dcedfd1907f 100644 --- a/eo-runtime/src/test/eo/org/eolang/i64-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/i64-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo index 3bd3e27c144..3f95490b792 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/bytes-as-input-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.bytes-as-input +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo index d6b8c4d3286..067940680ea 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/console-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.console +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo index 35afa715f1d..646f9e43177 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/dead-input-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.dead-input +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo index 8daa4e21949..99b93747131 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/dead-output-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.dead-output +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo index 653a78d8da6..70a1a9c9017 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/input-length-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.bytes-as-input +alias org.eolang.io.input-length +alias org.eolang.io.malloc-as-output diff --git a/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo index e24d9a0d9db..81dfac83419 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/malloc-as-output-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.malloc-as-output +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo index 5b529257933..83959dbf441 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/stdout-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.stdout +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo b/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo index c205a8d6683..b2990a95249 100644 --- a/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/io/tee-input-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.io.bytes-as-input +alias org.eolang.io.malloc-as-output +alias org.eolang.io.tee-input diff --git a/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo b/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo index 9637ce9a187..5542eb675d9 100644 --- a/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/malloc-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo index bf5a36334e1..c960825b815 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/angle-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.math.angle +alias org.eolang.math.pi +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo index 01ccbdc2b30..8e0219be1d0 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/integral-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.math.integral +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo index 302012997ac..ebaa44f41a3 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/numbers-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.math.numbers +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo index a624fd5101e..a7ab6c269c5 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/random-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.math.random +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo b/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo index 4b20b8020e8..4c245a4b6e2 100644 --- a/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/math/real-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.math.e +alias org.eolang.math.pi +alias org.eolang.math.real diff --git a/eo-runtime/src/test/eo/org/eolang/nan-tests.eo b/eo-runtime/src/test/eo/org/eolang/nan-tests.eo index a2cb77eb70f..b793dfa81df 100644 --- a/eo-runtime/src/test/eo/org/eolang/nan-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/nan-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo b/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo index 990a03fd98e..5d6995ee6ff 100644 --- a/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/negative-infinity-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/number-tests.eo b/eo-runtime/src/test/eo/org/eolang/number-tests.eo index 898fe91807d..f4460851491 100644 --- a/eo-runtime/src/test/eo/org/eolang/number-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/number-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo b/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo index 655f7d193c6..fceb8f9d623 100644 --- a/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/positive-infinity-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +package org.eolang diff --git a/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo b/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo index 95fe1358a48..51e23286a66 100644 --- a/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/runtime-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/seq-tests.eo b/eo-runtime/src/test/eo/org/eolang/seq-tests.eo index 17aa61932be..83be5516d99 100644 --- a/eo-runtime/src/test/eo/org/eolang/seq-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/seq-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/string-tests.eo b/eo-runtime/src/test/eo/org/eolang/string-tests.eo index 0498ff79a5f..c2695d95da9 100644 --- a/eo-runtime/src/test/eo/org/eolang/string-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/string-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo index 047a4b1caa6..a77d06873e4 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/bytes-as-array-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.bytes-as-array +alias org.eolang.structs.list +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo index 55d8b3cbf64..c59bdab2e1a 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/hash-code-of-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.hash-code-of +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo index c88045e648c..a82d6ba77d4 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/list-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.list +alias org.eolang.txt.sprintf +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo index 28ecb02988b..54f46520794 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/map-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.map +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo index 5f59bcc1055..55d04bf7a8a 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/range-of-ints-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.range-of-ints +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo index 378b668e72a..3247246e5c2 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/range-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.range +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo b/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo index 7e0687a453b..a8c43a645f8 100644 --- a/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/structs/set-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.set +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/switch-tests.eo b/eo-runtime/src/test/eo/org/eolang/switch-tests.eo index 81f1a012144..4bb8860820a 100644 --- a/eo-runtime/src/test/eo/org/eolang/switch-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/switch-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo b/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo index 89f61c4da65..acf43a82d4e 100644 --- a/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/sys/os-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo b/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo index 2d2d95f1f5b..715fccba174 100644 --- a/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/sys/posix-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +alias org.eolang.sys.posix +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo b/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo index 405a4728ec0..31cac40086f 100644 --- a/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/sys/win32-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.sys.os +alias org.eolang.sys.win32 +architect yegor256@gmail.com diff --git a/eo-runtime/src/test/eo/org/eolang/try-tests.eo b/eo-runtime/src/test/eo/org/eolang/try-tests.eo index 5fbc6d8fb73..98bf2559aa6 100644 --- a/eo-runtime/src/test/eo/org/eolang/try-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/try-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo b/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo index c339b46bc50..958b6e9a978 100644 --- a/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/tuple-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo index 1b4817442b7..f2ea7fe9e8e 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/regex-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.regex +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo index ece5dfa4f70..2239b768e40 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/sprintf-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.txt.sprintf +architect yegor256@gmail.com +home https://github.com/objectionary/eo diff --git a/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo index 35ac36d83a0..98503a5bca2 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/sscanf-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.list +alias org.eolang.txt.sprintf +alias org.eolang.txt.sscanf diff --git a/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo b/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo index 287e42f1383..ba947dd89da 100644 --- a/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/txt/text-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +alias org.eolang.structs.list +alias org.eolang.txt.regex +alias org.eolang.txt.text diff --git a/eo-runtime/src/test/eo/org/eolang/while-tests.eo b/eo-runtime/src/test/eo/org/eolang/while-tests.eo index 8f0e871776f..73f739bd79d 100644 --- a/eo-runtime/src/test/eo/org/eolang/while-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/while-tests.eo @@ -1,3 +1,5 @@ ++spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com ++spdx SPDX-License-Identifier MIT +architect yegor256@gmail.com +home https://github.com/objectionary/eo +tests diff --git a/pom.xml b/pom.xml index 3eee159a3aa..9f9a5ff5131 100644 --- a/pom.xml +++ b/pom.xml @@ -109,7 +109,7 @@ com.github.volodya-lombrozo xnav - 0.1.8 + 0.1.10 org.apache.commons @@ -301,6 +301,19 @@ + + maven-antrun-plugin + 3.1.0 + + + jcabi-xcop + none + + run + + + + pw.krejci jmh-maven-plugin From 22155c25a976cfcd7844f5e1c38b00e5a640a579 Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 18:02:48 +0300 Subject: [PATCH 04/16] feat(#3934): redundant --- pom.xml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pom.xml b/pom.xml index 9f9a5ff5131..007310f2f8c 100644 --- a/pom.xml +++ b/pom.xml @@ -301,19 +301,6 @@ - - maven-antrun-plugin - 3.1.0 - - - jcabi-xcop - none - - run - - - - pw.krejci jmh-maven-plugin From 1bccad3bc5072e9db913902521afa25d3c0cbcdc Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 18:08:20 +0300 Subject: [PATCH 05/16] feat(#3934): ignore without license --- .github/workflows/copyrights.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/copyrights.yml b/.github/workflows/copyrights.yml index a6eca6de9e0..2aded824a2b 100644 --- a/.github/workflows/copyrights.yml +++ b/.github/workflows/copyrights.yml @@ -34,3 +34,8 @@ jobs: **/*.properties **/*.toml **/*.groovy + ignore: >- +# checked with lints + eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo + eo-parser/src/test/resources/org/eolang/parser/factorial.eo + eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo From 9d8031822899832127dd67e55515d00ced528c0b Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 18:09:42 +0300 Subject: [PATCH 06/16] feat(#3934): no comments --- .github/workflows/copyrights.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/copyrights.yml b/.github/workflows/copyrights.yml index 2aded824a2b..e7143638e41 100644 --- a/.github/workflows/copyrights.yml +++ b/.github/workflows/copyrights.yml @@ -35,7 +35,6 @@ jobs: **/*.toml **/*.groovy ignore: >- -# checked with lints eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo eo-parser/src/test/resources/org/eolang/parser/factorial.eo eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo From 74e21f2c408a8f3af49c045051f13a53a4cb97a8 Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 18:10:50 +0300 Subject: [PATCH 07/16] feat(#3934): tab --- .github/workflows/copyrights.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/copyrights.yml b/.github/workflows/copyrights.yml index e7143638e41..b5245e654bc 100644 --- a/.github/workflows/copyrights.yml +++ b/.github/workflows/copyrights.yml @@ -34,7 +34,7 @@ jobs: **/*.properties **/*.toml **/*.groovy - ignore: >- - eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo - eo-parser/src/test/resources/org/eolang/parser/factorial.eo - eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo + ignore: >- + eo-parser/src/test/resources/org/eolang/parser/fibonacci.eo + eo-parser/src/test/resources/org/eolang/parser/factorial.eo + eo-maven-plugin/src/test/resources/org/eolang/maven/mess.eo From 7691ebb4d6b27471769ab3309e8d71574aeed26e Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 18:18:00 +0300 Subject: [PATCH 08/16] chore: ignore eo --- REUSE.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/REUSE.toml b/REUSE.toml index 8e1b06b8582..f3a47eca59d 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -33,6 +33,8 @@ path = [ "eo-maven-plugin/src/main/resources/org/eolang/maven/latex/latex-template.txt", "eo-maven-plugin/src/test/resources/org/eolang/maven/commits/tags.txt", "eo-runtime/src/main/resources/org/eolang/version.txt", + # to be linted with "lints" + "**/*.eo" ] precedence = "override" SPDX-FileCopyrightText = "Copyright (c) 2016-2025 Objectionary.com" From 3753396e79542fa8ba09bc9b2f30f31f2910d018 Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 18:28:14 +0300 Subject: [PATCH 09/16] chore: proper comment --- REUSE.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/REUSE.toml b/REUSE.toml index f3a47eca59d..5a8ae4c6f9d 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -33,7 +33,7 @@ path = [ "eo-maven-plugin/src/main/resources/org/eolang/maven/latex/latex-template.txt", "eo-maven-plugin/src/test/resources/org/eolang/maven/commits/tags.txt", "eo-runtime/src/main/resources/org/eolang/version.txt", - # to be linted with "lints" + # License +spdx meta to be checked by "lints" "**/*.eo" ] precedence = "override" From 2600cdfe94579b99e70d1e025cf5a2b1e77e8683 Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Wed, 26 Feb 2025 18:34:03 +0300 Subject: [PATCH 10/16] feat(#3934): license --- .../eolang/maven/shake/set-original-names.xsl | 23 ++----------------- .../add-original-names-with-dot.yml | 23 ++----------------- .../original-names/add-original-names.yml | 23 ++----------------- 3 files changed, 6 insertions(+), 63 deletions(-) diff --git a/eo-maven-plugin/src/main/resources/org/eolang/maven/shake/set-original-names.xsl b/eo-maven-plugin/src/main/resources/org/eolang/maven/shake/set-original-names.xsl index 32479ce9e00..45a42f9aedf 100644 --- a/eo-maven-plugin/src/main/resources/org/eolang/maven/shake/set-original-names.xsl +++ b/eo-maven-plugin/src/main/resources/org/eolang/maven/shake/set-original-names.xsl @@ -1,26 +1,7 @@