From owner-svn-ports-all@freebsd.org Wed Apr 8 06:27:41 2020 Return-Path: Delivered-To: svn-ports-all@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 E63A02AAF92; Wed, 8 Apr 2020 06:27:41 +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 48xvTT5kqzz3KPL; Wed, 8 Apr 2020 06:27:41 +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 A10A01ED13; Wed, 8 Apr 2020 06:27:41 +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 0386RfLI056960; Wed, 8 Apr 2020 06:27:41 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0386RemE056956; Wed, 8 Apr 2020 06:27:40 GMT (envelope-from tota@FreeBSD.org) Message-Id: <202004080627.0386RemE056956@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:27:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531094 - in head/math: . R-cran-lpSolve X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-lpSolve X-SVN-Commit-Revision: 531094 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.29 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: Wed, 08 Apr 2020 06:27:42 -0000 Author: tota Date: Wed Apr 8 06:27:40 2020 New Revision: 531094 URL: https://svnweb.freebsd.org/changeset/ports/531094 Log: - Add new port: math/R-cran-lpSolve Lp_solve is freely available (under LGPL 2) software for solving linear, integer and mixed integer programs. In this implementation we supply a "wrapper" function in C and some R functions that solve general linear/integer problems, assignment problems, and transportation problems. This version calls lp_solve version 5.5. WWW: https://cran.r-project.org/web/packages/lpSolve/ Added: head/math/R-cran-lpSolve/ head/math/R-cran-lpSolve/Makefile (contents, props changed) head/math/R-cran-lpSolve/distinfo (contents, props changed) head/math/R-cran-lpSolve/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Apr 8 06:21:42 2020 (r531093) +++ head/math/Makefile Wed Apr 8 06:27:40 2020 (r531094) @@ -73,6 +73,7 @@ SUBDIR += R-cran-lava SUBDIR += R-cran-lazyeval SUBDIR += R-cran-lme4 + SUBDIR += R-cran-lpSolve SUBDIR += R-cran-magic SUBDIR += R-cran-maxLik SUBDIR += R-cran-mcmc Added: head/math/R-cran-lpSolve/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-lpSolve/Makefile Wed Apr 8 06:27:40 2020 (r531094) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= lpSolve +PORTVERSION= 5.6.15 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Interface to 'Lp_solve' v. 5.5 to Solve Linear/Integer Programs + +LICENSE= LGPL20 + +LIB_DEPENDS= liblpsolve55.so:math/lp_solve + +USES= cran:auto-plist,compiles + +.include Added: head/math/R-cran-lpSolve/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-lpSolve/distinfo Wed Apr 8 06:27:40 2020 (r531094) @@ -0,0 +1,3 @@ +TIMESTAMP = 1586294796 +SHA256 (lpSolve_5.6.15.tar.gz) = 4627be4178abad34fc85a7d264c2eb5e27506f007e46687b0b8a4f8fbdf4f3ba +SIZE (lpSolve_5.6.15.tar.gz) = 467646 Added: head/math/R-cran-lpSolve/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-lpSolve/pkg-descr Wed Apr 8 06:27:40 2020 (r531094) @@ -0,0 +1,7 @@ +Lp_solve is freely available (under LGPL 2) software for solving +linear, integer and mixed integer programs. In this implementation +we supply a "wrapper" function in C and some R functions that solve +general linear/integer problems, assignment problems, and transportation +problems. This version calls lp_solve version 5.5. + +WWW: https://cran.r-project.org/web/packages/lpSolve/