From owner-svn-ports-all@freebsd.org Sun Dec 9 21:01:50 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D103B132FBC3; Sun, 9 Dec 2018 21:01:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 784307BBD4; Sun, 9 Dec 2018 21:01:49 +0000 (UTC) (envelope-from yuri@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 596A8168E2; Sun, 9 Dec 2018 21:01:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB9L1nI9008835; Sun, 9 Dec 2018 21:01:49 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB9L1mFQ008827; Sun, 9 Dec 2018 21:01:48 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201812092101.wB9L1mFQ008827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 9 Dec 2018 21:01:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487087 - in head/math: . qposases qposases/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . qposases qposases/files X-SVN-Commit-Revision: 487087 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 784307BBD4 X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-0.99)[-0.991,0] X-Rspamd-Server: mx1.freebsd.org 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: Sun, 09 Dec 2018 21:01:50 -0000 Author: yuri Date: Sun Dec 9 21:01:47 2018 New Revision: 487087 URL: https://svnweb.freebsd.org/changeset/ports/487087 Log: New port: math/qposases: Library for online active set strategy quadratic programming problems Added: head/math/qposases/ head/math/qposases/Makefile (contents, props changed) head/math/qposases/distinfo (contents, props changed) head/math/qposases/files/ head/math/qposases/files/patch-CMakeLists.txt (contents, props changed) head/math/qposases/pkg-descr (contents, props changed) head/math/qposases/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Dec 9 20:42:40 2018 (r487086) +++ head/math/Makefile Sun Dec 9 21:01:47 2018 (r487087) @@ -795,6 +795,7 @@ SUBDIR += qd SUBDIR += qhull SUBDIR += qhull5 + SUBDIR += qposases SUBDIR += qrupdate SUBDIR += qtiplot SUBDIR += qtiplot-doc Added: head/math/qposases/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/qposases/Makefile Sun Dec 9 21:01:47 2018 (r487087) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= qpOASES +DISTVERSION= 3.2.1 +CATEGORIES= math +MASTER_SITES= https://www.coin-or.org/download/source/${PORTNAME}/ +PKGNAMEPREFIX= coin-or- + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Library for online active set strategy quadratic programming problems + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake:outsource tar:tgz +USE_LDCONFIG= yes + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= QPOASES_BUILD_EXAMPLES + +.include Added: head/math/qposases/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/qposases/distinfo Sun Dec 9 21:01:47 2018 (r487087) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544388746 +SHA256 (qpOASES-3.2.1.tgz) = 9d81a8af3f5b5ba6e90912964966f7b246f16979db166c3631eeaeca9b4d5666 +SIZE (qpOASES-3.2.1.tgz) = 995713 Added: head/math/qposases/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/qposases/files/patch-CMakeLists.txt Sun Dec 9 21:01:47 2018 (r487087) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2018-12-09 20:53:53 UTC ++++ CMakeLists.txt +@@ -104,7 +104,7 @@ INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR + FILE(GLOB SRC src/*.cpp) + + # library +-ADD_LIBRARY(qpOASES STATIC ${SRC}) ++ADD_LIBRARY(qpOASES ${SRC}) + INSTALL(TARGETS qpOASES + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib Added: head/math/qposases/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/qposases/pkg-descr Sun Dec 9 21:01:47 2018 (r487087) @@ -0,0 +1,9 @@ +qpOASES is an open-source C++ implementation of the recently proposed online +active set strategy for solving quadratic programming (QP) problems. It has +several theoretical features that make it particularly suited for model +predictive control (MPC) applications. Further numerical modifications have +made qpOASES a reliable QP solver, even when tackling semi-definite, ill-posed +or degenerated QP problems. Moreover, several interfaces to third-party software +make qpOASES easy-to-use even for users without knowledge of C/C++. + +WWW: https://projects.coin-or.org/qpOASES Added: head/math/qposases/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/qposases/pkg-plist Sun Dec 9 21:01:47 2018 (r487087) @@ -0,0 +1,35 @@ +include/qpOASES.hpp +include/qpOASES/Bounds.hpp +include/qpOASES/Bounds.ipp +include/qpOASES/Constants.hpp +include/qpOASES/ConstraintProduct.hpp +include/qpOASES/Constraints.hpp +include/qpOASES/Constraints.ipp +include/qpOASES/Flipper.hpp +include/qpOASES/Indexlist.hpp +include/qpOASES/Indexlist.ipp +include/qpOASES/LapackBlasReplacement.hpp +include/qpOASES/Matrices.hpp +include/qpOASES/MessageHandling.hpp +include/qpOASES/MessageHandling.ipp +include/qpOASES/Options.hpp +include/qpOASES/QProblem.hpp +include/qpOASES/QProblem.ipp +include/qpOASES/QProblemB.hpp +include/qpOASES/QProblemB.ipp +include/qpOASES/SQProblem.hpp +include/qpOASES/SQProblem.ipp +include/qpOASES/SQProblemSchur.hpp +include/qpOASES/SQProblemSchur.ipp +include/qpOASES/SparseSolver.hpp +include/qpOASES/SubjectTo.hpp +include/qpOASES/SubjectTo.ipp +include/qpOASES/Types.hpp +include/qpOASES/UnitTesting.hpp +include/qpOASES/Utils.hpp +include/qpOASES/Utils.ipp +include/qpOASES/extras/OQPinterface.hpp +include/qpOASES/extras/SolutionAnalysis.hpp +include/qpOASES/extras/SolutionAnalysis.ipp +lib/libqpOASES.so +lib/libqpOASES.so.3.2