Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 May 2016 19:48:57 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r415361 - in head/cad: . py-gdspy
Message-ID:  <201605161948.u4GJmvF8013448@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605161948.u4GJmvF8013448>