From 6228bf77e8430774d9ee3984c40f073ac6f3ea12 Mon Sep 17 00:00:00 2001 From: modeco80 Date: Wed, 21 Sep 2022 02:49:57 -0500 Subject: [PATCH] chore(*): fix spdx headers for right license Oops! --- hexpat/pak.hexpat | 5 +++-- hexpat/yatf.hexpat | 2 +- include/europa/io/PakFile.h | 2 +- include/europa/io/PakReader.h | 2 +- include/europa/io/PakWriter.h | 2 +- include/europa/io/YatfReader.h | 2 +- include/europa/structs/ImHexAdapter.h | 2 +- include/europa/structs/Pak.h | 2 +- include/europa/structs/Yatf.h | 2 +- include/europa/util/FixedString.h | 2 +- include/europa/util/FourCC.h | 2 +- include/europa/util/TupleElement.h | 5 ++--- src/tools/europa_pack_extractor.cpp | 2 +- src/tools/pakcreate.cpp | 2 +- src/tools/paktest.cpp | 2 +- src/tools/texdump.cpp | 2 +- 16 files changed, 19 insertions(+), 19 deletions(-) diff --git a/hexpat/pak.hexpat b/hexpat/pak.hexpat index 5dbdf40..3f6743d 100644 --- a/hexpat/pak.hexpat +++ b/hexpat/pak.hexpat @@ -3,12 +3,13 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #pragma endian little // Big archives need a big pattern limit -#pragma max_patterns 0x40000 +#pragma pattern_limit 0x40000 +#pragma array_limit 0x40000 namespace europa { diff --git a/hexpat/yatf.hexpat b/hexpat/yatf.hexpat index fab1504..7532ab0 100644 --- a/hexpat/yatf.hexpat +++ b/hexpat/yatf.hexpat @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // // YATF pattern diff --git a/include/europa/io/PakFile.h b/include/europa/io/PakFile.h index 15fda6c..0a3bbf0 100644 --- a/include/europa/io/PakFile.h +++ b/include/europa/io/PakFile.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_IO_PAKFILE_H diff --git a/include/europa/io/PakReader.h b/include/europa/io/PakReader.h index 56442de..534bdb9 100644 --- a/include/europa/io/PakReader.h +++ b/include/europa/io/PakReader.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_IO_PAKREADER_H diff --git a/include/europa/io/PakWriter.h b/include/europa/io/PakWriter.h index 750f59b..af41721 100644 --- a/include/europa/io/PakWriter.h +++ b/include/europa/io/PakWriter.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_IO_PAKWRITER_H diff --git a/include/europa/io/YatfReader.h b/include/europa/io/YatfReader.h index e6637d1..867e875 100644 --- a/include/europa/io/YatfReader.h +++ b/include/europa/io/YatfReader.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_IO_YATFREADER_H diff --git a/include/europa/structs/ImHexAdapter.h b/include/europa/structs/ImHexAdapter.h index f8fc3f5..af2e153 100644 --- a/include/europa/structs/ImHexAdapter.h +++ b/include/europa/structs/ImHexAdapter.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // // laziness.. should probably remove this file diff --git a/include/europa/structs/Pak.h b/include/europa/structs/Pak.h index c7ed042..5ed0b21 100644 --- a/include/europa/structs/Pak.h +++ b/include/europa/structs/Pak.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_STRUCTS_PAK_H diff --git a/include/europa/structs/Yatf.h b/include/europa/structs/Yatf.h index fd5a6e9..2966eaf 100644 --- a/include/europa/structs/Yatf.h +++ b/include/europa/structs/Yatf.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_STRUCTS_YATF_H diff --git a/include/europa/util/FixedString.h b/include/europa/util/FixedString.h index d40c4eb..e2158c3 100644 --- a/include/europa/util/FixedString.h +++ b/include/europa/util/FixedString.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_UTIL_FIXEDSTRING_H diff --git a/include/europa/util/FourCC.h b/include/europa/util/FourCC.h index 48e6461..6847ce6 100644 --- a/include/europa/util/FourCC.h +++ b/include/europa/util/FourCC.h @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_FOURCC_H diff --git a/include/europa/util/TupleElement.h b/include/europa/util/TupleElement.h index ca9d8ff..76d5d9d 100644 --- a/include/europa/util/TupleElement.h +++ b/include/europa/util/TupleElement.h @@ -1,10 +1,9 @@ // -// SSX 3 Lobby Server +// EuropaTools // // (C) 2021-2022 modeco80 // -// This file is licensed under the GNU General Public License Version 3. -// Text is provided in LICENSE. +// SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_UTIL_TUPLEELEMENT_H diff --git a/src/tools/europa_pack_extractor.cpp b/src/tools/europa_pack_extractor.cpp index 130bafb..bbb0cb5 100644 --- a/src/tools/europa_pack_extractor.cpp +++ b/src/tools/europa_pack_extractor.cpp @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #include diff --git a/src/tools/pakcreate.cpp b/src/tools/pakcreate.cpp index 221e91c..a0b8d66 100644 --- a/src/tools/pakcreate.cpp +++ b/src/tools/pakcreate.cpp @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // // A test utility to regurgitate a pak. diff --git a/src/tools/paktest.cpp b/src/tools/paktest.cpp index d4bb355..ba71f62 100644 --- a/src/tools/paktest.cpp +++ b/src/tools/paktest.cpp @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // // A test utility to regurgitate a pak. diff --git a/src/tools/texdump.cpp b/src/tools/texdump.cpp index 139d517..0d2048d 100644 --- a/src/tools/texdump.cpp +++ b/src/tools/texdump.cpp @@ -3,7 +3,7 @@ // // (C) 2021-2022 modeco80 // -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // #include