From owner-svn-ports-head@freebsd.org Wed Jan 6 07:43:28 2016 Return-Path: Delivered-To: svn-ports-head@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 C4A43A64E54; Wed, 6 Jan 2016 07:43:28 +0000 (UTC) (envelope-from miwi@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 865D91B36; Wed, 6 Jan 2016 07:43:28 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u067hROV062663; Wed, 6 Jan 2016 07:43:27 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u067hR2G062658; Wed, 6 Jan 2016 07:43:27 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201601060743.u067hR2G062658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Wed, 6 Jan 2016 07:43:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405338 - in head/net: . p5-URI-Nested 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.20 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: Wed, 06 Jan 2016 07:43:29 -0000 Author: miwi Date: Wed Jan 6 07:43:27 2016 New Revision: 405338 URL: https://svnweb.freebsd.org/changeset/ports/405338 Log: This library implements a Perl interface for nested URIs -- that is, URIs that contain other URIs. The basic format is: {prefix}:{uri} Some examples: * `jdbc:oracle:scott/tiger@//myhost:1521/myservicename` * `db:postgres://db.example.com/template1` WWW: http://search.cpan.org/dist/URI-Nested/ PR: 205945 Submitted by: Henrik Hodne Added: head/net/p5-URI-Nested/ head/net/p5-URI-Nested/Makefile (contents, props changed) head/net/p5-URI-Nested/distinfo (contents, props changed) head/net/p5-URI-Nested/pkg-descr (contents, props changed) head/net/p5-URI-Nested/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Jan 6 07:30:43 2016 (r405337) +++ head/net/Makefile Wed Jan 6 07:43:27 2016 (r405338) @@ -778,6 +778,7 @@ SUBDIR += p5-URI SUBDIR += p5-URI-FromHash SUBDIR += p5-URI-Match + SUBDIR += p5-URI-Nested SUBDIR += p5-URI-OpenURL SUBDIR += p5-URI-Query SUBDIR += p5-URI-SmartURI Added: head/net/p5-URI-Nested/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Nested/Makefile Wed Jan 6 07:43:27 2016 (r405338) @@ -0,0 +1,22 @@ +# Created by: Henrik Hodne +# $FreeBSD$ + +PORTNAME= URI-Nested +PORTVERSION= 0.10 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= henrik@hodne.io +COMMENT= Perl5 interface for nested URIs + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-URI>=1.40:${PORTSDIR}/net/p5-URI + +NO_ARCH= yes +USES= perl5 +USE_PERL5= modbuild + +.include Added: head/net/p5-URI-Nested/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Nested/distinfo Wed Jan 6 07:43:27 2016 (r405338) @@ -0,0 +1,2 @@ +SHA256 (URI-Nested-0.10.tar.gz) = e1971339a65fbac63ab87142d4b59d3d259d51417753c77cb58ea31a8233efaf +SIZE (URI-Nested-0.10.tar.gz) = 6170 Added: head/net/p5-URI-Nested/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Nested/pkg-descr Wed Jan 6 07:43:27 2016 (r405338) @@ -0,0 +1,12 @@ +This library implements a Perl interface for nested URIs -- that is, URIs that +contain other URIs. The basic format is: + +{prefix}:{uri} + +Some examples: + +* `jdbc:oracle:scott/tiger@//myhost:1521/myservicename` +* `db:postgres://db.example.com/template1` + + +WWW: http://search.cpan.org/dist/URI-Nested/ Added: head/net/p5-URI-Nested/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Nested/pkg-plist Wed Jan 6 07:43:27 2016 (r405338) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/URI/Nested.pm +%%PERL5_MAN3%%/URI::Nested.3.gz