From owner-svn-ports-head@FreeBSD.ORG Sat Jan 3 07:11:04 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3F7BDEF; Sat, 3 Jan 2015 07:11:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B55A9105D; Sat, 3 Jan 2015 07:11:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t037B4Ad051151; Sat, 3 Jan 2015 07:11:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t037B3rc050923; Sat, 3 Jan 2015 07:11:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201501030711.t037B3rc050923@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 3 Jan 2015 07:11:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376083 - in head/devel: . p5-Inline-C X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jan 2015 07:11:04 -0000 Author: sunpoet Date: Sat Jan 3 07:11:02 2015 New Revision: 376083 URL: https://svnweb.freebsd.org/changeset/ports/376083 QAT: https://qat.redports.org/buildarchive/r376083/ Log: - Add p5-Inline-C 0.71 Inline::C is a module that allows you to write Perl subroutines in C. Since version 0.30 the Inline module supports multiple programming languages and each language has its own support module. This document describes how to use Inline with the C programming language. It also goes a bit into Perl C internals. WWW: http://search.cpan.org/dist/Inline-C/ Added: head/devel/p5-Inline-C/ head/devel/p5-Inline-C/Makefile (contents, props changed) head/devel/p5-Inline-C/distinfo (contents, props changed) head/devel/p5-Inline-C/pkg-descr (contents, props changed) head/devel/p5-Inline-C/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jan 3 07:10:54 2015 (r376082) +++ head/devel/Makefile Sat Jan 3 07:11:02 2015 (r376083) @@ -2244,6 +2244,7 @@ SUBDIR += p5-Import-Into SUBDIR += p5-Inline SUBDIR += p5-Inline-ASM + SUBDIR += p5-Inline-C SUBDIR += p5-Inline-CPP SUBDIR += p5-Inline-Files SUBDIR += p5-Inline-Filters Added: head/devel/p5-Inline-C/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Inline-C/Makefile Sat Jan 3 07:11:02 2015 (r376083) @@ -0,0 +1,32 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Inline-C +PORTVERSION= 0.71 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Write Perl Subroutines in C + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-ExtUtils-MakeMaker>=7.00:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker \ + p5-Inline>=0.78:${PORTSDIR}/devel/p5-Inline \ + p5-Parse-RecDescent>=1.967.009:${PORTSDIR}/devel/p5-Parse-RecDescent \ + p5-Pegex>=0.58:${PORTSDIR}/devel/p5-Pegex +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-File-Copy-Recursive>=0:${PORTSDIR}/devel/p5-File-Copy-Recursive \ + p5-IO-All>=0:${PORTSDIR}/devel/p5-IO-All \ + p5-Test-Warn>=0.23:${PORTSDIR}/devel/p5-Test-Warn \ + p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML +BUILD_DEPENDS+= p5-File-ShareDir-Install>=0.06:${PORTSDIR}/devel/p5-File-ShareDir-Install + +CONFLICTS_INSTALL= p5-Inline-0.[0-5]* + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-Inline-C/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Inline-C/distinfo Sat Jan 3 07:11:02 2015 (r376083) @@ -0,0 +1,2 @@ +SHA256 (Inline-C-0.71.tar.gz) = c3f60bbe76927994cf3a9f6ef6df6d2ff0d9eae68f2dbceeee4a3e12e068ba0c +SIZE (Inline-C-0.71.tar.gz) = 73432 Added: head/devel/p5-Inline-C/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Inline-C/pkg-descr Sat Jan 3 07:11:02 2015 (r376083) @@ -0,0 +1,6 @@ +Inline::C is a module that allows you to write Perl subroutines in C. Since +version 0.30 the Inline module supports multiple programming languages and each +language has its own support module. This document describes how to use Inline +with the C programming language. It also goes a bit into Perl C internals. + +WWW: http://search.cpan.org/dist/Inline-C/ Added: head/devel/p5-Inline-C/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Inline-C/pkg-plist Sat Jan 3 07:11:02 2015 (r376083) @@ -0,0 +1,21 @@ +%%SITE_PERL%%/Inline/C.pm +%%SITE_PERL%%/Inline/C.pod +%%SITE_PERL%%/Inline/C/Cookbook.pod +%%SITE_PERL%%/Inline/C/ParsePegex.pod +%%SITE_PERL%%/Inline/C/ParseRecDescent.pod +%%SITE_PERL%%/Inline/C/ParseRegExp.pod +%%SITE_PERL%%/Inline/C/Parser.pm +%%SITE_PERL%%/Inline/C/Parser/Pegex.pm +%%SITE_PERL%%/Inline/C/Parser/Pegex/AST.pm +%%SITE_PERL%%/Inline/C/Parser/Pegex/Grammar.pm +%%SITE_PERL%%/Inline/C/Parser/RecDescent.pm +%%SITE_PERL%%/Inline/C/Parser/RegExp.pm +%%SITE_PERL%%/auto/share/dist/Inline-C/Makefile +%%SITE_PERL%%/auto/share/dist/Inline-C/inline-c.pgx +%%SITE_PERL%%/auto/share/dist/Inline-C/inline-c.pgx.json +%%SITE_PERL%%/auto/share/dist/Inline-C/inline-c.pgx.yaml +%%PERL5_MAN3%%/Inline::C.3.gz +%%PERL5_MAN3%%/Inline::C::Cookbook.3.gz +%%PERL5_MAN3%%/Inline::C::ParsePegex.3.gz +%%PERL5_MAN3%%/Inline::C::ParseRecDescent.3.gz +%%PERL5_MAN3%%/Inline::C::ParseRegExp.3.gz