From nobody Sun Oct 10 05:18:11 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 7685717E0E3E; Sun, 10 Oct 2021 05:18:11 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HRqvR2lH0z4fLc; Sun, 10 Oct 2021 05:18:11 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3E55427860; Sun, 10 Oct 2021 05:18:11 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19A5IBqG070359; Sun, 10 Oct 2021 05:18:11 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19A5IB91070358; Sun, 10 Oct 2021 05:18:11 GMT (envelope-from git) Date: Sun, 10 Oct 2021 05:18:11 GMT Message-Id: <202110100518.19A5IB91070358@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: MANTANI Nobutaka Subject: git: c12b79b4af7c - main - net/py-pypacker: Add py-pypacker 5.0 List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: nobutaka X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: c12b79b4af7c187d2550fcd8ea0f7201ccc98e81 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by nobutaka: URL: https://cgit.FreeBSD.org/ports/commit/?id=c12b79b4af7c187d2550fcd8ea0f7201ccc98e81 commit c12b79b4af7c187d2550fcd8ea0f7201ccc98e81 Author: MANTANI Nobutaka AuthorDate: 2021-10-10 05:02:00 +0000 Commit: MANTANI Nobutaka CommitDate: 2021-10-10 05:13:11 +0000 net/py-pypacker: Add py-pypacker 5.0 pypacker is a packet manipulation library for Python. Key features: - Creating custom Packets (via keywords) or from raw byte and change their data - Reading/writing packets from/to file (Support only for Wireshark/tcpdump pcap format) - Merging multiple pcap files to one file WWW: https://gitlab.com/mike01/pypacker --- net/Makefile | 1 + net/py-pypacker/Makefile | 21 +++++++++++++++++++++ net/py-pypacker/distinfo | 3 +++ net/py-pypacker/pkg-descr | 8 ++++++++ 4 files changed, 33 insertions(+) diff --git a/net/Makefile b/net/Makefile index 63c76d7064a5..e0943bdb7d77 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1076,6 +1076,7 @@ SUBDIR += py-pynamecheap SUBDIR += py-pynmsg SUBDIR += py-pynsq + SUBDIR += py-pypacker SUBDIR += py-pypcap SUBDIR += py-pyroute2 SUBDIR += py-pyroute2.core diff --git a/net/py-pypacker/Makefile b/net/py-pypacker/Makefile new file mode 100644 index 000000000000..30a327bd95d1 --- /dev/null +++ b/net/py-pypacker/Makefile @@ -0,0 +1,21 @@ +PORTNAME= pypacker +PORTVERSION= 5.0 +CATEGORIES= net python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nobutaka@FreeBSD.org +COMMENT= Packet manipulation library for Python + +LICENSE= BSD3CLAUSE GPLv2 +LICENSE_COMB= dual + +USES= python +USE_GITLAB= yes +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +GL_ACCOUNT= mike01 +GL_COMMIT= 268e27c813545bf7995dd0a80abdb4da24d64722 + +.include diff --git a/net/py-pypacker/distinfo b/net/py-pypacker/distinfo new file mode 100644 index 000000000000..8a6b1084840c --- /dev/null +++ b/net/py-pypacker/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1633835778 +SHA256 (mike01-pypacker-268e27c813545bf7995dd0a80abdb4da24d64722_GL0.tar.gz) = c0e19b8fab13dcbf67105fb8564c50cdaf5eb35ff23801acef7f118e31b0da22 +SIZE (mike01-pypacker-268e27c813545bf7995dd0a80abdb4da24d64722_GL0.tar.gz) = 608601 diff --git a/net/py-pypacker/pkg-descr b/net/py-pypacker/pkg-descr new file mode 100644 index 000000000000..aaf9d4680693 --- /dev/null +++ b/net/py-pypacker/pkg-descr @@ -0,0 +1,8 @@ +pypacker is a packet manipulation library for Python. + +Key features: +- Creating custom Packets (via keywords) or from raw byte and change their data +- Reading/writing packets from/to file (Support only for Wireshark/tcpdump pcap format) +- Merging multiple pcap files to one file + +WWW: https://gitlab.com/mike01/pypacker