Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Jun 2016 19:10:36 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417022 - in head/net: . py-pyshark
Message-ID:  <201606171910.u5HJAa0U039873@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Fri Jun 17 19:10:35 2016
New Revision: 417022
URL: https://svnweb.freebsd.org/changeset/ports/417022

Log:
  Python wrapper for tshark, allowing python packet parsing using
  wireshark dissectors.
  
  WWW: https://pypi.python.org/pypi/pyshark

Added:
  head/net/py-pyshark/
  head/net/py-pyshark/Makefile   (contents, props changed)
  head/net/py-pyshark/distinfo   (contents, props changed)
  head/net/py-pyshark/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Jun 17 19:00:40 2016	(r417021)
+++ head/net/Makefile	Fri Jun 17 19:10:35 2016	(r417022)
@@ -989,6 +989,7 @@
     SUBDIR += py-pynsq
     SUBDIR += py-pypcap
     SUBDIR += py-pysendfile
+    SUBDIR += py-pyshark
     SUBDIR += py-pysmb
     SUBDIR += py-pysocks
     SUBDIR += py-pystun

Added: head/net/py-pyshark/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-pyshark/Makefile	Fri Jun 17 19:10:35 2016	(r417022)
@@ -0,0 +1,22 @@
+# Created by: Mark Felder <feld@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pyshark
+PORTVERSION=	0.3.6.1
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld@FreeBSD.org
+COMMENT=	Pyhon packet parsing using wireshark dissectors
+
+USES=		python zip
+USE_PYTHON=	autoplist distutils
+
+RUN_DEPENDS=	tshark>0:net/tshark \
+		${PYTHON_PKGNAMEPREFIX}trollius>0:devel/py-trollius \
+		${PYTHON_PKGNAMEPREFIX}logbook>0:devel/py-logbook \
+		${PYTHON_PKGNAMEPREFIX}py>0:devel/py-py \
+		${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml
+
+.include <bsd.port.mk>

Added: head/net/py-pyshark/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-pyshark/distinfo	Fri Jun 17 19:10:35 2016	(r417022)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1466187678
+SHA256 (pyshark-0.3.6.1.zip) = e7e6349e9e03603b9f760ed2e5d302b6f9951975dbaa27f422ecd20e267854a0
+SIZE (pyshark-0.3.6.1.zip) = 24741

Added: head/net/py-pyshark/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-pyshark/pkg-descr	Fri Jun 17 19:10:35 2016	(r417022)
@@ -0,0 +1,4 @@
+Python wrapper for tshark, allowing python packet parsing using
+wireshark dissectors.
+
+WWW: https://pypi.python.org/pypi/pyshark



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606171910.u5HJAa0U039873>