diff options
author | adam <adam@pkgsrc.org> | 2021-09-29 11:46:39 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2021-09-29 11:46:39 +0000 |
commit | 9e0027a656eb287647ad6e1439344ba1e69914c6 (patch) | |
tree | cef8c316cacdc048b08e6b65d5151f087ea49cee | |
parent | 93cc08b11cf05efac248b49bcfe6cde7136aed67 (diff) | |
download | pkgsrc-9e0027a656eb287647ad6e1439344ba1e69914c6.tar.gz |
nghttp2: updated to 1.45.1
Nghttp2 v1.45.1
build
This release fixes packaging issues which lack some configuration files in tar archives.
Nghttp2 v1.45.0
lib
Stricter checks for :method: and :path pseudo header fields are introduced.
build
nghttp2 applications can be compiled with OpenSSL v3.0.0.
Fix warning about systemd when cmake is used.
Added build options to enable HTTP/3 and eBPF.
nghttpx
The experimental HTTP/3 support has been added.
“dnf” (= “do not forward”) parameter is added to backend option.
h2load
The experimental HTTP/3 support has been added.
SSLKEYLOGFILE environment variable support has been added.
-rw-r--r-- | www/nghttp2/Makefile.common | 4 | ||||
-rw-r--r-- | www/nghttp2/distinfo | 12 | ||||
-rw-r--r-- | www/nghttp2/patches/patch-configure | 46 |
3 files changed, 31 insertions, 31 deletions
diff --git a/www/nghttp2/Makefile.common b/www/nghttp2/Makefile.common index b1f10af4515..b0993194cc6 100644 --- a/www/nghttp2/Makefile.common +++ b/www/nghttp2/Makefile.common @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.5 2021/07/19 11:04:50 adam Exp $ +# $NetBSD: Makefile.common,v 1.6 2021/09/29 11:46:39 adam Exp $ # used by www/nghttp2/Makefile # used by www/nghttp2-tools/Makefile -DISTNAME= nghttp2-1.44.0 +DISTNAME= nghttp2-1.45.1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GITHUB:=tatsuhiro-t/} EXTRACT_SUFX= .tar.xz diff --git a/www/nghttp2/distinfo b/www/nghttp2/distinfo index cf20c924cee..6e63f81f4e9 100644 --- a/www/nghttp2/distinfo +++ b/www/nghttp2/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.48 2021/07/19 11:04:50 adam Exp $ +$NetBSD: distinfo,v 1.49 2021/09/29 11:46:39 adam Exp $ -SHA1 (nghttp2-1.44.0.tar.xz) = 1d02de2b30c9a991d8b73307bacdb150499a164b -RMD160 (nghttp2-1.44.0.tar.xz) = a757fcd695aff06f333f5f75235120baee38525b -SHA512 (nghttp2-1.44.0.tar.xz) = 756b78665ef9fe8765332e7f0b249029d845a6b635c00a27f4c3716a1354f98bcc34df4da74179213497f6bfc2647d3773ecff2b192c63427447e37cf6393f6c -Size (nghttp2-1.44.0.tar.xz) = 3972832 bytes -SHA1 (patch-configure) = 9623d67431b844142ce05e1e5cf2b36f5e27b198 +SHA1 (nghttp2-1.45.1.tar.xz) = aa72854042c5047e82147eb378d4fdcc794cf373 +RMD160 (nghttp2-1.45.1.tar.xz) = c29acf6096eb798bde72b621fcb79119adea40a1 +SHA512 (nghttp2-1.45.1.tar.xz) = 320a8c9f29b58c55df98be4312d415bc406edbdfb0765aa37570cdb472a84f40c4f95a51c44c5488363c16ad6815c75b5503b32e43d94724c54117ff583c7150 +Size (nghttp2-1.45.1.tar.xz) = 4017852 bytes +SHA1 (patch-configure) = cb8a45817670468442570a6eb1f6ef9e812dcfac SHA1 (patch-configure.ac) = 6b5ed158e763d13e3d79e8543977cc79c3db3eef diff --git a/www/nghttp2/patches/patch-configure b/www/nghttp2/patches/patch-configure index 92609c984ac..8d3a3bcb591 100644 --- a/www/nghttp2/patches/patch-configure +++ b/www/nghttp2/patches/patch-configure @@ -1,17 +1,17 @@ -$NetBSD: patch-configure,v 1.5 2021/03/31 21:42:28 maya Exp $ +$NetBSD: patch-configure,v 1.6 2021/09/29 11:46:39 adam Exp $ Lower python requirement to the lowest available 3.x version in pkgsrc. ---- configure.orig 2021-03-31 21:39:20.435004075 +0000 +--- configure.orig 2021-09-21 13:09:48.000000000 +0000 +++ configure -@@ -17693,13 +17652,13 @@ fi +@@ -19131,13 +19131,13 @@ fi if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. -- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 3.8" >&5 --$as_echo_n "checking whether $PYTHON version is >= 3.8... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 3.6" >&5 -+$as_echo_n "checking whether $PYTHON version is >= 3.6... " >&6; } +- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 3.8" >&5 +-printf %s "checking whether $PYTHON version is >= 3.8... " >&6; } ++ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 3.6" >&5 ++printf %s "checking whether $PYTHON version is >= 3.6... " >&6; } prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. @@ -21,18 +21,18 @@ Lower python requirement to the lowest available 3.x version in pkgsrc. minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] -@@ -17720,8 +17679,8 @@ fi +@@ -19159,8 +19159,8 @@ fi else # Otherwise, try each interpreter until we find one that satisfies # VERSION. -- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 3.8" >&5 --$as_echo_n "checking for a Python interpreter with version >= 3.8... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 3.6" >&5 -+$as_echo_n "checking for a Python interpreter with version >= 3.6... " >&6; } - if ${am_cv_pathless_PYTHON+:} false; then : - $as_echo_n "(cached) " >&6 - else -@@ -17732,7 +17691,7 @@ else +- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 3.8" >&5 +-printf %s "checking for a Python interpreter with version >= 3.8... " >&6; } ++ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 3.6" >&5 ++printf %s "checking for a Python interpreter with version >= 3.6... " >&6; } + if test ${am_cv_pathless_PYTHON+y} + then : + printf %s "(cached) " >&6 +@@ -19172,7 +19172,7 @@ else $as_nop # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x @@ -41,12 +41,12 @@ Lower python requirement to the lowest available 3.x version in pkgsrc. minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] -@@ -17807,7 +17766,7 @@ $as_echo_n "checking for $am_display_PYT - if ${am_cv_python_version+:} false; then : - $as_echo_n "(cached) " >&6 - else -- am_cv_python_version=`$PYTHON -c "import sys; print('%u.%u' % sys.version_info[:2])"` +@@ -19254,7 +19254,7 @@ if test ${am_cv_python_version+y} + then : + printf %s "(cached) " >&6 + else $as_nop +- am_cv_python_version=`$PYTHON -c "import sys; print ('%u.%u' % sys.version_info[:2])"` + am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 - $as_echo "$am_cv_python_version" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 + printf "%s\n" "$am_cv_python_version" >&6; } |