pkgsrc-Changes archive

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

CVS commit: pkgsrc/print/py-pspdfutils



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Jun  6 14:01:23 UTC 2023

Modified Files:
        pkgsrc/print/py-pspdfutils: Makefile

Log Message:
py-pspdfutils: not for python 3.7

try adding a dependency to fix build with 3.8
(officially this is 3.9+)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/print/py-pspdfutils/Makefile

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-pspdfutils/Makefile
diff -u pkgsrc/print/py-pspdfutils/Makefile:1.2 pkgsrc/print/py-pspdfutils/Makefile:1.3
--- pkgsrc/print/py-pspdfutils/Makefile:1.2     Fri Jun  2 06:45:21 2023
+++ pkgsrc/print/py-pspdfutils/Makefile Tue Jun  6 14:01:23 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2023/06/02 06:45:21 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2023/06/06 14:01:23 wiz Exp $
 
 DISTNAME=      pspdfutils-3.0.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
@@ -20,7 +20,13 @@ TEST_DEPENDS+=       ${PYPKGPREFIX}-testpath>=
 
 INSTALLATION_DIRS+=    ${PKGMANDIR}
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
+PYTHON_VERSIONS_INCOMPATIBLE=  27 37
+
+.include "../../lang/python/pyversion.mk"
+
+.if ${PYTHON_VERSION} < 310
+DEPENDS+=      ${PYPKGPREFIX}-typing-extensions>=0:../../devel/py-typing-extensions
+.endif
 
 CONFLICTS+=    psutils<3
 



Home | Main Index | Thread Index | Old Index