public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/files/
@ 2016-09-19 21:23 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2016-09-19 21:23 UTC (permalink / raw
  To: gentoo-commits

commit:     9eff3635aff405792e38537be937884a134a5764
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Sep 19 17:43:05 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> 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 <soap <AT> 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 <benjaminrk@gmail.com>
-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
-


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/files/
@ 2017-08-13 11:24 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2017-08-13 11:24 UTC (permalink / raw
  To: gentoo-commits

commit:     396e9d5dd9d0d3bc52ae42da3586be05d41606e9
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Aug  8 08:26:05 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 13 11:23:53 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396e9d5d

dev-python/pyzmq: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/5352

 dev-python/pyzmq/files/pyzmq-cython-0.24.patch | 33 --------------------------
 1 file changed, 33 deletions(-)

diff --git a/dev-python/pyzmq/files/pyzmq-cython-0.24.patch b/dev-python/pyzmq/files/pyzmq-cython-0.24.patch
deleted file mode 100644
index 55be83ec814..00000000000
--- a/dev-python/pyzmq/files/pyzmq-cython-0.24.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 659f9211aad1565543e26ef6877456d017c9d5bb Mon Sep 17 00:00:00 2001
-From: Min RK <benjaminrk@gmail.com>
-Date: Tue, 8 Mar 2016 09:17:05 +0100
-Subject: [PATCH] remove unused, deprecated `_handle`
-
-Cython 0.24 may not support property assignment
----
- zmq/backend/cython/context.pyx | 8 ++------
- 1 file changed, 2 insertions(+), 6 deletions(-)
-
-diff --git a/zmq/backend/cython/context.pyx b/zmq/backend/cython/context.pyx
-index 2cb7409..3595c10 100644
---- a/zmq/backend/cython/context.pyx
-+++ b/zmq/backend/cython/context.pyx
-@@ -108,16 +108,12 @@ cdef class Context:
-             if self._n_sockets:
-                 # move last handle to closed socket's index
-                 self._sockets[idx] = self._sockets[self._n_sockets]
--    
--    
-+
-     @property
-     def underlying(self):
-         """The address of the underlying libzmq context"""
-         return <size_t> self.handle
--    
--    # backward-compat, though nobody is using it
--    _handle = underlying
--    
-+
-     cdef inline int _term(self):
-         cdef int rc=0
-         if self.handle != NULL and not self.closed and getpid() == self._pid:


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/files/
@ 2020-06-02  4:28 Aaron Bauman
  0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2020-06-02  4:28 UTC (permalink / raw
  To: gentoo-commits

commit:     57b219c03f0e6a0ac44b0511fbb7484ca8c46fb1
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue May 19 19:24:02 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue Jun  2 04:28:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57b219c0

dev-python/pyzmq: remove unused patch

Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 .../pyzmq/files/pyzmq-17.1.0-test_message.patch    | 22 ----------------------
 1 file changed, 22 deletions(-)

diff --git a/dev-python/pyzmq/files/pyzmq-17.1.0-test_message.patch b/dev-python/pyzmq/files/pyzmq-17.1.0-test_message.patch
deleted file mode 100644
index 66d0de75e38..00000000000
--- a/dev-python/pyzmq/files/pyzmq-17.1.0-test_message.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Disable hanging test
-Bug: https://github.com/zeromq/pyzmq/issues/1202
-
-Patch by Marius Brehler <marbre@linux.sungazer.de>
---- pyzmq-17.1.0/zmq/tests/test_message.py
-+++ pyzmq-17.1.0/zmq/tests/test_message.py
-@@ -14,6 +14,7 @@ import time
- from pprint import pprint
- from unittest import TestCase
- 
-+import pytest
- import zmq
- from zmq.tests import BaseZMQTestCase, SkipTest, skip_pypy, PYPY
- from zmq.utils.strtypes import unicode, bytes, b, u
-@@ -262,6 +263,7 @@ class TestFrame(BaseZMQTestCase):
-             self.assertEqual(s,r)
-         self.assertEqual(s, m.bytes)
-     
-+    @pytest.mark.skip("test sometimes hangs")
-     def test_buffer_numpy(self):
-         """test non-copying numpy array messages"""
-         try:


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-06-02  4:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-02  4:28 [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/files/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2017-08-13 11:24 David Seifert
2016-09-19 21:23 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox