fonttools 4.55.8__cp312-cp312-macosx_10_13_x86_64.whl → 4.56.0__cp312-cp312-macosx_10_13_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fonttools might be problematic. Click here for more details.
- fontTools/__init__.py +1 -1
- fontTools/cu2qu/cu2qu.cpython-312-darwin.so +0 -0
- fontTools/feaLib/error.py +1 -1
- fontTools/feaLib/lexer.cpython-312-darwin.so +0 -0
- fontTools/misc/bezierTools.cpython-312-darwin.so +0 -0
- fontTools/misc/testTools.py +3 -0
- fontTools/pens/momentsPen.cpython-312-darwin.so +0 -0
- fontTools/qu2cu/qu2cu.cpython-312-darwin.so +0 -0
- fontTools/ttLib/tables/otData.py +1 -1
- fontTools/ttLib/tables/otTables.py +21 -17
- fontTools/ttLib/tables/otTraverse.py +2 -1
- fontTools/ttLib/ttFont.py +6 -2
- fontTools/varLib/__init__.py +1 -12
- fontTools/varLib/iup.cpython-312-darwin.so +0 -0
- fontTools/varLib/varStore.py +9 -37
- {fonttools-4.55.8.dist-info → fonttools-4.56.0.dist-info}/METADATA +10 -1
- {fonttools-4.55.8.dist-info → fonttools-4.56.0.dist-info}/RECORD +22 -22
- {fonttools-4.55.8.data → fonttools-4.56.0.data}/data/share/man/man1/ttx.1 +0 -0
- {fonttools-4.55.8.dist-info → fonttools-4.56.0.dist-info}/LICENSE +0 -0
- {fonttools-4.55.8.dist-info → fonttools-4.56.0.dist-info}/WHEEL +0 -0
- {fonttools-4.55.8.dist-info → fonttools-4.56.0.dist-info}/entry_points.txt +0 -0
- {fonttools-4.55.8.dist-info → fonttools-4.56.0.dist-info}/top_level.txt +0 -0
fontTools/__init__.py
CHANGED
|
Binary file
|
fontTools/feaLib/error.py
CHANGED
|
Binary file
|
|
Binary file
|
fontTools/misc/testTools.py
CHANGED
|
Binary file
|
|
Binary file
|
fontTools/ttLib/tables/otData.py
CHANGED
|
@@ -2226,24 +2226,28 @@ _equivalents = {
|
|
|
2226
2226
|
def fixLookupOverFlows(ttf, overflowRecord):
|
|
2227
2227
|
"""Either the offset from the LookupList to a lookup overflowed, or
|
|
2228
2228
|
an offset from a lookup to a subtable overflowed.
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2229
|
+
|
|
2230
|
+
The table layout is::
|
|
2231
|
+
|
|
2232
|
+
GPSO/GUSB
|
|
2233
|
+
Script List
|
|
2234
|
+
Feature List
|
|
2235
|
+
LookUpList
|
|
2236
|
+
Lookup[0] and contents
|
|
2237
|
+
SubTable offset list
|
|
2238
|
+
SubTable[0] and contents
|
|
2239
|
+
...
|
|
2240
|
+
SubTable[n] and contents
|
|
2241
|
+
...
|
|
2242
|
+
Lookup[n] and contents
|
|
2243
|
+
SubTable offset list
|
|
2244
|
+
SubTable[0] and contents
|
|
2245
|
+
...
|
|
2246
|
+
SubTable[n] and contents
|
|
2247
|
+
|
|
2245
2248
|
If the offset to a lookup overflowed (SubTableIndex is None)
|
|
2246
|
-
we must promote the *previous*
|
|
2249
|
+
we must promote the *previous* lookup to an Extension type.
|
|
2250
|
+
|
|
2247
2251
|
If the offset from a lookup to subtable overflowed, then we must promote it
|
|
2248
2252
|
to an Extension Lookup type.
|
|
2249
2253
|
"""
|
|
@@ -79,7 +79,8 @@ def bfs_base_table(
|
|
|
79
79
|
"""Breadth-first search tree of BaseTables.
|
|
80
80
|
|
|
81
81
|
Args:
|
|
82
|
-
|
|
82
|
+
root
|
|
83
|
+
the root of the tree.
|
|
83
84
|
root_accessor (Optional[str]): attribute name for the root table, if any (mostly
|
|
84
85
|
useful for debugging).
|
|
85
86
|
skip_root (Optional[bool]): if True, the root itself is not visited, only its
|
fontTools/ttLib/ttFont.py
CHANGED
|
@@ -27,6 +27,7 @@ class TTFont(object):
|
|
|
27
27
|
they're actually accessed. This means that simple operations can be extremely fast.
|
|
28
28
|
|
|
29
29
|
Example usage:
|
|
30
|
+
|
|
30
31
|
.. code-block:: pycon
|
|
31
32
|
|
|
32
33
|
>>>
|
|
@@ -39,8 +40,10 @@ class TTFont(object):
|
|
|
39
40
|
>> tt['head'].unitsPerEm
|
|
40
41
|
2048
|
|
41
42
|
|
|
42
|
-
For details of the objects returned when accessing each table, see
|
|
43
|
+
For details of the objects returned when accessing each table, see the
|
|
44
|
+
:doc:`tables </ttLib/tables>` documentation.
|
|
43
45
|
To add a table to the font, use the :py:func:`newTable` function:
|
|
46
|
+
|
|
44
47
|
.. code-block:: pycon
|
|
45
48
|
|
|
46
49
|
>>>
|
|
@@ -50,7 +53,8 @@ class TTFont(object):
|
|
|
50
53
|
>> font["OS/2"] = os2
|
|
51
54
|
|
|
52
55
|
TrueType fonts can also be serialized to and from XML format (see also the
|
|
53
|
-
:
|
|
56
|
+
:doc:`ttx </ttx>` binary):
|
|
57
|
+
|
|
54
58
|
.. code-block:: pycon
|
|
55
59
|
|
|
56
60
|
>>
|
fontTools/varLib/__init__.py
CHANGED
|
@@ -325,7 +325,6 @@ def _add_gvar(font, masterModel, master_ttfs, tolerance=0.5, optimize=True):
|
|
|
325
325
|
|
|
326
326
|
for glyph in font.getGlyphOrder():
|
|
327
327
|
log.debug("building gvar for glyph '%s'", glyph)
|
|
328
|
-
isComposite = glyf[glyph].isComposite()
|
|
329
328
|
|
|
330
329
|
allData = [
|
|
331
330
|
m.glyf._getCoordinatesAndControls(glyph, m.hMetrics, m.vMetrics)
|
|
@@ -363,7 +362,7 @@ def _add_gvar(font, masterModel, master_ttfs, tolerance=0.5, optimize=True):
|
|
|
363
362
|
endPts = control.endPts
|
|
364
363
|
|
|
365
364
|
for i, (delta, support) in enumerate(zip(deltas[1:], supports[1:])):
|
|
366
|
-
if all(v == 0 for v in delta.array)
|
|
365
|
+
if all(v == 0 for v in delta.array):
|
|
367
366
|
continue
|
|
368
367
|
var = TupleVariation(support, delta)
|
|
369
368
|
if optimize:
|
|
@@ -372,16 +371,6 @@ def _add_gvar(font, masterModel, master_ttfs, tolerance=0.5, optimize=True):
|
|
|
372
371
|
)
|
|
373
372
|
|
|
374
373
|
if None in delta_opt:
|
|
375
|
-
"""In composite glyphs, there should be one 0 entry
|
|
376
|
-
to make sure the gvar entry is written to the font.
|
|
377
|
-
|
|
378
|
-
This is to work around an issue with macOS 10.14 and can be
|
|
379
|
-
removed once the behaviour of macOS is changed.
|
|
380
|
-
|
|
381
|
-
https://github.com/fonttools/fonttools/issues/1381
|
|
382
|
-
"""
|
|
383
|
-
if all(d is None for d in delta_opt):
|
|
384
|
-
delta_opt = [(0, 0)] + [None] * (len(delta_opt) - 1)
|
|
385
374
|
# Use "optimized" version only if smaller...
|
|
386
375
|
var_opt = TupleVariation(support, delta_opt)
|
|
387
376
|
|
|
Binary file
|
fontTools/varLib/varStore.py
CHANGED
|
@@ -412,25 +412,6 @@ class _Encoding(object):
|
|
|
412
412
|
def extend(self, lst):
|
|
413
413
|
self.items.update(lst)
|
|
414
414
|
|
|
415
|
-
def get_room(self):
|
|
416
|
-
"""Maximum number of bytes that can be added to characteristic
|
|
417
|
-
while still being beneficial to merge it into another one."""
|
|
418
|
-
count = len(self.items)
|
|
419
|
-
return max(0, (self.overhead - 1) // count - self.width)
|
|
420
|
-
|
|
421
|
-
room = property(get_room)
|
|
422
|
-
|
|
423
|
-
def get_gain(self):
|
|
424
|
-
"""Maximum possible byte gain from merging this into another
|
|
425
|
-
characteristic."""
|
|
426
|
-
count = len(self.items)
|
|
427
|
-
return max(0, self.overhead - count)
|
|
428
|
-
|
|
429
|
-
gain = property(get_gain)
|
|
430
|
-
|
|
431
|
-
def gain_sort_key(self):
|
|
432
|
-
return self.gain, self.chars
|
|
433
|
-
|
|
434
415
|
def width_sort_key(self):
|
|
435
416
|
return self.width, self.chars
|
|
436
417
|
|
|
@@ -534,13 +515,9 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
|
|
|
534
515
|
# of the old encoding is completely eliminated. However, each row
|
|
535
516
|
# now would require more bytes to encode, to the tune of one byte
|
|
536
517
|
# per characteristic bit that is active in the new encoding but not
|
|
537
|
-
# in the old one.
|
|
538
|
-
# while still beneficial to merge it into another encoding is called
|
|
539
|
-
# the "room" for that encoding.
|
|
518
|
+
# in the old one.
|
|
540
519
|
#
|
|
541
|
-
# The "gain" of
|
|
542
|
-
# save by merging it into another encoding. The "gain" of merging
|
|
543
|
-
# two encodings is how many bytes we save by doing so.
|
|
520
|
+
# The "gain" of merging two encodings is how many bytes we save by doing so.
|
|
544
521
|
#
|
|
545
522
|
# High-level algorithm:
|
|
546
523
|
#
|
|
@@ -554,7 +531,11 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
|
|
|
554
531
|
#
|
|
555
532
|
# - Put all encodings into a "todo" list.
|
|
556
533
|
#
|
|
557
|
-
# - Sort todo list
|
|
534
|
+
# - Sort todo list (for stability) by width_sort_key(), which is a tuple
|
|
535
|
+
# of the following items:
|
|
536
|
+
# * The "width" of the encoding.
|
|
537
|
+
# * The characteristic bitmap of the encoding, with higher-numbered
|
|
538
|
+
# columns compared first.
|
|
558
539
|
#
|
|
559
540
|
# - Make a priority-queue of the gain from combining each two
|
|
560
541
|
# encodings in the todo list. The priority queue is sorted by
|
|
@@ -575,16 +556,7 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
|
|
|
575
556
|
#
|
|
576
557
|
# The output is then sorted for stability, in the following way:
|
|
577
558
|
# - The VarRegionList of the input is kept intact.
|
|
578
|
-
# -
|
|
579
|
-
# gain_key_sort(), which is a tuple of the following items:
|
|
580
|
-
# * The gain of the encoding.
|
|
581
|
-
# * The characteristic bitmap of the encoding, with higher-numbered
|
|
582
|
-
# columns compared first.
|
|
583
|
-
# - The VarData is sorted by width_sort_key(), which is a tuple
|
|
584
|
-
# of the following items:
|
|
585
|
-
# * The "width" of the encoding.
|
|
586
|
-
# * The characteristic bitmap of the encoding, with higher-numbered
|
|
587
|
-
# columns compared first.
|
|
559
|
+
# - The VarData is sorted by the same width_sort_key() used at the beginning.
|
|
588
560
|
# - Within each VarData, the items are sorted as vectors of numbers.
|
|
589
561
|
#
|
|
590
562
|
# Finally, each VarData is optimized to remove the empty columns and
|
|
@@ -626,7 +598,7 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
|
|
|
626
598
|
front_mapping[(major << 16) + minor] = row
|
|
627
599
|
|
|
628
600
|
# Prepare for the main algorithm.
|
|
629
|
-
todo = sorted(encodings.values(), key=_Encoding.
|
|
601
|
+
todo = sorted(encodings.values(), key=_Encoding.width_sort_key)
|
|
630
602
|
del encodings
|
|
631
603
|
|
|
632
604
|
# Repeatedly pick two best encodings to combine, and combine them.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: fonttools
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.56.0
|
|
4
4
|
Summary: Tools to manipulate font files
|
|
5
5
|
Home-page: http://github.com/fonttools/fonttools
|
|
6
6
|
Author: Just van Rossum
|
|
@@ -391,6 +391,15 @@ Have fun!
|
|
|
391
391
|
Changelog
|
|
392
392
|
~~~~~~~~~
|
|
393
393
|
|
|
394
|
+
4.56.0 (released 2025-02-07)
|
|
395
|
+
----------------------------
|
|
396
|
+
|
|
397
|
+
- [varStore] Sort the input todo list with the same sorting key used for the opimizer's output (#3767).
|
|
398
|
+
- [otData] Fix DeviceTable's ``DeltaValue`` repeat value which caused a crash after importing from XML and then compiling a GPOS containing Device tables (#3758).
|
|
399
|
+
- [feaLib] Make ``FeatureLibError`` pickleable, so client can e.g. use feaLib to can compile features in parallel with multiprocessing (#3762).
|
|
400
|
+
- [varLib/gvar] Removed workaround for old, long-fixed macOS bug about composite glyphs with all zero deltas (#1381, #1788).
|
|
401
|
+
- [Docs] Updated ttLib documentation, beefed up TTFont and TTGlyphSet explanations (#3720).
|
|
402
|
+
|
|
394
403
|
4.55.8 (released 2025-01-29)
|
|
395
404
|
----------------------------
|
|
396
405
|
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
fonttools-4.55.8.dist-info/RECORD,,
|
|
2
|
-
fonttools-4.55.8.dist-info/LICENSE,sha256=Z4cgj4P2Wcy8IiOy_elS_6b36KymLxqKK_W8UbsbI4M,1072
|
|
3
|
-
fonttools-4.55.8.dist-info/WHEEL,sha256=FBd6an5AFoPq_6i7rX7RY9hnbsVzpIPkc8xRof4mLK4,111
|
|
4
|
-
fonttools-4.55.8.dist-info/entry_points.txt,sha256=8kVHddxfFWA44FSD4mBpmC-4uCynQnkoz_9aNJb227Y,147
|
|
5
|
-
fonttools-4.55.8.dist-info/top_level.txt,sha256=rRgRylrXzekqWOsrhygzib12pQ7WILf7UGjqEwkIFDM,10
|
|
6
|
-
fonttools-4.55.8.dist-info/METADATA,sha256=MiUIvxVITe5f3ZDPJsVR8esUSUHMbTgUqamI9YF5fuk,101219
|
|
7
1
|
fontTools/ttx.py,sha256=XCerBn2ySMc5Bn54io4j5U5cW228GFREYvEeuvp0ZfM,16652
|
|
8
2
|
fontTools/fontBuilder.py,sha256=ntG0lXnhXNcHK-C7bp0nGNQ68OutFA-84TNNpzntTcE,33952
|
|
9
3
|
fontTools/unicode.py,sha256=ZZ7OMmWvIyV1IL1k6ioTzaRAh3tUvm6gvK7QgFbOIHY,1237
|
|
10
|
-
fontTools/__init__.py,sha256=
|
|
4
|
+
fontTools/__init__.py,sha256=_orqitJ6zKfuWG-XX0I6vuq1MhBXcEAA8-wdaVMksIo,183
|
|
11
5
|
fontTools/tfmLib.py,sha256=UMbkM73JXRJVS9t2B-BJc13rSjImaWBuzCoehLwHFhs,14270
|
|
12
6
|
fontTools/afmLib.py,sha256=1MagIItOzRV4vV5kKPxeDZbPJsfxLB3wdHLFkQvl0uk,13164
|
|
13
7
|
fontTools/agl.py,sha256=05bm8Uq45uVWW8nPbP6xbNgmFyxQr8sWhYAiP0VSjnI,112975
|
|
@@ -22,9 +16,9 @@ fontTools/qu2cu/__init__.py,sha256=Jfm1JljXbt91w4gyvZn6jzEmVnhRx50sh2fDongrOsE,6
|
|
|
22
16
|
fontTools/qu2cu/qu2cu.py,sha256=IYtpkwHdfKOXJr65Y_pJ9Lrt_MgJaISAKGMAs5ilFSM,12288
|
|
23
17
|
fontTools/qu2cu/cli.py,sha256=U2rooYnVVEalGRAWGFHk-Kp6Okys8wtzdaWLjw1bngY,3714
|
|
24
18
|
fontTools/qu2cu/qu2cu.c,sha256=D7PGICR2s0JVhpLKrsS8siKXR_MAiCMIQErp-54RcLU,654934
|
|
25
|
-
fontTools/qu2cu/qu2cu.cpython-312-darwin.so,sha256=
|
|
19
|
+
fontTools/qu2cu/qu2cu.cpython-312-darwin.so,sha256=H3FSgiUE36-VOez1YgAyGJ1oKsC-6JC71e8sb_B4BVA,165336
|
|
26
20
|
fontTools/qu2cu/__main__.py,sha256=9FWf6SIZaRaC8SiL0LhjAWC2yIdY9N_9wlRko8m1l2Q,93
|
|
27
|
-
fontTools/misc/bezierTools.cpython-312-darwin.so,sha256=
|
|
21
|
+
fontTools/misc/bezierTools.cpython-312-darwin.so,sha256=7GrBdLIxpdl2_w6C8kDgx1jHz1NkvyN-QwIz3A_Dwfs,573200
|
|
28
22
|
fontTools/misc/arrayTools.py,sha256=jZk__GE-K9VViZE_H-LPPj0smWbKng-yfPE8BfGp8HI,11483
|
|
29
23
|
fontTools/misc/cython.py,sha256=eyLcL2Bw-SSToYro8f44dkkYRlQfiFbhcza0afS-qHE,682
|
|
30
24
|
fontTools/misc/cliTools.py,sha256=qCznJMLCQu3ZHQD_4ctUnr3TkfAUdkGl-UuxZUrppy0,1862
|
|
@@ -44,7 +38,7 @@ fontTools/misc/py23.py,sha256=aPVCEUz_deggwLBCeTSsccX6QgJavZqvdVtuhpzrPvA,2238
|
|
|
44
38
|
fontTools/misc/__init__.py,sha256=DJBWmoX_Haau7qlgmvWyfbhSzrX2qL636Rns7CG01pk,75
|
|
45
39
|
fontTools/misc/macRes.py,sha256=GT_pnfPw2NCvvOF86nHLAnOtZ6SMHqEuLntaplXzvHM,8579
|
|
46
40
|
fontTools/misc/encodingTools.py,sha256=hCv5PFfnXQJVCZA8Wyn1vr3vzLBbUuEPtGk5CzWM9RY,2073
|
|
47
|
-
fontTools/misc/testTools.py,sha256=
|
|
41
|
+
fontTools/misc/testTools.py,sha256=_JdQXAtThRxXKv8hHT2Arh6ezADIZyRJ8nO909A1bYE,7001
|
|
48
42
|
fontTools/misc/lazyTools.py,sha256=BC6MmF-OzJ3GrBD8TYDZ-VCSN4UOx0pN0r3oF4GSoiw,1020
|
|
49
43
|
fontTools/misc/loggingTools.py,sha256=2uXks8fEnBjdgJEcxMLvD77-lbOPto3neJ86bMqV_qM,19898
|
|
50
44
|
fontTools/misc/textTools.py,sha256=pbhr6LVhm3J-0Z4saYnJfxBDzyoiw4BR9pAgwypiOw8,3377
|
|
@@ -71,7 +65,7 @@ fontTools/cu2qu/cli.py,sha256=MbAQnOpZwrUFe_tjAP3Tgf6uLdOgHlONUcPNeTXwH0Y,6076
|
|
|
71
65
|
fontTools/cu2qu/errors.py,sha256=PyJNMy8lHDtKpfFkc0nkM8F4jNLZAC4lPQCN1Km4bpg,2441
|
|
72
66
|
fontTools/cu2qu/cu2qu.py,sha256=GGNdNWT4xgrvxeZTczIj9Nxi6vN-5lb90KyVmB95W0Y,16439
|
|
73
67
|
fontTools/cu2qu/__main__.py,sha256=kTUI-jczsHeelULLlory74QEeFjZWp9zigCc7PrdVQY,92
|
|
74
|
-
fontTools/cu2qu/cu2qu.cpython-312-darwin.so,sha256=
|
|
68
|
+
fontTools/cu2qu/cu2qu.cpython-312-darwin.so,sha256=flDjCiTbQQGHubaXrqAr0AAs1IWAVgf0zmuux2fn1vQ,159696
|
|
75
69
|
fontTools/subset/cff.py,sha256=rqMRJOlX5FacV1LW8aDlVOglgEM87TkMA9bdsYenask,6145
|
|
76
70
|
fontTools/subset/util.py,sha256=9SXFYb5Ef9Z58uXmYPCQil8B2i3Q7aFB_1fFDFSppdU,754
|
|
77
71
|
fontTools/subset/__init__.py,sha256=rCtpLcDkGAlfOKgo-TkyiynmK_BrXxit82IFfWWOOVs,133905
|
|
@@ -105,15 +99,15 @@ fontTools/varLib/plot.py,sha256=NoSZkJ5ndxNcDvJIvd5pQ9_jX6X1oM1K2G_tR4sdPVs,7494
|
|
|
105
99
|
fontTools/varLib/cff.py,sha256=EVgaQcoROIrYQsRuftnxFuGGldEPYbrIh5yBckylJC4,22901
|
|
106
100
|
fontTools/varLib/models.py,sha256=sj_ENljh_qcMbfYzRIOlRgHq6tFOmL02Wv6WO8uofis,22398
|
|
107
101
|
fontTools/varLib/avar.py,sha256=Ye_u0HHznaPQaTzufNFKDj_v9o_LxOKJoa_eTK1D1F0,9647
|
|
108
|
-
fontTools/varLib/__init__.py,sha256=
|
|
102
|
+
fontTools/varLib/__init__.py,sha256=Y3Yx5TlD6wN6GImZfrHsetdZJD4mH6p5VC8VU12ucMg,53391
|
|
109
103
|
fontTools/varLib/mutator.py,sha256=YJkKFFWjwpYZ1MrC7UZYJ1BuYTGiwgi7jHnpqNpKfKg,19278
|
|
110
104
|
fontTools/varLib/interpolatablePlot.py,sha256=w393P6mGLRhYkIjSxMww3qyoYxAUZzCXlmPBbI_84C0,44375
|
|
111
105
|
fontTools/varLib/builder.py,sha256=mSKOCcnnw-WzmZs15FayoqCDh77Ts7o9Tre9psh8CUc,6609
|
|
112
|
-
fontTools/varLib/iup.cpython-312-darwin.so,sha256=
|
|
106
|
+
fontTools/varLib/iup.cpython-312-darwin.so,sha256=0vM0aIAEj4hq_Bb8dlIqRF0iZDAZaBCeosPM_kUpU6o,201064
|
|
113
107
|
fontTools/varLib/stat.py,sha256=XuNKKZxGlBrl4OGFDAwVXhpBwJi23U3BdHmNTKoJnvE,4811
|
|
114
108
|
fontTools/varLib/interpolatableHelpers.py,sha256=lXd7kwfIVl-4opd-vxCDhf48RnJ7IQKv_uuFQM_6vaU,11496
|
|
115
109
|
fontTools/varLib/interpolatableTestStartingPoint.py,sha256=K6OYKBspim6BXc91pfLTbGLyi5XZukfMuBc6hRpENG8,4296
|
|
116
|
-
fontTools/varLib/varStore.py,sha256=
|
|
110
|
+
fontTools/varLib/varStore.py,sha256=gE3mrrL5aEIdMkIbOLI5NcElnP2IThC6NzQCjR0fhxU,24050
|
|
117
111
|
fontTools/varLib/interpolatable.py,sha256=Bhlq_LhEZ-sXfLNY8aFEChFrsKuT2kzmnuMfG5qi0v4,45221
|
|
118
112
|
fontTools/varLib/avarPlanner.py,sha256=uLMGsL6cBbEMq5YItwABG_vXlXV3bxquM93WGDJ1brA,27358
|
|
119
113
|
fontTools/varLib/mvar.py,sha256=LTV77vH_3Ecg_qKBO5xQzjLOlJir_ppEr7mPVZRgad8,2449
|
|
@@ -136,7 +130,7 @@ fontTools/pens/cocoaPen.py,sha256=IJRQcAxRuVOTQ90bB_Bgjnmz7px_ST5uLF9CW-Y0KPY,61
|
|
|
136
130
|
fontTools/pens/t2CharStringPen.py,sha256=uq9KCOxrk5TEZGYpcOG-pgkWHYCe4dMwb2hx5uYOmWA,2391
|
|
137
131
|
fontTools/pens/pointPen.py,sha256=IA0JVDaf8_aAvjRQv3asXItxxfzhv4gEEFvrlDlCx_k,22296
|
|
138
132
|
fontTools/pens/transformPen.py,sha256=s0kUyQdnemUwHvYr2SFboFmh4WY1S9OHBL8L4PJKRwE,4056
|
|
139
|
-
fontTools/pens/momentsPen.cpython-312-darwin.so,sha256=
|
|
133
|
+
fontTools/pens/momentsPen.cpython-312-darwin.so,sha256=HHmfnym7f_wAQV0Um4gNYEzkQTvufX_fCZBrDUrsUQg,141640
|
|
140
134
|
fontTools/pens/reportLabPen.py,sha256=kpfMfOLXt2vOQ5smPsU82ft80FpCPWJzQLl7ENOH8Ew,2066
|
|
141
135
|
fontTools/pens/filterPen.py,sha256=kKSvLmWCW4MkCF0ciJhjTj-LdUGOQL593PFkpm5PhP8,7790
|
|
142
136
|
fontTools/pens/areaPen.py,sha256=Y1WkmqzcC4z_bpGAR0IZUKrtHFtxKUQBmr5-64_zCOk,1472
|
|
@@ -189,7 +183,7 @@ fontTools/designspaceLib/types.py,sha256=ofK65qXNADqcpl7zI72Pa5s07-cm7G41iEmLVV4
|
|
|
189
183
|
fontTools/designspaceLib/split.py,sha256=FB1NuvhUO453UXveQZi9oyrW_caoCPM3RADp1rYWkDs,19239
|
|
190
184
|
fontTools/designspaceLib/statNames.py,sha256=lDqFxZAKSbpMuLsgbK6XtyHA5lqLyAK0t561wsSWmaM,9069
|
|
191
185
|
fontTools/designspaceLib/__main__.py,sha256=xhtYXo1T1tsykhQDD0tcconSNYgWL5hoTBORpVDUYrc,103
|
|
192
|
-
fontTools/feaLib/error.py,sha256=
|
|
186
|
+
fontTools/feaLib/error.py,sha256=Bz_5tNcNVcY7_nrAmFlQNhQldtqZWd8WUGQ2E3PWhZo,648
|
|
193
187
|
fontTools/feaLib/variableScalar.py,sha256=Xu8tpDlQbfIfjnKnYDEf43EqVdyIJUy8_1ROVPg9_mg,4069
|
|
194
188
|
fontTools/feaLib/lexer.c,sha256=vQ4myMvJqvp8rdY6YeEQJHM2Crw_eFajkHWefik884Q,750756
|
|
195
189
|
fontTools/feaLib/__init__.py,sha256=jlIru2ghxvb1HhC5Je2BCXjFJmFQlYKpruorPoz3BvQ,213
|
|
@@ -200,7 +194,7 @@ fontTools/feaLib/location.py,sha256=JXzHqGV56EHdcq823AwA5oaK05hf_1ySWpScbo3zGC0,
|
|
|
200
194
|
fontTools/feaLib/lexer.py,sha256=emyMPmRoqNZkzxnJyI6JRCCtXrbCOFofwa9O6ABGLiw,11121
|
|
201
195
|
fontTools/feaLib/ast.py,sha256=3DU5NKXesyNCVu5wcebGlnvwdMf0_NKrPgOvS0FrWSg,73800
|
|
202
196
|
fontTools/feaLib/__main__.py,sha256=Df2PA6LXwna98lSXiL7R4as_ZEdWCIk3egSM5w7GpvM,2240
|
|
203
|
-
fontTools/feaLib/lexer.cpython-312-darwin.so,sha256
|
|
197
|
+
fontTools/feaLib/lexer.cpython-312-darwin.so,sha256=pTsY2ER0OOcP_U0907L935UMB14KF1XfWhlu6u3zZ5w,199048
|
|
204
198
|
fontTools/ttLib/sfnt.py,sha256=rkznKfteU_Rn9P65WSjFaiwQgpEAoh-TrQpvkQhdIlo,22832
|
|
205
199
|
fontTools/ttLib/macUtils.py,sha256=lj3oeFpyjV7ko_JqnluneITmAtlc119J-vwTTg2s73A,1737
|
|
206
200
|
fontTools/ttLib/standardGlyphOrder.py,sha256=7AY_fVWdtwZ4iv5uWdyKAUcbEQiSDt1lN4sqx9xXwE0,5785
|
|
@@ -210,7 +204,7 @@ fontTools/ttLib/__init__.py,sha256=fjOFcwbRed9b_giTgJ7FLsqeJC8ndnx327WfJztW-Tc,5
|
|
|
210
204
|
fontTools/ttLib/removeOverlaps.py,sha256=YBtj1PX-d2jMgCiWGuI6ibghWApUWqH2trJGXNxrbjQ,12612
|
|
211
205
|
fontTools/ttLib/scaleUpem.py,sha256=U_-NGkwfS9GRIackdEXjGYZ-wSomcUPXQahDneLeArI,14618
|
|
212
206
|
fontTools/ttLib/reorderGlyphs.py,sha256=8ClsX9-tnPfuiD8kHY4jPliGJ-31-JdybA4s1UNWx4w,10316
|
|
213
|
-
fontTools/ttLib/ttFont.py,sha256=
|
|
207
|
+
fontTools/ttLib/ttFont.py,sha256=llMtJ3VnzRUEyHk606_ElVty3J80E9BHbJnWamB_lO0,41024
|
|
214
208
|
fontTools/ttLib/ttVisitor.py,sha256=_tah4C42Tv6Pm9QeLNQwwVCxqI4VNEAqYCbmThp6cvY,1025
|
|
215
209
|
fontTools/ttLib/woff2.py,sha256=Ryw4WVwUFMtdEo9FcIejP1OTV92Z4B9y5Wq7nWDW3lE,61058
|
|
216
210
|
fontTools/ttLib/__main__.py,sha256=3yxwadpQ5YTM27RXqG3sFE3EaOSFLQVHaUUH9P0qrSw,3443
|
|
@@ -233,7 +227,7 @@ fontTools/ttLib/tables/S_I_N_G_.py,sha256=CFDy8R2fDeYn7ocfrZr7Ui7U9D0h4G55CdPfY5
|
|
|
233
227
|
fontTools/ttLib/tables/V_V_A_R_.py,sha256=Cstw6tc_U4-EmTriRItBSpvTJODAjMFQjfyTaxLzsbI,319
|
|
234
228
|
fontTools/ttLib/tables/T_S_I__5.py,sha256=MMbUY3My4V5YTagNcSCu0q9wKzskG9nkUhOR0dp-GAI,1586
|
|
235
229
|
fontTools/ttLib/tables/grUtils.py,sha256=hcOJ5oJPOd2uJWnWA7qwR7AfL37YZ5zUT7g8o5BBV80,2270
|
|
236
|
-
fontTools/ttLib/tables/otTables.py,sha256=
|
|
230
|
+
fontTools/ttLib/tables/otTables.py,sha256=wgmNkSSLbZOkT_DrF7Y-ki8OGW7SC0A7Ue6OHUJQC4E,96972
|
|
237
231
|
fontTools/ttLib/tables/_c_v_a_r.py,sha256=35ayk2kX1pcLGwyx0y4I1l-r7LHgdKv0ulVx8oBPteI,3527
|
|
238
232
|
fontTools/ttLib/tables/otConverters.py,sha256=JI9b387HZwbPgf_0J2AO-nJA_wr6VHPJE1lC-H_An8E,74073
|
|
239
233
|
fontTools/ttLib/tables/_p_o_s_t.py,sha256=bTywskWvLwUPvSAa1oyWdUEq6upPziMDGvYT59ga2ac,11610
|
|
@@ -252,7 +246,7 @@ fontTools/ttLib/tables/D__e_b_g.py,sha256=vROIV3UTxbK9eN3rmHOu1ARwBiOXL6K5ihmq0Q
|
|
|
252
246
|
fontTools/ttLib/tables/F__e_a_t.py,sha256=ct79Gf__5ALlqfSBn6wvw6fazb31Od71R6vIp6o9XF4,5483
|
|
253
247
|
fontTools/ttLib/tables/C_O_L_R_.py,sha256=SHwFVNVmoUQR2e87KuTSe-J9LfeegS4f2hEpee29_2o,5993
|
|
254
248
|
fontTools/ttLib/tables/G__l_o_c.py,sha256=5DsxGzaG7HyJVvLlKQeff1lXt-XPWaHNNaf-EYwsKh4,2685
|
|
255
|
-
fontTools/ttLib/tables/otTraverse.py,sha256=
|
|
249
|
+
fontTools/ttLib/tables/otTraverse.py,sha256=HznEVAlVf_8eyqjsO2edgELtMlXnjnUqccK3PytvVUE,5518
|
|
256
250
|
fontTools/ttLib/tables/_m_o_r_x.py,sha256=OwamVpIO7REDnFr95HuFPoY_0U6i9zQPb11K1sFTvDY,548
|
|
257
251
|
fontTools/ttLib/tables/_l_t_a_g.py,sha256=9YpApjI-rZ4e3HeT8Pj-osiHl3uALD9JXg5O7pqk9L0,2552
|
|
258
252
|
fontTools/ttLib/tables/D_S_I_G_.py,sha256=AgQPM9Cdro1P-ehJjTfsC9mRTTtSc16At0nnpb1XOGI,5517
|
|
@@ -287,7 +281,7 @@ fontTools/ttLib/tables/_o_p_b_d.py,sha256=TNZv_2YTrj4dGzd6wA9Jb-KGZ99un177s5p3Ll
|
|
|
287
281
|
fontTools/ttLib/tables/V_A_R_C_.py,sha256=3jFX50J6X-Cc4dwwiztKKsDTRXVHTXlVdQH328UN1-k,289
|
|
288
282
|
fontTools/ttLib/tables/_h_m_t_x.py,sha256=C_-GIrH8rHEqEQtsGeYTc6XLtLeu6ibRl8AAQxkQng8,6042
|
|
289
283
|
fontTools/ttLib/tables/_a_n_k_r.py,sha256=MpAzIifmIi_3gx2oP6PC3R2lu36Ewsr2-W1rXjsz2Ug,483
|
|
290
|
-
fontTools/ttLib/tables/otData.py,sha256
|
|
284
|
+
fontTools/ttLib/tables/otData.py,sha256=-XXRwdVfP-Wz7oBjMPpku0A0QH9lw_fFGNzZlt9N0mo,197262
|
|
291
285
|
fontTools/ttLib/tables/G__l_a_t.py,sha256=Xh3IzFgYlvNjrAOn7Ja73DrWrQTJgJxmDFSUKS6yHdM,8645
|
|
292
286
|
fontTools/ttLib/tables/T_S_I__2.py,sha256=q2rub-d77iWWiBM6awO0-TCl-Xq7kalPobHYC2QEOfc,496
|
|
293
287
|
fontTools/ttLib/tables/asciiTable.py,sha256=4c69jsAirUnDEpylf9CYBoCKTzwbmfbtUAOrtPnpHjY,637
|
|
@@ -326,4 +320,10 @@ fontTools/colorLib/builder.py,sha256=kmO7OuudQQb3fEOS7aLzgTDVjqS9i2xIQmk9p1uBe8A
|
|
|
326
320
|
fontTools/colorLib/geometry.py,sha256=3ScySrR2YDJa7d5K5_xM5Yt1-3NCV-ry8ikYA5VwVbI,5518
|
|
327
321
|
fontTools/colorLib/errors.py,sha256=CsaviiRxxrpgVX4blm7KCyK8553ljwL44xkJOeC5U7U,41
|
|
328
322
|
fontTools/colorLib/unbuilder.py,sha256=iW-E5I39WsV82K3NgCO4Cjzwm1WqzGrtypHt8epwbHM,2142
|
|
329
|
-
fonttools-4.
|
|
323
|
+
fonttools-4.56.0.dist-info/RECORD,,
|
|
324
|
+
fonttools-4.56.0.dist-info/LICENSE,sha256=Z4cgj4P2Wcy8IiOy_elS_6b36KymLxqKK_W8UbsbI4M,1072
|
|
325
|
+
fonttools-4.56.0.dist-info/WHEEL,sha256=FBd6an5AFoPq_6i7rX7RY9hnbsVzpIPkc8xRof4mLK4,111
|
|
326
|
+
fonttools-4.56.0.dist-info/entry_points.txt,sha256=8kVHddxfFWA44FSD4mBpmC-4uCynQnkoz_9aNJb227Y,147
|
|
327
|
+
fonttools-4.56.0.dist-info/top_level.txt,sha256=rRgRylrXzekqWOsrhygzib12pQ7WILf7UGjqEwkIFDM,10
|
|
328
|
+
fonttools-4.56.0.dist-info/METADATA,sha256=mHbq7JOdQyQ3-vtlnRALzKhNmCpZgtAPIWzHOxG2txQ,101907
|
|
329
|
+
fonttools-4.56.0.data/data/share/man/man1/ttx.1,sha256=cLbm_pOOj1C76T2QXvDxzwDj9gk-GTd5RztvTMsouFw,5377
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|