pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/fonts/py-fonttools



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jun 16 16:52:41 UTC 2020

Modified Files:
        pkgsrc/fonts/py-fonttools: Makefile PLIST distinfo

Log Message:
py-fonttools: updated to 4.12.1

4.12.1:
- [_n_a_m_e] Fixed error in ``addMultilingualName`` with one-character names.
  Only attempt to recovered malformed UTF-16 data from a ``bytes`` string,
  not from unicode ``str``.

4.12.0:
- [otlLib/varLib] Ensure that the ``AxisNameID`` in the ``STAT`` and ``fvar``
  tables is grater than 255 as per OpenType spec.
- [docs] Document more modules in ``fontTools.misc`` package: ``filenames``,
  ``fixedTools``, ``intTools``, ``loggingTools``, ``macCreatorType``, ``macRes``,
  ``plistlib``.
- [OS/2] Don't calculate whole sets of unicode codepoints, use faster and more memory
  efficient ranges and bisect lookups.
- [voltLib] Support writing back abstract syntax tree as VOLT data.
- [voltLib] Accept DO_NOT_TOUCH_CMAP keyword.
- [subset/merge] Fixed a namespace clash involving a private helper class.

4.11.0:
- [feaLib] Introduced ``includeDir`` parameter on Parser and IncludingLexer to
  explicitly specify the directory to search when ``include()`` statements are
  encountered.
- [ufoLib] Silently delete duplicate glyphs within the same kerning group when reading
  groups.
- [ttLib] Set version of COLR table when decompiling COLRv1 (commit 9d8a7e2).

4.10.2:
- [sfnt] Fixed ``NameError: SimpleNamespace`` while reading TTC header. The regression
  was introduced with 4.10.1 after removing ``py23`` star import.

4.10.1:
- [sfnt] Make ``SFNTReader`` pickleable even when TTFont is loaded with lazy=True
  option and thus keeps a reference to an external file.
- [feaLib.ast] Restore backward compatibility (broken in 4.10 for
  ``ChainContextPosStatement`` and ``ChainContextSubstStatement`` classes.
  Make them accept either list of lookups or list of lists of lookups.
- [docs] Document some modules in ``fontTools.misc`` package: ``arrayTools``,
  ``bezierTools`` ``cliTools`` and ``eexec``.
- [ttLib._n_a_m_e] Fixed ``findMultilingualName()`` when name record's ``string`` is
  encoded as bytes sequence.

4.10.0:
- [varLib] Allow feature variations to be active across the entire space.
- [ufoLib] Added support for ``formatVersionMinor`` in UFO's ``fontinfo.plist`` and for
  ``formatMinor`` attribute in GLIF file as discussed in unified-font-object/ufo-spec#78.
  No changes in reading or writing UFOs until an upcoming (non-0) minor update of the
  UFO specification is published.
- [merge] Fixed merging fonts with different versions of ``OS/2`` table.
- [subset] Fixed ``AttributeError`` while subsetting ``ContextSubst`` and ``ContextPos``
  Format 3 subtable.
- [ttLib.table._m_e_t_a] if data happens to be ascii, emit comment in TTX.
- [feaLib] Support multiple lookups per glyph position.
- [psCharStrings] Use inheritance to avoid repeated code in initializer.
- [Doc] Improved documentation for the following modules: ``afmLib``, ``agl``
 , ``cffLib``, ``cu2qu``, ``encodings``, ``feaLib``, ``merge``.
- [Doc] Split off developer-centric info to new page, making front page of docs more
  user-focused. List all utilities and sub-modules with brief descriptions.
  Make README more concise and focused.
- [otlLib] Add function to build STAT table from high-level description.
- [ttLib._n_a_m_e] Add ``findMultilingualName()`` method.
- [unicodedata] Update ``RTL_SCRIPTS`` for Unicode 13.0.
- [gvar] Sort ``gvar`` XML output by glyph name, not glyph order.
- [Doc] Added help options to ``fonttools`` command line tool.
  Ensure all fonttools CLI tools have help documentation.
- [ufoLib] Only write fontinfo.plist when there actually is content.

4.9.0:
- [subset] Fixed subsetting of FeatureVariations table. The subsetter no longer drops
  FeatureVariationRecords that have empty substitutions as that will keep the search
  going and thus change the logic. It will only drop empty records that occur at the
  end of the FeatureVariationRecords array.
- [subset] Remove FeatureVariations table and downgrade GSUB/GPOS to version 0x10000
  when FeatureVariations contain no FeatureVariationRecords after subsetting.
- [agl] Add support for legacy Adobe Glyph List of glyph names in ``fontTools.agl``
 .
- [feaLib] Ignore superfluous script statements.
- [feaLib] Hide traceback by default on ``fonttools feaLib`` command line.
  Use ``--traceback`` option to show.
- [feaLib] Check lookup index in chaining sub/pos lookups and print better error
  message.
- [feaLib] Fix building chained alt substitutions.
- [Doc] Included all fontTools modules in the sphinx-generated documentation, and
  published it to ReadTheDocs for continuous documentation of the fontTools project
 . Check it out at https://fonttools.readthedocs.io/. Thanks to Chris Simpkins!
- [transform] The ``Transform`` class is now subclass of ``typing.NamedTuple``. No
  change in functionality.


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 pkgsrc/fonts/py-fonttools/Makefile
cvs rdiff -u -r1.29 -r1.30 pkgsrc/fonts/py-fonttools/PLIST
cvs rdiff -u -r1.42 -r1.43 pkgsrc/fonts/py-fonttools/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/fonts/py-fonttools/Makefile
diff -u pkgsrc/fonts/py-fonttools/Makefile:1.63 pkgsrc/fonts/py-fonttools/Makefile:1.64
--- pkgsrc/fonts/py-fonttools/Makefile:1.63     Sat Apr 18 07:29:59 2020
+++ pkgsrc/fonts/py-fonttools/Makefile  Tue Jun 16 16:52:41 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.63 2020/04/18 07:29:59 adam Exp $
+# $NetBSD: Makefile,v 1.64 2020/06/16 16:52:41 adam Exp $
 
-DISTNAME=      fonttools-4.8.1
+DISTNAME=      fonttools-4.12.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    fonts python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=F/FontTools/}

Index: pkgsrc/fonts/py-fonttools/PLIST
diff -u pkgsrc/fonts/py-fonttools/PLIST:1.29 pkgsrc/fonts/py-fonttools/PLIST:1.30
--- pkgsrc/fonts/py-fonttools/PLIST:1.29        Thu Apr 16 07:39:41 2020
+++ pkgsrc/fonts/py-fonttools/PLIST     Tue Jun 16 16:52:41 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.29 2020/04/16 07:39:41 adam Exp $
+@comment $NetBSD: PLIST,v 1.30 2020/06/16 16:52:41 adam Exp $
 bin/fonttools-${PYVERSSUFFIX}
 bin/pyftmerge-${PYVERSSUFFIX}
 bin/pyftsubset-${PYVERSSUFFIX}
@@ -98,6 +98,9 @@ ${PYSITELIB}/fontTools/feaLib/parser.pyo
 ${PYSITELIB}/fontTools/fontBuilder.py
 ${PYSITELIB}/fontTools/fontBuilder.pyc
 ${PYSITELIB}/fontTools/fontBuilder.pyo
+${PYSITELIB}/fontTools/help.py
+${PYSITELIB}/fontTools/help.pyc
+${PYSITELIB}/fontTools/help.pyo
 ${PYSITELIB}/fontTools/merge.py
 ${PYSITELIB}/fontTools/merge.pyc
 ${PYSITELIB}/fontTools/merge.pyo

Index: pkgsrc/fonts/py-fonttools/distinfo
diff -u pkgsrc/fonts/py-fonttools/distinfo:1.42 pkgsrc/fonts/py-fonttools/distinfo:1.43
--- pkgsrc/fonts/py-fonttools/distinfo:1.42     Sat Apr 18 07:29:59 2020
+++ pkgsrc/fonts/py-fonttools/distinfo  Tue Jun 16 16:52:41 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.42 2020/04/18 07:29:59 adam Exp $
+$NetBSD: distinfo,v 1.43 2020/06/16 16:52:41 adam Exp $
 
-SHA1 (fonttools-4.8.1.zip) = 64d9dc4554fed341a42aaf9ddd5d6512537ef2b2
-RMD160 (fonttools-4.8.1.zip) = e9e53ad569947f195c2c8638afbca9231bb64be4
-SHA512 (fonttools-4.8.1.zip) = 875ce41ee7154a526ac32859b9fb21fda9bd954013189d085bac27af13819a6205f673d485a44e03ffe0123b5448420b95f41c30aa880790471f7ba9ea2d9ee8
-Size (fonttools-4.8.1.zip) = 3907680 bytes
+SHA1 (fonttools-4.12.1.zip) = c0bf86f1ac52776e083580931aa8b3ba3800e3d8
+RMD160 (fonttools-4.12.1.zip) = 54937cbda92c537fa936c8bc27a206b94e603f0a
+SHA512 (fonttools-4.12.1.zip) = 3bdf2e63fea382cc95415a55be8a46c836ee9854874e7bf495487c0b97b558fc9cd653806f39d006a43ff2f239fddf8f695142f23cc01743073979a0e6fc8208
+Size (fonttools-4.12.1.zip) = 4214502 bytes



Home | Main Index | Thread Index | Old Index