From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1437040-garchives=archives.gentoo.org@lists.gentoo.org> 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 70EF8158094 for <garchives@archives.gentoo.org>; Sat, 17 Sep 2022 18:43:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7035CE0898; Sat, 17 Sep 2022 18:43:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2BC39E0898 for <gentoo-commits@lists.gentoo.org>; Sat, 17 Sep 2022 18:43:35 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 16432341017 for <gentoo-commits@lists.gentoo.org>; Sat, 17 Sep 2022 18:43:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 543A2576 for <gentoo-commits@lists.gentoo.org>; Sat, 17 Sep 2022 18:43:32 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1663440203.ab3d003f2402ea62ea8dff5182762bac635eaf61.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nodejs/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nodejs/nodejs-14.20.0.ebuild net-libs/nodejs/nodejs-16.17.0.ebuild X-VCS-Directories: net-libs/nodejs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ab3d003f2402ea62ea8dff5182762bac635eaf61 X-VCS-Branch: master Date: Sat, 17 Sep 2022 18:43:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6356bd0a-f7c3-413b-989d-1a6016b981fa X-Archives-Hash: f72936bc792e349ba82adbb92bc0f723 commit: ab3d003f2402ea62ea8dff5182762bac635eaf61 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Sep 17 18:42:14 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Sep 17 18:43:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab3d003f net-libs/nodejs: fix typo Signed-off-by: Sam James <sam <AT> gentoo.org> net-libs/nodejs/nodejs-14.20.0.ebuild | 2 +- net-libs/nodejs/nodejs-16.17.0.ebuild | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/net-libs/nodejs/nodejs-14.20.0.ebuild b/net-libs/nodejs/nodejs-14.20.0.ebuild index 00c75dddb7a0..ec4700ccab22 100644 --- a/net-libs/nodejs/nodejs-14.20.0.ebuild +++ b/net-libs/nodejs/nodejs-14.20.0.ebuild @@ -113,7 +113,7 @@ src_configure() { # LTO compiler flags are handled by configure.py itself filter-flags '-flto*' - # nodejs unconditionally links to libatomic #869992 + # nodejs unconditionally links to libatomic #869992 # specifically it requires __atomic_is_lock_free which # is not yet implemented by sys-libs/compiler-rt (see # https://reviews.llvm.org/D85044?id=287068), therefore diff --git a/net-libs/nodejs/nodejs-16.17.0.ebuild b/net-libs/nodejs/nodejs-16.17.0.ebuild index 4640504d0f55..60ccb02f3246 100644 --- a/net-libs/nodejs/nodejs-16.17.0.ebuild +++ b/net-libs/nodejs/nodejs-16.17.0.ebuild @@ -28,8 +28,7 @@ IUSE="cpu_flags_x86_sse2 debug doc +icu inspector lto +npm pax-kernel +snapshot REQUIRED_USE="inspector? ( icu ssl ) npm? ( ssl ) system-icu? ( icu ) - system-ssl? ( ssl ) - sys-devel/gcc:*" + system-ssl? ( ssl )" RESTRICT="!test? ( test )" @@ -39,7 +38,8 @@ RDEPEND=">=app-arch/brotli-1.0.9:= >=net-libs/nghttp2-1.41.0:= sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) - system-ssl? ( >=dev-libs/openssl-1.1.1:0= )" + system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) + sys-devel/gcc:*" BDEPEND="${PYTHON_DEPS} sys-apps/coreutils virtual/pkgconfig @@ -109,7 +109,7 @@ src_configure() { # LTO compiler flags are handled by configure.py itself filter-flags '-flto*' - # nodejs unconditionally links to libatomic #869992 + # nodejs unconditionally links to libatomic #869992 # specifically it requires __atomic_is_lock_free which # is not yet implemented by sys-libs/compiler-rt (see # https://reviews.llvm.org/D85044?id=287068), therefore