summaryrefslogtreecommitdiff
path: root/dev-python/pycapnp/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-12-06 18:23:20 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-12-06 18:23:20 +0000
commitd37b97a25b8b10f748eead6574b01f893f140b01 (patch)
tree13e2a142a31cd193a39c63042a64cab29a1f7ae9 /dev-python/pycapnp/files
parenta833e3f4a431b8eea751b7420e127787f9c92117 (diff)
gentoo resync : 06.12.2017
Diffstat (limited to 'dev-python/pycapnp/files')
-rw-r--r--dev-python/pycapnp/files/capn06.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-python/pycapnp/files/capn06.patch b/dev-python/pycapnp/files/capn06.patch
deleted file mode 100644
index e1c1709fe8c0..000000000000
--- a/dev-python/pycapnp/files/capn06.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Index: pycapnp-0.5.12/capnp/includes/capnp_cpp.pxd
-===================================================================
---- pycapnp-0.5.12.orig/capnp/includes/capnp_cpp.pxd
-+++ pycapnp-0.5.12/capnp/includes/capnp_cpp.pxd
-@@ -100,8 +100,10 @@ cdef extern from "kj/array.h" namespace
- ctypedef Promise[PyArray] PyPromiseArray
-
- cdef extern from "kj/time.h" namespace " ::kj":
-+ cdef cppclass Unsafe_:
-+ Unsafe_()
- cdef cppclass Duration:
-- Duration(int64_t)
-+ Duration(int64_t, Unsafe_)
- # cdef cppclass TimePoint:
- # TimePoint(Duration)
- cdef cppclass Timer:
-Index: pycapnp-0.5.12/capnp/lib/capnp.pyx
-===================================================================
---- pycapnp-0.5.12.orig/capnp/lib/capnp.pyx
-+++ pycapnp-0.5.12/capnp/lib/capnp.pyx
-@@ -1688,7 +1688,7 @@ cdef class _Timer:
- return self
-
- cpdef after_delay(self, time) except +reraise_kj_exception:
-- return _VoidPromise()._init(self.thisptr.afterDelay(capnp.Duration(time)))
-+ return _VoidPromise()._init(self.thisptr.afterDelay(capnp.Duration(time, capnp.Unsafe_())))
-
- def getTimer():
- return _Timer()._init(helpers.getTimer(C_DEFAULT_EVENT_LOOP_GETTER().thisptr))