Skip to content

Commit 095ec73

Browse files
hyperpolymathclaude
andcommitted
fix: SPDX headers (AGPL→PMPL), email, author name
- AGPL-3.0-or-later → PMPL-1.0-or-later in SPDX-License-Identifier lines - jonathan.jewell@open.ac.uk → j.d.a.jewell@open.ac.uk - "hyperpolymath" → "Jonathan D.A. Jewell" in author fields Part of global TODO cleanup (2026-03-16). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 11d7692 commit 095ec73

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

ABI-FFI-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ When modifying the ABI/FFI:
374374

375375
## License
376376

377-
{{LICENSE}}
377+
PMPL-1.0-or-later
378378

379379
## See Also
380380

CONTRIBUTING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Clone the repository
2-
git clone https://{{FORGE}}/{{OWNER}}/{{REPO}}.git
3-
cd {{REPO}}
2+
git clone https://github.com/hyperpolymath/conflow.git
3+
cd conflow
44

55
# Using Nix (recommended for reproducibility)
66
nix develop
77

88
# Or using toolbox/distrobox
9-
toolbox create {{REPO}}-dev
10-
toolbox enter {{REPO}}-dev
9+
toolbox create conflow-dev
10+
toolbox enter conflow-dev
1111
# Install dependencies manually
1212

1313
# Verify setup
@@ -17,7 +17,7 @@ just test # Run test suite
1717
1818
### Repository Structure
1919
```
20-
{{REPO}}/
20+
conflow/
2121
├── src/ # Source code (Perimeter 1-2)
2222
├── lib/ # Library code (Perimeter 1-2)
2323
├── extensions/ # Extensions (Perimeter 2)
@@ -53,7 +53,7 @@ just test # Run test suite
5353
5454
**Before reporting**:
5555
1. Search existing issues
56-
2. Check if it's already fixed in `{{MAIN_BRANCH}}`
56+
2. Check if it's already fixed in `main`
5757
3. Determine which perimeter the bug affects
5858
5959
**When reporting**:
@@ -86,10 +86,10 @@ Use the [feature request template](.github/ISSUE_TEMPLATE/feature_request.md) an
8686
8787
Look for issues labelled:
8888
89-
- [`good first issue`](https://{{FORGE}}/{{OWNER}}/{{REPO}}/labels/good%20first%20issue) — Simple Perimeter 3 tasks
90-
- [`help wanted`](https://{{FORGE}}/{{OWNER}}/{{REPO}}/labels/help%20wanted) — Community help needed
91-
- [`documentation`](https://{{FORGE}}/{{OWNER}}/{{REPO}}/labels/documentation) — Docs improvements
92-
- [`perimeter-3`](https://{{FORGE}}/{{OWNER}}/{{REPO}}/labels/perimeter-3) — Community sandbox scope
89+
- [`good first issue`](https://github.com/hyperpolymath/conflow/labels/good%20first%20issue) — Simple Perimeter 3 tasks
90+
- [`help wanted`](https://github.com/hyperpolymath/conflow/labels/help%20wanted) — Community help needed
91+
- [`documentation`](https://github.com/hyperpolymath/conflow/labels/documentation) — Docs improvements
92+
- [`perimeter-3`](https://github.com/hyperpolymath/conflow/labels/perimeter-3) — Community sandbox scope
9393
9494
---
9595

examples/SafeDOMExample.res

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
// Example: Using SafeDOM for formally verified DOM mounting
33

44
open SafeDOM

ffi/zig/build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// {{PROJECT}} FFI Build Configuration
2-
// SPDX-License-Identifier: AGPL-3.0-or-later
2+
// SPDX-License-Identifier: PMPL-1.0-or-later
33

44
const std = @import("std");
55

ffi/zig/src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This module implements the C-compatible FFI declared in src/abi/Foreign.idr
44
// All types and layouts must match the Idris2 ABI definitions.
55
//
6-
// SPDX-License-Identifier: AGPL-3.0-or-later
6+
// SPDX-License-Identifier: PMPL-1.0-or-later
77

88
const std = @import("std");
99

ffi/zig/test/integration_test.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// {{PROJECT}} Integration Tests
2-
// SPDX-License-Identifier: AGPL-3.0-or-later
2+
// SPDX-License-Identifier: PMPL-1.0-or-later
33
//
44
// These tests verify that the Zig FFI correctly implements the Idris2 ABI
55

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[package]
33
name = "conflow-fuzz"
44
version = "0.0.0"
5-
authors = ["hyperpolymath"]
5+
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
66
publish = false
77
edition = "2021"
88

0 commit comments

Comments
 (0)