From owner-svn-ports-all@freebsd.org Sun Sep 10 12:56:21 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 30E3BE0F74A; Sun, 10 Sep 2017 12:56:21 +0000 (UTC) (envelope-from tota@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 F1B3D7209A; Sun, 10 Sep 2017 12:56:20 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8ACuK8O008758; Sun, 10 Sep 2017 12:56:20 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8ACuJbC008754; Sun, 10 Sep 2017 12:56:19 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709101256.v8ACuJbC008754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 10 Sep 2017 12:56:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449542 - in head/math: . R-cran-gower X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-gower X-SVN-Commit-Revision: 449542 X-SVN-Commit-Repository: ports 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, 10 Sep 2017 12:56:21 -0000 Author: tota Date: Sun Sep 10 12:56:19 2017 New Revision: 449542 URL: https://svnweb.freebsd.org/changeset/ports/449542 Log: - Add new port: math/R-cran-gower Compute Gower's distance (or similarity) coefficient between records. Compute the top-n matches between records. Core algorithms are executed in parallel on systems supporting OpenMP. WWW: https://cran.r-project.org/web/packages/gower/ Added: head/math/R-cran-gower/ head/math/R-cran-gower/Makefile (contents, props changed) head/math/R-cran-gower/distinfo (contents, props changed) head/math/R-cran-gower/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Sep 10 12:42:37 2017 (r449541) +++ head/math/Makefile Sun Sep 10 12:56:19 2017 (r449542) @@ -46,6 +46,7 @@ SUBDIR += R-cran-fracdiff SUBDIR += R-cran-geepack SUBDIR += R-cran-gmp + SUBDIR += R-cran-gower SUBDIR += R-cran-gpclib SUBDIR += R-cran-gss SUBDIR += R-cran-gtable Added: head/math/R-cran-gower/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-gower/Makefile Sun Sep 10 12:56:19 2017 (r449542) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= gower +DISTVERSION= 0.1.2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Gower's Distance + +LICENSE= GPLv3 + +USES= cran:auto-plist,compiles + +.include Added: head/math/R-cran-gower/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-gower/distinfo Sun Sep 10 12:56:19 2017 (r449542) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505047545 +SHA256 (gower_0.1.2.tar.gz) = eb91b2d2784d237c7055abcf3cfa4fc0b2226b855a0c29fc5a4e8eaa689079d5 +SIZE (gower_0.1.2.tar.gz) = 17393 Added: head/math/R-cran-gower/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-gower/pkg-descr Sun Sep 10 12:56:19 2017 (r449542) @@ -0,0 +1,5 @@ +Compute Gower's distance (or similarity) coefficient between records. +Compute the top-n matches between records. Core algorithms are +executed in parallel on systems supporting OpenMP. + +WWW: https://cran.r-project.org/web/packages/gower/