diff options
author | bsiegert <bsiegert@pkgsrc.org> | 2022-10-21 19:12:04 +0000 |
---|---|---|
committer | bsiegert <bsiegert@pkgsrc.org> | 2022-10-21 19:12:04 +0000 |
commit | 9b6f3dde47244b4d6450ae221d7d62ae4cbcdd3c (patch) | |
tree | 498804ad2d9c77a3c27b56db16ce37bf1dad501a | |
parent | b0a4a4713af5715a853bc51a24216e4b4a931b67 (diff) | |
download | pkgsrc-9b6f3dde47244b4d6450ae221d7d62ae4cbcdd3c.tar.gz |
libplist: mark as Python 2.7 only
This fails to build with Python 3 but works on 2.7. There is no indication
that I can find of which versions are supported upstream.
Perhaps the Python bindings should be optional.
-rw-r--r-- | textproc/libplist/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/libplist/Makefile b/textproc/libplist/Makefile index bd580d1f832..d46b9f11b31 100644 --- a/textproc/libplist/Makefile +++ b/textproc/libplist/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2022/07/03 10:13:27 wiz Exp $ +# $NetBSD: Makefile,v 1.33 2022/10/21 19:12:04 bsiegert Exp $ DISTNAME= libplist-2.2.0 CATEGORIES= textproc @@ -20,6 +20,7 @@ USE_LANGUAGES= c c++ PKGCONFIG_OVERRIDE+= libplist++.pc.in PKGCONFIG_OVERRIDE+= libplist.pc.in PY_PATCHPLIST= yes +PYTHON_VERSIONS_ACCEPTED= 27 .include "../../devel/py-cython/buildlink3.mk" .include "../../devel/py-cython/tool.mk" |