Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/files/
Date: Sun, 13 Aug 2017 11:25:03
Message-Id: 1502623433.396e9d5dd9d0d3bc52ae42da3586be05d41606e9.soap@gentoo
1 commit: 396e9d5dd9d0d3bc52ae42da3586be05d41606e9
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Aug 8 08:26:05 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 13 11:23:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396e9d5d
7
8 dev-python/pyzmq: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/5352
11
12 dev-python/pyzmq/files/pyzmq-cython-0.24.patch | 33 --------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-python/pyzmq/files/pyzmq-cython-0.24.patch b/dev-python/pyzmq/files/pyzmq-cython-0.24.patch
16 deleted file mode 100644
17 index 55be83ec814..00000000000
18 --- a/dev-python/pyzmq/files/pyzmq-cython-0.24.patch
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -From 659f9211aad1565543e26ef6877456d017c9d5bb Mon Sep 17 00:00:00 2001
22 -From: Min RK <benjaminrk@×××××.com>
23 -Date: Tue, 8 Mar 2016 09:17:05 +0100
24 -Subject: [PATCH] remove unused, deprecated `_handle`
25 -
26 -Cython 0.24 may not support property assignment
27 ----
28 - zmq/backend/cython/context.pyx | 8 ++------
29 - 1 file changed, 2 insertions(+), 6 deletions(-)
30 -
31 -diff --git a/zmq/backend/cython/context.pyx b/zmq/backend/cython/context.pyx
32 -index 2cb7409..3595c10 100644
33 ---- a/zmq/backend/cython/context.pyx
34 -+++ b/zmq/backend/cython/context.pyx
35 -@@ -108,16 +108,12 @@ cdef class Context:
36 - if self._n_sockets:
37 - # move last handle to closed socket's index
38 - self._sockets[idx] = self._sockets[self._n_sockets]
39 --
40 --
41 -+
42 - @property
43 - def underlying(self):
44 - """The address of the underlying libzmq context"""
45 - return <size_t> self.handle
46 --
47 -- # backward-compat, though nobody is using it
48 -- _handle = underlying
49 --
50 -+
51 - cdef inline int _term(self):
52 - cdef int rc=0
53 - if self.handle != NULL and not self.closed and getpid() == self._pid: