Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Apr 2020 06:27:40 +0000 (UTC)
From:      TAKATSU Tomonari <tota@FreeBSD.org>
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
Message-ID:  <202004080627.0386RemE056956@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004080627.0386RemE056956>