pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/print/py-pikepdf
Module Name: pkgsrc
Committed By: adam
Date: Tue Jun 11 08:52:23 UTC 2024
Modified Files:
pkgsrc/print/py-pikepdf: Makefile PLIST distinfo
Log Message:
py-pikepdf: updated to 9.0.0
v9.0.0
- Removed deprecated pikepdf.PdfMatrix. Use pikepdf.Matrix instead.
- Removed deprecated pikepdf._qpdf submodule.
- Pdf.pages no longer coerces PDF dictionaries to page objects. You must
explicitly insert/add pikepdf.Page objects.
- pikepdf.Object.parse() no longer accepts string input; only bytes are allowed.
- macOS 12 is our minimum supported version for x86_64, and macos 14 is our
minimum supported version for ARM64/Apple Silicon. v8 accidentally
ended support for older versions at some point - this change is formalizing that.
Efforts were made to continue support for older verions, but it is not sustainable.
- We now generate binary wheels for musllinux-aarch64 (Alpine ARM64).
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/print/py-pikepdf/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/print/py-pikepdf/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/print/py-pikepdf/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/print/py-pikepdf/Makefile
diff -u pkgsrc/print/py-pikepdf/Makefile:1.3 pkgsrc/print/py-pikepdf/Makefile:1.4
--- pkgsrc/print/py-pikepdf/Makefile:1.3 Wed May 1 08:55:15 2024
+++ pkgsrc/print/py-pikepdf/Makefile Tue Jun 11 08:52:23 2024
@@ -1,21 +1,21 @@
-# $NetBSD: Makefile,v 1.3 2024/05/01 08:55:15 jperkin Exp $
+# $NetBSD: Makefile,v 1.4 2024/06/11 08:52:23 adam Exp $
-DISTNAME= pikepdf-8.15.1
+DISTNAME= pikepdf-9.0.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES= print
+CATEGORIES= print python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pikepdf/}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= https://pypi.org/project/pikepdf/
+HOMEPAGE= https://github.com/pikepdf/pikepdf
COMMENT= Read and write PDFs with Python, powered by qpdf
LICENSE= mpl-2.0
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
-TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=61:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel>=0.37:../../devel/py-wheel
+DEPENDS+= ${PYPKGPREFIX}-Pillow>=10.0.1:../../graphics/py-Pillow
DEPENDS+= ${PYPKGPREFIX}-deprecated-[0-9]*:../../devel/py-deprecated
DEPENDS+= ${PYPKGPREFIX}-lxml>=4.8:../../textproc/py-lxml
DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging
-DEPENDS+= ${PYPKGPREFIX}-Pillow>=10.0.1:../../graphics/py-Pillow
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis
TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
Index: pkgsrc/print/py-pikepdf/PLIST
diff -u pkgsrc/print/py-pikepdf/PLIST:1.1 pkgsrc/print/py-pikepdf/PLIST:1.2
--- pkgsrc/print/py-pikepdf/PLIST:1.1 Tue Apr 30 08:14:43 2024
+++ pkgsrc/print/py-pikepdf/PLIST Tue Jun 11 08:52:23 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2024/04/30 08:14:43 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2024/06/11 08:52:23 adam Exp $
${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
@@ -24,9 +24,6 @@ ${PYSITELIB}/pikepdf/_io.pyo
${PYSITELIB}/pikepdf/_methods.py
${PYSITELIB}/pikepdf/_methods.pyc
${PYSITELIB}/pikepdf/_methods.pyo
-${PYSITELIB}/pikepdf/_qpdf.py
-${PYSITELIB}/pikepdf/_qpdf.pyc
-${PYSITELIB}/pikepdf/_qpdf.pyo
${PYSITELIB}/pikepdf/_version.py
${PYSITELIB}/pikepdf/_version.pyc
${PYSITELIB}/pikepdf/_version.pyo
@@ -57,9 +54,6 @@ ${PYSITELIB}/pikepdf/models/encryption.p
${PYSITELIB}/pikepdf/models/image.py
${PYSITELIB}/pikepdf/models/image.pyc
${PYSITELIB}/pikepdf/models/image.pyo
-${PYSITELIB}/pikepdf/models/matrix.py
-${PYSITELIB}/pikepdf/models/matrix.pyc
-${PYSITELIB}/pikepdf/models/matrix.pyo
${PYSITELIB}/pikepdf/models/metadata.py
${PYSITELIB}/pikepdf/models/metadata.pyc
${PYSITELIB}/pikepdf/models/metadata.pyo
Index: pkgsrc/print/py-pikepdf/distinfo
diff -u pkgsrc/print/py-pikepdf/distinfo:1.2 pkgsrc/print/py-pikepdf/distinfo:1.3
--- pkgsrc/print/py-pikepdf/distinfo:1.2 Tue Apr 30 08:28:04 2024
+++ pkgsrc/print/py-pikepdf/distinfo Tue Jun 11 08:52:23 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2024/04/30 08:28:04 wiz Exp $
+$NetBSD: distinfo,v 1.3 2024/06/11 08:52:23 adam Exp $
-BLAKE2s (pikepdf-8.15.1.tar.gz) = 96c68ae0ce16ca91f1666b788dd0c9b94ebfe6663d7a1eabae3db58ac6f004f7
-SHA512 (pikepdf-8.15.1.tar.gz) = ae6b0b8bdf7e395943caf503f1d498861bd2719185e6382a522b8c0d4e38413a1b070e912367852bc5735d29b8453d05c57ff384ede825830722470445a534f6
-Size (pikepdf-8.15.1.tar.gz) = 2870723 bytes
+BLAKE2s (pikepdf-9.0.0.tar.gz) = 1ef09847c90fcc90204d1335f311a7063f504c660319f15fed8ec3b5116da337
+SHA512 (pikepdf-9.0.0.tar.gz) = 15248d523cebdfbfcd7a5f8b6144b7dc8371612bd77ba3847af1ce626b5d87780911346d3c61bfe7cef545a19f1863c1a4048b35ace56f2cb62dcb962272829d
+Size (pikepdf-9.0.0.tar.gz) = 2868331 bytes
Home |
Main Index |
Thread Index |
Old Index