diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-03-14 17:41:09 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-03-14 17:54:26 +0800 |
commit | f8dfa99d4aba95449309a42b83fd540b5e0fd4bb (patch) | |
tree | c4db227975dca01ece4844571ee411757252111b /textproc/py-xhtml2pdf | |
parent | textproc/py-sphinxcontrib-towncrier: Update to 0.5.0a0 (diff) |
textproc/py-xhtml2pdf: Update to 0.2.17
Changes: https://github.com/xhtml2pdf/xhtml2pdf/releases
https://github.com/xhtml2pdf/xhtml2pdf/blob/master/docs/source/release-notes.rst
https://xhtml2pdf.readthedocs.io/en/latest/release-notes.html
Diffstat (limited to 'textproc/py-xhtml2pdf')
-rw-r--r-- | textproc/py-xhtml2pdf/Makefile | 2 | ||||
-rw-r--r-- | textproc/py-xhtml2pdf/distinfo | 6 | ||||
-rw-r--r-- | textproc/py-xhtml2pdf/files/patch-python-bidi | 24 |
3 files changed, 28 insertions, 4 deletions
diff --git a/textproc/py-xhtml2pdf/Makefile b/textproc/py-xhtml2pdf/Makefile index 9266538d0db7..a7be02e3fb4d 100644 --- a/textproc/py-xhtml2pdf/Makefile +++ b/textproc/py-xhtml2pdf/Makefile @@ -1,5 +1,5 @@ PORTNAME= xhtml2pdf -PORTVERSION= 0.2.16 +PORTVERSION= 0.2.17 CATEGORIES= textproc python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/py-xhtml2pdf/distinfo b/textproc/py-xhtml2pdf/distinfo index 3ed0c33e03d5..87f6ebdffc50 100644 --- a/textproc/py-xhtml2pdf/distinfo +++ b/textproc/py-xhtml2pdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1718580146 -SHA256 (xhtml2pdf-0.2.16.tar.gz) = 7391adac12afb086561667cdc8d6ef0ac4afe5097bd97383622d42b6343dee71 -SIZE (xhtml2pdf-0.2.16.tar.gz) = 138833 +TIMESTAMP = 1740836188 +SHA256 (xhtml2pdf-0.2.17.tar.gz) = 09ddbc31aa0e38a16f2f3cb73be89af5f7c968c17a564afdd685d280e39c526d +SIZE (xhtml2pdf-0.2.17.tar.gz) = 139727 diff --git a/textproc/py-xhtml2pdf/files/patch-python-bidi b/textproc/py-xhtml2pdf/files/patch-python-bidi new file mode 100644 index 000000000000..7c770b389421 --- /dev/null +++ b/textproc/py-xhtml2pdf/files/patch-python-bidi @@ -0,0 +1,24 @@ +Reference: https://github.com/xhtml2pdf/xhtml2pdf/commit/3ac6559d670736696e0a12a7e945191b7961428d + +--- pyproject.toml.orig 2025-02-23 23:16:52 UTC ++++ pyproject.toml +@@ -53,7 +53,7 @@ dependencies = [ + "pyHanko>=0.12.1", + "pyhanko-certvalidator>=0.19.5", + "pypdf>=3.1.0", +- "python-bidi>=0.5.0", ++ "python-bidi>=0.4.2", + "reportlab>=4.0.4,<5", + "svglib>=1.2.1" + ] +--- xhtml2pdf/util.py.orig 2025-02-23 22:08:13 UTC ++++ xhtml2pdf/util.py +@@ -22,7 +22,7 @@ import reportlab.pdfbase._cidfontdata + import arabic_reshaper + import reportlab + import reportlab.pdfbase._cidfontdata +-from bidi import get_display ++from bidi.algorithm import get_display + from reportlab.lib.colors import Color, toColor + from reportlab.lib.enums import TA_CENTER, TA_JUSTIFY, TA_LEFT, TA_RIGHT + from reportlab.lib.units import cm, inch |