From owner-svn-ports-all@freebsd.org Fri Nov 4 19:44:27 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 8FBC0C306DE; Fri, 4 Nov 2016 19:44:27 +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 481351D7; Fri, 4 Nov 2016 19:44:27 +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 uA4JiQRv095323; Fri, 4 Nov 2016 19:44:26 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA4JiQxq095319; Fri, 4 Nov 2016 19:44:26 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201611041944.uA4JiQxq095319@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Fri, 4 Nov 2016 19:44:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425355 - in head/cad: . py-gdsii 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.23 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: Fri, 04 Nov 2016 19:44:27 -0000 Author: hrs Date: Fri Nov 4 19:44:26 2016 New Revision: 425355 URL: https://svnweb.freebsd.org/changeset/ports/425355 Log: Add cad/py-gdsii, GDSII file manipulation library. Added: head/cad/py-gdsii/ head/cad/py-gdsii/Makefile (contents, props changed) head/cad/py-gdsii/distinfo (contents, props changed) head/cad/py-gdsii/pkg-descr (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Fri Nov 4 19:42:48 2016 (r425354) +++ head/cad/Makefile Fri Nov 4 19:44:26 2016 (r425355) @@ -65,6 +65,7 @@ SUBDIR += p5-Verilog-Perl SUBDIR += pcb SUBDIR += pdnmesh + SUBDIR += py-gdsii SUBDIR += py-gdspy SUBDIR += py-lcapy SUBDIR += py-pycam Added: head/cad/py-gdsii/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-gdsii/Makefile Fri Nov 4 19:44:26 2016 (r425355) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= gdsii +PORTVERSION= 0.2.1 +CATEGORIES= cad python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} + +MAINTAINER= hrs@FreeBSD.org +COMMENT= GDSII manipulation libaray + +LICENSE= LGPL3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/cad/py-gdsii/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-gdsii/distinfo Fri Nov 4 19:44:26 2016 (r425355) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463386922 +SHA256 (python-gdsii-0.2.1.tar.gz) = 341b3f21770f4d50615f42fc568b1b1acb9d5c6ccb3fd79aba28d9a5a4eebc44 +SIZE (python-gdsii-0.2.1.tar.gz) = 38071 Added: head/cad/py-gdsii/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-gdsii/pkg-descr Fri Nov 4 19:44:26 2016 (r425355) @@ -0,0 +1,5 @@ +python-gdsii is a library that can be used to read, create, modify and save +GDSII files. It supports both low-level record I/O and high level interface to +GDSII libraries (databases), structures, and elements. + +WWW: http://pythonhosted.org/python-gdsii/