From owner-svn-ports-head@freebsd.org Wed Aug 15 19:33:11 2018 Return-Path: Delivered-To: svn-ports-head@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 2E1E3106DA35; Wed, 15 Aug 2018 19:33:11 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D5FE076167; Wed, 15 Aug 2018 19:33:10 +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 B6E856E6E; Wed, 15 Aug 2018 19:33:10 +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 w7FJXA8l026764; Wed, 15 Aug 2018 19:33:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7FJX9n9026759; Wed, 15 Aug 2018 19:33:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201808151933.w7FJX9n9026759@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 15 Aug 2018 19:33:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477263 - in head/databases: . p5-BSON-XS X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/databases: . p5-BSON-XS X-SVN-Commit-Revision: 477263 X-SVN-Commit-Repository: ports 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.27 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: Wed, 15 Aug 2018 19:33:11 -0000 Author: sunpoet Date: Wed Aug 15 19:33:09 2018 New Revision: 477263 URL: https://svnweb.freebsd.org/changeset/ports/477263 Log: Add p5-BSON-XS 0.4.3 BSON::XS contains an XS implementation for BSON encoding and decoding. There is no public API. Use the BSON module and it will choose the best implementation for you. WWW: https://metacpan.org/release/BSON-XS Added: head/databases/p5-BSON-XS/ head/databases/p5-BSON-XS/Makefile (contents, props changed) head/databases/p5-BSON-XS/distinfo (contents, props changed) head/databases/p5-BSON-XS/pkg-descr (contents, props changed) head/databases/p5-BSON-XS/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Aug 15 19:31:14 2018 (r477262) +++ head/databases/Makefile Wed Aug 15 19:33:09 2018 (r477263) @@ -268,6 +268,7 @@ SUBDIR += p5-AsciiDB-TagFile SUBDIR += p5-BDB SUBDIR += p5-BSON + SUBDIR += p5-BSON-XS SUBDIR += p5-BerkeleyDB SUBDIR += p5-Bucardo SUBDIR += p5-CDB_File Added: head/databases/p5-BSON-XS/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-BSON-XS/Makefile Wed Aug 15 19:33:09 2018 (r477263) @@ -0,0 +1,33 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= BSON-XS +PORTVERSION= 0.4.3 +DISTVERSIONPREFIX= v +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= XS implementation of MongoDB BSON serialization + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= p5-Config-AutoConf>=0.220:devel/p5-Config-AutoConf \ + p5-Path-Tiny>=0.052:devel/p5-Path-Tiny \ + ${RUN_DEPENDS} +RUN_DEPENDS= p5-BSON>=1.6.6:databases/p5-BSON +TEST_DEPENDS= p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ + p5-Path-Tiny>=0.054:devel/p5-Path-Tiny \ + p5-Test-Deep>=0:devel/p5-Test-Deep \ + p5-Tie-IxHash>=0:devel/p5-Tie-IxHash + +CFLAGS+= -DBSON_COMPILATION +USE_PERL5= configure +USES= perl5 gmake + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/BSON/XS/XS.so + +.include Added: head/databases/p5-BSON-XS/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-BSON-XS/distinfo Wed Aug 15 19:33:09 2018 (r477263) @@ -0,0 +1,3 @@ +TIMESTAMP = 1534345641 +SHA256 (BSON-XS-v0.4.3.tar.gz) = 8d6a03582d429b8172b4e68e7a667b18bbc7bace37f6537beee5891e068f8fa6 +SIZE (BSON-XS-v0.4.3.tar.gz) = 226599 Added: head/databases/p5-BSON-XS/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-BSON-XS/pkg-descr Wed Aug 15 19:33:09 2018 (r477263) @@ -0,0 +1,5 @@ +BSON::XS contains an XS implementation for BSON encoding and decoding. There is +no public API. Use the BSON module and it will choose the best implementation +for you. + +WWW: https://metacpan.org/release/BSON-XS Added: head/databases/p5-BSON-XS/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-BSON-XS/pkg-plist Wed Aug 15 19:33:09 2018 (r477263) @@ -0,0 +1,3 @@ +%%SITE_ARCH%%/BSON/XS.pm +%%SITE_ARCH%%/auto/BSON/XS/XS.so +%%PERL5_MAN3%%/BSON::XS.3.gz