Date: Wed, 18 Feb 2015 16:24:01 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379284 - in head/www/nghttp2: . files Message-ID: <201502181624.t1IGO1If067523@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Wed Feb 18 16:24:00 2015 New Revision: 379284 URL: https://svnweb.freebsd.org/changeset/ports/379284 QAT: https://qat.redports.org/buildarchive/r379284/ Log: - Update to 0.7.3 Changes: https://github.com/tatsuhiro-t/nghttp2/releases PR: 197504 Submitted by: mi Added: head/www/nghttp2/files/ head/www/nghttp2/files/patch-shrpx.cc (contents, props changed) Modified: head/www/nghttp2/Makefile head/www/nghttp2/distinfo head/www/nghttp2/pkg-plist Modified: head/www/nghttp2/Makefile ============================================================================== --- head/www/nghttp2/Makefile Wed Feb 18 16:23:54 2015 (r379283) +++ head/www/nghttp2/Makefile Wed Feb 18 16:24:00 2015 (r379284) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 0.7.0 +PORTVERSION= 0.7.3 CATEGORIES= www net MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \ LOCAL/sunpoet Modified: head/www/nghttp2/distinfo ============================================================================== --- head/www/nghttp2/distinfo Wed Feb 18 16:23:54 2015 (r379283) +++ head/www/nghttp2/distinfo Wed Feb 18 16:24:00 2015 (r379284) @@ -1,2 +1,2 @@ -SHA256 (nghttp2-0.7.0.tar.xz) = 41765d7ed8a4790b674ac27ae5106006799de402c0f0427a71c40875e2971542 -SIZE (nghttp2-0.7.0.tar.xz) = 821656 +SHA256 (nghttp2-0.7.3.tar.xz) = 73b7ec1fa2ca11b537fe6b40e48e30a1db30b93d810d5e3905ce620c67df634f +SIZE (nghttp2-0.7.3.tar.xz) = 834244 Added: head/www/nghttp2/files/patch-shrpx.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nghttp2/files/patch-shrpx.cc Wed Feb 18 16:24:00 2015 (r379284) @@ -0,0 +1,12 @@ +--- src/shrpx.cc.orig 2015-01-25 09:01:44.000000000 -0500 ++++ src/shrpx.cc 2015-02-09 17:51:30.000000000 -0500 +@@ -1862,6 +1862,7 @@ + + if (get_config()->rlimit_nofile) { +- struct rlimit lim = {get_config()->rlimit_nofile, +- get_config()->rlimit_nofile}; ++ struct rlimit lim; ++ ++ lim.rlim_cur = lim.rlim_max = get_config()->rlimit_nofile; + if (setrlimit(RLIMIT_NOFILE, &lim) != 0) { + auto error = errno; Modified: head/www/nghttp2/pkg-plist ============================================================================== --- head/www/nghttp2/pkg-plist Wed Feb 18 16:23:54 2015 (r379283) +++ head/www/nghttp2/pkg-plist Wed Feb 18 16:24:00 2015 (r379284) @@ -10,7 +10,7 @@ include/nghttp2/nghttp2ver.h lib/libnghttp2.a lib/libnghttp2.so lib/libnghttp2.so.5 -lib/libnghttp2.so.5.3.0 +lib/libnghttp2.so.5.4.0 %%ASIO%%lib/libnghttp2_asio.a %%ASIO%%lib/libnghttp2_asio.so %%ASIO%%lib/libnghttp2_asio.so.0
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502181624.t1IGO1If067523>