From owner-svn-ports-all@FreeBSD.ORG Sun Feb 8 21:30:29 2015 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DF96849; Sun, 8 Feb 2015 21:30:29 +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 198FED8C; Sun, 8 Feb 2015 21:30:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t18LUS8S015949; Sun, 8 Feb 2015 21:30:28 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t18LURGj015940; Sun, 8 Feb 2015 21:30:27 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201502082130.t18LURGj015940@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 8 Feb 2015 21:30:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378688 - in head/devel: . p5-Router-R3 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.18-1 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: Sun, 08 Feb 2015 21:30:29 -0000 Author: pi Date: Sun Feb 8 21:30:27 2015 New Revision: 378688 URL: https://svnweb.freebsd.org/changeset/ports/378688 QAT: https://qat.redports.org/buildarchive/r378688/ Log: New port: devel/p5-Router-R3 R3 is an URL router library with high performance, thus, it's implemented in C. It compiles your route paths into a prefix trie. By using the constructed prefix trie in the start-up time, you can dispatch routes with efficiency. WWW: http://search.cpan.org/dist/Router-R3/ PR: 194230 Submitted by: Gasol Wu Reviewed by: marino Added: head/devel/p5-Router-R3/ head/devel/p5-Router-R3/Makefile (contents, props changed) head/devel/p5-Router-R3/distinfo (contents, props changed) head/devel/p5-Router-R3/pkg-descr (contents, props changed) head/devel/p5-Router-R3/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 8 21:29:24 2015 (r378687) +++ head/devel/Makefile Sun Feb 8 21:30:27 2015 (r378688) @@ -2745,6 +2745,7 @@ SUBDIR += p5-Role-Tiny SUBDIR += p5-Rose-DateTime SUBDIR += p5-Rose-Object + SUBDIR += p5-Router-R3 SUBDIR += p5-RunApp SUBDIR += p5-SDL SUBDIR += p5-SNMP-Persist Added: head/devel/p5-Router-R3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Router-R3/Makefile Sun Feb 8 21:30:27 2015 (r378688) @@ -0,0 +1,27 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= Router-R3 +PORTVERSION= 0.011001 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= gasol.wu@gmail.com +COMMENT= XS wrapper around a C library R3 + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-ExtUtils-MakeMaker>=0:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker \ + p5-ExtUtils-PkgConfig>=0:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig +LIB_DEPENDS= libr3.so:${PORTSDIR}/devel/libr3 + +USES= perl5 +USE_PERL5= configure +CFLAGS+= -std=c99 + +post-install: + ${STRIP_CMD} ${STAGEDIR}${SITE_ARCH}/auto/Router/R3/R3.so + +.include Added: head/devel/p5-Router-R3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Router-R3/distinfo Sun Feb 8 21:30:27 2015 (r378688) @@ -0,0 +1,2 @@ +SHA256 (Router-R3-0.011001.tar.gz) = decf8c58ecbe3b2e4318ca8f809903c9f1f0e4765cee7f3067810060b2f5c3c7 +SIZE (Router-R3-0.011001.tar.gz) = 68206 Added: head/devel/p5-Router-R3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Router-R3/pkg-descr Sun Feb 8 21:30:27 2015 (r378688) @@ -0,0 +1,7 @@ +R3 is an URL router library with high performance, thus, it's +implemented in C. It compiles your route paths into a prefix trie. + +By using the constructed prefix trie in the start-up time, you can +dispatch routes with efficiency. + +WWW: http://search.cpan.org/dist/Router-R3/ Added: head/devel/p5-Router-R3/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Router-R3/pkg-plist Sun Feb 8 21:30:27 2015 (r378688) @@ -0,0 +1,4 @@ +%%PERL5_MAN3%%/Router::R3.3.gz +%%SITE_ARCH%%/Router/R3.pm +%%SITE_ARCH%%/auto/Router/R3/R3.so +%%SITE_ARCH%%/auto/Router/R3/autosplit.ix