# Contributor: Jakub Jirutka # Maintainer: Jose-Luis Rivas # # secfixes: # 11.10.1-r0: # - CVE-2019-5737 # 11.3.0-r0: # - CVE-2018-12121 # - CVE-2018-12122 # - CVE-2018-12123 # - CVE-2018-0735 # - CVE-2018-0734 # 9.10.0-r0: # - CVE-2018-7158 # - CVE-2018-7159 # - CVE-2018-7160 # 9.2.1-r0: # - CVE-2017-15896 # - CVE-2017-15897 # pkgname=nodejs-current # The current stable version, i.e. non-LTS. pkgver=12.11.1 pkgrel=0 pkgdesc="JavaScript runtime built on V8 engine - current stable version" url="https://nodejs.org/" arch="all !mips64 !mips64el" license="MIT" depends="ca-certificates" depends_dev="libuv" makedepends="linux-headers python2 paxmark zlib-dev libuv-dev openssl-dev c-ares-dev nghttp2-dev" subpackages="$pkgname-dev $pkgname-doc" provides="nodejs" replaces="nodejs nodejs-lts" # nodejs-lts for backward compatibility source="https://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz dont-run-gyp-files-for-bundled-deps.patch link-with-libatomic-on-mips32.patch " builddir="$srcdir/node-v$pkgver" prepare() { default_prepare # Remove bundled dependencies that we're not using. rm -rf deps/cares deps/openssl deps/uv deps/zlib } build() { cd "$builddir" case "$CARCH" in mips*) _carchflags="--with-mips-arch-variant=r1 --with-mips-float-abi=soft";; esac ./configure --prefix=/usr \ $_carchflags \ --shared-zlib \ --shared-libuv \ --shared-openssl \ --experimental-http-parser \ --shared-cares \ --shared-nghttp2 \ --openssl-use-def-ca-store # we need run mksnapshot at build time so paxmark it early. make -C out mksnapshot BUILDTYPE=Release paxmark -m out/Release/mksnapshot make # paxmark so JIT works paxmark -m out/Release/node } # TODO Run provided test suite. check() { cd "$builddir"/out/Release ./node -e 'console.log("Hello, world!")' ./node -e "require('assert').equal(process.versions.node, '$pkgver')" } package() { cd "$builddir" make DESTDIR="$pkgdir" install # It's strange, but it really needs to be paxmarked again... paxmark -m "$pkgdir"/usr/bin/node # Remove npm, it's provided by main/nodejs package. rm -r "$pkgdir"/usr/lib/node_modules rm "$pkgdir"/usr/bin/npm "$pkgdir"/usr/bin/npx } sha512sums="a2ff79dd0030b2ce87783899a044c8534e6b810e7bf7e04f4a8322db73098dc932803e07c7b837d6d96ebcf0bbe9b0686690a161af1fe1d88d62b707ad294f5f node-v12.11.1.tar.gz 3c536776e2ecb5dc677bf711a09418085b3c5e931a6eaf647f47c28e194d5c6dec354d4e7a039a5805b30fc7e83140594851e18d9120f523eec2f93539eac4db dont-run-gyp-files-for-bundled-deps.patch 9f60928b53447f9590c7065bcdbdd4065d10a06e8451531615791a3bd7d14f9114807e5446e0ec00e2cb7a11a277050345e34636b199db2979d7f022b31ffde4 link-with-libatomic-on-mips32.patch"