Date: Sun, 27 Dec 2015 06:43:52 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404550 - in head/devel: . py-pycmd Message-ID: <201512270643.tBR6hqCu037981@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Sun Dec 27 06:43:52 2015 New Revision: 404550 URL: https://svnweb.freebsd.org/changeset/ports/404550 Log: [NEW] devl/py-pycmd: Tools for managing/searching Python related files pycmd is a collection of command line tools for helping with Python development: * py.cleanup: remove .pyc and similar files * py.lookup: find text in recursively found .py files * py.countloc: give LOCs for lines and testlines * py.which: print location of an importable package or module WWW: https://pypi.python.org/pypi/pycmd Added: head/devel/py-pycmd/ head/devel/py-pycmd/Makefile (contents, props changed) head/devel/py-pycmd/distinfo (contents, props changed) head/devel/py-pycmd/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Dec 27 06:23:14 2015 (r404549) +++ head/devel/Makefile Sun Dec 27 06:43:52 2015 (r404550) @@ -4209,6 +4209,7 @@ SUBDIR += py-pycalendar SUBDIR += py-pycallgraph SUBDIR += py-pycerberus + SUBDIR += py-pycmd SUBDIR += py-pycparser SUBDIR += py-pydasm SUBDIR += py-pydoop Added: head/devel/py-pycmd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycmd/Makefile Sun Dec 27 06:43:52 2015 (r404550) @@ -0,0 +1,24 @@ +# Created by: Kubilay Kocak <koobs@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pycmd +PORTVERSION= 1.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Tools for managing/searching Python related files + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py>=1.4.9:${PORTSDIR}/devel/py-py +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-pycmd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycmd/distinfo Sun Dec 27 06:43:52 2015 (r404550) @@ -0,0 +1,2 @@ +SHA256 (pycmd-1.2.tar.gz) = adc1976c0106919e9338db20102b91009256dcfec924a66928d7297026f72477 +SIZE (pycmd-1.2.tar.gz) = 12896 Added: head/devel/py-pycmd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycmd/pkg-descr Sun Dec 27 06:43:52 2015 (r404550) @@ -0,0 +1,9 @@ +pycmd is a collection of command line tools for helping with Python +development: + + * py.cleanup: remove .pyc and similar files + * py.lookup: find text in recursively found .py files + * py.countloc: give LOCs for lines and testlines + * py.which: print location of an importable package or module + +WWW: https://pypi.python.org/pypi/pycmd
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512270643.tBR6hqCu037981>