From owner-svn-ports-head@freebsd.org Mon Feb 26 22:32:49 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 3484EF28FE3; Mon, 26 Feb 2018 22:32:49 +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 C04EA6F9BA; Mon, 26 Feb 2018 22:32:48 +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 B913D219B7; Mon, 26 Feb 2018 22:32:48 +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 w1QMWmYD029297; Mon, 26 Feb 2018 22:32:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1QMWm2n029294; Mon, 26 Feb 2018 22:32:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802262232.w1QMWm2n029294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 26 Feb 2018 22:32:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463089 - head/devel/py-pyvisa-py X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-pyvisa-py X-SVN-Commit-Revision: 463089 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: Mon, 26 Feb 2018 22:32:49 -0000 Author: sunpoet Date: Mon Feb 26 22:32:48 2018 New Revision: 463089 URL: https://svnweb.freebsd.org/changeset/ports/463089 Log: Change MASTER_SITES to GitHub - Fix COMMENT - Simplify options - Update pkg-descr - Add GitHub repository to WWW - Take maintainership Modified: head/devel/py-pyvisa-py/Makefile head/devel/py-pyvisa-py/distinfo head/devel/py-pyvisa-py/pkg-descr Modified: head/devel/py-pyvisa-py/Makefile ============================================================================== --- head/devel/py-pyvisa-py/Makefile Mon Feb 26 22:32:42 2018 (r463088) +++ head/devel/py-pyvisa-py/Makefile Mon Feb 26 22:32:48 2018 (r463089) @@ -3,29 +3,25 @@ PORTNAME= pyvisa-py PORTVERSION= 0.2 CATEGORIES= devel python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyVISA-py-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org -COMMENT= PyVISA backend in a pure Python +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= PyVISA backend in pure Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USE_GITHUB= yes -GH_ACCOUNT= hgrecco - USES= python USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes -OPTIONS_GROUP= DRIVERS -DRIVERS_DESC= Additional modules -OPTIONS_GROUP_DRIVERS= SERIAL USB +OPTIONS_DEFINE= SERIAL USB +SERIAL_DESC= Access to devices via RS-232 +USB_DESC= Access to devices via USB -SERIAL_DESC= Access to devices via RS-232 -SERIAL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}serial>0:comms/py-serial@${FLAVOR} - -USB_DESC= Access to devices via USB -USB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}usb>0:devel/py-usb@${FLAVOR} +SERIAL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}serial>=0:comms/py-serial@${FLAVOR} +USB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}usb>=0:devel/py-usb@${FLAVOR} .include Modified: head/devel/py-pyvisa-py/distinfo ============================================================================== --- head/devel/py-pyvisa-py/distinfo Mon Feb 26 22:32:42 2018 (r463088) +++ head/devel/py-pyvisa-py/distinfo Mon Feb 26 22:32:48 2018 (r463089) @@ -1,2 +1,3 @@ -SHA256 (hgrecco-pyvisa-py-0.2_GH0.tar.gz) = 602f8c405c0753d162820213504e0d501b05e9dcbb538191a985b0293c970741 -SIZE (hgrecco-pyvisa-py-0.2_GH0.tar.gz) = 48322 +TIMESTAMP = 1519582840 +SHA256 (PyVISA-py-0.2.tar.gz) = 4e77ac0302f13f22e003d9be07ede371ead3fd672a17d9a963e24e8babc29ad7 +SIZE (PyVISA-py-0.2.tar.gz) = 50244 Modified: head/devel/py-pyvisa-py/pkg-descr ============================================================================== --- head/devel/py-pyvisa-py/pkg-descr Mon Feb 26 22:32:42 2018 (r463088) +++ head/devel/py-pyvisa-py/pkg-descr Mon Feb 26 22:32:48 2018 (r463089) @@ -1,5 +1,13 @@ -PyVISA-py is a backend for PyVISA. It implements most of the methods -for Message Based communication (Serial/USB/GPIB/Ethernet) using -Python and some cross platform libraries. +PyVISA started as wrapper for the NI-VISA library and therefore you need to +install National Instruments VISA library in your system. This works most of the +time, for most people. But NI-VISA is a proprietary library that only works on +certain systems. That is when PyVISA-py jumps in. +Starting from version 1.6, PyVISA allows to use different backends. These +backends can be dynamically loaded. PyVISA-py is one of such backends. It +implements most of the methods for Message Based communication +(Serial/USB/GPIB/Ethernet) using Python and some well developed, easy to deploy +and cross platform libraries. + WWW: https://pypi.python.org/pypi/PyVISA-py +WWW: https://github.com/pyvisa/pyvisa-py