Update ruby-kgio to 2.9.2.
=== kgio 2.9.2 - avoid deprecated/removed function / 2014-02-15 09:27 UTC This release is for compatibility with future releases of mainline ruby, as rb_thread_blocking_region is removed in r44955 of ruby trunk This also avoids deprecation warnings fo rb_thread_blocking_region 2.0 and 2.1. === kgio 2.9.1 - various Ruby 1.8.7 fixes / 2014-02-05 17:50 UTC Thanks to Christopher Rigor for this release. Eric Wong (2): only define and test kgio_syssend on 1.9+ various 1.8.7 fixes === kgio 2.9.0 - cleanups, bug fixes, minor improvements / 2014-02-04 03:09 UTC This adds a new kgio_syssend method for Ruby 1.9+ which behaves like BasicSocket#send, but will not raise exceptions on EAGAIN. Eric Wong (12): test_poll: remove race prone test_poll_EINTR_changed test tryopen: remove RARRAY_PTR usage in init read_write: remove the rest of RARRAY_PTR usage my_writev: stylistic fixes Rakefile: kill raa_update task avoid downsizing casts connect: constify RSTRING-related things set RSTRING_MODIFIED where appropriate for Rubinius split read_write.c into {read,write,writev}.c add kgio_syssend method to wrap send(2) write: correct check for various blocking regions tryopen: additional debug information for bad Errno values Hleb Valoshka (1): Don't use deprecated api
This commit is contained in:
parent
724e4d9b19
commit
dc7ac0c50d
3 changed files with 12 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.6 2014/03/13 11:08:51 jperkin Exp $
|
||||
# $NetBSD: Makefile,v 1.7 2014/03/14 15:42:16 taca Exp $
|
||||
|
||||
DISTNAME= kgio-2.8.1
|
||||
DISTNAME= kgio-2.9.2
|
||||
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= devel net
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2013/02/11 02:53:49 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2014/03/14 15:42:16 taca Exp $
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
${GEM_EXTSDIR}/kgio_ext.${RUBY_DLEXT}
|
||||
${GEM_LIBDIR}/.document
|
||||
${GEM_LIBDIR}/.gitignore
|
||||
${GEM_LIBDIR}/.manifest
|
||||
|
@ -30,11 +31,13 @@ ${GEM_LIBDIR}/ext/kgio/missing_accept4.h
|
|||
${GEM_LIBDIR}/ext/kgio/my_fileno.h
|
||||
${GEM_LIBDIR}/ext/kgio/nonblock.h
|
||||
${GEM_LIBDIR}/ext/kgio/poll.c
|
||||
${GEM_LIBDIR}/ext/kgio/read_write.c
|
||||
${GEM_LIBDIR}/ext/kgio/read.c
|
||||
${GEM_LIBDIR}/ext/kgio/set_file_path.h
|
||||
${GEM_LIBDIR}/ext/kgio/sock_for_fd.h
|
||||
${GEM_LIBDIR}/ext/kgio/tryopen.c
|
||||
${GEM_LIBDIR}/ext/kgio/wait.c
|
||||
${GEM_LIBDIR}/ext/kgio/write.c
|
||||
${GEM_LIBDIR}/ext/kgio/writev.c
|
||||
${GEM_LIBDIR}/kgio.gemspec
|
||||
${GEM_LIBDIR}/lib/kgio.rb
|
||||
${GEM_LIBDIR}/lib/kgio_ext.${RUBY_DLEXT}
|
||||
|
@ -57,6 +60,7 @@ ${GEM_LIBDIR}/test/test_poll.rb
|
|||
${GEM_LIBDIR}/test/test_singleton_read_write.rb
|
||||
${GEM_LIBDIR}/test/test_socket.rb
|
||||
${GEM_LIBDIR}/test/test_socketpair_read_write.rb
|
||||
${GEM_LIBDIR}/test/test_syssend.rb
|
||||
${GEM_LIBDIR}/test/test_tcp6_client_read_server_write.rb
|
||||
${GEM_LIBDIR}/test/test_tcp_client_read_server_write.rb
|
||||
${GEM_LIBDIR}/test/test_tcp_connect.rb
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.5 2013/09/15 10:04:04 taca Exp $
|
||||
$NetBSD: distinfo,v 1.6 2014/03/14 15:42:16 taca Exp $
|
||||
|
||||
SHA1 (kgio-2.8.1.gem) = 027b1dafd1f5544954afd591dba99f4e2e30756b
|
||||
RMD160 (kgio-2.8.1.gem) = e1d3dcbf11a9d0a9d8ed3ac092d744a5f4518573
|
||||
Size (kgio-2.8.1.gem) = 80896 bytes
|
||||
SHA1 (kgio-2.9.2.gem) = 425e77117fa2eb70ae5d0f7cc517b9e2b3c50bcc
|
||||
RMD160 (kgio-2.9.2.gem) = ab404768375b30693aaf553701774d55ca4436c5
|
||||
Size (kgio-2.9.2.gem) = 84992 bytes
|
||||
|
|
Loading…
Reference in a new issue