From owner-svn-ports-all@freebsd.org Sun Sep 10 10:58:14 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 E60A2E09F5A; Sun, 10 Sep 2017 10:58:14 +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 C1A356E96A; Sun, 10 Sep 2017 10:58:14 +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 v8AAwDX0059057; Sun, 10 Sep 2017 10:58:13 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8AAwDwP059053; Sun, 10 Sep 2017 10:58:13 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709101058.v8AAwDwP059053@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 10:58:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449533 - in head/math: . R-cran-DEoptimR X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-DEoptimR X-SVN-Commit-Revision: 449533 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 10:58:15 -0000 Author: tota Date: Sun Sep 10 10:58:13 2017 New Revision: 449533 URL: https://svnweb.freebsd.org/changeset/ports/449533 Log: - Add new port: math/R-cran-DEoptimR Differential Evolution (DE) stochastic algorithms for global optimization of problems with and without constraints. The aim is to curate a collection of its state-of-the-art variants that (1) do not sacrifice simplicity of design, (2) are essentially tuning-free, and (3) can be efficiently implemented directly in the R language. Currently, it only provides an implementation of the 'jDE' algorithm by Brest et al. (2006) . WWW: https://cran.r-project.org/web/packages/DEoptimR/ Added: head/math/R-cran-DEoptimR/ head/math/R-cran-DEoptimR/Makefile (contents, props changed) head/math/R-cran-DEoptimR/distinfo (contents, props changed) head/math/R-cran-DEoptimR/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Sep 10 10:33:56 2017 (r449532) +++ head/math/Makefile Sun Sep 10 10:58:13 2017 (r449533) @@ -36,6 +36,7 @@ SUBDIR += R-cran-CVST SUBDIR += R-cran-deldir SUBDIR += R-cran-demRed + SUBDIR += R-cran-DEoptimR SUBDIR += R-cran-dlmodeler SUBDIR += R-cran-dplyr SUBDIR += R-cran-expm Added: head/math/R-cran-DEoptimR/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DEoptimR/Makefile Sun Sep 10 10:58:13 2017 (r449533) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= DEoptimR +DISTVERSION= 1.0-8 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Differential Evolution Optimization in Pure R + +LICENSE= GPLv2+ + +USES= cran:auto-plist + +.include Added: head/math/R-cran-DEoptimR/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DEoptimR/distinfo Sun Sep 10 10:58:13 2017 (r449533) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505040137 +SHA256 (DEoptimR_1.0-8.tar.gz) = 846911c1b2561a9fae73a8c60a21a5680963ebb0050af3c1f1147ae9a121e5ef +SIZE (DEoptimR_1.0-8.tar.gz) = 35401 Added: head/math/R-cran-DEoptimR/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DEoptimR/pkg-descr Sun Sep 10 10:58:13 2017 (r449533) @@ -0,0 +1,9 @@ +Differential Evolution (DE) stochastic algorithms for global +optimization of problems with and without constraints. The aim is +to curate a collection of its state-of-the-art variants that (1) +do not sacrifice simplicity of design, (2) are essentially tuning-free, +and (3) can be efficiently implemented directly in the R language. +Currently, it only provides an implementation of the 'jDE' algorithm +by Brest et al. (2006) . + +WWW: https://cran.r-project.org/web/packages/DEoptimR/