From: Felipe Correa da Silva Sanches Date: Fri, 29 May 2026 08:06:21 +0000 (+0100) Subject: Big Shoulders Stencil Text: correct override config source path for fontc_crater... X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=699c0d8b63799e84dfcb8df9fd6575fe389ea25a;p=thirdparty%2Fgoogle%2Ffonts.git Big Shoulders Stencil Text: correct override config source path for fontc_crater build The override config.yaml used `../`-prefixed paths that escape the repo root when resolved by the build harness. Removed the `../` prefix and corrected the .glyphs source name to the underscored form present at the pinned commit. Recipe output paths made repo-root-relative likewise. Repo: xotypeco/big_shoulders Commit: 41153e6fe01d218e933919a1d08c8e45065bc8fe (unchanged; verified correct) Config: ../Big-Shoulders... -> Big-Shoulders-Stencil/sources/Big_Shoulders_Stencil.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) --- diff --git a/ofl/bigshouldersstenciltext/config.yaml b/ofl/bigshouldersstenciltext/config.yaml index f9d442b219..a9e549b685 100644 --- a/ofl/bigshouldersstenciltext/config.yaml +++ b/ofl/bigshouldersstenciltext/config.yaml @@ -1,8 +1,8 @@ sources: - - ../Big-Shoulders-Stencil/sources/BigShouldersStencil.glyphs + - Big-Shoulders-Stencil/sources/Big_Shoulders_Stencil.glyphs recipe: - ../Big-Shoulders-Stencil/fonts/variable/text/BigShouldersStencilText[wght].ttf: - - source: ../Big-Shoulders-Stencil/sources/BigShouldersStencil.glyphs + Big-Shoulders-Stencil/fonts/variable/text/BigShouldersStencilText[wght].ttf: + - source: Big-Shoulders-Stencil/sources/Big_Shoulders_Stencil.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-Stencil/fonts/variable/text/BigShouldersStencilTextSC[wght].ttf: - - source: ../Big-Shoulders-Stencil/sources/BigShouldersStencil.glyphs + Big-Shoulders-Stencil/fonts/variable/text/BigShouldersStencilTextSC[wght].ttf: + - source: Big-Shoulders-Stencil/sources/Big_Shoulders_Stencil.glyphs - args: --filter ... --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter operation: buildVariable - operation: subspace diff --git a/ofl/bigshouldersstenciltext/upstream_info.md b/ofl/bigshouldersstenciltext/upstream_info.md index 754a66992e..5759b447fa 100644 --- a/ofl/bigshouldersstenciltext/upstream_info.md +++ b/ofl/bigshouldersstenciltext/upstream_info.md @@ -91,3 +91,12 @@ Note: No `commit` field on main branch. - The METADATA.pb on main is missing the `commit` field - Same font update batch as Big Shoulders Stencil Display (both PR #3435 and #3436, same upstream commit) - Date added to Google Fonts: 2020-10-13 (v1.000), updated 2021-09-08 (v2.000) + + +## 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 and the `.glyphs` source name was corrected to the underscored form present at the pinned commit: `Big-Shoulders-Stencil/sources/Big_Shoulders_Stencil.glyphs` (verified present at the pinned commit `41153e6`). 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.