svn commit: r441736 - in head/dns: . packetq

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Thu May 25 21:03:09 UTC 2017


Author: sunpoet
Date: Thu May 25 21:03:07 2017
New Revision: 441736
URL: https://svnweb.freebsd.org/changeset/ports/441736

Log:
  Add packetq 1.3.0
  
  packetq is a command line tool to run SQL queries directly on PCAP
  files, the results can be outputted as JSON (default),
  formatted/compact CSV and XML. It also contain a very simplistic
  web-server in order to inspect PCAP files remotely.
  PacketQ was known as DNS2db but renamed in 2011.
  
  WWW: https://www.dns-oarc.net/tools/packetq
  
  PR:		219504
  Submitted by:	Leo Vandewoestijne <freebsd at dns-lab.com>

Added:
  head/dns/packetq/
  head/dns/packetq/Makefile   (contents, props changed)
  head/dns/packetq/distinfo   (contents, props changed)
  head/dns/packetq/pkg-descr   (contents, props changed)
Modified:
  head/dns/Makefile

Modified: head/dns/Makefile
==============================================================================
--- head/dns/Makefile	Thu May 25 21:03:01 2017	(r441735)
+++ head/dns/Makefile	Thu May 25 21:03:07 2017	(r441736)
@@ -159,6 +159,7 @@
     SUBDIR += p5-Tie-DNS
     SUBDIR += p5-URBL-Prepare
     SUBDIR += p5-pgeodns
+    SUBDIR += packetq
     SUBDIR += pdnsd
     SUBDIR += pear-File_DNS
     SUBDIR += pear-Horde_Idna

Added: head/dns/packetq/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/packetq/Makefile	Thu May 25 21:03:07 2017	(r441736)
@@ -0,0 +1,27 @@
+# Created by: Leo Vandewoestijne <freebsd at dns-lab.com>
+# $FreeBSD$
+
+PORTNAME=	packetq
+PORTVERSION=	1.3.0
+DISTVERSIONPREFIX=	v
+CATEGORIES=	dns
+
+MAINTAINER=	freebsd at dns-lab.com
+COMMENT=	Basic SQL-frontend to PCAP-files
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+GH_ACCOUNT=	DNS-OARC
+GH_PROJECT=	PacketQ
+USE_GITHUB=	yes
+
+USES=		autoreconf
+GNU_CONFIGURE=	yes
+
+OPTIONS_DEFINE=	DOCS
+
+PLIST_FILES=	bin/packetq
+PORTDOCS=	CHANGES COPYING FAQ.md FIELDS.md FUNCTIONS.md README.md
+
+.include <bsd.port.mk>

Added: head/dns/packetq/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/packetq/distinfo	Thu May 25 21:03:07 2017	(r441736)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1495639380
+SHA256 (DNS-OARC-PacketQ-v1.3.0_GH0.tar.gz) = 286fe8d410745f5166dcf078e4e62ff72223f94f784e1952e9facc6c1f9df64b
+SIZE (DNS-OARC-PacketQ-v1.3.0_GH0.tar.gz) = 836865

Added: head/dns/packetq/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/packetq/pkg-descr	Thu May 25 21:03:07 2017	(r441736)
@@ -0,0 +1,7 @@
+PacketQ is a command line tool to run SQL queries directly on PCAP
+files, the results can be outputted as JSON (default),
+formatted/compact CSV and XML. It also contain a very simplistic
+web-server in order to inspect PCAP files remotely.
+PacketQ was known as DNS2db but renamed in 2011.
+
+WWW: https://www.dns-oarc.net/tools/packetq


More information about the svn-ports-all mailing list