From owner-svn-ports-all@FreeBSD.ORG Tue Mar 18 18:00:42 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E7B5E54; Tue, 18 Mar 2014 18:00:42 +0000 (UTC) Received: from mail-vc0-x231.google.com (mail-vc0-x231.google.com [IPv6:2607:f8b0:400c:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F9737C5; Tue, 18 Mar 2014 18:00:41 +0000 (UTC) Received: by mail-vc0-f177.google.com with SMTP id if17so7634901vcb.36 for ; Tue, 18 Mar 2014 11:00:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=JendUa6rI++gFeKKTvw1DUST4WRckX7n2XP2QnmAqd0=; b=KW42+H/Eao3HgwsWeWmiQWXZyhf+3USXEs1U1lC7RO6UCbqqX+oNCMxXpY2b2lCy8d JmVjpoGpmy0FCdxpTsMsfJBi+uNs//G1lwN0ZU6RzFxlZ8e4Fc4jaZdxhF67D5PWprqY mvxUMe7kX5N4AtrQKs19mH/A2d0BMzPyP4+Tfw5xGHnb6bcEy4qafhcIJXIduGbosG7N W4JnoWkmqeQZMSsb3cK38uzAL2fGJr7QmuwJlSP100QP+RS/TKV11TfYieNlyIIzKjaz Ms6mJeTMpXAQEHESgzQtFNADZScV8TSQkCAOBP9Dyy56cJzXsfbGXeuatGVYi/9nq8ys HVAw== MIME-Version: 1.0 X-Received: by 10.220.104.210 with SMTP id q18mr16589980vco.9.1395165640427; Tue, 18 Mar 2014 11:00:40 -0700 (PDT) Sender: andrej.zverev@gmail.com Received: by 10.52.3.38 with HTTP; Tue, 18 Mar 2014 11:00:40 -0700 (PDT) In-Reply-To: <201403181754.s2IHstM7069545@svn.freebsd.org> References: <201403181754.s2IHstM7069545@svn.freebsd.org> Date: Tue, 18 Mar 2014 22:00:40 +0400 X-Google-Sender-Auth: t0e8HNeWtiHhWNTRucf9TXE9apA Message-ID: Subject: Re: svn commit: r348583 - in head/devel: . p5-RPSL-Parser From: Andrej Zverev To: Ryan Steinmetz Content-Type: text/plain; charset=ISO-8859-1 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 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: Tue, 18 Mar 2014 18:00:42 -0000 -MAINTAINER= perl@FreeBSD.org +MAINTAINER= zil@FreeBSD.org On Tue, Mar 18, 2014 at 9:54 PM, Ryan Steinmetz wrote: > Author: zi > Date: Tue Mar 18 17:54:55 2014 > New Revision: 348583 > URL: http://svnweb.freebsd.org/changeset/ports/348583 > QAT: https://qat.redports.org/buildarchive/r348583/ > > Log: > New port: devel/p5-RPSL-Parser: > > This is a rather simplistic lexer and tokenizer for the RPSL language. > > It currently does not validate the object in any way, it just tries > (rather hard) to grab the biggest ammount of information it can from the > text presented and place it in a Parse Tree (that can be passed to other > objects from the RPSL namespace for validation and more RFC2622 related > functionality). > > WWW: http://search.cpan.org/dist/RPSL-Parser/ > > Added: > head/devel/p5-RPSL-Parser/ > head/devel/p5-RPSL-Parser/Makefile (contents, props changed) > head/devel/p5-RPSL-Parser/distinfo (contents, props changed) > head/devel/p5-RPSL-Parser/pkg-descr (contents, props changed) > head/devel/p5-RPSL-Parser/pkg-plist (contents, props changed) > Modified: > head/devel/Makefile > > Modified: head/devel/Makefile > ============================================================================== > --- head/devel/Makefile Tue Mar 18 16:46:08 2014 (r348582) > +++ head/devel/Makefile Tue Mar 18 17:54:55 2014 (r348583) > @@ -2607,6 +2607,7 @@ > SUBDIR += p5-Project-Gantt > SUBDIR += p5-Project-Libs > SUBDIR += p5-Qudo > + SUBDIR += p5-RPSL-Parser > SUBDIR += p5-RRDTool-OO > SUBDIR += p5-Range-String > SUBDIR += p5-Rcs > > Added: head/devel/p5-RPSL-Parser/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/p5-RPSL-Parser/Makefile Tue Mar 18 17:54:55 2014 (r348583) > @@ -0,0 +1,17 @@ > +# Created by: Ryan Steinmetz > +# $FreeBSD$ > + > +PORTNAME= RPSL-Parser > +PORTVERSION= 0.04000 > +CATEGORIES= devel perl5 > +MASTER_SITES= CPAN > +MASTER_SITE_SUBDIR= CPAN:LMC > +PKGNAMEPREFIX= p5- > + > +MAINTAINER= perl@FreeBSD.org > +COMMENT= Router Policy Specification Language (RFC2622) Parser > + > +USES= perl5 > +USE_PERL5= configure > + > +.include > > Added: head/devel/p5-RPSL-Parser/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/p5-RPSL-Parser/distinfo Tue Mar 18 17:54:55 2014 (r348583) > @@ -0,0 +1,2 @@ > +SHA256 (RPSL-Parser-0.04000.tar.gz) = 239cea155a166985892347b37968316f46f36114d050a0be8d71436fd08e90f1 > +SIZE (RPSL-Parser-0.04000.tar.gz) = 8224 > > Added: head/devel/p5-RPSL-Parser/pkg-descr > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/p5-RPSL-Parser/pkg-descr Tue Mar 18 17:54:55 2014 (r348583) > @@ -0,0 +1,9 @@ > +This is a rather simplistic lexer and tokenizer for the RPSL language. > + > +It currently does not validate the object in any way, it just tries > +(rather hard) to grab the biggest ammount of information it can from the > +text presented and place it in a Parse Tree (that can be passed to other > +objects from the RPSL namespace for validation and more RFC2622 related > +functionality). > + > +WWW: http://search.cpan.org/dist/RPSL-Parser/ > > Added: head/devel/p5-RPSL-Parser/pkg-plist > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/p5-RPSL-Parser/pkg-plist Tue Mar 18 17:54:55 2014 (r348583) > @@ -0,0 +1,9 @@ > +@comment $FreeBSD$ > +%%PERL5_MAN3%%/RPSL::Parser.3.gz > +%%SITE_PERL%%/RPSL/Parser.pm > +%%SITE_PERL%%/%%PERL_ARCH%%/auto/RPSL/Parser/.packlist > +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/RPSL/Parser > +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/RPSL > +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto > +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%% > +@dirrmtry %%SITE_PERL%%/RPSL >