Received: by mail.netbsd.org (Postfix, from userid 605) id EE29D84E7E; Fri, 17 Jun 2022 11:36:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3323984E7B for ; Fri, 17 Jun 2022 11:36:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id sslEJO5obBgu for ; Fri, 17 Jun 2022 11:36:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8A18D84D36 for ; Fri, 17 Jun 2022 11:36:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5F003FB1A; Fri, 17 Jun 2022 11:38:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655465910135200" MIME-Version: 1.0 Date: Fri, 17 Jun 2022 11:38:30 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/cad/py-gdstk To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20220617113830.5F003FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655465910135200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Fri Jun 17 11:38:30 UTC 2022 Added Files: pkgsrc/cad/py-gdstk: DESCR Makefile PLIST distinfo Log Message: cad/py-gdstk: import py39-gdstk-0.8.3 Gdstk (GDSII Tool Kit) is a C++ library for creation and manipulation of GDSII and OASIS files. It is also available as a Python module meant to be a successor to Gdspy. Key features for the creation of complex CAD layouts are included: - Boolean operations on polygons (AND, OR, NOT, XOR) based on clipping algorithm - Polygon offset (inward and outward rescaling of polygons) - Efficient point-in-polygon solutions for large array sets Typical applications of Gdstk are in the fields of electronic chip design, planar lightwave circuit design, and mechanical engineering. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/cad/py-gdstk/DESCR pkgsrc/cad/py-gdstk/Makefile \ pkgsrc/cad/py-gdstk/PLIST pkgsrc/cad/py-gdstk/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655465910135200 Content-Disposition: inline Content-Length: 2755 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/cad/py-gdstk/DESCR diff -u /dev/null pkgsrc/cad/py-gdstk/DESCR:1.1 --- /dev/null Fri Jun 17 11:38:30 2022 +++ pkgsrc/cad/py-gdstk/DESCR Fri Jun 17 11:38:30 2022 @@ -0,0 +1,13 @@ +Gdstk (GDSII Tool Kit) is a C++ library for creation and manipulation of +GDSII and OASIS files. It is also available as a Python module meant to be +a successor to Gdspy. + +Key features for the creation of complex CAD layouts are included: + +- Boolean operations on polygons (AND, OR, NOT, XOR) based on clipping + algorithm +- Polygon offset (inward and outward rescaling of polygons) +- Efficient point-in-polygon solutions for large array sets + +Typical applications of Gdstk are in the fields of electronic chip design, +planar lightwave circuit design, and mechanical engineering. Index: pkgsrc/cad/py-gdstk/Makefile diff -u /dev/null pkgsrc/cad/py-gdstk/Makefile:1.1 --- /dev/null Fri Jun 17 11:38:30 2022 +++ pkgsrc/cad/py-gdstk/Makefile Fri Jun 17 11:38:30 2022 @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2022/06/17 11:38:30 mef Exp $ + +VERSION= 0.8.3 +GITHUB_TAG= v${VERSION} +DISTNAME= gdstk-${VERSION} +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= cad +MASTER_SITES= ${MASTER_SITE_GITHUB:=heitzmann/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/heitzmann/gdstk/ +COMMENT= C++ library for GDSII and OASIS files +LICENSE= boost-license + +WRKSRC= ${WRKDIR}/${DISTNAME} +USE_LANGUAGES+= c c++ +USE_TOOLS+= cmake + +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 + +.include "../../devel/zlib/buildlink3.mk" +.include "../../math/py-numpy/buildlink3.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/cad/py-gdstk/PLIST diff -u /dev/null pkgsrc/cad/py-gdstk/PLIST:1.1 --- /dev/null Fri Jun 17 11:38:30 2022 +++ pkgsrc/cad/py-gdstk/PLIST Fri Jun 17 11:38:30 2022 @@ -0,0 +1,8 @@ +@comment $NetBSD: PLIST,v 1.1 2022/06/17 11:38:30 mef Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/gdstk.so Index: pkgsrc/cad/py-gdstk/distinfo diff -u /dev/null pkgsrc/cad/py-gdstk/distinfo:1.1 --- /dev/null Fri Jun 17 11:38:30 2022 +++ pkgsrc/cad/py-gdstk/distinfo Fri Jun 17 11:38:30 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/06/17 11:38:30 mef Exp $ + +BLAKE2s (gdstk-0.8.3.tar.gz) = 6195166800f07ace59159b932f36348f49110e07fe0a46adcf3ff522dc476229 +SHA512 (gdstk-0.8.3.tar.gz) = 1106c8e7870662448929d2e6cc5b15babe5bf6f6be7a2631fc2d47b840964ba96d87ae86e5ca8a5566c87f189d164ac8e402bc82e8f08abee4bf8374bbf15e0d +Size (gdstk-0.8.3.tar.gz) = 613066 bytes --_----------=_1655465910135200--