Skip to content

Commit 9dff003

Browse files
hyperpolymathclaude
andcommitted
fix: correct email jonathan.jewell → j.d.a.jewell
Part of global TODO cleanup (2026-03-16). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 48f3db3 commit 9dff003

20 files changed

Lines changed: 22 additions & 22 deletions

File tree

opsm_ex/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: PMPL-1.0-or-later
2-
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <jonathan.jewell@open.ac.uk>
2+
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
33
#
44
# Multi-stage Containerfile for OPSM (Elixir + Rust NIFs)
55
# Uses Chainguard Wolfi for minimal attack surface
@@ -98,7 +98,7 @@ CMD ["/app/bin/opsm", "start"]
9898
LABEL org.opencontainers.image.title="OPSM" \
9999
org.opencontainers.image.description="Universal package manager with post-quantum crypto, QUIC/HTTP3, and 42 registry adapters" \
100100
org.opencontainers.image.version="1.2.0" \
101-
org.opencontainers.image.authors="Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>" \
101+
org.opencontainers.image.authors="Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>" \
102102
org.opencontainers.image.licenses="PMPL-1.0-or-later" \
103103
org.opencontainers.image.source="https://github.com/hyperpolymath/odds-and-sods-package-manager" \
104104
org.opencontainers.image.vendor="hyperpolymath" \

opsm_ex/lib/opsm/manifest/opsm_toml.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defmodule Opsm.Manifest.OpsmToml do
1010
version = "1.0.0"
1111
license = "PMPL-1.0-or-later"
1212
description = "A useful tool"
13-
authors = ["Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>"]
13+
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
1414
keywords = ["tool", "utility"]
1515
1616
[dependencies]

opsm_ex/lib/opsm/registries/eclexia.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ defmodule Opsm.Registries.Eclexia do
245245
|> String.trim()
246246
end
247247

248-
defp parse_authors(nil), do: ["Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>"]
248+
defp parse_authors(nil), do: ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
249249
defp parse_authors(str) when is_binary(str) do
250250
# TOML array in string form: ["Author One", "Author Two"]
251251
str

opsm_ex/native/opsm_pq_nif/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: PMPL-1.0-or-later
2-
// Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <jonathan.jewell@open.ac.uk>
2+
// Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
33
//
44
// Post-quantum cryptographic NIFs for OPSM.
55
//

opsm_ex/native/quic_transport/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: PMPL-1.0-or-later
2-
// Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <jonathan.jewell@open.ac.uk>
2+
// Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
33
//
44
// QUIC/HTTP3 transport NIF for OPSM.
55
// Uses quinn (QUIC) + h3 (HTTP/3) to provide fast registry fetches.

opsm_ex/test/integration/manifest_roundtrip_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defmodule Opsm.Integration.ManifestRoundtripTest do
1515
license: "PMPL-1.0-or-later",
1616
homepage: "https://example.com/roundtrip",
1717
repository: "https://github.com/hyperpolymath/roundtrip-test",
18-
authors: ["Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>"],
18+
authors: ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"],
1919
keywords: ["test", "roundtrip"],
2020
dependencies: %{"dep_a" => "1.0.0", "dep_b" => "2.3.0"},
2121
dev_dependencies: %{"test_dep" => "0.5.0"},

opsm_ex/test/opsm/integration/manifest_roundtrip_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: PMPL-1.0-or-later
2-
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <jonathan.jewell@open.ac.uk>
2+
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
33
#
44
# Integration tests for OPSM's manifest conversion pipeline.
55
# Validates round-trip conversion of various manifest formats

opsm_ex/test/opsm/integration/pq_trust_pipeline_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: PMPL-1.0-or-later
2-
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <jonathan.jewell@open.ac.uk>
2+
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
33
#
44
# Integration tests for OPSM's post-quantum trust pipeline.
55
# Validates trust attestation, hybrid signatures, PQ algorithm

opsm_ex/test/opsm/integration/slsa_pipeline_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: PMPL-1.0-or-later
2-
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <jonathan.jewell@open.ac.uk>
2+
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
33
#
44
# Integration tests for OPSM's SLSA provenance pipeline.
55
# Validates provenance generation, verification, lockfile metadata,

opsm_ex/test/opsm/manifest/opsm_toml_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule Opsm.Manifest.OpsmTomlTest do
1111
version = "1.0.0"
1212
license = "PMPL-1.0-or-later"
1313
description = "A useful tool"
14-
authors = ["Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>"]
14+
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
1515
keywords = ["tool", "utility"]
1616
1717
[dependencies]
@@ -36,7 +36,7 @@ defmodule Opsm.Manifest.OpsmTomlTest do
3636
assert manifest.version == "1.0.0"
3737
assert manifest.license == "PMPL-1.0-or-later"
3838
assert manifest.description == "A useful tool"
39-
assert "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>" in manifest.authors
39+
assert "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>" in manifest.authors
4040
assert "tool" in manifest.keywords
4141
end
4242

0 commit comments

Comments
 (0)