-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
185 changed files
with
1,885 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ TOOL_SRCS = $(shell find tool -type f -name '*.cpp' | sort) | |
# target version definition | ||
TARGET_MAJOR_VERSION := 0 | ||
TARGET_MINOR_VERSION := 3 | ||
TARGET_PATCH_VERSION := 9 | ||
TARGET_PATCH_VERSION := 10 | ||
TARGET_VERSION_FULL := $(TARGET_MAJOR_VERSION).$(TARGET_MINOR_VERSION).$(TARGET_PATCH_VERSION) | ||
VERSION_MACRO_FILE := include/fkYAML/detail/macros/version_macros.hpp | ||
|
||
|
@@ -126,14 +126,14 @@ update-version-macros: | |
update-project-version: | ||
$(shell sed -i 's/VERSION [0-9]\+\.[0-9]\+\.[0-9]\+/VERSION $(TARGET_VERSION_FULL)/' CMakeLists.txt) | ||
|
||
# pre-requisites: pipx, reuse | ||
# pre-requisites: pipx, reuse(>=v4.0.0, confirmed with v4.0.3) | ||
reuse: update-reuse-templates | ||
pipx run reuse annotate $(SRCS) --template fkYAML \ | ||
--copyright "Kensuke Fukutani <[email protected]>" --copyright-style spdx \ | ||
--license MIT --year "2023-2024" --style c | ||
--license MIT --year "2023-2024" --style cppsingle | ||
pipx run reuse annotate $(TEST_SRCS) $(EXAMPLE_SRCS) $(TOOL_SRCS) --template fkYAML_support \ | ||
--copyright "Kensuke Fukutani <[email protected]>" --copyright-style spdx \ | ||
--license MIT --year "2023-2024" --style c | ||
--license MIT --year "2023-2024" --style cppsingle | ||
pipx run reuse lint | ||
|
||
update-sources: reuse update-version-macros | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version = 1 | ||
SPDX-PackageName = "fkYAML" | ||
SPDX-PackageSupplier = "Kensuke Fukutani <[email protected]>" | ||
SPDX-PackageDownloadLocation = "https://github.com/fktn-k/fkYAML" | ||
|
||
[[annotations]] | ||
path = "**" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = "2023 Kensuke Fukutani <[email protected]>" | ||
SPDX-License-Identifier = "MIT" | ||
|
||
[[annotations]] | ||
path = "thirdparty/imapdl/**" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = ["2017 Georg Sauthoff <[email protected]>", "2022, Alexander Stohr, ZF Friedrichshafen AG"] | ||
SPDX-License-Identifier = "GPL-3.0-only" | ||
|
||
[[annotations]] | ||
path = "tool/amalgamation/**" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = "2012 Erik Edlund <[email protected]>" | ||
SPDX-License-Identifier = "BSD-3-Clause" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.10 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
Oops, something went wrong.