# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{8..9} ) 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/" SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="0/$(ver_cut 1)" KEYWORDS="amd64 arm arm64 ppc64 x86 ~amd64-linux ~x64-macos" IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm pax-kernel +snapshot +ssl system-icu +system-ssl systemtap test" REQUIRED_USE="inspector? ( icu ssl ) npm? ( ssl ) system-icu? ( icu ) system-ssl? ( ssl )" # FIXME: test-fs-mkdir fails with "no such file or directory". Investigate. RESTRICT="test" RDEPEND=">=app-arch/brotli-1.0.9:= >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.16.1:= >=net-libs/nghttp2-1.41.0:= sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) 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 "${LIBDIR}"/node_modules/npm/{.mailmap,.npmignore,Makefile} || die rm -rf "${LIBDIR}"/node_modules/npm/{doc,html,man} || die 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() { out/${BUILDTYPE}/cctest || die "${EPYTHON}" tools/test.py --mode=${BUILDTYPE,,} -J message parallel sequential || die }