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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 17ECB1382C5 for ; Sun, 9 May 2021 14:29:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E7ABE0101; Sun, 9 May 2021 14:29:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4586AE0101 for ; Sun, 9 May 2021 14:29:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 43C29340FA2 for ; Sun, 9 May 2021 14:29:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F376D74F for ; Sun, 9 May 2021 14:29:01 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1620570519.fc87f82b9b132e36fc36ef63f61a6355ed0a584d.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nodejs/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nodejs/nodejs-16.1.0.ebuild X-VCS-Directories: net-libs/nodejs/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: fc87f82b9b132e36fc36ef63f61a6355ed0a584d X-VCS-Branch: master Date: Sun, 9 May 2021 14:29:01 +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: dfb5e25b-f59c-415d-a1ea-c1bdf08d6432 X-Archives-Hash: 8057d52b84167d5c6bdea6badbc946bf commit: fc87f82b9b132e36fc36ef63f61a6355ed0a584d Author: Marek Szuba gentoo org> AuthorDate: Sun May 9 13:51:43 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sun May 9 14:28:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc87f82b net-libs/nodejs-16.1.0: disable test-release-npm Pretty much cosmetic, uses the network, depends on the state of the upstream module database. Signed-off-by: Marek Szuba gentoo.org> net-libs/nodejs/nodejs-16.1.0.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/net-libs/nodejs/nodejs-16.1.0.ebuild b/net-libs/nodejs/nodejs-16.1.0.ebuild index f3079de1131..6727a82af9e 100644 --- a/net-libs/nodejs/nodejs-16.1.0.ebuild +++ b/net-libs/nodejs/nodejs-16.1.0.ebuild @@ -97,6 +97,13 @@ src_prepare() { # We need to disable mprotect on two files when it builds Bug 694100. use pax_kernel && PATCHES+=( "${FILESDIR}"/${PN}-13.8.0-paxmarking.patch ) + # All this test does is check if the npm CLI produces warnings of any sort, + # failing if it does. Overkill, much? Especially given one possible warning + # is that there is a newer version of npm available upstream (yes, it does + # use the network if available), thus making it a real possibility for this + # test to begin failing one day even though it was fine before. + rm -f test/parallel/test-release-npm.js + default }