From owner-svn-ports-all@freebsd.org Sat Oct 15 20:40:37 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ECEE8C131EF; Sat, 15 Oct 2016 20:40:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9B8262B; Sat, 15 Oct 2016 20:40:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9FKeaD0012844; Sat, 15 Oct 2016 20:40:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9FKeagZ012838; Sat, 15 Oct 2016 20:40:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201610152040.u9FKeagZ012838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 15 Oct 2016 20:40:36 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Oct 2016 20:40:38 -0000 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 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