diff options
author | jbeich <jbeich@FreeBSD.org> | 2015-12-09 11:19:53 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2015-12-09 11:19:53 +0800 |
commit | 01a6176d98caf53ece37a78675a5e2d9d4ba7cd0 (patch) | |
tree | d968f00d8ba0d6c27ee48031c0cff625a1a193bc /sysutils/py-pywatchman | |
parent | 833137028fae1c766bd9bcd5b21290863a071009 (diff) | |
download | freebsd-ports-gnome-01a6176d98caf53ece37a78675a5e2d9d4ba7cd0.tar.gz freebsd-ports-gnome-01a6176d98caf53ece37a78675a5e2d9d4ba7cd0.tar.zst freebsd-ports-gnome-01a6176d98caf53ece37a78675a5e2d9d4ba7cd0.zip |
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 |