From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 012FD15ACFC for ; Fri, 5 May 2023 17:15:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10EECE0A70; Fri, 5 May 2023 17:15:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1E76E0A70 for ; Fri, 5 May 2023 17:15:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0B5A0335DC3 for ; Fri, 5 May 2023 17:15:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7681F990 for ; Fri, 5 May 2023 17:15:30 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1683306924.9825cd3d791456cd0265d0c82611c4ceffd4ff22.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nodejs/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nodejs/nodejs-20.1.0.ebuild X-VCS-Directories: net-libs/nodejs/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 9825cd3d791456cd0265d0c82611c4ceffd4ff22 X-VCS-Branch: master Date: Fri, 5 May 2023 17:15:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2763379-0635-47da-8dce-1ffc8021d14f X-Archives-Hash: 46c0c7c9adae83eca65efd856d2e0e7e commit: 9825cd3d791456cd0265d0c82611c4ceffd4ff22 Author: William Hubbs gentoo org> AuthorDate: Fri May 5 17:13:48 2023 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri May 5 17:15:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9825cd3d net-libs/nodejs: drop ninja-utils If we set a build dependency on ninja, we don't need the ninja-utils eclass since the upstream makefile calls ninja. Signed-off-by: William Hubbs gentoo.org> net-libs/nodejs/nodejs-20.1.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-libs/nodejs/nodejs-20.1.0.ebuild b/net-libs/nodejs/nodejs-20.1.0.ebuild index a0749b8aad06..8ebaa6db05d3 100644 --- a/net-libs/nodejs/nodejs-20.1.0.ebuild +++ b/net-libs/nodejs/nodejs-20.1.0.ebuild @@ -7,7 +7,7 @@ CONFIG_CHECK="~ADVISE_SYSCALLS" PYTHON_COMPAT=( python3_{9..11} ) PYTHON_REQ_USE="threads(+)" -inherit bash-completion-r1 check-reqs flag-o-matic linux-info ninja-utils pax-utils python-any-r1 toolchain-funcs xdg-utils +inherit bash-completion-r1 check-reqs flag-o-matic linux-info pax-utils python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/" @@ -41,7 +41,7 @@ RDEPEND=">=app-arch/brotli-1.0.9:= system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) sys-devel/gcc:*" BDEPEND="${PYTHON_DEPS} -${NINJA_DEPEND} + dev-util/ninja sys-apps/coreutils virtual/pkgconfig test? ( net-misc/curl ) @@ -170,7 +170,7 @@ src_configure() { } src_compile() { - eninja -C out/${BUILDTYPE} + emake } src_install() {