From owner-svn-ports-all@freebsd.org Fri Jan 1 10:03:15 2021 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 281E34C4204; Fri, 1 Jan 2021 10:03:15 +0000 (UTC) (envelope-from pi@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 4D6gZW0gKtz4fY7; Fri, 1 Jan 2021 10:03:15 +0000 (UTC) (envelope-from pi@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 09D7520EED; Fri, 1 Jan 2021 10:03:15 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 101A3EPt094436; Fri, 1 Jan 2021 10:03:14 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 101A3DmL094431; Fri, 1 Jan 2021 10:03:13 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202101011003.101A3DmL094431@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 1 Jan 2021 10:03:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559820 - in head/math: . py-cmaes py-cmaes/files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/math: . py-cmaes py-cmaes/files X-SVN-Commit-Revision: 559820 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: Fri, 01 Jan 2021 10:03:15 -0000 Author: pi Date: Fri Jan 1 10:03:13 2021 New Revision: 559820 URL: https://svnweb.freebsd.org/changeset/ports/559820 Log: New port: math/py-cmaes: Lightweight CMA Evolution Strategy implementation for Python CMA-ES is a Lightweight Covariance Matrix Adaptation Evolution Strategy (CMA-ES) implementation. WWW: https://pypi.org/project/cmaes/ PR: 252150 Submitted by: Neel Chauhan Added: head/math/py-cmaes/ head/math/py-cmaes/Makefile (contents, props changed) head/math/py-cmaes/distinfo (contents, props changed) head/math/py-cmaes/files/ head/math/py-cmaes/files/pkg-message.in (contents, props changed) head/math/py-cmaes/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Jan 1 10:00:12 2021 (r559819) +++ head/math/Makefile Fri Jan 1 10:03:13 2021 (r559820) @@ -746,6 +746,7 @@ SUBDIR += py-chaospy SUBDIR += py-claripy SUBDIR += py-cma + SUBDIR += py-cmaes SUBDIR += py-colormath SUBDIR += py-cryptominisat SUBDIR += py-cvxopt Added: head/math/py-cmaes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cmaes/Makefile Fri Jan 1 10:03:13 2021 (r559820) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= cmaes +DISTVERSION= 0.7.0 +CATEGORIES= math # machine-learning +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= neel@neelc.org +COMMENT= Lightweight CMA Evolution Strategy implementation for Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} \ + ${PYNUMPY} +BUILD_DEPENDS= ${RUN_DEPENDS} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes +SUB_FILES= pkg-message + +.include Added: head/math/py-cmaes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cmaes/distinfo Fri Jan 1 10:03:13 2021 (r559820) @@ -0,0 +1,3 @@ +TIMESTAMP = 1608950893 +SHA256 (cmaes-0.7.0.tar.gz) = 6e5cba9f758fc02fee492d4d1e37ec2165408d5d89f422f5d963741d62af78d4 +SIZE (cmaes-0.7.0.tar.gz) = 13247 Added: head/math/py-cmaes/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cmaes/files/pkg-message.in Fri Jan 1 10:03:13 2021 (r559820) @@ -0,0 +1,9 @@ +[ +{ type: install + message: <