From owner-svn-ports-head@freebsd.org Thu Mar 29 20:37:40 2018 Return-Path: Delivered-To: svn-ports-head@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 8A2DFF750FD; Thu, 29 Mar 2018 20:37:40 +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 3C35783BF3; Thu, 29 Mar 2018 20:37:40 +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 32DDD1F009; Thu, 29 Mar 2018 20:37:40 +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 w2TKbdaH014746; Thu, 29 Mar 2018 20:37:39 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2TKbd5R014742; Thu, 29 Mar 2018 20:37:39 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803292037.w2TKbd5R014742@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 29 Mar 2018 20:37:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465928 - in head/science: . py-quantities X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . py-quantities X-SVN-Commit-Revision: 465928 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.25 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: Thu, 29 Mar 2018 20:37:40 -0000 Author: yuri Date: Thu Mar 29 20:37:39 2018 New Revision: 465928 URL: https://svnweb.freebsd.org/changeset/ports/465928 Log: New port: science/py-quantities: Support for physical quantities with units, based on numpy Added: head/science/py-quantities/ head/science/py-quantities/Makefile (contents, props changed) head/science/py-quantities/distinfo (contents, props changed) head/science/py-quantities/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Thu Mar 29 20:19:36 2018 (r465927) +++ head/science/Makefile Thu Mar 29 20:37:39 2018 (r465928) @@ -178,6 +178,7 @@ SUBDIR += py-pyteomics SUBDIR += py-pyteomics.biolccc SUBDIR += py-qspin + SUBDIR += py-quantities SUBDIR += py-scikit-fuzzy SUBDIR += py-scikit-learn SUBDIR += py-scikit-sparse Added: head/science/py-quantities/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-quantities/Makefile Thu Mar 29 20:37:39 2018 (r465928) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= quantities +DISTVERSION= 0.12.1 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Support for physical quantities with units, based on numpy + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/science/py-quantities/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-quantities/distinfo Thu Mar 29 20:37:39 2018 (r465928) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522354862 +SHA256 (quantities-0.12.1.tar.gz) = 0a03e8511db603c57ca80dee851c43f08d0457f4d592bcac2e154570756cb934 +SIZE (quantities-0.12.1.tar.gz) = 81763 Added: head/science/py-quantities/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-quantities/pkg-descr Thu Mar 29 20:37:39 2018 (r465928) @@ -0,0 +1,9 @@ +Quantities is designed to handle arithmetic and conversions of physical +quantities, which have a magnitude, dimensionality specified by various units, +and possibly an uncertainty. See the tutorial for examples. Quantities builds +on the popular numpy library and is designed to work with numpy ufuncs, many +of which are already supported. Quantities is actively developed, and while +the current features and API are stable, test coverage is incomplete so the +package is not suggested for mission-critical applications. + +WWW: https://github.com/python-quantities/python-quantities