]> git.ipfire.org Git - thirdparty/google/fonts.git/commitdiff
Big Shoulders Inline Display SC: correct override config source path for fontc_crater...
authorFelipe Correa da Silva Sanches <juca@members.fsf.org>
Fri, 29 May 2026 08:06:22 +0000 (09:06 +0100)
committerFelipe Corrêa da Silva Sanches <juca@members.fsf.org>
Fri, 29 May 2026 09:48:35 +0000 (10:48 +0100)
The override config.yaml used `../`-prefixed paths that escape the repo
root when resolved by the build harness. Removed the `../` prefix (the source filename already matched the pinned commit).
Recipe output paths made repo-root-relative likewise.

Repo:   xotypeco/big_shoulders
Commit: 0b3d09a86862b19efae28eae0cd868f17c476b20 (unchanged; verified correct)
Config: ../Big-Shoulders... -> Big-Shoulders-Inline/sources/BigShouldersInline.glyphs (and recipe outputs)
Status: source path corrected (verified present at build commit; gftools-builder smoke-test passed)
Confidence: High

Assisted by an AI agent (Claude Opus 4.8)

ofl/bigshouldersinlinedisplaysc/config.yaml
ofl/bigshouldersinlinedisplaysc/upstream_info.md

index 11d23d7dccbca77aa2fda3aa2e220b4aeae5a006..e5c5ba54fc511427b36384d12503e47da9a96f4d 100644 (file)
@@ -1,8 +1,8 @@
 sources:
-    - ../Big-Shoulders-Inline/sources/BigShouldersInline.glyphs
+    - Big-Shoulders-Inline/sources/BigShouldersInline.glyphs
 recipe:
-  ../Big-Shoulders-Inline/fonts/variable/display/BigShouldersInlineDisplay[wght].ttf:
-    - source: ../Big-Shoulders-Inline/sources/BigShouldersInline.glyphs
+  Big-Shoulders-Inline/fonts/variable/display/BigShouldersInlineDisplay[wght].ttf:
+    - source: Big-Shoulders-Inline/sources/BigShouldersInline.glyphs
     - args: --filter ...  --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter
       operation: buildVariable
     - operation: subspace
@@ -13,8 +13,8 @@ recipe:
     - operation: fix
     - postprocess: buildStat
   # And now the small caps family
-  ../Big-Shoulders-Inline/fonts/variable/display/BigShouldersInlineDisplaySC[wght].ttf:
-    - source: ../Big-Shoulders-Inline/sources/BigShouldersInline.glyphs
+  Big-Shoulders-Inline/fonts/variable/display/BigShouldersInlineDisplaySC[wght].ttf:
+    - source: Big-Shoulders-Inline/sources/BigShouldersInline.glyphs
     - args: --filter ...  --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter
       operation: buildVariable
     - operation: subspace
index 5ef802469aa7866a5223e881c1ea186df55adadc..97707242c6ce13579d7b1fa99cd727caff415bef 100644 (file)
@@ -89,3 +89,12 @@ All changes were merged via PR #7786 on 2024-06-25.
 ## Conclusion
 
 The source metadata for Big Shoulders Inline Display SC was **complete and correct**. The repository URL, commit hash, and override config.yaml were all present and verified. The commit `0b3d09a` was confirmed as the HEAD of upstream `master` at the time of onboarding, with no subsequent upstream changes until well after the google/fonts merge. The override config.yaml correctly handled the specialized build process (subspacing + small caps remapping) that the upstream config did not support. No changes were needed.
+
+
+## Correction (2026-05-28) — override config source path
+
+**Model**: Claude Opus 4.8
+
+fontc_crater reported `missing source '../Big-Shoulders/sources/BigShoulders.glyphs'` for the xotypeco/big_shoulders monorepo. The override `config.yaml` used paths prefixed with `../`, which the build harness resolves relative to the repository root and therefore escape the checkout. For this family the repo-escaping `../` prefix was removed (the source filename already matched the file present at the pinned commit): `Big-Shoulders-Inline/sources/BigShouldersInline.glyphs` (verified present at the pinned commit `0b3d09a`). The recipe output paths were made repo-root-relative likewise. The pinned commit is unchanged.
+
+A local gftools-builder smoke-test of the corrected config built the variable TTFs successfully (RC=0), confirming the path fix is sufficient.