pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/print/py-weasyprint py-weasyprint: Update to 43.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/fdec077fed4d
branches:  trunk
changeset: 315046:fdec077fed4d
user:      kleink <kleink%pkgsrc.org@localhost>
date:      Wed Nov 14 18:17:26 2018 +0000

description:
py-weasyprint: Update to 43.


Version 43
----------

Released on 2018-11-09.

Bug fixes:

* `#726 <https://github.com/Kozea/WeasyPrint/issues/726>`_:
  Make empty strings clear previous values of named strings
* `#729 <https://github.com/Kozea/WeasyPrint/issues/729>`_:
  Include tools in packaging

This version also includes the changes from unstable rc1 and rc2 versions
listed below.

Version 43rc2
-------------

Released on 2018-11-02.

**This version is experimental, don't use it in production. If you find bugs,
please report them!**

Bug fixes:

* `#706 <https://github.com/Kozea/WeasyPrint/issues/706>`_:
  Fix text-indent at the beginning of a page
* `#687 <https://github.com/Kozea/WeasyPrint/issues/687>`_:
  Allow query strings in file:// URIs
* `#720 <https://github.com/Kozea/WeasyPrint/issues/720>`_:
  Optimize minimum size calculation of long inline elements
* `#717 <https://github.com/Kozea/WeasyPrint/issues/717>`_:
  Display <details> tags as blocks
* `#691 <https://github.com/Kozea/WeasyPrint/issues/691>`_:
  Don't recalculate max content widths when distributing extra space for tables
* `#722 <https://github.com/Kozea/WeasyPrint/issues/722>`_:
  Fix bookmarks and strings set on images
* `#723 <https://github.com/Kozea/WeasyPrint/issues/723>`_:
  Warn users when string() is not used in page margin


Version 43rc1
-------------

Released on 2018-10-15.

**This version is experimental, don't use it in production. If you find bugs,
please report them!**

Dependencies:

* Python 3.4+ is now needed, Python 2.x is not supported anymore
* Cairo 1.15.4+ is now needed, but 1.10+ should work with missing features
  (such as links, outlines and metadata)
* Pdfrw is not needed anymore

New features:

* `Beautiful website <https://weasyprint.org>`_
* `#579 <https://github.com/Kozea/WeasyPrint/issues/579>`_:
  Initial support of flexbox
* `#592 <https://github.com/Kozea/WeasyPrint/pull/592>`_:
  Support @font-face on Windows
* `#306 <https://github.com/Kozea/WeasyPrint/issues/306>`_:
  Add a timeout parameter to the URL fetcher functions
* `#594 <https://github.com/Kozea/WeasyPrint/pull/594>`_:
  Split tests using modern pytest features
* `#599 <https://github.com/Kozea/WeasyPrint/pull/599>`_:
  Make tests pass on Windows
* `#604 <https://github.com/Kozea/WeasyPrint/pull/604>`_:
  Handle target counters and target texts
* `#631 <https://github.com/Kozea/WeasyPrint/pull/631>`_:
  Enable counter-increment and counter-reset in page context
* `#622 <https://github.com/Kozea/WeasyPrint/issues/622>`_:
  Allow pathlib.Path objects for HTML, CSS and Attachment classes
* `#674 <https://github.com/Kozea/WeasyPrint/issues/674>`_:
  Add extensive installation instructions for Windows

Bug fixes:

* `#558 <https://github.com/Kozea/WeasyPrint/issues/558>`_:
  Fix attachments
* `#565 <https://github.com/Kozea/WeasyPrint/issues/565>`_,
  `#596 <https://github.com/Kozea/WeasyPrint/issues/596>`_,
  `#539 <https://github.com/Kozea/WeasyPrint/issues/539>`_:
  Fix many PDF rendering, printing and compatibility problems
* `#614 <https://github.com/Kozea/WeasyPrint/issues/614>`_:
  Avoid crashes and endless loops caused by a Pango bug
* `#662 <https://github.com/Kozea/WeasyPrint/pull/662>`_:
  Fix warnings and errors when generating documentation
* `#666 <https://github.com/Kozea/WeasyPrint/issues/666>`_,
  `#685 <https://github.com/Kozea/WeasyPrint/issues/685>`_:
  Fix many table layout rendering problems
* `#680 <https://github.com/Kozea/WeasyPrint/pull/680>`_:
  Don't crash when there's no font available
* `#662 <https://github.com/Kozea/WeasyPrint/pull/662>`_:
  Fix support of some align values in tables

diffstat:

 print/py-weasyprint/Makefile                |   20 +-
 print/py-weasyprint/PLIST                   |  157 ++++++++++++++++++++++-----
 print/py-weasyprint/distinfo                |   12 +-
 print/py-weasyprint/patches/patch-setup.cfg |   15 ++
 print/py-weasyprint/patches/patch-setup.py  |   15 --
 5 files changed, 158 insertions(+), 61 deletions(-)

diffs (truncated from 353 to 300 lines):

diff -r 1413ab2da02a -r fdec077fed4d print/py-weasyprint/Makefile
--- a/print/py-weasyprint/Makefile      Wed Nov 14 17:15:34 2018 +0000
+++ b/print/py-weasyprint/Makefile      Wed Nov 14 18:17:26 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2018/04/03 09:31:56 adam Exp $
+# $NetBSD: Makefile,v 1.16 2018/11/14 18:17:26 kleink Exp $
 
-DISTNAME=      WeasyPrint-0.42.3
+DISTNAME=      WeasyPrint-43
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
 CATEGORIES=    print python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=W/WeasyPrint/}
@@ -12,17 +12,12 @@
 
 .include "../../lang/python/egg.mk"
 
-DEPENDS+=      pango-[0-9]*:../../devel/pango
-.if ${_PYTHON_VERSION} > 30
+DEPENDS+=      pango>=1.29.3:../../devel/pango
 DEPENDS+=      ${PYPKGPREFIX}-cairosvg>=1.0.20:../../converters/py-cairosvg
-.else
-DEPENDS+=      ${PYPKGPREFIX}-cairosvg>=1.0.20<2:../../converters/py27-cairosvg
-.endif
-DEPENDS+=      ${PYPKGPREFIX}-cairocffi>=0.5:../../graphics/py-cairocffi
+DEPENDS+=      ${PYPKGPREFIX}-cairocffi>=0.9.0:../../graphics/py-cairocffi
 DEPENDS+=      ${PYPKGPREFIX}-cffi>=0.6:../../devel/py-cffi
 DEPENDS+=      ${PYPKGPREFIX}-cssselect2>=0.1:../../textproc/py-cssselect2
 DEPENDS+=      ${PYPKGPREFIX}-html5lib>=0.999999999:../../textproc/py-html5lib
-DEPENDS+=      ${PYPKGPREFIX}-pdfrw>=0.4:../../textproc/py-pdfrw
 DEPENDS+=      ${PYPKGPREFIX}-pyphen>=0.8:../../textproc/py-pyphen
 DEPENDS+=      ${PYPKGPREFIX}-tinycss2>=0.5:../../textproc/py-tinycss2
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
@@ -30,6 +25,13 @@
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-isort-[0-9]*:../../devel/py-test-isort
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
 
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
 USE_LANGUAGES= # none
 
+SUBST_CLASSES+=                pyversfx
+SUBST_STAGE.pyversfx=  pre-configure
+SUBST_FILES.pyversfx=  setup.cfg
+SUBST_SED.pyversfx=    -e "s|@PYVERSSUFFIX@|${PYVERSSUFFIX}|g"
+
 .include "../../mk/bsd.pkg.mk"
diff -r 1413ab2da02a -r fdec077fed4d print/py-weasyprint/PLIST
--- a/print/py-weasyprint/PLIST Wed Nov 14 17:15:34 2018 +0000
+++ b/print/py-weasyprint/PLIST Wed Nov 14 18:17:26 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2018/01/05 11:35:06 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2018/11/14 18:17:26 kleink Exp $
 bin/weasyprint${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -7,33 +7,43 @@
 ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/weasyprint/VERSION
 ${PYSITELIB}/weasyprint/__init__.py
 ${PYSITELIB}/weasyprint/__init__.pyc
 ${PYSITELIB}/weasyprint/__init__.pyo
 ${PYSITELIB}/weasyprint/__main__.py
 ${PYSITELIB}/weasyprint/__main__.pyc
 ${PYSITELIB}/weasyprint/__main__.pyo
-${PYSITELIB}/weasyprint/compat.py
-${PYSITELIB}/weasyprint/compat.pyc
-${PYSITELIB}/weasyprint/compat.pyo
 ${PYSITELIB}/weasyprint/css/__init__.py
 ${PYSITELIB}/weasyprint/css/__init__.pyc
 ${PYSITELIB}/weasyprint/css/__init__.pyo
 ${PYSITELIB}/weasyprint/css/computed_values.py
 ${PYSITELIB}/weasyprint/css/computed_values.pyc
 ${PYSITELIB}/weasyprint/css/computed_values.pyo
-${PYSITELIB}/weasyprint/css/descriptors.py
-${PYSITELIB}/weasyprint/css/descriptors.pyc
-${PYSITELIB}/weasyprint/css/descriptors.pyo
 ${PYSITELIB}/weasyprint/css/html5_ph.css
 ${PYSITELIB}/weasyprint/css/html5_ua.css
 ${PYSITELIB}/weasyprint/css/properties.py
 ${PYSITELIB}/weasyprint/css/properties.pyc
 ${PYSITELIB}/weasyprint/css/properties.pyo
+${PYSITELIB}/weasyprint/css/targets.py
+${PYSITELIB}/weasyprint/css/targets.pyc
+${PYSITELIB}/weasyprint/css/targets.pyo
 ${PYSITELIB}/weasyprint/css/tests_ua.css
-${PYSITELIB}/weasyprint/css/validation.py
-${PYSITELIB}/weasyprint/css/validation.pyc
-${PYSITELIB}/weasyprint/css/validation.pyo
+${PYSITELIB}/weasyprint/css/utils.py
+${PYSITELIB}/weasyprint/css/utils.pyc
+${PYSITELIB}/weasyprint/css/utils.pyo
+${PYSITELIB}/weasyprint/css/validation/__init__.py
+${PYSITELIB}/weasyprint/css/validation/__init__.pyc
+${PYSITELIB}/weasyprint/css/validation/__init__.pyo
+${PYSITELIB}/weasyprint/css/validation/descriptors.py
+${PYSITELIB}/weasyprint/css/validation/descriptors.pyc
+${PYSITELIB}/weasyprint/css/validation/descriptors.pyo
+${PYSITELIB}/weasyprint/css/validation/expanders.py
+${PYSITELIB}/weasyprint/css/validation/expanders.pyc
+${PYSITELIB}/weasyprint/css/validation/expanders.pyo
+${PYSITELIB}/weasyprint/css/validation/properties.py
+${PYSITELIB}/weasyprint/css/validation/properties.pyc
+${PYSITELIB}/weasyprint/css/validation/properties.pyo
 ${PYSITELIB}/weasyprint/document.py
 ${PYSITELIB}/weasyprint/document.pyc
 ${PYSITELIB}/weasyprint/document.pyo
@@ -73,6 +83,12 @@
 ${PYSITELIB}/weasyprint/layout/blocks.py
 ${PYSITELIB}/weasyprint/layout/blocks.pyc
 ${PYSITELIB}/weasyprint/layout/blocks.pyo
+${PYSITELIB}/weasyprint/layout/columns.py
+${PYSITELIB}/weasyprint/layout/columns.pyc
+${PYSITELIB}/weasyprint/layout/columns.pyo
+${PYSITELIB}/weasyprint/layout/flex.py
+${PYSITELIB}/weasyprint/layout/flex.pyc
+${PYSITELIB}/weasyprint/layout/flex.pyo
 ${PYSITELIB}/weasyprint/layout/float.py
 ${PYSITELIB}/weasyprint/layout/float.pyc
 ${PYSITELIB}/weasyprint/layout/float.pyo
@@ -103,9 +119,6 @@
 ${PYSITELIB}/weasyprint/logger.py
 ${PYSITELIB}/weasyprint/logger.pyc
 ${PYSITELIB}/weasyprint/logger.pyo
-${PYSITELIB}/weasyprint/navigator.py
-${PYSITELIB}/weasyprint/navigator.pyc
-${PYSITELIB}/weasyprint/navigator.pyo
 ${PYSITELIB}/weasyprint/pdf.py
 ${PYSITELIB}/weasyprint/pdf.pyc
 ${PYSITELIB}/weasyprint/pdf.pyo
@@ -115,6 +128,7 @@
 ${PYSITELIB}/weasyprint/tests/__init__.py
 ${PYSITELIB}/weasyprint/tests/__init__.pyc
 ${PYSITELIB}/weasyprint/tests/__init__.pyo
+${PYSITELIB}/weasyprint/tests/resources/AHEM____.TTF
 ${PYSITELIB}/weasyprint/tests/resources/acid2-reference.html
 ${PYSITELIB}/weasyprint/tests/resources/acid2-test.html
 ${PYSITELIB}/weasyprint/tests/resources/blue.jpg
@@ -135,15 +149,15 @@
 ${PYSITELIB}/weasyprint/tests/resources/user.css
 ${PYSITELIB}/weasyprint/tests/resources/utf8-test.css
 ${PYSITELIB}/weasyprint/tests/resources/weasyprint.otf
+${PYSITELIB}/weasyprint/tests/test_acid2.py
+${PYSITELIB}/weasyprint/tests/test_acid2.pyc
+${PYSITELIB}/weasyprint/tests/test_acid2.pyo
 ${PYSITELIB}/weasyprint/tests/test_api.py
 ${PYSITELIB}/weasyprint/tests/test_api.pyc
 ${PYSITELIB}/weasyprint/tests/test_api.pyo
 ${PYSITELIB}/weasyprint/tests/test_boxes.py
 ${PYSITELIB}/weasyprint/tests/test_boxes.pyc
 ${PYSITELIB}/weasyprint/tests/test_boxes.pyo
-${PYSITELIB}/weasyprint/tests/test_columns.py
-${PYSITELIB}/weasyprint/tests/test_columns.pyc
-${PYSITELIB}/weasyprint/tests/test_columns.pyo
 ${PYSITELIB}/weasyprint/tests/test_css.py
 ${PYSITELIB}/weasyprint/tests/test_css.pyc
 ${PYSITELIB}/weasyprint/tests/test_css.pyo
@@ -153,18 +167,90 @@
 ${PYSITELIB}/weasyprint/tests/test_css_validation.py
 ${PYSITELIB}/weasyprint/tests/test_css_validation.pyc
 ${PYSITELIB}/weasyprint/tests/test_css_validation.pyo
-${PYSITELIB}/weasyprint/tests/test_draw.py
-${PYSITELIB}/weasyprint/tests/test_draw.pyc
-${PYSITELIB}/weasyprint/tests/test_draw.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/__init__.py
+${PYSITELIB}/weasyprint/tests/test_draw/__init__.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/__init__.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_background.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_background.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_background.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_before_after.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_before_after.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_before_after.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_box.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_box.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_box.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_column.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_column.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_column.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_current_color.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_current_color.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_current_color.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_gradient.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_gradient.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_gradient.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_image.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_image.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_image.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_list.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_list.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_list.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_opacity.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_opacity.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_opacity.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_overflow.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_overflow.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_overflow.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_table.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_table.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_table.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_transform.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_transform.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_transform.pyo
+${PYSITELIB}/weasyprint/tests/test_draw/test_visibility.py
+${PYSITELIB}/weasyprint/tests/test_draw/test_visibility.pyc
+${PYSITELIB}/weasyprint/tests/test_draw/test_visibility.pyo
 ${PYSITELIB}/weasyprint/tests/test_float.py
 ${PYSITELIB}/weasyprint/tests/test_float.pyc
 ${PYSITELIB}/weasyprint/tests/test_float.pyo
 ${PYSITELIB}/weasyprint/tests/test_fonts.py
 ${PYSITELIB}/weasyprint/tests/test_fonts.pyc
 ${PYSITELIB}/weasyprint/tests/test_fonts.pyo
-${PYSITELIB}/weasyprint/tests/test_layout.py
-${PYSITELIB}/weasyprint/tests/test_layout.pyc
-${PYSITELIB}/weasyprint/tests/test_layout.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/__init__.py
+${PYSITELIB}/weasyprint/tests/test_layout/__init__.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/__init__.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_block.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_block.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_block.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_column.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_column.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_column.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_flex.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_flex.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_flex.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_image.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_image.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_image.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_inline.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_inline.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_inline.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_inline_block.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_inline_block.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_inline_block.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_list.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_list.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_list.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_page.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_page.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_page.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_position.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_position.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_position.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_shrink_to_fit.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_shrink_to_fit.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_shrink_to_fit.pyo
+${PYSITELIB}/weasyprint/tests/test_layout/test_table.py
+${PYSITELIB}/weasyprint/tests/test_layout/test_table.pyc
+${PYSITELIB}/weasyprint/tests/test_layout/test_table.pyo
 ${PYSITELIB}/weasyprint/tests/test_pdf.py
 ${PYSITELIB}/weasyprint/tests/test_pdf.pyc
 ${PYSITELIB}/weasyprint/tests/test_pdf.pyo
@@ -174,24 +260,33 @@
 ${PYSITELIB}/weasyprint/tests/test_stacking.py
 ${PYSITELIB}/weasyprint/tests/test_stacking.pyc
 ${PYSITELIB}/weasyprint/tests/test_stacking.pyo
-${PYSITELIB}/weasyprint/tests/test_tables.py
-${PYSITELIB}/weasyprint/tests/test_tables.pyc
-${PYSITELIB}/weasyprint/tests/test_tables.pyo
+${PYSITELIB}/weasyprint/tests/test_target.py
+${PYSITELIB}/weasyprint/tests/test_target.pyc
+${PYSITELIB}/weasyprint/tests/test_target.pyo
 ${PYSITELIB}/weasyprint/tests/test_text.py
 ${PYSITELIB}/weasyprint/tests/test_text.pyc
 ${PYSITELIB}/weasyprint/tests/test_text.pyo
-${PYSITELIB}/weasyprint/tests/test_web/__init__.py
-${PYSITELIB}/weasyprint/tests/test_web/__init__.pyc
-${PYSITELIB}/weasyprint/tests/test_web/__init__.pyo
-${PYSITELIB}/weasyprint/tests/test_web/run.py
-${PYSITELIB}/weasyprint/tests/test_web/run.pyc
-${PYSITELIB}/weasyprint/tests/test_web/run.pyo
+${PYSITELIB}/weasyprint/tests/test_tools.py
+${PYSITELIB}/weasyprint/tests/test_tools.pyc
+${PYSITELIB}/weasyprint/tests/test_tools.pyo
+${PYSITELIB}/weasyprint/tests/test_unicode.py
+${PYSITELIB}/weasyprint/tests/test_unicode.pyc
+${PYSITELIB}/weasyprint/tests/test_unicode.pyo
 ${PYSITELIB}/weasyprint/tests/testing_utils.py
 ${PYSITELIB}/weasyprint/tests/testing_utils.pyc
 ${PYSITELIB}/weasyprint/tests/testing_utils.pyo
 ${PYSITELIB}/weasyprint/text.py
 ${PYSITELIB}/weasyprint/text.pyc
 ${PYSITELIB}/weasyprint/text.pyo
+${PYSITELIB}/weasyprint/tools/__init__.py
+${PYSITELIB}/weasyprint/tools/__init__.pyc
+${PYSITELIB}/weasyprint/tools/__init__.pyo
+${PYSITELIB}/weasyprint/tools/navigator.py
+${PYSITELIB}/weasyprint/tools/navigator.pyc
+${PYSITELIB}/weasyprint/tools/navigator.pyo
+${PYSITELIB}/weasyprint/tools/renderer.py
+${PYSITELIB}/weasyprint/tools/renderer.pyc
+${PYSITELIB}/weasyprint/tools/renderer.pyo
 ${PYSITELIB}/weasyprint/urls.py
 ${PYSITELIB}/weasyprint/urls.pyc
 ${PYSITELIB}/weasyprint/urls.pyo
diff -r 1413ab2da02a -r fdec077fed4d print/py-weasyprint/distinfo
--- a/print/py-weasyprint/distinfo      Wed Nov 14 17:15:34 2018 +0000



Home | Main Index | Thread Index | Old Index