From owner-dev-commits-ports-all@freebsd.org Sun May 30 20:02:43 2021 Return-Path: Delivered-To: dev-commits-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 687C6633D52; Sun, 30 May 2021 20:02:43 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FtTqR1v4Yz3mDZ; Sun, 30 May 2021 20:02:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EBDF022F22; Sun, 30 May 2021 20:02:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14UK2gC0075446; Sun, 30 May 2021 20:02:42 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14UK2gs7075445; Sun, 30 May 2021 20:02:42 GMT (envelope-from git) Date: Sun, 30 May 2021 20:02:42 GMT Message-Id: <202105302002.14UK2gs7075445@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: c9149551dfc1 - main - textproc/p5-PPIx-Utils: Add p5-PPIx-Utils 0.003 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: c9149551dfc1e5959362c85d2e7d01a7122115f0 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 May 2021 20:02:43 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=c9149551dfc1e5959362c85d2e7d01a7122115f0 commit c9149551dfc1e5959362c85d2e7d01a7122115f0 Author: Po-Chuan Hsieh AuthorDate: 2021-05-30 19:52:13 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-05-30 19:52:13 +0000 textproc/p5-PPIx-Utils: Add p5-PPIx-Utils 0.003 PPIx::Utils is a collection of utility functions for working with PPI documents. The functions are organized into submodules, and may be imported from the appropriate submodule or via this module. These functions were originally from Perl::Critic::Utils and related modules, and have been split off to this distribution for use outside of Perl::Critic. WWW: https://metacpan.org/release/PPIx-Utils --- textproc/Makefile | 1 + textproc/p5-PPIx-Utils/Makefile | 26 ++++++++++++++++++++++++++ textproc/p5-PPIx-Utils/distinfo | 3 +++ textproc/p5-PPIx-Utils/pkg-descr | 8 ++++++++ textproc/p5-PPIx-Utils/pkg-plist | 9 +++++++++ 5 files changed, 47 insertions(+) diff --git a/textproc/Makefile b/textproc/Makefile index 3767421bedde..590331447214 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -648,6 +648,7 @@ SUBDIR += p5-PPIx-QuoteLike SUBDIR += p5-PPIx-Regexp SUBDIR += p5-PPIx-Utilities + SUBDIR += p5-PPIx-Utils SUBDIR += p5-Parse-ANSIColor-Tiny SUBDIR += p5-Parse-BooleanLogic SUBDIR += p5-Parse-CSV diff --git a/textproc/p5-PPIx-Utils/Makefile b/textproc/p5-PPIx-Utils/Makefile new file mode 100644 index 000000000000..3f69f78bb434 --- /dev/null +++ b/textproc/p5-PPIx-Utils/Makefile @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= PPIx-Utils +PORTVERSION= 0.003 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:DBOOK +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Utility functions for PPI + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Keywords>=1.09:devel/p5-B-Keywords \ + p5-PPI>=1.250:textproc/p5-PPI + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include diff --git a/textproc/p5-PPIx-Utils/distinfo b/textproc/p5-PPIx-Utils/distinfo new file mode 100644 index 000000000000..d31d86e1d749 --- /dev/null +++ b/textproc/p5-PPIx-Utils/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1622213912 +SHA256 (PPIx-Utils-0.003.tar.gz) = 2a9bccfc8ead03be01b67248fe8e152522040f798286fa4ef4432b7f2efdba11 +SIZE (PPIx-Utils-0.003.tar.gz) = 38028 diff --git a/textproc/p5-PPIx-Utils/pkg-descr b/textproc/p5-PPIx-Utils/pkg-descr new file mode 100644 index 000000000000..ff120947de40 --- /dev/null +++ b/textproc/p5-PPIx-Utils/pkg-descr @@ -0,0 +1,8 @@ +PPIx::Utils is a collection of utility functions for working with PPI documents. +The functions are organized into submodules, and may be imported from the +appropriate submodule or via this module. + +These functions were originally from Perl::Critic::Utils and related modules, +and have been split off to this distribution for use outside of Perl::Critic. + +WWW: https://metacpan.org/release/PPIx-Utils diff --git a/textproc/p5-PPIx-Utils/pkg-plist b/textproc/p5-PPIx-Utils/pkg-plist new file mode 100644 index 000000000000..19ec702d073e --- /dev/null +++ b/textproc/p5-PPIx-Utils/pkg-plist @@ -0,0 +1,9 @@ +%%SITE_PERL%%/PPIx/Utils.pm +%%SITE_PERL%%/PPIx/Utils/Classification.pm +%%SITE_PERL%%/PPIx/Utils/Language.pm +%%SITE_PERL%%/PPIx/Utils/Traversal.pm +%%SITE_PERL%%/PPIx/Utils/_Common.pm +%%PERL5_MAN3%%/PPIx::Utils.3.gz +%%PERL5_MAN3%%/PPIx::Utils::Classification.3.gz +%%PERL5_MAN3%%/PPIx::Utils::Language.3.gz +%%PERL5_MAN3%%/PPIx::Utils::Traversal.3.gz