Skip to content

Commit 0bcbf43

Browse files
hyperpolymathclaude
andcommitted
Fix SPDX headers: AGPL-3.0-or-later → PMPL-1.0-or-later
Replace legacy AGPL-3.0-or-later SPDX identifiers with the correct PMPL-1.0-or-later (Palimpsest License) across justfiles, Mustfiles, shell scripts, config files, dotfiles, and source code. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7a86246 commit 0bcbf43

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

Mustfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: AGPL-3.0-or-later
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
22
# Mustfile - hyperpolymath mandatory checks
33
# See: https://github.com/hyperpolymath/mustfile
44

hooks/validate-codeql.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# SPDX-License-Identifier: PMPL-1.0-or-later
33
# Pre-commit hook: Validate CodeQL language matrix matches repo
44
set -euo pipefail
55

hooks/validate-permissions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# SPDX-License-Identifier: PMPL-1.0-or-later
33
# Pre-commit hook: Validate workflow permissions declarations
44
set -euo pipefail
55
ERRORS=0

hooks/validate-sha-pins.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# SPDX-License-Identifier: PMPL-1.0-or-later
33
# Pre-commit hook: Validate GitHub Actions are SHA-pinned
44

55
set -euo pipefail

hooks/validate-spdx.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# SPDX-License-Identifier: PMPL-1.0-or-later
33
# Pre-commit hook: Validate SPDX headers in workflow files
44

55
set -euo pipefail
@@ -13,7 +13,7 @@ for workflow in .github/workflows/*.yml .github/workflows/*.yaml; do
1313
first_line=$(head -n1 "$workflow")
1414
if ! echo "$first_line" | grep -qE "$SPDX_PATTERN"; then
1515
echo "ERROR: Missing SPDX header in $workflow"
16-
echo " First line should be: # SPDX-License-Identifier: AGPL-3.0-or-later"
16+
echo " First line should be: # SPDX-License-Identifier: PMPL-1.0-or-later"
1717
ERRORS=$((ERRORS + 1))
1818
fi
1919
done

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: AGPL-3.0-or-later
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
22
# fireflag - Development Tasks
33
set shell := ["bash", "-uc"]
44
set dotenv-load := true

0 commit comments

Comments
 (0)