Date: Sat, 15 Oct 2016 20:40:36 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424026 - in head/net: . p5-Net-Frame-Simple Message-ID: <201610152040.u9FKeagZ012838@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sat Oct 15 20:40:36 2016 New Revision: 424026 URL: https://svnweb.freebsd.org/changeset/ports/424026 Log: New port: net/p5-Net-Frame-Simple Frame crafting made easy This module is part of Net::Frame frame crafting framework. It is totally optional, but can make playing with the network far easier. Basically, it hides the complexity of frame forging, sending, and receiving, by providing helper methods, which will analyze internally how to assemble frames and find responses to probes. For example, it will take care of computing lengths and checksums, and matching a response frame to the requesting frame. WWW: http://search.cpan.org/dist/Net-Frame-Simple/ Added: head/net/p5-Net-Frame-Simple/ head/net/p5-Net-Frame-Simple/Makefile (contents, props changed) head/net/p5-Net-Frame-Simple/distinfo (contents, props changed) head/net/p5-Net-Frame-Simple/pkg-descr (contents, props changed) head/net/p5-Net-Frame-Simple/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Oct 15 20:24:10 2016 (r424025) +++ head/net/Makefile Sat Oct 15 20:40:36 2016 (r424026) @@ -610,6 +610,7 @@ SUBDIR += p5-Net-Frame-Dump SUBDIR += p5-Net-Frame-Layer-ICMPv6 SUBDIR += p5-Net-Frame-Layer-IPv6 + SUBDIR += p5-Net-Frame-Simple SUBDIR += p5-Net-GitHub SUBDIR += p5-Net-Gnats SUBDIR += p5-Net-Google Added: head/net/p5-Net-Frame-Simple/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-Frame-Simple/Makefile Sat Oct 15 20:40:36 2016 (r424026) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= Net-Frame-Simple +PORTVERSION= 1.07 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Base framework for frame crafting + +LICENSE= ART10 + +BUILD_DEPENDS= p5-Net-Frame>=1.16:net/p5-Net-Frame \ + p5-Class-Gomor>=1.03:devel/p5-Class-Gomor +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 +USE_PERL5= configure +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/net/p5-Net-Frame-Simple/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-Frame-Simple/distinfo Sat Oct 15 20:40:36 2016 (r424026) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476561188 +SHA256 (Net-Frame-Simple-1.07.tar.gz) = 4ea46c0d9cb4a2dace4d3d022cb1c3e80dc9d645ae38c124ee485cfdc828814e +SIZE (Net-Frame-Simple-1.07.tar.gz) = 10944 Added: head/net/p5-Net-Frame-Simple/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-Frame-Simple/pkg-descr Sat Oct 15 20:40:36 2016 (r424026) @@ -0,0 +1,13 @@ +Frame crafting made easy + +This module is part of Net::Frame frame crafting framework. It is +totally optional, but can make playing with the network far easier. + +Basically, it hides the complexity of frame forging, sending, and +receiving, by providing helper methods, which will analyze internally +how to assemble frames and find responses to probes. + +For example, it will take care of computing lengths and checksums, +and matching a response frame to the requesting frame. + +WWW: http://search.cpan.org/dist/Net-Frame-Simple/ Added: head/net/p5-Net-Frame-Simple/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-Frame-Simple/pkg-plist Sat Oct 15 20:40:36 2016 (r424026) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Net/Frame/Simple.pm +%%PERL5_MAN3%%/Net::Frame::Simple.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610152040.u9FKeagZ012838>