Date: Tuesday, November 1, 2022 @ 18:58:27
Author: foutrelis
Revision: 1340235
archrelease: copy trunk to community-staging-x86_64
Added:
nodejs-lts-fermium/repos/community-staging-x86_64/
nodejs-lts-fermium/repos/community-staging-x86_64/PKGBUILD
(from rev 1340234, nodejs-lts-fermium/trunk/PKGBUILD)
nodejs-lts-fermium/repos/community-staging-x86_64/fix-test-tls-session-cache.patch
(from rev 1340234,
nodejs-lts-fermium/trunk/fix-test-tls-session-cache.patch)
nodejs-lts-fermium/repos/community-staging-x86_64/icu72.patch
(from rev 1340234, nodejs-lts-fermium/trunk/icu72.patch)
nodejs-lts-fermium/repos/community-staging-x86_64/keys/
nodejs-lts-fermium/repos/community-staging-x86_64/libnghttp1.45.1_compat.patch
(from rev 1340234, nodejs-lts-fermium/trunk/libnghttp1.45.1_compat.patch)
----------------------------------+
PKGBUILD | 76 +++++++++++++++++++++++++++++++++++++
fix-test-tls-session-cache.patch | 12 +++++
icu72.patch | 20 +++++++++
libnghttp1.45.1_compat.patch | 22 ++++++++++
4 files changed, 130 insertions(+)
Copied: nodejs-lts-fermium/repos/community-staging-x86_64/PKGBUILD (from rev
1340234, nodejs-lts-fermium/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-11-01 18:58:27 UTC (rev 1340235)
@@ -0,0 +1,76 @@
+# Maintainer: Bruno Pagani <[email protected]>
+# Contributor: Felix Yan <[email protected]>
+
+pkgname=nodejs-lts-fermium
+pkgver=14.20.0
+pkgrel=3
+pkgdesc="Evented I/O for V8 javascript (LTS release: Fermium)"
+arch=(x86_64)
+url="https://nodejs.org/"
+license=(MIT)
+depends=(openssl-1.1 zlib icu libuv c-ares brotli libnghttp2) # http-parser
+makedepends=(python procps-ng)
+checkdepends=(openssl) # for openssl s_client
+optdepends=('npm: nodejs package manager')
+provides=("nodejs=$pkgver")
+conflicts=(nodejs)
+source=(${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz
+
${pkgname}-openssl3-fix-test-tls-no-sslv3.patch::https://github.com/nodejs/node/commit/0828a96c10d1.patch
+ fix-test-tls-session-cache.patch
+ icu72.patch
+ libnghttp1.45.1_compat.patch)
+# https://nodejs.org/download/release/latest-fermium/SHASUMS256.txt.asc
+sha256sums=('2b5098498889d1e6a9709d63f3d6f94e696a5ad8221618c5d51159cee363996a'
+ 'bb5f91aeb0f87e7bcbed531fe8922beec1b51bd2ceeec91e9d25ede800817459'
+ 'f38518f306f1a62e0cd04ec2607fb6733ff95ad4090acb07fa091dfd002985c6'
+ '886d0edf868c39567124937f93a43fb3e92fa65b5244b8c608d6482ed217fa56'
+ '81f8a060b40786c02de400620da4060483d910fe7a6b68d8328f3747caf54619')
+validpgpkeys=(C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 # Myles Borins
<[email protected]>
+ 77984A986EBC2AA786BC0F66B01FBB92821C587A # Gibson Fahnestock
<[email protected]>
+ B9AE9905FFD7803F25714661B63B535A4C206CA9 # Evan Lucas
<[email protected]>
+ DD8F2338BAE7501E3DD5AC78C273792F7D83545D # Rod Vagg
<[email protected]>
+ B9E2F5981AA6E0CD28160D9FF13993A75599653C # Shelley Vohr
<[email protected]>
+ 4ED778F539E3634C779C87C6D7062848A1AB005C # Beth Griggs
<[email protected]>
+ C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C # Richard Lau
<[email protected]>
+ 74F12602B6F1C4E913FAA37AD3A89613643B6201) # Danielle Adams
<[email protected]>
+
+prepare() {
+ cd node-v${pkgver}
+ patch -p1 < ../${pkgname}-openssl3-fix-test-tls-no-sslv3.patch
+ patch -p0 < ../fix-test-tls-session-cache.patch
+ patch -p1 < ../icu72.patch
+ patch -p1 < ../libnghttp1.45.1_compat.patch
+}
+
+build() {
+ cd node-v${pkgver}
+ CPPFLAGS+=" -I/usr/include/openssl-1.1" LDFLAGS+=" -L/usr/lib/openssl-1.1"
+
+ ./configure \
+ --prefix=/usr \
+ --with-intl=system-icu \
+ --without-npm \
+ --shared-openssl \
+ --shared-zlib \
+ --shared-libuv \
+ --experimental-http-parser \
+ --shared-cares \
+ --shared-brotli \
+ --shared-nghttp2
+ # --shared-v8
+ # --shared-http-parser
+
+ make
+}
+
+check() {
+ cd node-v${pkgver}
+ make test-only
+}
+
+package() {
+ cd node-v${pkgver}
+ LDFLAGS+=" -L/usr/lib/openssl-1.1" # not sure why it gets reset in package()
+ make DESTDIR="${pkgdir}" install
+ install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
Copied:
nodejs-lts-fermium/repos/community-staging-x86_64/fix-test-tls-session-cache.patch
(from rev 1340234, nodejs-lts-fermium/trunk/fix-test-tls-session-cache.patch)
===================================================================
--- community-staging-x86_64/fix-test-tls-session-cache.patch
(rev 0)
+++ community-staging-x86_64/fix-test-tls-session-cache.patch 2022-11-01
18:58:27 UTC (rev 1340235)
@@ -0,0 +1,12 @@
+# Extracted from https://github.com/nodejs/node/commit/640fe943544d
+
+--- test/parallel/test-tls-session-cache.js.orig 2022-11-01
17:03:41.226108382 +0000
++++ test/parallel/test-tls-session-cache.js 2022-11-01 17:05:41.634992504
+0000
+@@ -50,6 +50,7 @@ function doTest(testOptions, callback) {
+ requestCert: true,
+ rejectUnauthorized: false,
+ secureProtocol: 'TLS_method',
++ ciphers: 'RSA@SECLEVEL=0'
+ };
+ let requestCount = 0;
+ let resumeCount = 0;
Copied: nodejs-lts-fermium/repos/community-staging-x86_64/icu72.patch (from rev
1340234, nodejs-lts-fermium/trunk/icu72.patch)
===================================================================
--- community-staging-x86_64/icu72.patch (rev 0)
+++ community-staging-x86_64/icu72.patch 2022-11-01 18:58:27 UTC (rev
1340235)
@@ -0,0 +1,20 @@
+From d7bd0b7ac3c36b8aacacb14baa84c8a1ee17f43e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= <[email protected]>
+Date: Wed, 19 Oct 2022 18:30:13 +0200
+Subject: [PATCH] fixup! deps: update ICU to 72.1
+
+fix tests
+
+diff --git a/test/parallel/test-intl.js b/test/parallel/test-intl.js
+index 7d1742f2c7d1..df391bd4de3d 100644
+--- a/test/parallel/test-intl.js
++++ b/test/parallel/test-intl.js
+@@ -97,7 +97,7 @@ if (!common.hasIntl) {
+ // Test format
+ {
+ const localeString = date0.toLocaleString(['en'], optsGMT);
+- assert.strictEqual(localeString, '1/1/1970, 12:00:00 AM');
++ assert.strictEqual(localeString, '1/1/1970, 12:00:00 AM');
+ }
+ // number format
+ {
Copied:
nodejs-lts-fermium/repos/community-staging-x86_64/libnghttp1.45.1_compat.patch
(from rev 1340234, nodejs-lts-fermium/trunk/libnghttp1.45.1_compat.patch)
===================================================================
--- community-staging-x86_64/libnghttp1.45.1_compat.patch
(rev 0)
+++ community-staging-x86_64/libnghttp1.45.1_compat.patch 2022-11-01
18:58:27 UTC (rev 1340235)
@@ -0,0 +1,22 @@
+--- a/test/parallel/test-http2-methods.js
++++ b/test/parallel/test-http2-methods.js
+@@ -8,7 +8,7 @@ const h2 = require('http2');
+
+ const server = h2.createServer();
+
+-const methods = [undefined, 'GET', 'POST', 'PATCH', 'FOO', 'A B C'];
++const methods = ['GET', 'POST', 'PATCH', 'FOO', 'A_B_C'];
+ let expected = methods.length;
+
+ // We use the lower-level API here
+--- a/test/parallel/test-http2-multiplex.js
++++ b/test/parallel/test-http2-multiplex.js
+@@ -29,7 +29,7 @@ server.listen(0, common.mustCall(() => {
+ });
+
+ function doRequest() {
+- const req = client.request({ ':method': 'POST ' });
++ const req = client.request({ ':method': 'POST' });
+
+ let data = '';
+ req.setEncoding('utf8');