From owner-svn-ports-head@freebsd.org Sun Aug 16 12:54:35 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5B1783BB389; Sun, 16 Aug 2020 12:54:35 +0000 (UTC) (envelope-from swills@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4BTxvv1nlxz4KVk; Sun, 16 Aug 2020 12:54:35 +0000 (UTC) (envelope-from swills@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 21D12105D9; Sun, 16 Aug 2020 12:54:35 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07GCsYUD071749; Sun, 16 Aug 2020 12:54:34 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07GCsYvV071743; Sun, 16 Aug 2020 12:54:34 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202008161254.07GCsYvV071743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 16 Aug 2020 12:54:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r545105 - head/cad/py-cq-editor X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/cad/py-cq-editor X-SVN-Commit-Revision: 545105 X-SVN-Commit-Repository: ports 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.33 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: Sun, 16 Aug 2020 12:54:35 -0000 Author: swills Date: Sun Aug 16 12:54:34 2020 New Revision: 545105 URL: https://svnweb.freebsd.org/changeset/ports/545105 Log: cad/py-cq-editor: create port CQ-editor is a CadQuery GUI editor based on PyQT. Graphical debugger for CadQuery scripts - Step through script and watch how your model changes CadQuery object stack inspector - Visual inspection of current workplane and selected items - Insight into evolution of the model Export to various formats - STL - STEP WWW: https://github.com/CadQuery/CQ-editor/ PR: 248212 Submitted by: Neal Nelson Added: head/cad/py-cq-editor/ head/cad/py-cq-editor/Makefile (contents, props changed) head/cad/py-cq-editor/distinfo (contents, props changed) head/cad/py-cq-editor/pkg-descr (contents, props changed) Added: head/cad/py-cq-editor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-cq-editor/Makefile Sun Aug 16 12:54:34 2020 (r545105) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= cq-editor +DISTVERSION= 0.1.2 +CATEGORIES= cad +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@nicandneal.net +COMMENT= CadQuery GUI editor based on PyQT + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/cadquery:cad/py-cadquery@${PY_FLAVOR} + +USES= pyqt:5 python:3.6+ +USE_PYTHON= autoplist distutils +USE_PYQT= core gui widgets + +USE_GITHUB= yes +GH_ACCOUNT= CadQuery +GH_PROJECT= CQ-editor + +.include Added: head/cad/py-cq-editor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-cq-editor/distinfo Sun Aug 16 12:54:34 2020 (r545105) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595406923 +SHA256 (CadQuery-CQ-editor-0.1.2_GH0.tar.gz) = 760f1bf2f5c46dd7b6590f1161ebc7dc6907f286602f4f27a294596eeb51611e +SIZE (CadQuery-CQ-editor-0.1.2_GH0.tar.gz) = 2229478 Added: head/cad/py-cq-editor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/py-cq-editor/pkg-descr Sun Aug 16 12:54:34 2020 (r545105) @@ -0,0 +1,14 @@ +CQ-editor is a CadQuery GUI editor based on PyQT. + +Graphical debugger for CadQuery scripts +- Step through script and watch how your model changes + +CadQuery object stack inspector +- Visual inspection of current workplane and selected items +- Insight into evolution of the model + +Export to various formats +- STL +- STEP + +WWW: https://github.com/CadQuery/CQ-editor/