From owner-svn-ports-head@freebsd.org Mon Feb 22 08:01:18 2021 Return-Path: Delivered-To: svn-ports-head@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 A5A0254C713; Mon, 22 Feb 2021 08:01:18 +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.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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DkZPp4MrXz4mDq; Mon, 22 Feb 2021 08:01:18 +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 7F71621E33; Mon, 22 Feb 2021 08:01:18 +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 11M81I7N051684; Mon, 22 Feb 2021 08:01:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11M81HfC051680; Mon, 22 Feb 2021 08:01:17 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202102220801.11M81HfC051680@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 22 Feb 2021 08:01:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566277 - in head/math: . py-iminuit X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-iminuit X-SVN-Commit-Revision: 566277 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Feb 2021 08:01:18 -0000 Author: yuri Date: Mon Feb 22 08:01:17 2021 New Revision: 566277 URL: https://svnweb.freebsd.org/changeset/ports/566277 Log: New port: math/py-iminuit: Jupyter-friendly Python frontend for MINUIT2 in C++ Added: head/math/py-iminuit/ head/math/py-iminuit/Makefile (contents, props changed) head/math/py-iminuit/distinfo (contents, props changed) head/math/py-iminuit/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Feb 22 07:27:38 2021 (r566276) +++ head/math/Makefile Mon Feb 22 08:01:17 2021 (r566277) @@ -787,6 +787,7 @@ SUBDIR += py-gym SUBDIR += py-hdbscan SUBDIR += py-hdmedians + SUBDIR += py-iminuit SUBDIR += py-intspan SUBDIR += py-iohexperimenter SUBDIR += py-jax Added: head/math/py-iminuit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-iminuit/Makefile Mon Feb 22 08:01:17 2021 (r566277) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= iminuit +DISTVERSION= 2.4.0 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Jupyter-friendly Python frontend for MINUIT2 in C++ + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= cmake:devel/cmake +RUN_DEPENDS= ${PYNUMPY} + +USES= python:3.6+ +USE_PYTHON= distutils autoplist + +.include Added: head/math/py-iminuit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-iminuit/distinfo Mon Feb 22 08:01:17 2021 (r566277) @@ -0,0 +1,3 @@ +TIMESTAMP = 1613979766 +SHA256 (iminuit-2.4.0.tar.gz) = 350c13d33f3ec5884335aea1cc11a17ae49dd8e6b2181c3f1b3c9c27e2e0b228 +SIZE (iminuit-2.4.0.tar.gz) = 372122 Added: head/math/py-iminuit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-iminuit/pkg-descr Mon Feb 22 08:01:17 2021 (r566277) @@ -0,0 +1,8 @@ +iminuit is a Jupyter-friendly Python interface for the Minuit2 C++ library +maintained by CERN's ROOT team. + +It can be used as a general robust function minimisation method, but is most +commonly used for likelihood fits of models to data, and to get model parameter +error estimates from likelihood profile analysis. + +WWW: https://github.com/scikit-hep/iminuit