From owner-svn-ports-head@freebsd.org Sun Aug 9 07:49:15 2015 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 2E46C99DD2E; Sun, 9 Aug 2015 07:49:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 130779B2; Sun, 9 Aug 2015 07:49:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t797nE3n033096; Sun, 9 Aug 2015 07:49:14 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t797nDOF033090; Sun, 9 Aug 2015 07:49:13 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090749.t797nDOF033090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 07:49:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393765 - in head/devel: . R-cran-bit64 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.20 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: Sun, 09 Aug 2015 07:49:15 -0000 Author: tota Date: Sun Aug 9 07:49:13 2015 New Revision: 393765 URL: https://svnweb.freebsd.org/changeset/ports/393765 Log: - Add new port: devel/R-cran-bit64 Package 'bit64' provides serializable S3 atomic 64bit (signed) integers that can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support interactive data exploration and manipulation and optionally leverage caching. WWW: https://cran.r-project.org/web/packages/bit64/ Added: head/devel/R-cran-bit64/ head/devel/R-cran-bit64/Makefile (contents, props changed) head/devel/R-cran-bit64/distinfo (contents, props changed) head/devel/R-cran-bit64/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 07:33:33 2015 (r393764) +++ head/devel/Makefile Sun Aug 9 07:49:13 2015 (r393765) @@ -13,6 +13,7 @@ SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-bit + SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops SUBDIR += R-cran-caTools SUBDIR += R-cran-caret Added: head/devel/R-cran-bit64/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/Makefile Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= bit64 +DISTVERSION= 0.9-5 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= S3 Class for Vectors of 64bit Integers + +LICENSE= GPLv2 + +RUN_DEPENDS= R-cran-bit>=1.1.12:${PORTSDIR}/devel/R-cran-bit + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-bit64/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/distinfo Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,2 @@ +SHA256 (bit64_0.9-5.tar.gz) = 8f529f9e92caa133ced9c63f327a2682b70fac3f4fa96a0e95fcf50ddda8e53b +SIZE (bit64_0.9-5.tar.gz) = 121087 Added: head/devel/R-cran-bit64/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/pkg-descr Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,9 @@ +Package 'bit64' provides serializable S3 atomic 64bit (signed) +integers that can be used in vectors, matrices, arrays and data.frames. +Methods are available for coercion from and to logicals, integers, +doubles, characters and factors as well as many elementwise and +summary functions. Many fast algorithmic operations such as 'match' +and 'order' support interactive data exploration and manipulation +and optionally leverage caching. + +WWW: https://cran.r-project.org/web/packages/bit64/