Skip to content

Commit

Permalink
Update ruby-eventmachine to 1.2.0.
Browse files Browse the repository at this point in the history
## 1.2.0 (March 15, 2016)
* Integrate work from the EventMachine-LE 1.1.x versions [#570]
* Add start_tls options :ecdh_curve, :dhparam, :fail_if_no_peer_cert [#195, #275, #399, #665]
* Add start_tls option :ssl_version for choosing SSL/TLS versions and ciphers [#359, #348, #603, #654]
* Add start_tls option :sni_hostname to be passed to TLS params [#593]
* Add method EM::Channel#num_subscribers to get the number of subscribers to a channel [#640]
* Add support for proc-sources in EM::Iterator [#639]
* Factor out method cleanup_machine to cleanup code from EM.run [#650]
* Replace Exception class with StandardError [#637]
* Close socket on close_connection even after close_connection_after_writing [#694]
* Allow reusing of datagram socket/setting bind device [#662]
* Handle deferred exceptions in reactor thread [#486]
* Reimplement Queue to avoid shift/push performance problem [#311]
* Windows: Switch from gethostbyname to getaddrinfo, support IPv6 addresses [#303, #630]
* Windows: Use rake-compiler-dock to cross-compile gems [#627]
* Windows: Add AppVeyor configuration for Windows CI testing [#578]
* Windows: Bump rake-compiler to version 0.9.x [#542]
* Fix compilation on AIX (w/ XLC) [#693]
* Fix build on OpenBSD [#690]
* Fix OpenSSL compile issue on AIX 7.1 [#678]
* Fix EventMachine.fork_reactor keeps the threadpool of the original process [#425]
* Fix to prevent event machine from stopping when a raise is done in an unbind [#327]
  • Loading branch information
taca committed Mar 15, 2016
1 parent a3fa0b6 commit 45d9389
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
5 changes: 2 additions & 3 deletions devel/ruby-eventmachine/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.18 2016/03/05 11:28:26 jperkin Exp $
# $NetBSD: Makefile,v 1.19 2016/03/15 17:07:03 taca Exp $

DISTNAME= eventmachine-1.0.9.1
PKGREVISION= 1
DISTNAME= eventmachine-1.2.0
CATEGORIES= devel

MAINTAINER= [email protected]
Expand Down
17 changes: 9 additions & 8 deletions devel/ruby-eventmachine/PLIST
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
@comment $NetBSD: PLIST,v 1.11 2015/03/08 15:17:19 taca Exp $
@comment $NetBSD: PLIST,v 1.12 2016/03/15 17:07:03 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_EXTSDIR}/fastfilereaderext.${RUBY_DLEXT}
${GEM_EXTSDIR}/gem.build_complete
${GEM_EXTSDIR}/rubyeventmachine.${RUBY_DLEXT}
${GEM_LIBDIR}/.gitignore
${GEM_LIBDIR}/.travis.yml
${GEM_LIBDIR}/.yardopts
${GEM_LIBDIR}/CHANGELOG.md
${GEM_LIBDIR}/GNU
${GEM_LIBDIR}/Gemfile
${GEM_LIBDIR}/LICENSE
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/docs/DocumentationGuidesIndex.md
${GEM_LIBDIR}/docs/GettingStarted.md
${GEM_LIBDIR}/docs/old/ChangeLog
Expand All @@ -26,7 +21,6 @@ ${GEM_LIBDIR}/docs/old/RELEASE_NOTES
${GEM_LIBDIR}/docs/old/SMTP
${GEM_LIBDIR}/docs/old/SPAWNED_PROCESSES
${GEM_LIBDIR}/docs/old/TODO
${GEM_LIBDIR}/eventmachine.gemspec
${GEM_LIBDIR}/examples/guides/getting_started/01_eventmachine_echo_server.rb
${GEM_LIBDIR}/examples/guides/getting_started/02_eventmachine_echo_server_that_recognizes_exit_command.rb
${GEM_LIBDIR}/examples/guides/getting_started/03_simple_chat_server.rb
Expand Down Expand Up @@ -111,11 +105,11 @@ ${GEM_LIBDIR}/lib/eventmachine.rb
${GEM_LIBDIR}/lib/fastfilereaderext.${RUBY_DLEXT}
${GEM_LIBDIR}/lib/jeventmachine.rb
${GEM_LIBDIR}/lib/rubyeventmachine.${RUBY_DLEXT}
${GEM_LIBDIR}/rakelib/cpp.rake_example
${GEM_LIBDIR}/rakelib/package.rake
${GEM_LIBDIR}/rakelib/test.rake
${GEM_LIBDIR}/tests/client.crt
${GEM_LIBDIR}/tests/client.key
${GEM_LIBDIR}/tests/dhparam.pem
${GEM_LIBDIR}/tests/em_test_helper.rb
${GEM_LIBDIR}/tests/test_attach.rb
${GEM_LIBDIR}/tests/test_basic.rb
Expand All @@ -129,6 +123,7 @@ ${GEM_LIBDIR}/tests/test_epoll.rb
${GEM_LIBDIR}/tests/test_error_handler.rb
${GEM_LIBDIR}/tests/test_exc.rb
${GEM_LIBDIR}/tests/test_file_watch.rb
${GEM_LIBDIR}/tests/test_fork.rb
${GEM_LIBDIR}/tests/test_futures.rb
${GEM_LIBDIR}/tests/test_get_sock_opt.rb
${GEM_LIBDIR}/tests/test_handler_check.rb
Expand All @@ -137,6 +132,8 @@ ${GEM_LIBDIR}/tests/test_httpclient.rb
${GEM_LIBDIR}/tests/test_httpclient2.rb
${GEM_LIBDIR}/tests/test_idle_connection.rb
${GEM_LIBDIR}/tests/test_inactivity_timeout.rb
${GEM_LIBDIR}/tests/test_ipv4.rb
${GEM_LIBDIR}/tests/test_ipv6.rb
${GEM_LIBDIR}/tests/test_iterator.rb
${GEM_LIBDIR}/tests/test_kb.rb
${GEM_LIBDIR}/tests/test_line_protocol.rb
Expand Down Expand Up @@ -164,7 +161,11 @@ ${GEM_LIBDIR}/tests/test_smtpclient.rb
${GEM_LIBDIR}/tests/test_smtpserver.rb
${GEM_LIBDIR}/tests/test_spawn.rb
${GEM_LIBDIR}/tests/test_ssl_args.rb
${GEM_LIBDIR}/tests/test_ssl_dhparam.rb
${GEM_LIBDIR}/tests/test_ssl_ecdh_curve.rb
${GEM_LIBDIR}/tests/test_ssl_extensions.rb
${GEM_LIBDIR}/tests/test_ssl_methods.rb
${GEM_LIBDIR}/tests/test_ssl_protocols.rb
${GEM_LIBDIR}/tests/test_ssl_verify.rb
${GEM_LIBDIR}/tests/test_stomp.rb
${GEM_LIBDIR}/tests/test_system.rb
Expand Down
10 changes: 5 additions & 5 deletions devel/ruby-eventmachine/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.14 2016/02/16 14:57:10 taca Exp $
$NetBSD: distinfo,v 1.15 2016/03/15 17:07:03 taca Exp $

SHA1 (eventmachine-1.0.9.1.gem) = 18c08a4995fde24aeedde4c78e83aa74141a838d
RMD160 (eventmachine-1.0.9.1.gem) = 10b9c2a8a16ccab7c64e093b51f51942355c2458
SHA512 (eventmachine-1.0.9.1.gem) = 5cbc178c604fe9a21850c298f7a5b6f904573f5e1db9e07fee599c5700841c52ec0311a6e50192eff9c1bb45cf30a9dd81d2150fe9d04cabd24cc7c9c32c5df0
Size (eventmachine-1.0.9.1.gem) = 235008 bytes
SHA1 (eventmachine-1.2.0.gem) = 66dac1bde48b857e23888a487fbbe452ebfd87b5
RMD160 (eventmachine-1.2.0.gem) = 7116fd31d2c70274f6938868d5485d6a64d4a57c
SHA512 (eventmachine-1.2.0.gem) = a6c55ccb86bc38a6c314e7d143ffedcb273ed7b54f3d7481bf9bec7fe190a0446a88947b32971c021f577ee0a5aed9083c7e0955b30987415f41b8d5ab83a1b8
Size (eventmachine-1.2.0.gem) = 241152 bytes

0 comments on commit 45d9389

Please sign in to comment.