From owner-svn-ports-all@freebsd.org Sun Dec 27 06:43:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75862A52990; Sun, 27 Dec 2015 06:43:54 +0000 (UTC) (envelope-from koobs@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 mx1.freebsd.org (Postfix) with ESMTPS id 347D51FFF; Sun, 27 Dec 2015 06:43:54 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBR6hrWn037985; Sun, 27 Dec 2015 06:43:53 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBR6hqCu037981; Sun, 27 Dec 2015 06:43:52 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201512270643.tBR6hqCu037981@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 27 Dec 2015 06:43:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404550 - in head/devel: . py-pycmd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Dec 2015 06:43:54 -0000 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 +# $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 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