Version in base suite: 2.8.3-1 Base version: fpdf2_2.8.3-1 Target version: fpdf2_2.8.3-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/f/fpdf2/fpdf2_2.8.3-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/f/fpdf2/fpdf2_2.8.3-1+deb13u1.dsc changelog | 7 ++++++ patches/0010-Fix-wrongly-removing-fvar-table.patch | 23 +++++++++++++++++++++ patches/series | 1 3 files changed, 31 insertions(+) diff -Nru fpdf2-2.8.3/debian/changelog fpdf2-2.8.3/debian/changelog --- fpdf2-2.8.3/debian/changelog 2025-05-06 08:38:52.000000000 +0000 +++ fpdf2-2.8.3/debian/changelog 2025-08-21 09:50:07.000000000 +0000 @@ -1,3 +1,10 @@ +fpdf2 (2.8.3-1+deb13u1) trixie; urgency=medium + + * Stop wrongly removing fvar table, allowing again the use of fpdf2 with + variable fonts. (Closes: 1110990) + + -- Elena Grandi Thu, 21 Aug 2025 11:50:07 +0200 + fpdf2 (2.8.3-1) unstable; urgency=medium * New upstream release diff -Nru fpdf2-2.8.3/debian/patches/0010-Fix-wrongly-removing-fvar-table.patch fpdf2-2.8.3/debian/patches/0010-Fix-wrongly-removing-fvar-table.patch --- fpdf2-2.8.3/debian/patches/0010-Fix-wrongly-removing-fvar-table.patch 1970-01-01 00:00:00.000000000 +0000 +++ fpdf2-2.8.3/debian/patches/0010-Fix-wrongly-removing-fvar-table.patch 2025-08-21 09:50:07.000000000 +0000 @@ -0,0 +1,23 @@ +From: Elena ``of Valhalla'' Grandi +Date: Thu, 21 Aug 2025 11:46:43 +0200 +Subject: Fix wrongly removing fvar table + +Origin: upstream, https://github.com/py-pdf/fpdf2/pull/1529/commits/7884fedff84f91694ef0c9cf53e396a5dc7e9ba9 +Bug: https://github.com/py-pdf/fpdf2/issues/1528 + +--- + fpdf/output.py | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/fpdf/output.py b/fpdf/output.py +index d024414..5051121 100644 +--- a/fpdf/output.py ++++ b/fpdf/output.py +@@ -818,7 +818,6 @@ class OutputProducer: + "SVG ", # SVG table + "CPAL", # Color Palette table + "COLR", # Color table +- "fvar", # Font Variations table + ] + subsetter = ftsubset.Subsetter(options) + subsetter.populate(glyphs=glyph_names) diff -Nru fpdf2-2.8.3/debian/patches/series fpdf2-2.8.3/debian/patches/series --- fpdf2-2.8.3/debian/patches/series 2025-05-06 08:38:52.000000000 +0000 +++ fpdf2-2.8.3/debian/patches/series 2025-08-21 09:50:07.000000000 +0000 @@ -7,3 +7,4 @@ 0007-Allow-a-test-to-run-on-different-pytest-versions.patch 0008-Ignore-a-spurious-ResourceWarning-in-one-of-the-test.patch 0010-Temporarily-skip-a-pdfa-test.patch +0010-Fix-wrongly-removing-fvar-table.patch