Date: Thu, 29 Mar 2018 20:37:39 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465928 - in head/science: . py-quantities Message-ID: <201803292037.w2TKbd5R014742@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803292037.w2TKbd5R014742>