From nobody Fri Mar 18 20:32:41 2022 X-Original-To: emulation@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 0DAA91A3422B for ; Fri, 18 Mar 2022 20:32:44 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (smtp.burggraben.net [88.198.69.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.burggraben.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4KKwgH21QYz3p2t for ; Fri, 18 Mar 2022 20:32:43 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from elch.exwg.net (elch.exwg.net [IPv6:2001:470:7120:1:127b:44ff:fe4f:148d]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "elch.exwg.net", Issuer "R3" (not verified)) by smtp.burggraben.net (Postfix) with ESMTPS id 7424DC00311 for ; Fri, 18 Mar 2022 21:32:41 +0100 (CET) Received: by elch.exwg.net (Postfix, from userid 1000) id 21AA43ABAF; Fri, 18 Mar 2022 21:32:41 +0100 (CET) Date: Fri, 18 Mar 2022 21:32:41 +0100 From: Christoph Moench-Tegeder To: emulation@freebsd.org Subject: Re: [package - 130i386-default][lang/linux-c7-tcl85] Failed for linux-c7-tcl85-8.5.13_1 in package Message-ID: References: <202203172055.22HKtc7L034016@beefy15.nyi.freebsd.org> List-Id: Development of Emulators of other operating systems List-Archive: https://lists.freebsd.org/archives/freebsd-emulation List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-emulation@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <202203172055.22HKtc7L034016@beefy15.nyi.freebsd.org> User-Agent: Mutt/2.2.1 (2022-02-19) X-Rspamd-Queue-Id: 4KKwgH21QYz3p2t X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of cmt@burggraben.net designates 88.198.69.140 as permitted sender) smtp.mailfrom=cmt@burggraben.net X-Spamd-Result: default: False [-3.50 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.999]; FREEFALL_USER(0.00)[cmt]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:88.198.69.140]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[emulation@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000]; DMARC_NA(0.00)[burggraben.net]; RCVD_IN_DNSWL_MED(-0.20)[88.198.69.140:from]; NEURAL_HAM_SHORT(-1.00)[-1.000]; MLMMJ_DEST(0.00)[emulation]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:24940, ipnet:88.198.0.0/16, country:DE]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-ThisMailContainsUnwantedMimeParts: N ## pkg-fallout@FreeBSD.org (pkg-fallout@FreeBSD.org): > [130i386-default-job-12] | `-- Installing libgpg-error-1.44... > [130i386-default-job-12] | `-- Extracting libgpg-error-1.44: .......... done > > pkg-static: Unable to access file /wrkdirs/usr/ports/lang/linux-c7-tcl85/work/stage/compat/linux/usr/share/tcl8.5/encoding/cp936.enc:No such file or directory The intersting part has been snipped... This fallout is caused by the recent update to archivers/rpm4 - since rpm 4.17 rpm2archive doesn't operate on stdin by default anymore, you have to explicitely specify "-" as input file. This fixes the problem: diff --git a/Mk/Uses/linux.mk b/Mk/Uses/linux.mk index f1fbd6ca49fa..28ce77dc89b1 100644 --- a/Mk/Uses/linux.mk +++ b/Mk/Uses/linux.mk @@ -236,7 +236,7 @@ SRC_DISTFILES?= ${DISTNAME}${SRC_SUFX}:SOURCE .ifdef USE_LINUX_RPM_BAD_PERMS EXTRACT_DEPENDS+= rpm2archive:archivers/rpm4 EXTRACT_CMD= rpm2archive -EXTRACT_BEFORE_ARGS= < +EXTRACT_BEFORE_ARGS= - < EXTRACT_AFTER_ARGS= | ${TAR} xf - --no-same-owner --no-same-permissions .endif I'd commit this myself, but as it's infrastructure - any downvotes? Regards, Christoph -- Spare Space