From owner-svn-ports-all@freebsd.org Mon Jun 11 08:49:20 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 2E0BF10003B7; Mon, 11 Jun 2018 08:49:20 +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 D374A76D48; Mon, 11 Jun 2018 08:49:19 +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 B033A1930E; Mon, 11 Jun 2018 08:49:19 +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 w5B8nJwO014716; Mon, 11 Jun 2018 08:49:19 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5B8nIqx014712; Mon, 11 Jun 2018 08:49:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806110849.w5B8nIqx014712@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 11 Jun 2018 08:49:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472174 - in head/graphics: . py-pyqtgraph X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics: . py-pyqtgraph X-SVN-Commit-Revision: 472174 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.26 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: Mon, 11 Jun 2018 08:49:20 -0000 Author: yuri Date: Mon Jun 11 08:49:18 2018 New Revision: 472174 URL: https://svnweb.freebsd.org/changeset/ports/472174 Log: New port: graphics/Makefile: Scientific graphics and GUI library for Python Added: head/graphics/py-pyqtgraph/ head/graphics/py-pyqtgraph/Makefile (contents, props changed) head/graphics/py-pyqtgraph/distinfo (contents, props changed) head/graphics/py-pyqtgraph/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Jun 11 08:36:57 2018 (r472173) +++ head/graphics/Makefile Mon Jun 11 08:49:18 2018 (r472174) @@ -934,6 +934,7 @@ SUBDIR += py-pygooglechart SUBDIR += py-pygraphviz SUBDIR += py-pyproj + SUBDIR += py-pyqtgraph SUBDIR += py-qt4-svg SUBDIR += py-qt5-svg SUBDIR += py-sane Added: head/graphics/py-pyqtgraph/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyqtgraph/Makefile Mon Jun 11 08:49:18 2018 (r472174) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pyqtgraph +DISTVERSION= 0.10.0 +CATEGORIES= graphics science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Scientific graphics and GUI library for Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/graphics/py-pyqtgraph/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyqtgraph/distinfo Mon Jun 11 08:49:18 2018 (r472174) @@ -0,0 +1,3 @@ +TIMESTAMP = 1528706387 +SHA256 (pyqtgraph-0.10.0.tar.gz) = 4c08ab34881fae5ecf9ddfe6c1220b9e41e6d3eb1579a7d8ef501abb8e509251 +SIZE (pyqtgraph-0.10.0.tar.gz) = 1548072 Added: head/graphics/py-pyqtgraph/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyqtgraph/pkg-descr Mon Jun 11 08:49:18 2018 (r472174) @@ -0,0 +1,7 @@ +PyQtGraph is a pure-python graphics and GUI library built on PyQt4/PySide and +numpy. It is intended for use in mathematics/scientific/engineering +applications. Despite being written entirely in python, the library is very +fast due to its heavy leverage of numpy for number crunching and Qt's +GraphicsView framework for fast display. + +WWW: http://www.pyqtgraph.org/