Date: Wed, 9 Dec 2015 03:19:53 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403356 - in head/sysutils: . py-pywatchman Message-ID: <201512090319.tB93Jrlo090815@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Wed Dec 9 03:19:53 2015 New Revision: 403356 URL: https://svnweb.freebsd.org/changeset/ports/403356 Log: sysutils/py-pywatchman: add new port Connect and query Watchman to discover file changes. https://pypi.python.org/pypi/pywatchman PR: 201031 Approved by: cookie licking (47 days) Added: head/sysutils/py-pywatchman/ head/sysutils/py-pywatchman/Makefile (contents, props changed) head/sysutils/py-pywatchman/distinfo (contents, props changed) head/sysutils/py-pywatchman/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile (contents, props changed) Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Dec 9 03:19:16 2015 (r403355) +++ head/sysutils/Makefile Wed Dec 9 03:19:53 2015 (r403356) @@ -798,6 +798,7 @@ SUBDIR += py-psutil121 SUBDIR += py-ptyprocess SUBDIR += py-pytsk + SUBDIR += py-pywatchman SUBDIR += py-queuelib SUBDIR += py-ranger SUBDIR += py-salt Added: head/sysutils/py-pywatchman/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-pywatchman/Makefile Wed Dec 9 03:19:53 2015 (r403356) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= pywatchman +PORTVERSION= 1.3.0 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= linpct@gmail.com +COMMENT= Watchman client for Python + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= watchman>=4:${PORTSDIR}/sysutils/watchman + +USES= python:2 +USE_PYTHON= autoplist distutils + +post-install: + ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} \ + -name '*.so' -exec ${STRIP_CMD} {} + + +.include <bsd.port.mk> Added: head/sysutils/py-pywatchman/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-pywatchman/distinfo Wed Dec 9 03:19:53 2015 (r403356) @@ -0,0 +1,2 @@ +SHA256 (pywatchman-1.3.0.tar.gz) = c3d5be183b5b04f6ad575fc71b06dd196185dea1558d9f4d0598ba9beaab8245 +SIZE (pywatchman-1.3.0.tar.gz) = 16873 Added: head/sysutils/py-pywatchman/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-pywatchman/pkg-descr Wed Dec 9 03:19:53 2015 (r403356) @@ -0,0 +1,3 @@ +Connect and query Watchman to discover file changes. + +WWW: https://pypi.python.org/pypi/pywatchman
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512090319.tB93Jrlo090815>