From owner-svn-ports-all@freebsd.org Thu Nov 19 13:40:37 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 9944746C109; Thu, 19 Nov 2020 13:40:37 +0000 (UTC) (envelope-from rhurlin@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4CcLR941zcz4gfY; Thu, 19 Nov 2020 13:40:37 +0000 (UTC) (envelope-from rhurlin@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 726B024D01; Thu, 19 Nov 2020 13:40:37 +0000 (UTC) (envelope-from rhurlin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AJDebf3072243; Thu, 19 Nov 2020 13:40:37 GMT (envelope-from rhurlin@FreeBSD.org) Received: (from rhurlin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AJDealB072240; Thu, 19 Nov 2020 13:40:36 GMT (envelope-from rhurlin@FreeBSD.org) Message-Id: <202011191340.0AJDealB072240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rhurlin set sender to rhurlin@FreeBSD.org using -f From: Rainer Hurling Date: Thu, 19 Nov 2020 13:40:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555702 - head/math/nlopt X-SVN-Group: ports-head X-SVN-Commit-Author: rhurlin X-SVN-Commit-Paths: head/math/nlopt X-SVN-Commit-Revision: 555702 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.34 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: Thu, 19 Nov 2020 13:40:37 -0000 Author: rhurlin Date: Thu Nov 19 13:40:36 2020 New Revision: 555702 URL: https://svnweb.freebsd.org/changeset/ports/555702 Log: math/nlopt: Update to 2.7.0 Minor release: - New nlopt_set_param API for setting internal algorithm parameters - Avoid library-symbol conflicts Changelog: https://github.com/stevengj/nlopt/releases/tag/v2.7.0 Reported by: portscout Approved by: arrowd (mentor) Differential Revision: https://reviews.freebsd.org/D27276 Modified: head/math/nlopt/Makefile head/math/nlopt/distinfo head/math/nlopt/pkg-plist Modified: head/math/nlopt/Makefile ============================================================================== --- head/math/nlopt/Makefile Thu Nov 19 13:09:43 2020 (r555701) +++ head/math/nlopt/Makefile Thu Nov 19 13:40:36 2020 (r555702) @@ -3,7 +3,7 @@ PORTNAME= nlopt DISTVERSIONPREFIX= v -DISTVERSION= 2.6.2 +DISTVERSION= 2.7.0 CATEGORIES= math MAINTAINER= rhurlin@FreeBSD.org @@ -13,12 +13,12 @@ LICENSE= LGPL21 MIT LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_armv6= fails to package: Unable to access file site-packages/_nlopt.a:No such file or directory -BROKEN_armv7= fails to package: Unable to access file site-packages/_nlopt.a:No such file or directory +BROKEN_armv6= fails to package: Unable to access file site-packages/_nlopt.a:No such file or directory +BROKEN_armv7= fails to package: Unable to access file site-packages/_nlopt.a:No such file or directory BUILD_DEPENDS= swig:devel/swig \ - ${PYTHON_PKGNAMEPREFIX}numpy>=1.16.1:math/py-numpy@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.16.1:math/py-numpy@${PY_FLAVOR} + ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} LIB_DEPENDS= libgmp.so:math/gmp \ libguile-2.2.so:lang/guile2 Modified: head/math/nlopt/distinfo ============================================================================== --- head/math/nlopt/distinfo Thu Nov 19 13:09:43 2020 (r555701) +++ head/math/nlopt/distinfo Thu Nov 19 13:40:36 2020 (r555702) @@ -1,3 +1,3 @@ -TIMESTAMP = 1587765051 -SHA256 (stevengj-nlopt-v2.6.2_GH0.tar.gz) = cfa5981736dd60d0109c534984c4e13c615314d3584cf1c392a155bfe1a3b17e -SIZE (stevengj-nlopt-v2.6.2_GH0.tar.gz) = 2040229 +TIMESTAMP = 1605784092 +SHA256 (stevengj-nlopt-v2.7.0_GH0.tar.gz) = b881cc2a5face5139f1c5a30caf26b7d3cb43d69d5e423c9d78392f99844499f +SIZE (stevengj-nlopt-v2.7.0_GH0.tar.gz) = 2045585 Modified: head/math/nlopt/pkg-plist ============================================================================== --- head/math/nlopt/pkg-plist Thu Nov 19 13:09:43 2020 (r555701) +++ head/math/nlopt/pkg-plist Thu Nov 19 13:40:36 2020 (r555702) @@ -8,7 +8,7 @@ lib/cmake/nlopt/NLoptLibraryDepends.cmake lib/guile/2.2/extensions/nlopt_guile.so lib/libnlopt.so lib/libnlopt.so.0 -lib/libnlopt.so.0.10.0 +lib/libnlopt.so.0.11.0 %%PYTHON_SITELIBDIR%%/_nlopt.so %%PYTHON_SITELIBDIR%%/nlopt.py libdata/pkgconfig/nlopt.pc