From owner-svn-ports-all@freebsd.org Mon Mar 4 17:47:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 106DE151BE9D; Mon, 4 Mar 2019 17:47:09 +0000 (UTC) (envelope-from sunpoet@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) server-signature RSA-PSS (4096 bits) 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 77CE5750BF; Mon, 4 Mar 2019 17:47:08 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 675947742; Mon, 4 Mar 2019 17:47:08 +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 x24Hl8aY057381; Mon, 4 Mar 2019 17:47:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x24Hl7f3057376; Mon, 4 Mar 2019 17:47:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201903041747.x24Hl7f3057376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 4 Mar 2019 17:47:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494610 - in head/devel: . p5-Keyword-Pluggable X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . p5-Keyword-Pluggable X-SVN-Commit-Revision: 494610 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 77CE5750BF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 04 Mar 2019 17:47:09 -0000 Author: sunpoet Date: Mon Mar 4 17:47:07 2019 New Revision: 494610 URL: https://svnweb.freebsd.org/changeset/ports/494610 Log: Add p5-Keyword-Pluggable 1.04 Keyword::Pluggable lets you implement new keywords in pure Perl. To do this, you need to write a module and call Keyword::Pluggable::define in your import method. Any keywords defined this way will be available in the scope that's currently being compiled. The scope can be lexical, packaged, and global. WWW: https://metacpan.org/release/Keyword-Pluggable Added: head/devel/p5-Keyword-Pluggable/ head/devel/p5-Keyword-Pluggable/Makefile (contents, props changed) head/devel/p5-Keyword-Pluggable/distinfo (contents, props changed) head/devel/p5-Keyword-Pluggable/pkg-descr (contents, props changed) head/devel/p5-Keyword-Pluggable/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 4 16:44:10 2019 (r494609) +++ head/devel/Makefile Mon Mar 4 17:47:07 2019 (r494610) @@ -2824,6 +2824,7 @@ SUBDIR += p5-JSON-Schema SUBDIR += p5-Java SUBDIR += p5-Jonk + SUBDIR += p5-Keyword-Pluggable SUBDIR += p5-LV SUBDIR += p5-Lexical-Alias SUBDIR += p5-Lexical-Import Added: head/devel/p5-Keyword-Pluggable/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/Makefile Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Keyword-Pluggable +PORTVERSION= 1.04 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:KARASIK +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Define new keywords in pure Perl + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Keyword/Pluggable/Pluggable.so + +.include Added: head/devel/p5-Keyword-Pluggable/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/distinfo Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551642563 +SHA256 (Keyword-Pluggable-1.04.tar.gz) = c2cdc0f08e5533cd530195aef418901d41b9a1258747a1785dc5ccb3b85cc90c +SIZE (Keyword-Pluggable-1.04.tar.gz) = 7781 Added: head/devel/p5-Keyword-Pluggable/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/pkg-descr Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,6 @@ +Keyword::Pluggable lets you implement new keywords in pure Perl. To do this, you +need to write a module and call Keyword::Pluggable::define in your import +method. Any keywords defined this way will be available in the scope that's +currently being compiled. The scope can be lexical, packaged, and global. + +WWW: https://metacpan.org/release/Keyword-Pluggable Added: head/devel/p5-Keyword-Pluggable/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/pkg-plist Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,3 @@ +%%SITE_ARCH%%/Keyword/Pluggable.pm +%%SITE_ARCH%%/auto/Keyword/Pluggable/Pluggable.so +%%PERL5_MAN3%%/Keyword::Pluggable.3.gz