From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cQy9b5PT2z2yql for ; Tue, 16 Sep 2025 10:01:55 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cQy9b587qz2xQT for ; Tue, 16 Sep 2025 10:01:55 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (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 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E8" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4cQy9V0nCsz16N for ; Tue, 16 Sep 2025 10:01:50 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1758016910; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=wbbOh7qZ3JmCEORY1X9NHTxLRxBSGSUYbdJXTR0Dj7w=; b=YTY9JR/lBGIrbbLRTsDbJXziWo5CB5iyU1SnyFg9P4kQs0HpU6ryhu83m+HCjixddm35k8 LqeB01kt+rYrIyBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1758016910; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=wbbOh7qZ3JmCEORY1X9NHTxLRxBSGSUYbdJXTR0Dj7w=; b=F5JtY4dBHZu3MpWxxuu1KLKQ9nJ4I743lTCnEak3cgXJ9Xx7tR8Ti7yYsEafRS0dmgZlgH vGAmOG5FyLdEnoZSsISV5ApME9sQVY7w9ca/uRwd/Pe4yxePTFermIFYe2ltvViVNReafz Lyu5FH+U2M8BIev4KR4k2AmxOYdV3pjd3dQmfkCMoj8SRoer9OvR6Z2X9iGKc0YS7cUGVl Anwk+WaeMZ1uCTHJYPPE59LODw0JIm0MdS37SfMFzD/P/Sg2uOrYzxVtI2VEEE7VN9G9EM HJNcqmoTaRBwlhFKoHPhoI9m6wzEq5oAVXGk4r+gH2hgqRQ4u0fyOHwbccRDzg== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4cQy9T4tG9z2xcq; Tue, 16 Sep 2025 10:01:49 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 8e9dd5d165b1cbb6b9ebd6d1e4bd0a7a2af0a3dd X-Git-Refname: refs/heads/next X-Git-Reftype: branch X-Git-Oldrev: d3725fecec79b5d2c807e9830d983a1804b14616 X-Git-Newrev: 8e9dd5d165b1cbb6b9ebd6d1e4bd0a7a2af0a3dd Message-Id: <4cQy9T4tG9z2xcq@people01.haj.ipfire.org> Date: Tue, 16 Sep 2025 10:01:49 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via 8e9dd5d165b1cbb6b9ebd6d1e4bd0a7a2af0a3dd (commit) from d3725fecec79b5d2c807e9830d983a1804b14616 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8e9dd5d165b1cbb6b9ebd6d1e4bd0a7a2af0a3dd Author: Michael Tremer Date: Tue Sep 16 10:01:32 2025 +0000 python3: Don't try to remove setuptools outside the toolchain stage Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: lfs/python3 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Difference in files: diff --git a/lfs/python3 b/lfs/python3 index 4e5afa285..10e85b37e 100644 --- a/lfs/python3 +++ b/lfs/python3 @@ -113,7 +113,9 @@ else endif # Remove the bundled setuptools directories - cd /usr/lib/python3.10/site-packages/ && rm -r setuptools* +ifeq "$(ROOT)" "" + rm -rfv /usr/lib/python3.10/site-packages/setuptools* +endif @rm -rf $(DIR_APP) @$(POSTBUILD) hooks/post-receive -- IPFire 2.x development tree