File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 174174 (scm-file
175175 ((format . guile-scheme)
176176 (sections
177- ((header . " ;; SPDX-License-Identifier: AGPL-3 .0-or-later\n ;; SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell" )
177+ ((header . " ;; SPDX-License-Identifier: PMPL-1 .0-or-later\n ;; SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell" )
178178 (docstring . " ;;; <FILENAME>.scm — <Description>" )
179179 (module . " (define-module (nextgen-languages <name>)\n #:export (<exports>))" )
180180 (sections . " ;;;===...\n ;;; SECTION NAME\n ;;;===..." )))))))
Original file line number Diff line number Diff line change 1- <!-- SPDX-License-Identifier: AGPL-3 .0-or-later -->
1+ <!-- SPDX-License-Identifier: PMPL-1 .0-or-later -->
22# Contributor Covenant Code of Conduct
33
44## Our Pledge
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
44set -euo pipefail
55
Original file line number Diff line number Diff line change 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
44set -euo pipefail
55ERRORS=0
Original file line number Diff line number Diff line change 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
55set -euo pipefail
Original file line number Diff line number Diff line change 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
55set -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
1919done
Original file line number Diff line number Diff line change 1- # SPDX-License-Identifier: AGPL-3 .0-or-later
1+ # SPDX-License-Identifier: PMPL-1 .0-or-later
22# Justfile - hyperpolymath standard task runner
33
44default :
You can’t perform that action at this time.
0 commit comments