# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) PYTHON_REQ_USE="threads(+)" inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/nodejs/node" SLOT="0" else SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz" SLOT="0/$(ver_cut 1)" KEYWORDS="arm" S="${WORKDIR}/node-v${PV}" fi IUSE="cpu_flags_x86_sse2 debug doc icu inspector lto +npm +snapshot +ssl +system-ssl systemtap test" REQUIRED_USE=" inspector? ( icu ssl ) npm? ( ssl ) system-ssl? ( ssl ) " RESTRICT="!test? ( test )" RDEPEND=" >=app-arch/brotli-1.0.9:= >=dev-libs/libuv-1.39.0:= >=net-dns/c-ares-1.16.0:= >=net-libs/http-parser-2.9.3:= >=net-libs/nghttp2-1.40.0:= sys-libs/zlib icu? ( >=dev-libs/icu-64.2:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= "${tmp_npm_completion_file}" newbashcomp "${tmp_npm_completion_file}" npm sed -i -e "s|'${ED}/etc'|'/etc'|g" "${ED}/${npm_config}" || die # Move man pages doman "${LIBDIR}"/node_modules/npm/man/man{1,5,7}/* # Clean up rm -f "${LIBDIR}"/node_modules/npm/{.mailmap,.npmignore,Makefile} rm -rf "${LIBDIR}"/node_modules/npm/{doc,html,man} local find_exp="-or -name" local find_name=() for match in "AUTHORS*" "CHANGELOG*" "CONTRIBUT*" "README*" \ ".travis.yml" ".eslint*" ".wercker.yml" ".npmignore" \ "*.md" "*.markdown" "*.bat" "*.cmd"; do find_name+=( ${find_exp} "${match}" ) done # Remove various development and/or inappropriate files and # useless docs of dependend packages. find "${LIBDIR}"/node_modules \ \( -type d -name examples \) -or \( -type f \( \ -iname "LICEN?E*" \ "${find_name[@]}" \ \) \) -exec rm -rf "{}" \; fi mv "${ED}"/usr/share/doc/node "${ED}"/usr/share/doc/${PF} || die } src_test() { # parallel/test-fs-mkdir is known to fail with FEATURES=usersandbox if has usersandbox ${FEATURES}; then ewarn "You are emerging ${P} with 'usersandbox' enabled." \ "Expect some test failures or emerge with 'FEATURES=-usersandbox'!" fi out/${BUILDTYPE}/cctest || die "${PYTHON}" tools/test.py --mode=${BUILDTYPE,,} --flaky-tests=dontcare -J message parallel sequential || die } pkg_postinst() { elog "The global npm config lives in /etc/npm. This deviates slightly" elog "from upstream which otherwise would have it live in /usr/etc/." elog "" elog "Protip: When using node-gyp to install native modules, you can" elog "avoid having to download extras by doing the following:" elog "$ node-gyp --nodedir /usr/include/node " }