nginx: updated pcre dependency to pcre2 et al.

This commit is contained in:
Tim Biermann 2024-02-28 21:05:43 +01:00
parent 9bd781bc3b
commit dab549e6d5
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 12 additions and 10 deletions

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3waEfiLnqgCO0oR9vzY+l7gyj3MpN8iqTx/7tKhco31I1YxixYu7PXMklsYVotZqPgXnO5LLYGgXWpDCJdv4UwE= RWSagIOpLGJF3yeoUS1Zcc3tpj1fssgZsneiC7JgIaRNkfW1fVED2aTWd5rotookZyqW574bikygHekKvEwod54u+JfqeiNP6wY=
SHA256 (Pkgfile) = 65bd20720de47c17290d021bf74f1638bcbc0fd58d4a808d24d4c4f53f474100 SHA256 (Pkgfile) = 2e41bd5e30aff9499ecac3bbf603dc30ad69dc38898d4f28bbd9f7fc03b70212
SHA256 (.footprint) = 9263dad4ce3a2766b5f9bec00a3a58ac86445f370ba1bb3d5716e6b9dc74ddae SHA256 (.footprint) = 9263dad4ce3a2766b5f9bec00a3a58ac86445f370ba1bb3d5716e6b9dc74ddae
SHA256 (nginx-1.25.4.tar.gz) = 760729901acbaa517996e681ee6ea259032985e37c2768beef80df3a877deed9 SHA256 (nginx-1.25.4.tar.gz) = 760729901acbaa517996e681ee6ea259032985e37c2768beef80df3a877deed9
SHA256 (nginx.conf) = 0f9b54e790951f1a09580bbf29ede26c4cc277e535d4df937fc659979a2fb35b SHA256 (nginx.conf) = 703ff410335496a7fc8617845e62d4fedf3782ffa0434959b6b04a87fa49423d
SHA256 (nginx.rc) = bac096145be15bc5d87817e2d3440d930288aea06dfd6736e43289b4a352595b SHA256 (nginx.rc) = d6ead8d9dd31911cab4acc5b2be8c54e3f4f8633db8b7ad0775a61d92aa751ad

View File

@ -1,11 +1,11 @@
# Description: An HTTP and reverse proxy server (mainline version) # Description: An HTTP and reverse proxy server (mainline version)
# URL: http://nginx.org/ # URL: http://nginx.org/
# Maintainer: Matt Housh, jaeger at crux dot ninja # Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: libpcre zlib openssl # Depends on: libpcre2 zlib openssl
name=nginx name=nginx
version=1.25.4 version=1.25.4
release=1 release=2
source=(http://nginx.org/download/$name-$version.tar.gz \ source=(http://nginx.org/download/$name-$version.tar.gz \
$name.conf $name.rc) $name.conf $name.rc)
@ -16,10 +16,12 @@ build() {
--conf-path=/etc/$name/$name.conf \ --conf-path=/etc/$name/$name.conf \
--error-log-path=/var/log/$name/error.log \ --error-log-path=/var/log/$name/error.log \
--http-log-path=/var/log/$name/access.log \ --http-log-path=/var/log/$name/access.log \
--pid-path=/var/run/$name.pid \ --pid-path=/run/$name.pid \
--lock-path=/var/lock/$name.pid \ --lock-path=/var/lock/$name.pid \
--with-http_ssl_module \ --with-http_ssl_module \
--with-pcre \ --with-http_v2_module \
--with-threads \
--with-http_gzip_static_module \
--user=$name \ --user=$name \
--group=$name --group=$name
make make

View File

@ -8,7 +8,7 @@ worker_processes auto;
error_log /var/log/nginx/error.log; error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid; pid /run/nginx.pid;
events { events {

View File

@ -5,7 +5,7 @@
SSD=/sbin/start-stop-daemon SSD=/sbin/start-stop-daemon
PROG=/usr/sbin/nginx PROG=/usr/sbin/nginx
PID=/var/run/nginx.pid PID=/run/nginx.pid
case $1 in case $1 in
"start") "start")