From owner-svn-ports-all@freebsd.org Tue Mar 1 16:39:33 2016 Return-Path: Delivered-To: svn-ports-all@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 BC1A0AC0A3C; Tue, 1 Mar 2016 16:39:33 +0000 (UTC) (envelope-from adamw@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 96E8C1D73; Tue, 1 Mar 2016 16:39:33 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u21GdWjI042245; Tue, 1 Mar 2016 16:39:32 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u21GdWl8042240; Tue, 1 Mar 2016 16:39:32 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201603011639.u21GdWl8042240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Tue, 1 Mar 2016 16:39:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409884 - in head/devel: . p5-Import-Base 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.20 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, 01 Mar 2016 16:39:33 -0000 Author: adamw Date: Tue Mar 1 16:39:31 2016 New Revision: 409884 URL: https://svnweb.freebsd.org/changeset/ports/409884 Log: Add devel/p5-Import-Base. This module makes it easier to build and manage a base set of imports. Rather than importing a dozen modules in each of your project's modules, you simply import one module and get all the other modules you want. This reduces your module boilerplate from 12 lines to 1. WWW: https://metacpan.org/pod/Import::Base Added: head/devel/p5-Import-Base/ head/devel/p5-Import-Base/Makefile (contents, props changed) head/devel/p5-Import-Base/distinfo (contents, props changed) head/devel/p5-Import-Base/pkg-descr (contents, props changed) head/devel/p5-Import-Base/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Mar 1 16:37:53 2016 (r409883) +++ head/devel/Makefile Tue Mar 1 16:39:31 2016 (r409884) @@ -2464,6 +2464,7 @@ SUBDIR += p5-IPC-ShellCmd SUBDIR += p5-IPC-Signal SUBDIR += p5-IPC-System-Simple + SUBDIR += p5-Import-Base SUBDIR += p5-Import-Into SUBDIR += p5-Inline SUBDIR += p5-Inline-ASM Added: head/devel/p5-Import-Base/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Import-Base/Makefile Tue Mar 1 16:39:31 2016 (r409884) @@ -0,0 +1,28 @@ +# Created by: Adam Weinberger +# $FreeBSD$ + +PORTNAME= Import-Base +PORTVERSION= 1.001 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:PREACTION +PKGNAMEPREFIX= p5- + +MAINTAINER= adamw@FreeBSD.org +COMMENT= Import a set of modules into the calling module + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Import-Into>=1.002005:${PORTSDIR}/devel/p5-Import-Into \ + p5-Module-Runtime>=0:${PORTSDIR}/devel/p5-Module-Runtime +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Dancer2-Plugin-Ajax>=0:${PORTSDIR}/www/p5-Dancer2-Plugin-Ajax \ + p5-Dancer2>=0:${PORTSDIR}/www/p5-Dancer2 \ + p5-Moo>=0:${PORTSDIR}/devel/p5-Moo + +USES= perl5 +USE_PERL5= configure +NO_ARCH= yes + +.include Added: head/devel/p5-Import-Base/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Import-Base/distinfo Tue Mar 1 16:39:31 2016 (r409884) @@ -0,0 +1,2 @@ +SHA256 (Import-Base-1.001.tar.gz) = ada5c0bba4106d23267a74daf8f0f1b8ee5defaf6ecbc19e3645596e528a5806 +SIZE (Import-Base-1.001.tar.gz) = 29604 Added: head/devel/p5-Import-Base/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Import-Base/pkg-descr Tue Mar 1 16:39:31 2016 (r409884) @@ -0,0 +1,6 @@ +This module makes it easier to build and manage a base set of imports. Rather +than importing a dozen modules in each of your project's modules, you simply +import one module and get all the other modules you want. This reduces your +module boilerplate from 12 lines to 1. + +WWW: https://metacpan.org/pod/Import::Base Added: head/devel/p5-Import-Base/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Import-Base/pkg-plist Tue Mar 1 16:39:31 2016 (r409884) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Import/Base.pm +%%PERL5_MAN3%%/Import::Base.3.gz