svn commit: r404550 - in head/devel: . py-pycmd

Kubilay Kocak koobs at FreeBSD.org
Sun Dec 27 06:43:54 UTC 2015


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pycmd
+PORTVERSION=	1.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs at 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


More information about the svn-ports-head mailing list