Date: Thu, 28 Feb 2019 16:44:05 +0000 (UTC) From: Roman Bogorodskiy <novel@FreeBSD.org> 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 Message-ID: <201902281644.x1SGi5xI051752@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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(
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902281644.x1SGi5xI051752>