]> git.ipfire.org Git - thirdparty/google/fonts.git/commitdiff
Mogra: fix override config source path for fontc_crater build
authorFelipe Correa da Silva Sanches <juca@members.fsf.org>
Thu, 21 May 2026 20:27:17 +0000 (21:27 +0100)
committerFelipe Corrêa da Silva Sanches <juca@members.fsf.org>
Thu, 21 May 2026 22:03:22 +0000 (23:03 +0100)
The override config.yaml listed the Glyphs source as Mogra.glyphs at the
repository root, but at the recorded commit (048039d) the source is
sources/Mogra.glyphs. fontc_crater failed with "missing source
'Mogra.glyphs'".

Corrected the config.yaml source path to sources/Mogra.glyphs. The
recorded commit is correct and was left unchanged.

Assisted by an AI agent (Claude Opus 4.7)

ofl/mogra/config.yaml
ofl/mogra/upstream_info.md

index 5a401f90d9fe492b3f7c29ebc6d4459b9e0b461c..53f97755541792cbc5cc94b40a8d17d8865e6bb2 100644 (file)
@@ -3,4 +3,4 @@
 # The shipped binary may have been built with different tools/versions.
 #
 sources:
-  - Mogra.glyphs
+  - sources/Mogra.glyphs
index 71fc6722f1489e15ec04c241829d5a819f9933f6..1b6edb8b0a5a86ca75fa411f044260132f5aaba8 100644 (file)
@@ -29,3 +29,19 @@ A source block was added to METADATA.pb pointing to this repository and commit.
 ## Confidence: High
 
 Direct match between the upstream repository owner (Lipi Raval) and the font designer.
+
+## fontc_crater Build Fix (2026-05-21)
+
+**Model**: Claude Opus 4.7
+
+### Initial state
+The override `config.yaml` listed `sources: [Mogra.glyphs]` — a repository-root path. fontc_crater failed with `missing source 'Mogra.glyphs'`.
+
+### Investigation
+At the recorded commit `048039d` the Glyphs source is `sources/Mogra.glyphs`, not at the repository root. The override config path was missing the `sources/` directory prefix. The recorded commit is correct.
+
+### Actions taken
+The override `config.yaml` source path was corrected from `Mogra.glyphs` to `sources/Mogra.glyphs`.
+
+### Final state
+The override `config.yaml` references `sources/Mogra.glyphs`, which exists at the recorded commit `048039d`.