www/nginx-devel: update 1.24.0 -> 1.25.0

Enable HTTPv3 protocol by default.

The OpenSSL compatibility layer, which emulates BoringSSL
QUIC API for OpenSSL, is enabled by default, and 0-RTT is
not supported in this mode.

<ChangeLog>

*) Feature: experimental HTTP/3 support.

</ChangeLog>
This commit is contained in:
osa 2023-05-23 20:26:22 +00:00
parent 8deafbb539
commit 34e71079f7
3 changed files with 13 additions and 10 deletions

View file

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.107 2023/05/22 11:39:04 wiz Exp $
# $NetBSD: Makefile,v 1.108 2023/05/23 20:26:22 osa Exp $
DISTNAME= nginx-1.24.0
DISTNAME= nginx-1.25.0
PKGNAME= ${DISTNAME:S/-/-devel-/1}
PKGREVISION= 7
CATEGORIES= www
MASTER_SITES= https://nginx.org/download/
DISTFILES= ${DEFAULT_DISTFILES}

View file

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.95 2023/05/15 22:02:57 osa Exp $
$NetBSD: distinfo,v 1.96 2023/05/23 20:26:22 osa Exp $
BLAKE2s (array-var-nginx-module-0.06.tar.gz) = fa6ad2a2ce3c3eba3f69287b224e9c01fcaca29a083394ab74f2f655d3e2138b
SHA512 (array-var-nginx-module-0.06.tar.gz) = bc72158856a1be18a26ee04c6b5b0f0a20bcce688610a493bf31e2a133e7eb12e11f7c18197a09a72b1513f6a08348ee5281b9d5b84cf43603539040ebd23c26
@ -24,9 +24,9 @@ Size (nbs-system-naxsi-d714f16_GH.tar.gz) = 236940 bytes
BLAKE2s (nchan-1.3.6.tar.gz) = 1409be69d5589d3643a7cb1f3dd1e4bc8d58c4be801234d52738090c04469255
SHA512 (nchan-1.3.6.tar.gz) = 0f1c25d460dcf4e3407a1ef4bfcefe17eba7b0ff250f267e5bde0eb4298e9596c1e6992fc58fe35d8420888065353bf3883a1f1bbc5e607a00128992eb1ee6d2
Size (nchan-1.3.6.tar.gz) = 761436 bytes
BLAKE2s (nginx-1.24.0.tar.gz) = 05ecd7f1710da91508b7bc0db8632b1347f6f1b87aecf7633e76e8f65f95569a
SHA512 (nginx-1.24.0.tar.gz) = 1114e37de5664a8109c99cfb2faa1f42ff8ac63c932bcf3780d645e5ed32c0b2ac446f80305b4465994c8f9430604968e176ae464fd80f632d1cb2c8f6007ff3
Size (nginx-1.24.0.tar.gz) = 1112471 bytes
BLAKE2s (nginx-1.25.0.tar.gz) = 402c8beaf3af58f6397cf800ee7bf7b9a2aee289b1368b5eab291306722968df
SHA512 (nginx-1.25.0.tar.gz) = 828b83deacd9a250b36d894a126f070a9e48c0f057c931d8d5dbe80d3fe548eb3ab93fef2b6add564c2f567813f60c225d470292a6b5446dcb79eecc491ff2d8
Size (nginx-1.25.0.tar.gz) = 1217579 bytes
BLAKE2s (nginx-dav-ext-module-3.0.0.tar.gz) = 8e823ffd605d4fca00eb3ca92a0954ca35fb178397e0b990fea7d47580ee582f
SHA512 (nginx-dav-ext-module-3.0.0.tar.gz) = d0193ba90f1ef46c4e470630c4394bdf99d94fd2e3bd8be6cb2ba1655ec59944b1269025f032b79dc2c6dad366e54389ef6a6da2ddeb91d535a4027f2162fbde
Size (nginx-dav-ext-module-3.0.0.tar.gz) = 14558 bytes

View file

@ -1,4 +1,4 @@
# $NetBSD: options.mk,v 1.22 2023/05/15 22:02:57 osa Exp $
# $NetBSD: options.mk,v 1.23 2023/05/23 20:26:22 osa Exp $
CODELOAD_SITE_GITHUB= https://codeload.github.com/
@ -6,12 +6,12 @@ PKG_OPTIONS_VAR= PKG_OPTIONS.nginx-devel
PKG_SUPPORTED_OPTIONS= array-var auth-request cache-purge dav debug
PKG_SUPPORTED_OPTIONS+= dso echo encrypted-session flv form-input
PKG_SUPPORTED_OPTIONS+= geoip geoip2 gssapi gtools gzip headers-more http2
PKG_SUPPORTED_OPTIONS+= image-filter luajit mail-proxy memcache
PKG_SUPPORTED_OPTIONS+= http3 image-filter luajit mail-proxy memcache
PKG_SUPPORTED_OPTIONS+= naxsi njs perl push realip redis rtmp
PKG_SUPPORTED_OPTIONS+= secure-link set-misc slice ssl status
PKG_SUPPORTED_OPTIONS+= stream-ssl-preread sts sub upload uwsgi vts
PKG_SUGGESTED_OPTIONS= auth-request gzip http2 memcache realip
PKG_SUGGESTED_OPTIONS= auth-request gzip http2 http3 memcache realip
PKG_SUGGESTED_OPTIONS+= slice status ssl uwsgi
PKG_OPTIONS_LEGACY_OPTS+= v2:http2
@ -96,6 +96,10 @@ SUBST_NOOP_OK.fix-geo= yes
CONFIGURE_ARGS+= --with-http_v2_module
.endif
.if !empty(PKG_OPTIONS:Mhttp3)
CONFIGURE_ARGS+= --with-http_v3_module
.endif
.if !empty(PKG_OPTIONS:Msub)
CONFIGURE_ARGS+= --with-http_sub_module
.endif