From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9D192138330 for ; Mon, 19 Sep 2016 21:24:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FE37E0A72; Mon, 19 Sep 2016 21:24:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 303CFE09B2 for ; Mon, 19 Sep 2016 21:24:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85279340C53 for ; Mon, 19 Sep 2016 21:24:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEF87248D for ; Mon, 19 Sep 2016 21:23:58 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1474320197.9eff3635aff405792e38537be937884a134a5764.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyzmq/files/pyzmq-2.2.0.1-python3.patch X-VCS-Directories: dev-python/pyzmq/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9eff3635aff405792e38537be937884a134a5764 X-VCS-Branch: master Date: Mon, 19 Sep 2016 21:23:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f8e7de31-08e6-4831-9593-aea7c6a2d5e6 X-Archives-Hash: dfef69a734a92abdc9c2f9581e820a3d commit: 9eff3635aff405792e38537be937884a134a5764 Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Mon Sep 19 17:43:05 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Sep 19 21:23:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eff3635 dev-python/pyzmq: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/2362 Signed-off-by: David Seifert gentoo.org> dev-python/pyzmq/files/pyzmq-2.2.0.1-python3.patch | 34 ---------------------- 1 file changed, 34 deletions(-) diff --git a/dev-python/pyzmq/files/pyzmq-2.2.0.1-python3.patch b/dev-python/pyzmq/files/pyzmq-2.2.0.1-python3.patch deleted file mode 100644 index d6b1299..00000000 --- a/dev-python/pyzmq/files/pyzmq-2.2.0.1-python3.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 51f2470bce6c9e6067606aec2d9a018555582b30 Mon Sep 17 00:00:00 2001 -From: MinRK -Date: Mon, 20 Aug 2012 22:44:27 -0700 -Subject: [PATCH] fix exception syntax in gevent.core - ---- - zmq/green/core.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/zmq/green/core.py b/zmq/green/core.py -index d4e5f73..9e5acdf 100644 ---- a/zmq/green/core.py -+++ b/zmq/green/core.py -@@ -114,7 +114,7 @@ def _wait_write(self): - try: - timeout.start() - self.__writable.get(block=True) -- except gevent.Timeout, t: -+ except gevent.Timeout as t: - if t is not timeout: - raise - toc = time.time() -@@ -138,7 +138,7 @@ def _wait_read(self): - try: - timeout.start() - self.__readable.get(block=True) -- except gevent.Timeout, t: -+ except gevent.Timeout as t: - if t is not timeout: - raise - toc = time.time() --- -1.7.10 -