From owner-svn-ports-all@freebsd.org Sat Aug 19 11:22:00 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B63DDE332C; Sat, 19 Aug 2017 11:22:00 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A99270A96; Sat, 19 Aug 2017 11:22:00 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JBLxTI082444; Sat, 19 Aug 2017 11:21:59 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JBLxHL082443; Sat, 19 Aug 2017 11:21:59 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708191121.v7JBLxHL082443@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 19 Aug 2017 11:21:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448299 - head/net/py-libnet X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/net/py-libnet X-SVN-Commit-Revision: 448299 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 11:22:00 -0000 Author: koobs Date: Sat Aug 19 11:21:59 2017 New Revision: 448299 URL: https://svnweb.freebsd.org/changeset/ports/448299 Log: 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: support declaration accordingly. PR: 219324 Reported by: Johannes Jost Meixner Approved by: portmgr (blanket) MFH: 2017Q3 Modified: head/net/py-libnet/Makefile Modified: head/net/py-libnet/Makefile ============================================================================== --- head/net/py-libnet/Makefile Sat Aug 19 11:20:05 2017 (r448298) +++ head/net/py-libnet/Makefile Sat Aug 19 11:21:59 2017 (r448299) @@ -20,7 +20,7 @@ BROKEN_aarch64= fails to package: lib.freebsd-11.0-RE 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