Skip to content

Commit

Permalink
py-weasyprint: Update to 43.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kleink committed Nov 14, 2018
1 parent 0b99141 commit c51d0b2
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 61 deletions.
20 changes: 11 additions & 9 deletions print/py-weasyprint/Makefile
Original file line number Diff line number Diff line change
@@ -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/}
Expand All @@ -12,24 +12,26 @@ LICENSE= modified-bsd

.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
TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8
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"
157 changes: 126 additions & 31 deletions print/py-weasyprint/PLIST
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -7,33 +7,43 @@ ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${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
Expand Down Expand Up @@ -73,6 +83,12 @@ ${PYSITELIB}/weasyprint/layout/backgrounds.pyo
${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
Expand Down Expand Up @@ -103,9 +119,6 @@ ${PYSITELIB}/weasyprint/layout/tables.pyo
${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
Expand All @@ -115,6 +128,7 @@ ${PYSITELIB}/weasyprint/stacking.pyo
${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
Expand All @@ -135,15 +149,15 @@ ${PYSITELIB}/weasyprint/tests/resources/sub_directory/sheet1.css
${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
Expand All @@ -153,18 +167,90 @@ ${PYSITELIB}/weasyprint/tests/test_css_descriptors.pyo
${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
Expand All @@ -174,24 +260,33 @@ ${PYSITELIB}/weasyprint/tests/test_presentational_hints.pyo
${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
12 changes: 6 additions & 6 deletions print/py-weasyprint/distinfo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$NetBSD: distinfo,v 1.13 2018/04/03 09:31:56 adam Exp $
$NetBSD: distinfo,v 1.14 2018/11/14 18:17:26 kleink Exp $

SHA1 (WeasyPrint-0.42.3.tar.gz) = afef25da0610fb8031609798d8b25be44506bef4
RMD160 (WeasyPrint-0.42.3.tar.gz) = 4ea815172a3bd32420e3919272c2f037a6b76c85
SHA512 (WeasyPrint-0.42.3.tar.gz) = d6007934c301904308bd4821626d6a7bb504268c5c71a31f7486faebb3dd649fad18774737cab39eb13a0916635bb58eba2c8432c72cc5a461cea2a5d874b1ee
Size (WeasyPrint-0.42.3.tar.gz) = 399972 bytes
SHA1 (patch-setup.py) = a7657e79ac611f3122a81d7f2c6c195e52ba9399
SHA1 (WeasyPrint-43.tar.gz) = 57e56dccb77242bcf7ad9df7430a6adba558da70
RMD160 (WeasyPrint-43.tar.gz) = da6169804425b2b58d5c0d0946ab9ec695be0d0e
SHA512 (WeasyPrint-43.tar.gz) = fc4c4decb298d4f9caf244433566c9b675b23db2508093d8c43c6e361119c5fe8298213075f550bebc72fe4156cfc516f04c8d7a2c6215fcd5add14360821f40
Size (WeasyPrint-43.tar.gz) = 315365 bytes
SHA1 (patch-setup.cfg) = b12afa67aeac4a7cdf19e1a61e25cd91b354ddbf
15 changes: 15 additions & 0 deletions print/py-weasyprint/patches/patch-setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
$NetBSD: patch-setup.cfg,v 1.1 2018/11/14 18:17:26 kleink Exp $

Adjust script path to allow multiple Python version installs.

--- setup.cfg.orig 2018-11-09 09:09:34.000000000 +0000
+++ setup.cfg
@@ -50,7 +50,7 @@ tests_require =
pytest-isort

[options.entry_points]
-console-scripts = weasyprint = weasyprint.__main__:main
+console-scripts = weasyprint@PYVERSSUFFIX@ = weasyprint.__main__:main

[options.package_data]
weasyprint = VERSION
15 changes: 0 additions & 15 deletions print/py-weasyprint/patches/patch-setup.py

This file was deleted.

0 comments on commit c51d0b2

Please sign in to comment.