From owner-svn-ports-head@freebsd.org Fri Jan 11 14:41:09 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEAEA149254D; Fri, 11 Jan 2019 14:41:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 877B16E8DA; Fri, 11 Jan 2019 14:41:08 +0000 (UTC) (envelope-from miwi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7A5B51D0CF; Fri, 11 Jan 2019 14:41:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0BEf8iN010860; Fri, 11 Jan 2019 14:41:08 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0BEf8gE010858; Fri, 11 Jan 2019 14:41:08 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201901111441.x0BEf8gE010858@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Fri, 11 Jan 2019 14:41:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489974 - head/sysutils/py-pywatchman X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: head/sysutils/py-pywatchman X-SVN-Commit-Revision: 489974 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 877B16E8DA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jan 2019 14:41:09 -0000 Author: miwi Date: Fri Jan 11 14:41:07 2019 New Revision: 489974 URL: https://svnweb.freebsd.org/changeset/ports/489974 Log: - Update to 4.9.0 - Add missing LICENSE info - Support python36 for i386/amd64 - Fallback on armv6,aarch64 to py27 - Switch to github PR: 230283 Submitted by: ndowens@yahoo.com Approved by: maintainer Sponsored by: iXsystems Inc. Modified: head/sysutils/py-pywatchman/Makefile head/sysutils/py-pywatchman/distinfo Modified: head/sysutils/py-pywatchman/Makefile ============================================================================== --- head/sysutils/py-pywatchman/Makefile Fri Jan 11 14:13:43 2019 (r489973) +++ head/sysutils/py-pywatchman/Makefile Fri Jan 11 14:41:07 2019 (r489974) @@ -1,24 +1,42 @@ # $FreeBSD$ PORTNAME= pywatchman -PORTVERSION= 1.3.0 -PORTREVISION= 1 +PORTVERSION= 4.9.0 +DISTVERSIONPREFIX=v CATEGORIES= sysutils python -MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= linpct@gmail.com COMMENT= Watchman client for Python -LICENSE= BSD3CLAUSE +LICENSE= BSD3CLAUSE MIT +LICENSE_COMB= multi RUN_DEPENDS= watchman>=4:sysutils/watchman -USES= python:2.7 -USE_PYTHON= autoplist distutils +USES= python +USE_PYTHON= autoplist concurrent distutils +USE_GITHUB= yes +GH_ACCOUNT= facebook +GH_PROJECT= watchman + +BROKEN_mips= Depends on watchman, which needs c++11-libs +BROKEN_mips64= Depends on watchman, which needs c++11-libs + +WRKSRC_SUBDIR= python + +.include + +.if ${ARCH} == "armv6" || ${ARCH} == "aarch64" +USES= python:2.7 +.endif + post-install: - ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} \ - -name '*.so' -exec ${STRIP_CMD} {} + + ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name "*.so" \ + -exec ${STRIP_CMD} {} + + +do-test: + cd ${WRKSRC} ; ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Modified: head/sysutils/py-pywatchman/distinfo ============================================================================== --- head/sysutils/py-pywatchman/distinfo Fri Jan 11 14:13:43 2019 (r489973) +++ head/sysutils/py-pywatchman/distinfo Fri Jan 11 14:41:07 2019 (r489974) @@ -1,2 +1,3 @@ -SHA256 (pywatchman-1.3.0.tar.gz) = c3d5be183b5b04f6ad575fc71b06dd196185dea1558d9f4d0598ba9beaab8245 -SIZE (pywatchman-1.3.0.tar.gz) = 16873 +TIMESTAMP = 1536195383 +SHA256 (facebook-watchman-v4.9.0_GH0.tar.gz) = 1f6402dc70b1d056fffc3748f2fdcecff730d8843bb6936de395b3443ce05322 +SIZE (facebook-watchman-v4.9.0_GH0.tar.gz) = 3507999