From owner-svn-ports-head@freebsd.org Sat Oct 1 16:22:17 2016 Return-Path: Delivered-To: svn-ports-head@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 8E9B8C057E4; Sat, 1 Oct 2016 16:22:17 +0000 (UTC) (envelope-from rm@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 4F0781C7F; Sat, 1 Oct 2016 16:22:17 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u91GMG0S081577; Sat, 1 Oct 2016 16:22:16 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u91GMGpL081573; Sat, 1 Oct 2016 16:22:16 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201610011622.u91GMGpL081573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Sat, 1 Oct 2016 16:22:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423079 - in head/net/py-pcapy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Oct 2016 16:22:17 -0000 Author: rm Date: Sat Oct 1 16:22:16 2016 New Revision: 423079 URL: https://svnweb.freebsd.org/changeset/ports/423079 Log: net/py-pcapy: update to 0.10.10 - update to 0.10.10 - pass maintainership to submitter - expand python version to 2.7+ because since this release pcapy now supports both python branches PR: 213105 Submitted by: Mageirias Anastasios Modified: head/net/py-pcapy/Makefile head/net/py-pcapy/distinfo head/net/py-pcapy/files/patch-setup.py Modified: head/net/py-pcapy/Makefile ============================================================================== --- head/net/py-pcapy/Makefile Sat Oct 1 16:18:56 2016 (r423078) +++ head/net/py-pcapy/Makefile Sat Oct 1 16:22:16 2016 (r423079) @@ -2,18 +2,20 @@ # $FreeBSD$ PORTNAME= pcapy -PORTVERSION= 0.10.9 +PORTVERSION= 0.10.10 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= anastasios@mageirias.com COMMENT= Python pcap extension LICENSE= APACHE11 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= python:2 +WRKSRC= ${WRKDIR}/${PORTNAME} + +USES= python:2.7+ tar:tgz USE_PYTHON= autoplist distutils DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Modified: head/net/py-pcapy/distinfo ============================================================================== --- head/net/py-pcapy/distinfo Sat Oct 1 16:18:56 2016 (r423078) +++ head/net/py-pcapy/distinfo Sat Oct 1 16:22:16 2016 (r423079) @@ -1,2 +1,3 @@ -SHA256 (pcapy-0.10.9.tar.gz) = 4c2294361327d0d95ba8212dac067682f7703f1a7543730c44853cb10b76dbb6 -SIZE (pcapy-0.10.9.tar.gz) = 26148 +TIMESTAMP = 1475144881 +SHA256 (pcapy-0.10.10.tgz) = 06f0261b8f34e9ac617ab8923a10e3327009fb0ed6b8b4f08eda6acb829d8be6 +SIZE (pcapy-0.10.10.tgz) = 93492 Modified: head/net/py-pcapy/files/patch-setup.py ============================================================================== --- head/net/py-pcapy/files/patch-setup.py Sat Oct 1 16:18:56 2016 (r423078) +++ head/net/py-pcapy/files/patch-setup.py Sat Oct 1 16:22:16 2016 (r423079) @@ -1,11 +1,11 @@ ---- setup.py.orig 2015-05-19 20:23:13 UTC +--- setup.py.orig 2016-09-29 12:25:59 UTC +++ setup.py -@@ -61,8 +61,5 @@ setup(name = PACKAGE_NAME, - include_dirs = include_dirs, - library_dirs = library_dirs, - libraries = libraries)], -- scripts = ['tests/pcapytests.py', 'tests/96pings.pcap'], -- data_files = [(os.path.join('share', 'doc', PACKAGE_NAME), -- ['README', 'LICENSE', 'pcapy.html'])], +@@ -71,8 +71,4 @@ setup(name=PACKAGE_NAME, + library_dirs=library_dirs, + libraries=libraries)], + # scripts=['tests/pcapytests.py', 'tests/96pings.pcap'], +- data_files=[ +- (os.path.join('share', 'doc', PACKAGE_NAME), +- ['README', 'LICENSE', 'pcapy.html']), +- ('tests', ['tests/pcapytests.py', 'tests/96pings.pcap'])] ) -