From owner-svn-ports-all@freebsd.org Mon May 16 17:34:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CBBC8B3CA6C; Mon, 16 May 2016 17:34:38 +0000 (UTC) (envelope-from hrs@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 mx1.freebsd.org (Postfix) with ESMTPS id 8E0CF195A; Mon, 16 May 2016 17:34:38 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4GHYbTp069683; Mon, 16 May 2016 17:34:37 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4GHYb20069679; Mon, 16 May 2016 17:34:37 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201605161734.u4GHYb20069679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Mon, 16 May 2016 17:34:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415342 - in head/cad: . py-lcapy X-SVN-Group: ports-head 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.22 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, 16 May 2016 17:34:38 -0000 Author: hrs Date: Mon May 16 17:34:37 2016 New Revision: 415342 URL: https://svnweb.freebsd.org/changeset/ports/415342 Log: Add cad/py-lcapy, Symbolic MDA Analysis Package for Linear Circuits. Added: head/cad/py-lcapy/ head/cad/py-lcapy/Makefile (contents, props changed) head/cad/py-lcapy/distinfo (contents, props changed) head/cad/py-lcapy/pkg-descr (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Mon May 16 17:00:57 2016 (r415341) +++ head/cad/Makefile Mon May 16 17:34:37 2016 (r415342) @@ -62,6 +62,7 @@ SUBDIR += p5-Verilog-Perl SUBDIR += pcb SUBDIR += pdnmesh + SUBDIR += py-lcapy SUBDIR += py-pycam SUBDIR += pythoncad SUBDIR += qcad Added: head/cad/py-lcapy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-lcapy/Makefile Mon May 16 17:34:37 2016 (r415342) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= lcapy +DISTVERSION= 40de0a2 +CATEGORIES= cad python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= hrs@FreeBSD.org +COMMENT= Symbolic MDA Analysis Package for Linear Circuits + +LICENSE= LGPL21 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sympy \ + ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/matplotlib + +USES= python +USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= mph- +PORTEXAMPLES= netlists \ + networks \ + notebooks \ + schematics + +OPTIONS_DEFINE= EXAMPLES + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/doc/examples && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/cad/py-lcapy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-lcapy/distinfo Mon May 16 17:34:37 2016 (r415342) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463419670 +SHA256 (mph--lcapy-40de0a2_GH0.tar.gz) = 5588fe619ee409ab3727a1d38245b7a0cf493726f00679a0dff6f33a6a815055 +SIZE (mph--lcapy-40de0a2_GH0.tar.gz) = 976810 Added: head/cad/py-lcapy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-lcapy/pkg-descr Mon May 16 17:34:37 2016 (r415342) @@ -0,0 +1,10 @@ +Lcapy is an experimental Python package for teaching linear circuit +analysis. It uses SymPy for symbolic mathematics. + +Lcapy can analyse circuits described with netlists using modified +nodal analysis. + +Alternatively, Lcapy can analyse networks and circuits formed by +combining one, two, and (some) three port networks. + +WWW: https://github.com/mph-/lcapy