From owner-svn-ports-head@freebsd.org Wed Apr 8 06:40:27 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A8CBA2AB4A6; Wed, 8 Apr 2020 06:40:27 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48xvmC3zywz3LBV; Wed, 8 Apr 2020 06:40:27 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 840201EF0D; Wed, 8 Apr 2020 06:40:27 +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 0386eRZF063446; Wed, 8 Apr 2020 06:40:27 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0386eQM9063443; Wed, 8 Apr 2020 06:40:26 GMT (envelope-from tota@FreeBSD.org) Message-Id: <202004080640.0386eQM9063443@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 8 Apr 2020 06:40:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531097 - in head/math: . R-cran-linprog X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-linprog X-SVN-Commit-Revision: 531097 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.29 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, 08 Apr 2020 06:40:27 -0000 Author: tota Date: Wed Apr 8 06:40:26 2020 New Revision: 531097 URL: https://svnweb.freebsd.org/changeset/ports/531097 Log: - Add new port: math/R-cran-linprog This package can be used to solve Linear Programming / Linear Optimization problems by using the simplex algorithm. WWW: https://cran.r-project.org/web/packages/linprog/ Added: head/math/R-cran-linprog/ head/math/R-cran-linprog/Makefile (contents, props changed) head/math/R-cran-linprog/distinfo (contents, props changed) head/math/R-cran-linprog/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Apr 8 06:39:07 2020 (r531096) +++ head/math/Makefile Wed Apr 8 06:40:26 2020 (r531097) @@ -72,6 +72,7 @@ SUBDIR += R-cran-labeling SUBDIR += R-cran-lava SUBDIR += R-cran-lazyeval + SUBDIR += R-cran-linprog SUBDIR += R-cran-lme4 SUBDIR += R-cran-lpSolve SUBDIR += R-cran-magic Added: head/math/R-cran-linprog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-linprog/Makefile Wed Apr 8 06:40:26 2020 (r531097) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= linprog +DISTVERSION= 0.9-2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Linear Programming / Optimization + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-lpSolve>0:math/R-cran-lpSolve +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include Added: head/math/R-cran-linprog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-linprog/distinfo Wed Apr 8 06:40:26 2020 (r531097) @@ -0,0 +1,3 @@ +TIMESTAMP = 1570521697 +SHA256 (linprog_0.9-2.tar.gz) = 8937b2e30692e38de1713f1513b78f505f73da6f5b4a576d151ad60bac2221ce +SIZE (linprog_0.9-2.tar.gz) = 18275 Added: head/math/R-cran-linprog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-linprog/pkg-descr Wed Apr 8 06:40:26 2020 (r531097) @@ -0,0 +1,4 @@ +This package can be used to solve Linear Programming / Linear +Optimization problems by using the simplex algorithm. + +WWW: https://cran.r-project.org/web/packages/linprog/