From owner-svn-ports-head@freebsd.org Fri Mar 15 13:58:34 2019 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 687131549E34; Fri, 15 Mar 2019 13:58:34 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3F42683CA; Fri, 15 Mar 2019 13:58:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D734FAFF2; Fri, 15 Mar 2019 13:58:33 +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 x2FDwX3n049394; Fri, 15 Mar 2019 13:58:33 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2FDwXjt049390; Fri, 15 Mar 2019 13:58:33 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201903151358.x2FDwXjt049390@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Fri, 15 Mar 2019 13:58:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495790 - in head/cad: . py-phidl X-SVN-Group: ports-head X-SVN-Commit-Author: hrs X-SVN-Commit-Paths: in head/cad: . py-phidl X-SVN-Commit-Revision: 495790 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F3F42683CA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 15 Mar 2019 13:58:34 -0000 Author: hrs Date: Fri Mar 15 13:58:32 2019 New Revision: 495790 URL: https://svnweb.freebsd.org/changeset/ports/495790 Log: Add cad/py-phidl, a GDS-based CAD tool for photonic and superconducting circuits. Added: head/cad/py-phidl/ head/cad/py-phidl/Makefile (contents, props changed) head/cad/py-phidl/distinfo (contents, props changed) head/cad/py-phidl/pkg-descr (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Fri Mar 15 13:41:29 2019 (r495789) +++ head/cad/Makefile Fri Mar 15 13:58:32 2019 (r495790) @@ -80,6 +80,7 @@ SUBDIR += pdnmesh SUBDIR += py-gdspy SUBDIR += py-lcapy + SUBDIR += py-phidl SUBDIR += py-pycam SUBDIR += py-pyfda SUBDIR += python-gdsii Added: head/cad/py-phidl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-phidl/Makefile Fri Mar 15 13:58:32 2019 (r495790) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= phidl +PORTVERSION= 1.0.1 +CATEGORIES= cad python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= hrs@FreeBSD.org +COMMENT= GDS-based CAD tool for photonic and superconducting circuits + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gdspy>0:cad/py-gdspy@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= amccaugh + +.include Added: head/cad/py-phidl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-phidl/distinfo Fri Mar 15 13:58:32 2019 (r495790) @@ -0,0 +1,3 @@ +TIMESTAMP = 1552656620 +SHA256 (amccaugh-phidl-1.0.1_GH0.tar.gz) = cc1e9a1c0a015828b4069753b3424ee89c0cd340dd541e6b00833287635d39af +SIZE (amccaugh-phidl-1.0.1_GH0.tar.gz) = 511067 Added: head/cad/py-phidl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-phidl/pkg-descr Fri Mar 15 13:58:32 2019 (r495790) @@ -0,0 +1,13 @@ +PHIDL is an open-source GDS-based CAD tool for Python 2 and 3 which extends +and simplifies the excellent gdspy. It strives to simplify GDSII geometry +creation by making the design process layout-driven, rather than +coordinate-driven. The base installation includes a large library of +simple shapes (e.g. rectangles, circles), photonic structures (e.g. sine +curve waveguides), and superconducting nanowire shapes (e.g. single +photon detectors) which are fully parameterized. It also has a built-in +quick-plotting function based on Qt (or matplotlib) which allows you view +the state of any GDS object, useful when scripting geometry-making +functions. It also has a very thorough tutorial as well which will walk you +through the process of getting acquainted with PHIDL. + +WWW: https://github.com/amccaugh/phidl