From owner-svn-ports-head@freebsd.org Mon May 16 19:48:59 2016 Return-Path: Delivered-To: svn-ports-head@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 0CCFCB3E95A; Mon, 16 May 2016 19:48:59 +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 B3AE61CA0; Mon, 16 May 2016 19:48:58 +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 u4GJmvYJ013452; Mon, 16 May 2016 19:48:57 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4GJmvF8013448; Mon, 16 May 2016 19:48:57 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201605161948.u4GJmvF8013448@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 19:48:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415361 - in head/cad: . py-gdspy X-SVN-Group: ports-head 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.22 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, 16 May 2016 19:48:59 -0000 Author: hrs Date: Mon May 16 19:48:57 2016 New Revision: 415361 URL: https://svnweb.freebsd.org/changeset/ports/415361 Log: Add cad/py-gdspy, Python module for creating GDSII stream files. Added: head/cad/py-gdspy/ head/cad/py-gdspy/Makefile (contents, props changed) head/cad/py-gdspy/distinfo (contents, props changed) head/cad/py-gdspy/pkg-descr (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Mon May 16 19:28:59 2016 (r415360) +++ head/cad/Makefile Mon May 16 19:48:57 2016 (r415361) @@ -62,6 +62,7 @@ SUBDIR += p5-Verilog-Perl SUBDIR += pcb SUBDIR += pdnmesh + SUBDIR += py-gdspy SUBDIR += py-lcapy SUBDIR += py-pycam SUBDIR += pythoncad Added: head/cad/py-gdspy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-gdspy/Makefile Mon May 16 19:48:57 2016 (r415361) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= gdspy +PORTVERSION= 0.8.1 +DISTVERSIONPREFIX= v +CATEGORIES= cad python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= hrs@FreeBSD.org +COMMENT= Python module for creating GDSII stream files + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy + +USES= python +USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= heitzmann + +OPTIONS_DEFINE= EXAMPLES +EXAMPLES_PLIST_FILES= ${EXAMPLESDIR}/tutorial.py + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/tutorial.py \ + ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/cad/py-gdspy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-gdspy/distinfo Mon May 16 19:48:57 2016 (r415361) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463423238 +SHA256 (heitzmann-gdspy-v0.8.1_GH0.tar.gz) = d399b3c2740e2e0a9221b94aeaddc4f58aea69546e85e8753df15ea8eac5389d +SIZE (heitzmann-gdspy-v0.8.1_GH0.tar.gz) = 107816 Added: head/cad/py-gdspy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-gdspy/pkg-descr Mon May 16 19:48:57 2016 (r415361) @@ -0,0 +1,5 @@ +Gdspy is a Python module for creating GDSII stream files, usually CAD +layouts. It includes a layout viewer for the geometries created, and +it can also be used to import and merge GDSII files. + +WWW: https://github.com/heitzmann/gdspy