From nobody Tue Mar 3 08:43:15 2026 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4fQ8TP39xMz6SmQ6; Tue, 03 Mar 2026 08:43:21 +0000 (UTC) (envelope-from yuri@freebsd.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 4fQ8TP1xb7z3HTh; Tue, 03 Mar 2026 08:43:21 +0000 (UTC) (envelope-from yuri@freebsd.com) Authentication-Results: mx1.freebsd.org; none Received: from [192.168.5.3] (c-24-23-242-96.hsd1.ca.comcast.net [24.23.242.96]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id 6238hGTb069203 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Tue, 3 Mar 2026 00:43:21 -0800 (PST) (envelope-from yuri@freebsd.com) X-Authentication-Warning: shell1.rawbw.com: Host c-24-23-242-96.hsd1.ca.comcast.net [24.23.242.96] claimed to be [192.168.5.3] Message-ID: Date: Tue, 3 Mar 2026 00:43:15 -0800 List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-ports-main@freebsd.org Sender: owner-dev-commits-ports-main@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: git: 073694902a75 - main - www/py-yt-dlp-ejs: mark as IGNORE To: Mathieu Arnold , ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org References: <69a5c70e.3fb91.39db4454@gitrepo.freebsd.org> Content-Language: en-US From: Yuri In-Reply-To: <69a5c70e.3fb91.39db4454@gitrepo.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:7961, ipnet:198.144.192.0/23, country:US] X-Rspamd-Queue-Id: 4fQ8TP1xb7z3HTh X-Spamd-Bar: ---- Hi Mathieu, On 3/2/26 09:21, Mathieu Arnold wrote: > You cannot repack your distfile in do-fetch. If you need to extract > things and move things around, do it in post-extract. This do-fetch target fetches in 2 places: 1. in ${FETCH_CMD} 2. in 'npm ci' It first fetches the initial tarball, extracts it and then 'npm ci' fetches and adds more files in there, and do-fetch packages it again. There is no re-packaging. It is rather a complex packaging. Therefore your suggestion to do this in post-extract wouldn't work. Unfortunately NodeJS works in such a way that it usually fetches a lot of dependencies while building the project, and this 'npm ci' separates these fetches into the do-fetch target. Regards, Yuri