diff options
author | wiz <wiz@pkgsrc.org> | 2015-08-28 10:24:23 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-08-28 10:24:23 +0000 |
commit | 94603a3de2ad8db4c357897e355dd91ffc02bee5 (patch) | |
tree | 726767a62605019e60ef78441d388b60bf7a0b62 /comms | |
parent | 0b773a8f3af449ab94d38b124a34f1060009e260 (diff) | |
download | pkgsrc-94603a3de2ad8db4c357897e355dd91ffc02bee5.tar.gz |
Mark as not-for-python-3.x.
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 1648: ordinal not in range(128)
Diffstat (limited to 'comms')
-rw-r--r-- | comms/py-gammu/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/comms/py-gammu/Makefile b/comms/py-gammu/Makefile index 5b1dafb51f4..8df6607612e 100644 --- a/comms/py-gammu/Makefile +++ b/comms/py-gammu/Makefile @@ -1,5 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2015/08/23 20:20:03 leot Exp $ -# +# $NetBSD: Makefile,v 1.9 2015/08/28 10:24:23 wiz Exp $ DISTNAME= python-gammu-2.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/python-//} @@ -14,6 +13,9 @@ LICENSE= gnu-gpl-v2 USE_TOOLS+= pkg-config +# UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 1648: ordinal not in range(128) +PYTHON_VERSIONS_INCOMPATIBLE= 33 34 + .include "../../lang/python/egg.mk" .include "../../comms/gammu/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |