1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

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
This commit is contained in:
MANTANI Nobutaka 2021-10-10 14:02:00 +09:00
parent 8d7d4f96b7
commit c12b79b4af
4 changed files with 33 additions and 0 deletions

View File

@ -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

21
net/py-pypacker/Makefile Normal file
View File

@ -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 <bsd.port.mk>

3
net/py-pypacker/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1633835778
SHA256 (mike01-pypacker-268e27c813545bf7995dd0a80abdb4da24d64722_GL0.tar.gz) = c0e19b8fab13dcbf67105fb8564c50cdaf5eb35ff23801acef7f118e31b0da22
SIZE (mike01-pypacker-268e27c813545bf7995dd0a80abdb4da24d64722_GL0.tar.gz) = 608601

View File

@ -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