Date: Friday, April 10, 2020 @ 17:19:37 Author: archange Revision: 613145
upgpkg: nodejs-lts-erbium 12.16.2-1 Upstream made it possible to build against system brotli. But they borked the test suite in the linting part. Modified: nodejs-lts-erbium/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-04-10 17:12:01 UTC (rev 613144) +++ PKGBUILD 2020-04-10 17:19:37 UTC (rev 613145) @@ -2,13 +2,13 @@ # Contributor: Felix Yan <[email protected]> pkgname=nodejs-lts-erbium -pkgver=12.16.1 +pkgver=12.16.2 pkgrel=1 pkgdesc="Evented I/O for V8 javascript (LTS release: Erbium)" arch=(x86_64) url="https://nodejs.org/" license=(MIT) -depends=(openssl zlib icu libuv c-ares libnghttp2) # http-parser +depends=(openssl zlib icu libuv c-ares brotli libnghttp2) # http-parser makedepends=(python2 procps-ng) optdepends=('npm: nodejs package manager') provides=("nodejs=$pkgver") @@ -15,7 +15,7 @@ conflicts=(nodejs) source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz") # https://nodejs.org/download/release/latest-erbium/SHASUMS256.txt.asc -sha256sums=(0a95845ba02c46102b5671d0c5732460073f2d397488337e18d1fc30146d412d) +sha256sums=(555c47ca0a40e5526d9ab7b2e9c18f9dbd1d956cbdc013fd2223bb11a069be78) validpgpkeys=(C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 # Myles Borins <[email protected]> 77984A986EBC2AA786BC0F66B01FBB92821C587A # Gibson Fahnestock <[email protected]> B9AE9905FFD7803F25714661B63B535A4C206CA9 # Evan Lucas <[email protected]> @@ -50,6 +50,7 @@ --shared-libuv \ --experimental-http-parser \ --shared-cares \ + --shared-brotli \ --shared-nghttp2 #--shared-http-parser \ @@ -58,6 +59,8 @@ check() { cd node-v${pkgver} + # https://github.com/nodejs/node/issues/32765 + sed -i '/\$(MAKE) -s test-doc/d' Makefile make test }
