From owner-svn-ports-head@freebsd.org Thu Feb 28 16:44:07 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 00E54150E0AE; Thu, 28 Feb 2019 16:44:07 +0000 (UTC) (envelope-from novel@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 938D6734E4; Thu, 28 Feb 2019 16:44:06 +0000 (UTC) (envelope-from novel@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 6D3DF7B5A; Thu, 28 Feb 2019 16:44:06 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1SGi6x6051755; Thu, 28 Feb 2019 16:44:06 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1SGi5xI051752; Thu, 28 Feb 2019 16:44:05 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201902281644.x1SGi5xI051752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Thu, 28 Feb 2019 16:44:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494159 - in head/net/py-pyzmq: . files X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: in head/net/py-pyzmq: . files X-SVN-Commit-Revision: 494159 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 938D6734E4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.975,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-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: Thu, 28 Feb 2019 16:44:07 -0000 Author: novel Date: Thu Feb 28 16:44:05 2019 New Revision: 494159 URL: https://svnweb.freebsd.org/changeset/ports/494159 Log: net/py-pyzmq: update to 18.0.0 - Drop patch-PR1219 for the issue fixed upstream - Add patch to fix build with Python 3+ and non-Unicode locale [1] 1: https://github.com/zeromq/pyzmq/pull/1265 Added: head/net/py-pyzmq/files/patch-setup.py (contents, props changed) Deleted: head/net/py-pyzmq/files/patch-PR1219 Modified: head/net/py-pyzmq/Makefile head/net/py-pyzmq/distinfo Modified: head/net/py-pyzmq/Makefile ============================================================================== --- head/net/py-pyzmq/Makefile Thu Feb 28 16:33:51 2019 (r494158) +++ head/net/py-pyzmq/Makefile Thu Feb 28 16:44:05 2019 (r494159) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pyzmq -PORTVERSION= 17.1.2 +PORTVERSION= 18.0.0 CATEGORIES= net devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-pyzmq/distinfo ============================================================================== --- head/net/py-pyzmq/distinfo Thu Feb 28 16:33:51 2019 (r494158) +++ head/net/py-pyzmq/distinfo Thu Feb 28 16:44:05 2019 (r494159) @@ -1,3 +1,3 @@ -TIMESTAMP = 1539504765 -SHA256 (pyzmq-17.1.2.tar.gz) = a72b82ac1910f2cf61a49139f4974f994984475f771b0faa730839607eeedddf -SIZE (pyzmq-17.1.2.tar.gz) = 1080194 +TIMESTAMP = 1551109436 +SHA256 (pyzmq-18.0.0.tar.gz) = b30c339eb58355f51f4f54dd61d785f1ff58c86bca1c3a5916977631d121867b +SIZE (pyzmq-18.0.0.tar.gz) = 1155815 Added: head/net/py-pyzmq/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pyzmq/files/patch-setup.py Thu Feb 28 16:44:05 2019 (r494159) @@ -0,0 +1,27 @@ +--- setup.py.orig 2019-02-19 12:38:50 UTC ++++ setup.py +@@ -1,4 +1,6 @@ + #!/usr/bin/env python ++# -*- coding: utf-8 -*- ++# + #----------------------------------------------------------------------------- + # Copyright (C) PyZMQ Developers + # Distributed under the terms of the Modified BSD License. +@@ -24,6 +26,7 @@ import sys + import time + import errno + import platform ++import codecs + from traceback import print_exc + + # whether any kind of bdist is happening +@@ -1236,8 +1239,7 @@ def find_packages(): + #----------------------------------------------------------------------------- + # Main setup + #----------------------------------------------------------------------------- +- +-with open("README.md") as f: ++with codecs.open('README.md', 'r', 'utf-8') as f: + long_desc = f.read() + + setup_args = dict(