diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2015-12-09 03:19:53 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2015-12-09 03:19:53 +0000 |
commit | eb6010dc1927aaf600a6052c54f5f925dfc5d480 (patch) | |
tree | d968f00d8ba0d6c27ee48031c0cff625a1a193bc /sysutils/py-pywatchman | |
parent | sysutils/watchman: update to 4.2.0 (diff) |
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)
Diffstat (limited to 'sysutils/py-pywatchman')
-rw-r--r-- | sysutils/py-pywatchman/Makefile | 23 | ||||
-rw-r--r-- | sysutils/py-pywatchman/distinfo | 2 | ||||
-rw-r--r-- | sysutils/py-pywatchman/pkg-descr | 3 |
3 files changed, 28 insertions, 0 deletions
diff --git a/sysutils/py-pywatchman/Makefile b/sysutils/py-pywatchman/Makefile new file mode 100644 index 000000000000..35519dfa0dc6 --- /dev/null +++ b/sysutils/py-pywatchman/Makefile @@ -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> diff --git a/sysutils/py-pywatchman/distinfo b/sysutils/py-pywatchman/distinfo new file mode 100644 index 000000000000..9a08befc5e63 --- /dev/null +++ b/sysutils/py-pywatchman/distinfo @@ -0,0 +1,2 @@ +SHA256 (pywatchman-1.3.0.tar.gz) = c3d5be183b5b04f6ad575fc71b06dd196185dea1558d9f4d0598ba9beaab8245 +SIZE (pywatchman-1.3.0.tar.gz) = 16873 diff --git a/sysutils/py-pywatchman/pkg-descr b/sysutils/py-pywatchman/pkg-descr new file mode 100644 index 000000000000..6f9a6175164c --- /dev/null +++ b/sysutils/py-pywatchman/pkg-descr @@ -0,0 +1,3 @@ +Connect and query Watchman to discover file changes. + +WWW: https://pypi.python.org/pypi/pywatchman |