svn commit: r531094 - in head/math: . R-cran-lpSolve

TAKATSU Tomonari tota at FreeBSD.org
Wed Apr 8 06:27:42 UTC 2020


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 at 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/


More information about the svn-ports-all mailing list