www/ruby-unicorn: update to 6.1.0
6.1.0 (2021-12-25) This release reduces CPU usage for Linux 4.5+ in most cases. See "[PATCH 6/6] use EPOLLEXCLUSIVE on Linux 4.5+" for more details: https://yhbt.net/unicorn-public/20211001030923.26705-7-bofh@yhbt.net/ There's a couple of updates for Ruby 3.1, but we've finally started relying on Ruby 2.0.0 features after 9 years :P (so Ruby 1.9.3 users are stuck with older versions). And the usual round of doc updates and some build speedups. 13 changes by the Bozo Doofus maintainer since v6.0.0: test_util: less excessive encoding tests drop Ruby 1.9.3 support, require 2.0+ for now drop unnecessary IO#close_on_exec=true assignment extconf.rb: get rid of unnecessary checks makefile: reduce unnecessary rebuilds HACKING: drop outdated information about pandoc http_server: get rid of Process.ppid check worker_loop: get rid of select() avoidance hack use EPOLLEXCLUSIVE on Linux 4.5+ allow Ruby to deduplicate remaining globals epollexclusive: remove rb_gc_force_recycle call drop Ruby version warning, fix speling errer doc: v3 .onion updates, nntp => nntps, minor wording changes
This commit is contained in:
parent
0bbdf8e2e1
commit
e5bf333939
3 changed files with 10 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.19 2021/03/21 13:17:45 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.20 2022/08/31 16:01:30 taca Exp $
|
||||
|
||||
DISTNAME= unicorn-6.0.0
|
||||
DISTNAME= unicorn-6.1.0
|
||||
CATEGORIES= www
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.14 2021/03/21 13:17:45 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.15 2022/08/31 16:01:30 taca Exp $
|
||||
bin/unicorn${RUBY_SUFFIX}
|
||||
bin/unicorn_rails${RUBY_SUFFIX}
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
|
@ -53,6 +53,7 @@ ${GEM_LIBDIR}/examples/unicorn@.service
|
|||
${GEM_LIBDIR}/ext/unicorn_http/CFLAGS
|
||||
${GEM_LIBDIR}/ext/unicorn_http/c_util.h
|
||||
${GEM_LIBDIR}/ext/unicorn_http/common_field_optimization.h
|
||||
${GEM_LIBDIR}/ext/unicorn_http/epollexclusive.h
|
||||
${GEM_LIBDIR}/ext/unicorn_http/ext_help.h
|
||||
${GEM_LIBDIR}/ext/unicorn_http/extconf.rb
|
||||
${GEM_LIBDIR}/ext/unicorn_http/global_variables.h
|
||||
|
@ -72,6 +73,7 @@ ${GEM_LIBDIR}/lib/unicorn/http_server.rb
|
|||
${GEM_LIBDIR}/lib/unicorn/launcher.rb
|
||||
${GEM_LIBDIR}/lib/unicorn/oob_gc.rb
|
||||
${GEM_LIBDIR}/lib/unicorn/preread_input.rb
|
||||
${GEM_LIBDIR}/lib/unicorn/select_waiter.rb
|
||||
${GEM_LIBDIR}/lib/unicorn/socket_helper.rb
|
||||
${GEM_LIBDIR}/lib/unicorn/stream_input.rb
|
||||
${GEM_LIBDIR}/lib/unicorn/tee_input.rb
|
||||
|
@ -163,6 +165,7 @@ ${GEM_LIBDIR}/test/unit/test_stream_input.rb
|
|||
${GEM_LIBDIR}/test/unit/test_tee_input.rb
|
||||
${GEM_LIBDIR}/test/unit/test_upload.rb
|
||||
${GEM_LIBDIR}/test/unit/test_util.rb
|
||||
${GEM_LIBDIR}/test/unit/test_waiter.rb
|
||||
${GEM_LIBDIR}/unicorn.gemspec
|
||||
${GEM_LIBDIR}/unicorn_1
|
||||
${GEM_LIBDIR}/unicorn_rails_1
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.21 2021/10/26 11:31:06 nia Exp $
|
||||
$NetBSD: distinfo,v 1.22 2022/08/31 16:01:30 taca Exp $
|
||||
|
||||
BLAKE2s (unicorn-6.0.0.gem) = b195ec9405e9d2dcc66c10ae220c04410b01da74b51477033289bcbf6fe0ae8e
|
||||
SHA512 (unicorn-6.0.0.gem) = adc5710761ef09b5b07bf294dd1e96a75644eca9c316a13a2b13ca381bd7b1020b58b99be06fd67a7bd45a167155319042f5b8e9c7f62eee00fc9abb56954044
|
||||
Size (unicorn-6.0.0.gem) = 224256 bytes
|
||||
BLAKE2s (unicorn-6.1.0.gem) = 25c023bd812db52a54c8ab71918619155b920d02a9fbe1903fa002f3a5fcb357
|
||||
SHA512 (unicorn-6.1.0.gem) = 35f81d1e5fc47048e4b07486fea81cf91650ea47307b69ee0d6f5493af3dac559b70215f1df5840c548a0686bd2dcb62433acdcc9e1d3b1b0b4b665e0fd38fa0
|
||||
Size (unicorn-6.1.0.gem) = 227328 bytes
|
||||
|
|
Loading…
Reference in a new issue