fix(licence): align everything to MPL-2.0 (Licence-consistency CI green) - #23
Merged
Merged
Conversation
…ency CI green) LICENSE file is MPL-2.0 but 39 satellite files declared PMPL-1.0-or-later (SPDX headers, manifest licence fields, badge, docs). The standards `check-licence-consistency.sh` script compares SPDX header vs each manifest declaration and was failing on `julia-professional-registry-tests.ipkg`. This PR resolves everything in favour of MPL-2.0 per owner directive: - SPDX headers: `PMPL-1.0-or-later` → `MPL-2.0` across 36 files (workflows, .a2ml manifests, docs, ipkg, Justfile-style, scheme) - Manifest licence fields: `stapeln.toml`, `.machine_readable/6a2/META.a2ml` - Human-visible: GOVERNANCE/TOPOLOGY/CONTRIBUTING/llm-warmup docs - README badge: PMPL-1.0 (palimpsest-license) → MPL-2.0 (mozilla.org) - `guix.scm`: dropped palimpsest-license URL, points at mozilla.org MPL/2.0 - `flake.nix`: `licenses.mit` (stale comment said MIT+Palimpsest) → `mpl20` - `contractile.just` + `contractiles/trust/Trustfile.a2ml`: removed `PMPL` from the grep alternation in trust-license-content Verified locally: `bash standards/scripts/check-licence-consistency.sh` now reports `[OK] Licence consistency check passed.` Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
hyperpolymath
enabled auto-merge (squash)
May 28, 2026 07:58
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
check-licence-consistency.shwas failing on every PR (e.g. chore(deps): bump github/codeql-action from 4.34.0 to 4.36.0 in the actions group #22 run 26561538141) with[ERROR] SPDX-vs-manifest mismatch: header='MPL-2.0' manifest='PMPL-1.0-or-later'.LICENSEis the MPL-2.0 body and the LICENSE-file SPDX header isMPL-2.0, but 39 satellite files declaredPMPL-1.0-or-later(Palimpsest), so the cross-check fired onjulia-professional-registry-tests.ipkg.What changed
.a2mlmanifests, docs,.ipkg,.just,.scm, etc.):PMPL-1.0-or-later→MPL-2.0.stapeln.toml,.machine_readable/6a2/META.a2mllicense = "PMPL-1.0-or-later"→"MPL-2.0".README.adoc:9):License-PMPL--1.0shields badge +palimpsest-licenselink →License-MPL--2.0+https://www.mozilla.org/en-US/MPL/2.0/.0-AI-MANIFEST.a2ml, EXPLAINME.adoc,.github/copilot-instructions.md,contractiles/intend/Intentfile.a2ml.guix.scm: dropped palimpsest-license URL, now points at mozilla.org MPL/2.0.flake.nix: replaced stalelicenses.mit ; # MIT + Palimpsestwithlicenses.mpl20 ; # MPL-2.0.contractile.just,contractiles/trust/Trustfile.a2ml): removedPMPLalternative fromgrep -q 'SPDX\|License\|MIT\|Apache\|PMPL\|MPL' LICENSE(no functional change —MPLstill matches).Verification
Ran the same script the CI runs:
Test plan
bash standards/scripts/check-licence-consistency.sh .passes locallygovernance / Licence consistencyCI check green on this PR🤖 Generated with Claude Code