From owner-svn-ports-all@freebsd.org Fri May 17 07:14:23 2019 Return-Path: Delivered-To: svn-ports-all@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 7BD5215B1AA8; Fri, 17 May 2019 07:14:23 +0000 (UTC) (envelope-from koobs@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 1AF1A8DEAA; Fri, 17 May 2019 07:14:23 +0000 (UTC) (envelope-from koobs@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 E0EDE4FB8; Fri, 17 May 2019 07:14:22 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4H7EMXs044631; Fri, 17 May 2019 07:14:22 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4H7EM5P044627; Fri, 17 May 2019 07:14:22 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201905170714.x4H7EM5P044627@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 17 May 2019 07:14:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501836 - head/www/py-websocket-client X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/www/py-websocket-client X-SVN-Commit-Revision: 501836 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1AF1A8DEAA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 17 May 2019 07:14:23 -0000 Author: koobs Date: Fri May 17 07:14:22 2019 New Revision: 501836 URL: https://svnweb.freebsd.org/changeset/ports/501836 Log: www/py-websocket-client: Update to 0.56.0 - Update LICENSE [1] - Update pkg-descr, add WWW: URL - Add USE_PYTHON=concurrent, package installs a script - Remove backports.ssl_match_hostname dependency, only needed for Python < 2.7.9 [2] Changelog: https://github.com/websocket-client/websocket-client/blob/v0.56.0/ChangeLog [1] https://github.com/websocket-client/websocket-client/commit/e94ed9e078c7772a7dc0a115da1a34c493f290b6 [2] https://github.com/websocket-client/websocket-client/commit/f7f5f70681c621d169b82fc842cb2396265203d5 Reviewed by: alfred (maintainer) Approved by: alfred (maintainer) Differential Revision: D20283 Modified: head/www/py-websocket-client/Makefile head/www/py-websocket-client/distinfo head/www/py-websocket-client/pkg-descr Modified: head/www/py-websocket-client/Makefile ============================================================================== --- head/www/py-websocket-client/Makefile Fri May 17 04:32:40 2019 (r501835) +++ head/www/py-websocket-client/Makefile Fri May 17 07:14:22 2019 (r501836) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= websocket-client -PORTVERSION= 0.47.0 -PORTREVISION= 1 +PORTVERSION= 0.56.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,17 +14,17 @@ DISTNAME= ${PORTNAME:S/-/_/g}-${DISTVERSION} MAINTAINER= alfred@FreeBSD.org COMMENT= Websocket client for python -LICENSE= ISCL +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist -.include +NO_ARCH= yes -.if ${PYTHON_REL} < 3500 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.ssl_match_hostname>0:security/py-backports.ssl_match_hostname@${PY_FLAVOR} -.endif +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test -.include +.include Modified: head/www/py-websocket-client/distinfo ============================================================================== --- head/www/py-websocket-client/distinfo Fri May 17 04:32:40 2019 (r501835) +++ head/www/py-websocket-client/distinfo Fri May 17 07:14:22 2019 (r501836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526737924 -SHA256 (websocket_client-0.47.0.tar.gz) = a453dc4dfa6e0db3d8fd7738a308a88effe6240c59f3226eb93e8f020c216149 -SIZE (websocket_client-0.47.0.tar.gz) = 202611 +TIMESTAMP = 1558066532 +SHA256 (websocket_client-0.56.0.tar.gz) = 1fd5520878b68b84b5748bb30e592b10d0a91529d5383f74f4964e72b297fd3a +SIZE (websocket_client-0.56.0.tar.gz) = 36951 Modified: head/www/py-websocket-client/pkg-descr ============================================================================== --- head/www/py-websocket-client/pkg-descr Fri May 17 04:32:40 2019 (r501835) +++ head/www/py-websocket-client/pkg-descr Fri May 17 07:14:22 2019 (r501836) @@ -1,9 +1,6 @@ -================= -websocket-client -================= +websocket-client module is a WebSocket client for python. This provide the +low level APIs for WebSocket. All APIs are the synchronous functions. -websocket-client module is WebSocket client for python. This provide -the low level APIs for WebSocket. All APIs are the synchronous -functions. - websocket-client supports only hybi-13. + +WWW: https://github.com/websocket-client/websocket-client