From owner-svn-ports-all@freebsd.org Sun Feb 26 13:56:48 2017 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 6EFBACEE4E9; Sun, 26 Feb 2017 13:56:48 +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 3A3319EC; Sun, 26 Feb 2017 13:56:48 +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 v1QDulpt032076; Sun, 26 Feb 2017 13:56:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1QDukuN032070; Sun, 26 Feb 2017 13:56:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201702261356.v1QDukuN032070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 26 Feb 2017 13:56:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434870 - in head/devel: . p5-List-UtilsBy-XS 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.23 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: Sun, 26 Feb 2017 13:56:48 -0000 Author: sunpoet Date: Sun Feb 26 13:56:46 2017 New Revision: 434870 URL: https://svnweb.freebsd.org/changeset/ports/434870 Log: Add p5-List-UtilsBy-XS 0.05 List::UtilsBy::XS is XS implementation of List::UtilsBy. Functions are more fast than original ones. WWW: http://search.cpan.org/dist/List-UtilsBy-XS/ Added: head/devel/p5-List-UtilsBy-XS/ head/devel/p5-List-UtilsBy-XS/Makefile (contents, props changed) head/devel/p5-List-UtilsBy-XS/distinfo (contents, props changed) head/devel/p5-List-UtilsBy-XS/pkg-descr (contents, props changed) head/devel/p5-List-UtilsBy-XS/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 26 13:51:27 2017 (r434869) +++ head/devel/Makefile Sun Feb 26 13:56:46 2017 (r434870) @@ -2656,6 +2656,7 @@ SUBDIR += p5-List-SomeUtils-XS SUBDIR += p5-List-Uniq SUBDIR += p5-List-UtilsBy + SUBDIR += p5-List-UtilsBy-XS SUBDIR += p5-Locale-Maketext SUBDIR += p5-Locale-Maketext-Fuzzy SUBDIR += p5-Locale-Maketext-Gettext Added: head/devel/p5-List-UtilsBy-XS/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-UtilsBy-XS/Makefile Sun Feb 26 13:56:46 2017 (r434870) @@ -0,0 +1,25 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= List-UtilsBy-XS +PORTVERSION= 0.05 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= XS implementation of List::UtilsBy + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= p5-Module-Build-XSUtil>=0.02:devel/p5-Module-Build-XSUtil + +USE_PERL5= modbuild +USES= perl5 + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/List/UtilsBy/XS/XS.so + +.include Added: head/devel/p5-List-UtilsBy-XS/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-UtilsBy-XS/distinfo Sun Feb 26 13:56:46 2017 (r434870) @@ -0,0 +1,3 @@ +TIMESTAMP = 1487995893 +SHA256 (List-UtilsBy-XS-0.05.tar.gz) = b724fc246318484f267e37a4dbb07be858a0f674e068e0c419da74ae5465b424 +SIZE (List-UtilsBy-XS-0.05.tar.gz) = 17267 Added: head/devel/p5-List-UtilsBy-XS/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-UtilsBy-XS/pkg-descr Sun Feb 26 13:56:46 2017 (r434870) @@ -0,0 +1,4 @@ +List::UtilsBy::XS is XS implementation of List::UtilsBy. Functions are more +fast than original ones. + +WWW: http://search.cpan.org/dist/List-UtilsBy-XS/ Added: head/devel/p5-List-UtilsBy-XS/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-UtilsBy-XS/pkg-plist Sun Feb 26 13:56:46 2017 (r434870) @@ -0,0 +1,3 @@ +%%SITE_ARCH%%/List/UtilsBy/XS.pm +%%SITE_ARCH%%/auto/List/UtilsBy/XS/XS.so +%%PERL5_MAN3%%/List::UtilsBy::XS.3.gz