From owner-svn-ports-all@freebsd.org Wed Jun 3 05:32:51 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E90D732D441; Wed, 3 Jun 2020 05:32:51 +0000 (UTC) (envelope-from tagattie@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49cHcM5x2zz4lfK; Wed, 3 Jun 2020 05:32:51 +0000 (UTC) (envelope-from tagattie@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C53FC8EC2; Wed, 3 Jun 2020 05:32:51 +0000 (UTC) (envelope-from tagattie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0535Wp52082653; Wed, 3 Jun 2020 05:32:51 GMT (envelope-from tagattie@FreeBSD.org) Received: (from tagattie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0535WoAf082648; Wed, 3 Jun 2020 05:32:50 GMT (envelope-from tagattie@FreeBSD.org) Message-Id: <202006030532.0535WoAf082648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tagattie set sender to tagattie@FreeBSD.org using -f From: Hiroki Tagato Date: Wed, 3 Jun 2020 05:32:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537595 - in head/net: . p5-URI-Based X-SVN-Group: ports-head X-SVN-Commit-Author: tagattie X-SVN-Commit-Paths: in head/net: . p5-URI-Based X-SVN-Commit-Revision: 537595 X-SVN-Commit-Repository: ports 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.33 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: Wed, 03 Jun 2020 05:32:52 -0000 Author: tagattie Date: Wed Jun 3 05:32:50 2020 New Revision: 537595 URL: https://svnweb.freebsd.org/changeset/ports/537595 Log: URI::Based perl module - Define a base URI and then generate variations on it WWW: https://metacpan.org/release/URI-Based PR: 246815 Submitted by: geoffroy desvernay Approved by: mentors (implicit) Added: head/net/p5-URI-Based/ head/net/p5-URI-Based/Makefile (contents, props changed) head/net/p5-URI-Based/distinfo (contents, props changed) head/net/p5-URI-Based/pkg-descr (contents, props changed) head/net/p5-URI-Based/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Jun 3 05:05:30 2020 (r537594) +++ head/net/Makefile Wed Jun 3 05:32:50 2020 (r537595) @@ -852,6 +852,7 @@ SUBDIR += p5-Text-Authinfo SUBDIR += p5-Twitter-API SUBDIR += p5-URI + SUBDIR += p5-URI-Based SUBDIR += p5-URI-Encode-XS SUBDIR += p5-URI-Fast SUBDIR += p5-URI-FromHash Added: head/net/p5-URI-Based/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Based/Makefile Wed Jun 3 05:32:50 2020 (r537595) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= URI-Based +PORTVERSION= 1.03 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= dgeo@centrale-marseille.fr +COMMENT= Define a base URI and then generate variations on it + +LICENSE= ARTPERL10 + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>0:net/p5-URI + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/net/p5-URI-Based/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Based/distinfo Wed Jun 3 05:32:50 2020 (r537595) @@ -0,0 +1,3 @@ +TIMESTAMP = 1588434582 +SHA256 (URI-Based-1.03.tar.gz) = e0d94aff0e3d8aae3e31549d95277374d9a0c50279f8b38f920ea645b0065261 +SIZE (URI-Based-1.03.tar.gz) = 3703 Added: head/net/p5-URI-Based/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Based/pkg-descr Wed Jun 3 05:32:50 2020 (r537595) @@ -0,0 +1,3 @@ +URI::Based perl module - Define a base URI and then generate variations on it + +WWW: https://metacpan.org/release/URI-Based Added: head/net/p5-URI-Based/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-URI-Based/pkg-plist Wed Jun 3 05:32:50 2020 (r537595) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/URI/Based.pm +%%PERL5_MAN3%%/URI::Based.3.gz