nodejs: 23.5.0 -> 23.6.0; added new optional dependencies: libnghttp3 libngtcp2 simdjson simdutf

This commit is contained in:
Tim Biermann 2025-01-08 21:33:19 +01:00
parent 8f0a5053bb
commit 4455b7f996
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/QOu6ngT2qPqa4Cm8bD+vbSUdaEv3FeNybSK0z2uUhJLruxGP5p2TKc4zPnw1DPM7BRJoixG3KlYoFXZM/0dnQU=
SHA256 (Pkgfile) = 704d49b170dd92fcdcc2c82172fa0b4640a4d9aff0845edeccfbb2ee1e0b1783
RWSE3ohX2g5d/bLXHi/JWrq5HfWxg1GOQMx8GNUXtyS9dODCdmP/QHUfPtNITCyTrJw+0zrKefFKMc7wP+3VbVGE6Qs6+VU38Q4=
SHA256 (Pkgfile) = 6d8f45c69103023ff96eaf7d154ead71201cf3473bb553b3d87d8009e5d73b0d
SHA256 (.footprint) = def23a3729301dfd00b0facca8cd0509d93d42520eef6f841a018cfb874da59f
SHA256 (node-v23.5.0.tar.xz) = 32e77b36c0774c68baab41bc7c2acc58663ca0a2b7c4d3e9bec6f761c15fdac0
SHA256 (node-v23.6.0.tar.xz) = d6f3f136dc26d61bd1bafae2a9fc0d5e7f713a6f0067c5e10351bc7ca6574dcd
SHA256 (system-c-ares.patch) = 1ab0f849fe4fae2d295b6c60c12825d5f2c29f5b28b721916d1b550704b0f5f3

View File

@ -2,10 +2,10 @@
# URL: https://nodejs.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libnghttp2 libuv openssl zlib
# Optional: brotli c-ares icu
# Optional: brotli c-ares icu libnghttp3 libngtcp2 simdjson simdutf
name=nodejs
version=23.5.0
version=23.6.0
release=1
source=(https://nodejs.org/dist/v$version/node-v$version.tar.xz
system-c-ares.patch)
@ -15,8 +15,11 @@ build() {
prt-get isinst brotli && PKGMK_NODEJS+=' --shared-brotli'
prt-get isinst c-ares && PKGMK_NODEJS+=' --shared-cares'
prt-get isinst c-ares && patch -Rp1 -i $SRC/system-c-ares.patch
prt-get isinst icu && PKGMK_NODEJS+=' --with-intl=system-icu'
prt-get isinst libnghttp3 && PKGMK_NODEJS+=' --shared-nghttp3'
prt-get isinst libngtcp2 && PKGMK_NODEJS+=' --shared-ngtcp2'
prt-get isinst simdjson && PKGMK_NODEJS+=' --shared-simdjson'
prt-get isinst simdutf && PKGMK_NODEJS+=' --shared-simdutf'
./configure ${PKGMK_NODEJS} \
--prefix=/usr \