Date: Wed, 22 May 2019 21:09:07 +0000 (UTC) From: Dave Cottlehuber <dch@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502289 - in head/devel: . py-q py-q/files Message-ID: <201905222109.x4ML97B3087663@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dch Date: Wed May 22 21:09:07 2019 New Revision: 502289 URL: https://svnweb.freebsd.org/changeset/ports/502289 Log: devel/py-q: new port - python debugging for tired programmers Approved by: jrm (mentor) Differential Revision: https://reviews.freebsd.org/D17964 Added: head/devel/py-q/ head/devel/py-q/Makefile (contents, props changed) head/devel/py-q/distinfo (contents, props changed) head/devel/py-q/files/ head/devel/py-q/files/pkg-message.in (contents, props changed) head/devel/py-q/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed May 22 20:59:27 2019 (r502288) +++ head/devel/Makefile Wed May 22 21:09:07 2019 (r502289) @@ -4831,6 +4831,7 @@ SUBDIR += py-pyvisa-py SUBDIR += py-pyxb SUBDIR += py-pyxml2obj + SUBDIR += py-q SUBDIR += py-qpid SUBDIR += py-qserve SUBDIR += py-qt5 Added: head/devel/py-q/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-q/Makefile Wed May 22 21:09:07 2019 (r502289) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= q +DISTVERSION= 2.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dch@FreeBSD.org +COMMENT= Quick-and-dirty debugging output for tired programmers + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= distutils autoplist concurrent + +NO_ARCH= yes +SUB_FILES= pkg-message +SUB_LIST= DOCSDIR=${DOCSDIR} + +OPTIONS_DEFINE= DOCS +PORTDOCS= README.md + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) + +.include <bsd.port.mk> Added: head/devel/py-q/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-q/distinfo Wed May 22 21:09:07 2019 (r502289) @@ -0,0 +1,3 @@ +TIMESTAMP = 1542039885 +SHA256 (q-2.6.tar.gz) = de0fcf5a439754975dd8022c3bf26374b882d0fe4265aab8813f4e87e057eed5 +SIZE (q-2.6.tar.gz) = 7688 Added: head/devel/py-q/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-q/files/pkg-message.in Wed May 22 21:09:07 2019 (r502289) @@ -0,0 +1,5 @@ +Instructions for using devel/py-q can be found in the supplied docs: + + %%DOCSDIR%%/README.md + +Or video http://pyvideo.org/video/1858/sunday-evening-lightning-talks#t=25m15 Added: head/devel/py-q/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-q/pkg-descr Wed May 22 21:09:07 2019 (r502289) @@ -0,0 +1,11 @@ +Quick and dirty debugging output for tired programmers. + +Simply tail -f /tmp/q in your shell, and then: + + import q + q(foo) + +in your script. More information in the README and also +http://pyvideo.org/video/1858/sunday-evening-lightning-talks#t=25m15s + +WWW: https://github.com/zestyping/q
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905222109.x4ML97B3087663>