From owner-svn-ports-head@freebsd.org Sat Oct 29 08:43:44 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 E491FC2411B; Sat, 29 Oct 2016 08:43:44 +0000 (UTC) (envelope-from sunpoet@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 BF08391F; Sat, 29 Oct 2016 08:43:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9T8hhYo097041; Sat, 29 Oct 2016 08:43:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9T8hhvY097035; Sat, 29 Oct 2016 08:43:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201610290843.u9T8hhvY097035@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 29 Oct 2016 08:43:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424895 - in head/devel: . p5-Importer 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.23 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, 29 Oct 2016 08:43:45 -0000 Author: sunpoet Date: Sat Oct 29 08:43:43 2016 New Revision: 424895 URL: https://svnweb.freebsd.org/changeset/ports/424895 Log: - Add p5-Importer 0.024 Importer acts as a layer between Exporter and modules which consume exports. It is feature-compatible with Exporter, plus some much needed extras. You can use this to import symbols from any exporter that follows Exporters specification. The exporter modules themselves do not need to use or inherit from the Exporter module, they just need to set @EXPORT and/or other variables. WWW: http://search.cpan.org/dist/Importer/ Added: head/devel/p5-Importer/ head/devel/p5-Importer/Makefile (contents, props changed) head/devel/p5-Importer/distinfo (contents, props changed) head/devel/p5-Importer/pkg-descr (contents, props changed) head/devel/p5-Importer/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Oct 29 07:07:51 2016 (r424894) +++ head/devel/Makefile Sat Oct 29 08:43:43 2016 (r424895) @@ -2549,6 +2549,7 @@ SUBDIR += p5-IPC-System-Simple SUBDIR += p5-Import-Base SUBDIR += p5-Import-Into + SUBDIR += p5-Importer SUBDIR += p5-Inline SUBDIR += p5-Inline-ASM SUBDIR += p5-Inline-C Added: head/devel/p5-Importer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Importer/Makefile Sat Oct 29 08:43:43 2016 (r424895) @@ -0,0 +1,21 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Importer +PORTVERSION= 0.024 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:EXODIST +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Alternative but compatible interface to modules that export symbols + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-Importer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Importer/distinfo Sat Oct 29 08:43:43 2016 (r424895) @@ -0,0 +1,3 @@ +TIMESTAMP = 1477666859 +SHA256 (Importer-0.024.tar.gz) = 1d19760ceb366b664985ace9a7ee1b54a438b1e060a5bca6eff0c6a35b07a557 +SIZE (Importer-0.024.tar.gz) = 41264 Added: head/devel/p5-Importer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Importer/pkg-descr Sat Oct 29 08:43:43 2016 (r424895) @@ -0,0 +1,7 @@ +Importer acts as a layer between Exporter and modules which consume exports. It +is feature-compatible with Exporter, plus some much needed extras. You can use +this to import symbols from any exporter that follows Exporters specification. +The exporter modules themselves do not need to use or inherit from the Exporter +module, they just need to set @EXPORT and/or other variables. + +WWW: http://search.cpan.org/dist/Importer/ Added: head/devel/p5-Importer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Importer/pkg-plist Sat Oct 29 08:43:43 2016 (r424895) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Importer.pm +%%PERL5_MAN3%%/Importer.3.gz