From owner-svn-ports-all@freebsd.org Sat Apr 14 23:58:22 2018 Return-Path: Delivered-To: svn-ports-all@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 F0AFFFA4E14; Sat, 14 Apr 2018 23:58:21 +0000 (UTC) (envelope-from sunpoet@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 36B967BBBE; Sat, 14 Apr 2018 23:58:19 +0000 (UTC) (envelope-from sunpoet@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 77B5F2F036; Sat, 14 Apr 2018 23:58:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3ENwJEZ078146; Sat, 14 Apr 2018 23:58:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3ENwJj8078142; Sat, 14 Apr 2018 23:58:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201804142358.w3ENwJj8078142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 14 Apr 2018 23:58:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467345 - in head/converters: . py-pint X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/converters: . py-pint X-SVN-Commit-Revision: 467345 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.25 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: Sat, 14 Apr 2018 23:58:22 -0000 Author: sunpoet Date: Sat Apr 14 23:58:18 2018 New Revision: 467345 URL: https://svnweb.freebsd.org/changeset/ports/467345 Log: Add py-pint 0.8.1 Pint is a Python package to define, operate and manipulate physical quantities: the product of a numerical value and a unit of measurement. It allows arithmetic operations between them and conversions from and to different units. It is distributed with a comprehensive list of physical units, prefixes and constants. Due to its modular design, you can extend (or even rewrite!) the complete list without changing the source code. It supports a lot of numpy mathematical operations without monkey patching or wrapping numpy. WWW: https://pypi.python.org/pypi/Pint WWW: https://github.com/hgrecco/pint Added: head/converters/py-pint/ head/converters/py-pint/Makefile (contents, props changed) head/converters/py-pint/distinfo (contents, props changed) head/converters/py-pint/pkg-descr (contents, props changed) Modified: head/converters/Makefile Modified: head/converters/Makefile ============================================================================== --- head/converters/Makefile Sat Apr 14 23:58:13 2018 (r467344) +++ head/converters/Makefile Sat Apr 14 23:58:18 2018 (r467345) @@ -158,6 +158,7 @@ SUBDIR += py-better-bencode SUBDIR += py-bsdconv SUBDIR += py-iconv + SUBDIR += py-pint SUBDIR += py-rencode SUBDIR += py-unidecode SUBDIR += py-webencodings Added: head/converters/py-pint/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/py-pint/Makefile Sat Apr 14 23:58:18 2018 (r467345) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pint +PORTVERSION= 0.8.1 +CATEGORIES= converters python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Pint-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Define, operate and manipulate physical quantities + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/converters/py-pint/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/py-pint/distinfo Sat Apr 14 23:58:18 2018 (r467345) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523722809 +SHA256 (Pint-0.8.1.tar.gz) = afcf31443a478c32bbac4b00337ee9026a13d0e2ac83d30c79151462513bb0d4 +SIZE (Pint-0.8.1.tar.gz) = 162197 Added: head/converters/py-pint/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/py-pint/pkg-descr Sat Apr 14 23:58:18 2018 (r467345) @@ -0,0 +1,11 @@ +Pint is a Python package to define, operate and manipulate physical quantities: +the product of a numerical value and a unit of measurement. It allows arithmetic +operations between them and conversions from and to different units. + +It is distributed with a comprehensive list of physical units, prefixes and +constants. Due to its modular design, you can extend (or even rewrite!) the +complete list without changing the source code. It supports a lot of numpy +mathematical operations without monkey patching or wrapping numpy. + +WWW: https://pypi.python.org/pypi/Pint +WWW: https://github.com/hgrecco/pint