diff options
author | koobs <koobs@FreeBSD.org> | 2017-08-19 11:26:49 +0000 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2017-08-19 11:26:49 +0000 |
commit | 75845a3f2e94c18c1817e874d38bf0e39eade6eb (patch) | |
tree | 401cf5d6fc965ebb400bdd87ac2d5f5edee9b213 | |
parent | 1bc33b129fea76fe78f06dbfbc9a7eaa3be05422 (diff) | |
download | FreeBSD-ports-75845a3f2e94c18c1817e874d38bf0e39eade6eb.zip FreeBSD-ports-75845a3f2e94c18c1817e874d38bf0e39eade6eb.tar.gz |
MFH: r448299
net/py-libnet: Limit to 2.x (Does not support Python 3)
This (upstream) package does not appear to support (intentionally or otherwise)
Python 3. It also fails to build with Python 3.x with a SyntaxError.
This change corrects the USES=python:<version-spec> support declaration
accordingly.
PR: 219324
Reported by: Johannes Jost Meixner
Approved by: portmgr (blanket)
Approved by: ports-secteam (blanket)
-rw-r--r-- | net/py-libnet/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/py-libnet/Makefile b/net/py-libnet/Makefile index d2f4e4b..fcd527a 100644 --- a/net/py-libnet/Makefile +++ b/net/py-libnet/Makefile @@ -20,7 +20,7 @@ BROKEN_aarch64= fails to package: lib.freebsd-11.0-RELEASE-p1-aarch64-2.7/libne BROKEN_mips64= fails to package: lib.freebsd-11.0-RELEASE-p1-mips64-2.7/libnet.so: No such file or directory BROKEN_powerpc64= fails to package: lib.freebsd-11.0-RELEASE-p1-powerpc64-2.7/libnet.so: No such file or directory -USES= python +USES= python:-2.7 USE_PYTHON= distutils pythonprefix USE_GITHUB= yes |