From owner-svn-ports-all@freebsd.org Wed Dec 9 03:19:55 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 1E49B9D5EEC; Wed, 9 Dec 2015 03:19:55 +0000 (UTC) (envelope-from jbeich@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 C6D6B1D39; Wed, 9 Dec 2015 03:19:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB93Jr5g090819; Wed, 9 Dec 2015 03:19:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB93Jrlo090815; Wed, 9 Dec 2015 03:19:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201512090319.tB93Jrlo090815@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 9 Dec 2015 03:19:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403356 - in head/sysutils: . py-pywatchman 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: Wed, 09 Dec 2015 03:19:55 -0000 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 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